<style>
/* Default Off-Canvas (Hidden) */
.e-off-canvas {
    z-index: 100;
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.2s, opacity 0.2s linear;
}

/* Show Off-Canvas */
.e-off-canvas-visible {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999 !important;
}

/* Hide Off-Canvas */
.e-off-canvas-hidden {
    visibility: hidden !important;
    opacity: 0 !important;
    z-index: 10 !important;
}

/* White Background Behind Off-Canvas (Using ::before on Body) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 1); /* Solid White */
    opacity: 0;
    visibility: hidden;
    z-index: 9998; /* Just behind Off-Canvas */
    transition: opacity 0.2s linear, visibility 0s linear 0.2s;
}

/* When an Off-Canvas is Open, Show the Background */
body.off-canvas-active::before {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s linear;
}
</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>
				
			

30.07.2020: ROAD To Solutions “AI & BIG DATA”

This post has been translated by an AI and may contain translational inaccuracies.

You probably know our cooperation partner solutions.hamburg/Silpion. As an organizer, he has been hit particularly hard by the Corona situation, but has never given up thinking positively and has launched a new DIGITALE EVENT series.

2,3,1: every 2 weeks, 3 speakers, 1 topic. As usual, high-quality, entertaining, digital and free of charge.

Next event is on July 30, 2020

from 09:15 at your home

AI & Big Data

A young programmer takes part in a fascinating experiment in which he meets a beautiful girl in his boss’s lonely cabin in the woods. This “girl” is in fact the most advanced artificial intelligence imaginable, in a robot body. Of course, this is the story of a movie, more precisely, the story of the movie “Ex Machina”, in which the idea of the Turing Test is told in a fantastic story.

But what can AI really do today? Where do we stand and how are we already using it? Answers to these questions will be given on: Thursday, July 30, from 9:30-11:00 a.m. Road to Solutions: AI & Big Data.

ARIC CEO Alois will also be giving a talk.

09:30 Welcome and moderation by Bettina Hermes, Silpion Events

09:35 #1 Communicate better with AI”,

Uta Rusch – advantegy GmbH

09:50 Open discussion round

10:00 #2 SAP solutions in the area of big data and machine learning”,

Dr. Mark von Kopp – SAP Deutschland SE & Co. KG

10:15 Open discussion round

10:25 #3 “ARIC Hamburg: AI at the interface between business, science and society”

Alois Krtil – Artificial Intelligence Center Hamburg (ARIC) e.V.

10:40 Final discussion

Xing Event Link: https://www.xing.com/events/road-to-solutions-ki-ai-big-data-3002635

Linked In Link: https://www.linkedin.com/events/roadtosolutions-ki-ai-bigdata/

Instagram: https://www.instagram.com/solutions_de/

Twitter: https://twitter.com/solutionsHH

Hashtag: #shh20 #digitalizationis

You can register here.

https://solutions.hamburg/solutions-und-road-to-solutions-2020-neu/#naechstes-event

The “Road to Solutions” ends – or rather – culminates on 2 to 4 September 2020 at Solutions@Kampnagel, a hybrid event for decision-makers, managers and implementation teams online and offline, because digitalization is team sport and must be kept together right now.

Silpion CEO and mastermind Patrick Postel is not letting the coronavirus crisis get him down and is now even more determined to launch the non-profit initiative RebootGermany(https://rebootgermany.org/) and to give indispensable, motivating presentations that also

Times of crisis are full of opportunities!”.

While recession is or will become a reality, Postel and his initiative want to help prevent the Great Depression. The #RebootGermany initiative brings people together to exchange ideas, understand the social and economic changes and identify industry-specific and cross-industry learnings.

Take a look at the ARIC cooperation partner Silpion and solutions.hamburg at https://solutions.hamburg/#shh-kampnagel.