<style></style>

<script>
jQuery(function($) {
    // Function to force repaint/reflow
    function forceRepaint() {
        document.body.style.display = 'none';
        document.body.offsetHeight; // Force reflow
        document.body.style.display = 'block';
        window.dispatchEvent(new Event('resize'));
    }

    function closeAllOffCanvas(exceptID = null) {
        let anyOpen = false; // Track if another Off-Canvas remains open

        $(".e-off-canvas").each(function() {
            let canvasID = $(this).attr("id");

            if (!exceptID || canvasID !== exceptID) {
                $(this).removeClass("e-off-canvas-visible")
                       .addClass("e-off-canvas-hidden")
                       .attr("aria-hidden", "true")
                       .css({
                           "z-index": "10",
                           "visibility": "hidden",
                           "opacity": "0"
                       });

                // Full removal delay set to 0ms
                setTimeout(() => {
                    if ($(this).attr("aria-hidden") === "true") {
                        $(this).css("display", "none");
                    }
                }, 0);
            } else {
                anyOpen = true; // At least one Off-Canvas is still open
            }
        });

        // Remove white background delay set to 0ms
        setTimeout(() => {
            if (!$(".e-off-canvas-visible").length) {
                $("body").removeClass("off-canvas-active");
                forceRepaint(); // Force repaint when closing all
            }
        }, 0);
    }

    function openOffCanvas(targetID) {
        let targetCanvas = $(targetID);

        if (targetCanvas.length) {
            // Close all others EXCEPT the one we're opening
            closeAllOffCanvas(targetID);

            // Open immediately with delay set to 0ms
            setTimeout(() => {
                targetCanvas.removeClass("e-off-canvas-hidden")
                            .addClass("e-off-canvas-visible")
                            .attr("aria-hidden", "false")
                            .css({
                                "z-index": "9999",
                                "visibility": "visible",
                                "opacity": "1",
                                "display": "block"
                            });

                // Ensure the White Background Stays Visible
                $("body").addClass("off-canvas-active");
                
                // Force repaint after opening
                forceRepaint();

            }, 0);
        }
    }

    // Decode Base64
    function decodeBase64(str) {
        try {
            return atob(str);
        } catch (e) {
            return null;
        }
    }

    // Handle Elementor Off-Canvas OPEN clicks
    $(document).on('click', '[href*="elementor-action%3Aaction%3Doff_canvas%3Aopen"]', function(event) {
        event.preventDefault();
        let href = decodeURIComponent($(this).attr("href"));

        let base64Match = href.match(/settings=([^&]+)/);
        if (base64Match) {
            let decodedSettings = decodeBase64(base64Match[1]);

            try {
                let settingsObj = JSON.parse(decodedSettings);
                if (settingsObj.id) {
                    let offCanvasID = "#off-canvas-" + settingsObj.id;
                    openOffCanvas(offCanvasID);
                }
            } catch (e) {}
        }
    });

    // Handle Elementor Off-Canvas CLOSE clicks
    $(document).on('click', '[href*="elementor-action%3Aaction%3Doff_canvas%3Aclose"]', function(event) {
        event.preventDefault();
        closeAllOffCanvas();
    });

    // Ensure all Off-Canvas elements start hidden
    $(".e-off-canvas").each(function() {
        $(this).attr("aria-hidden", "true").css({
            "z-index": "10",
            "visibility": "hidden",
            "opacity": "0",
            "display": "none"
        });
    });

    // Handle same-page anchor link clicks
    $(document).on('click', 'a[href*="#"]', function(event) {
        let href = $(this).attr('href');
        if (href.indexOf('#') !== -1) {
            // Close all off-canvas widgets when an anchor link is clicked
            closeAllOffCanvas();
        }
    });

});
</script>
				
			
Pr

My Student Internship at ARIC | “Three Weeks I’ll Never Forget”

This post has been translated by an AI and may contain translational inaccuracies.
What does a ninth-grade student actually think of an interdisciplinary AI center? Student intern Sandro looks back on his three-week internship at ARIC. He talks about the insights he gained into modern work practices at ARIC and his personal sense of accomplishment—the digital map he programmed himself.  

 

Over the past three weeks, I had the opportunity to do my internship at ARIC, and I have to say: It was a really cool experience. At first, I wasn’t quite sure what to expect, but after just the first day, I realized that ARIC is a special place. The atmosphere there is really pleasant, everyone is friendly, and you just feel welcome. The staff aren’t just nice—they’re also really knowledgeable. You can tell they know what they’re doing, and yet they still take the time to explain things.

I really learned a lot about ARIC during these three weeks. Above all, I found it fascinating how many different projects are underway there and how modern everything seems. ARIC focuses a lot on artificial intelligence and digitalization, and I was impressed by how naturally the people there handle these topics. It was all new to me, but I never felt lost because there was always someone there to help me.

I also thought it was especially cool that you could just help yourself to drinks. That might sound like a small thing, but to me, it showed that ARIC is a place where you’re supposed to feel comfortable. It’s not as strict as some other offices; instead, it’s more laid-back and open.

 

“When the card finally worked, I was really proud.”

 

My personal highlight was an assignment where I got to program a map online. At first, I thought it would be way too hard, but step by step, I figured out how it worked. When the map actually worked in the end, I was really proud. It was a great feeling to see that I’d accomplished something I’d never done before.

Overall, my internship at ARIC was a great experience. I learned a lot, worked on exciting projects, and met some wonderful people. For me, ARIC is a place that shows what modern work can look like: friendly, open, creative, and full of opportunities. I’m very grateful that I was able to be there, and I certainly won’t forget these three weeks.

Text: Sandro


If you’re interested in a job or an internship at ARIC, please visit our careers page and check out the current job postings.


Further reading: