16 Matching Annotations
  1. Mar 2024
  2. muse-jhu-edu.du.idm.oclc.org muse-jhu-edu.du.idm.oclc.org
    1. For the redwood forest, fire is a sign of change and growth, naturally occurring and clearing out the underbrush, the ashes becoming nutrients in the soil. The forest is at last able to blossom and breathe. The redwood trees themselves stand tall amongst the flames, their thick fire-resistant bark a protective shield. Even when elderly trees do topple, they scatter tiny sprouts in their wake. Through a scorching, forest floors that once never saw light are suddenly soaked in it, nutrients are recycled. Insect pests, invasive species, and diseased trees are cleared away for new saplings. The process is called regenerative growth. A time for rebirth sets in. From the chaos comes an opportunity.

      metaphor of fire in the woods - it's a disruption, but can lead to succession and regeneration "the process is called regenerative growth. a time for rebirth sets in. From the chaos comes an opportunity"

  3. Nov 2023
    1. In a recent report into what tech partners want, 58% of partners cite a lack of communications as a factor in why partnerships don’t reach expectations. Communication challenges include channels and frequency.

      The report highlights issues with channels and frequency as primary communication challenges. Ensuring a streamlined and efficient communication process within the partner portal is crucial for overcoming these hurdles. It's evident that resolving these communication issues is fundamental to fostering successful tech partnerships and optimizing the overall effectiveness of the partner program.

    1. To fully optimize your partner portal’s potential, consider incorporating the partner marketplace functionality. Create a platform to easily find and engage with partners and also find their products or services.

      Integrating partner marketplace functionality can realy enhance partner engagement and simplify the process of finding their products or services

  4. Aug 2023
    1. ```js // Create a portal with the wikipedia page, and embed it // (like an iframe). You can also use the <portal> tag instead. portal = document.createElement('portal'); portal.src = 'https://en.wikipedia.org/wiki/World_Wide_Web'; portal.style = '...'; document.body.appendChild(portal);

      // When the user touches the preview (embedded portal): // do fancy animation, e.g. expand … // and finish by doing the actual transition. // For the sake of simplicity, this snippet will navigate // on the onload event of the Portals element. portal.addEventListener('load', (evt) => { portal.activate(); });

      // Adding some styles with transitions const style = document.createElement('style'); style.innerHTML = portal { position:fixed; width: 100%; height: 100%; opacity: 0; box-shadow: 0 0 20px 10px #999; transform: scale(0.4); transform-origin: bottom left; bottom: 20px; left: 20px; animation-name: fade-in; animation-duration: 1s; animation-delay: 2s; animation-fill-mode: forwards; } .portal-transition { transition: transform 0.4s; } @media (prefers-reduced-motion: reduce) { .portal-transition { transition: transform 0.001s; } } .portal-reveal { transform: scale(1.0) translateX(-20px) translateY(20px); } @keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } }; const portal = document.createElement('portal'); // Let's navigate into the WICG Portals spec page portal.src = 'https://wicg.github.io/portals/'; // Add a class that defines the transition. Consider using // prefers-reduced-motion media query to control the animation. // https://developers.google.com/web/updates/2019/03/prefers-reduced-motion portal.classList.add('portal-transition'); portal.addEventListener('click', (evt) => { // Animate the portal once user interacts portal.classList.add('portal-reveal'); }); portal.addEventListener('transitionend', (evt) => { if (evt.propertyName == 'transform') { // Activate the portal once the transition has completed portal.activate(); } }); document.body.append(style, portal); ```

      ```js // Feature detection

      if ('HTMLPortalElement' in window) { // If this is a platform that have Portals... const portal = document.createElement('portal'); ... } ```

      js // Detect whether this page is hosted in a portal if (window.portalHost) { // Customize the UI when being embedded as a portal }

      ```js // Send message to the portal element const portal = document.querySelector('portal'); portal.postMessage({someKey: someValue}, ORIGIN);

      // Receive message via window.portalHost window.portalHost.addEventListener('message', (evt) => { const data = evt.data.someKey; // handle the event }); ```

  5. Feb 2023
  6. Aug 2022
  7. Dec 2021
    1. How to Create a Micro-Job Marketplace Like Fiverr: Features, Cost, TimelineTimurTech JournalistMarketplaceProduct GuideHomeBlogEntrepreneurshipHow to Create a Micro-Job Marketplace Like Fiverr: Features, Cost, TimelinePublishedNov 19, 2021UpdatedNov 19, 202120 min readIt’s no secret that the COVID-19 pandemic has led many people to reconsider their jobs. Now, freelance as an alternative career path steadily becomes a reality. 50.9% of the U.S. workforce will be freelancing by 2027, a Statista survey shows. Businesses like Fiverr and fellow gig-focused companies rode the wave. To be more precise, they adopted a model allowing the hire of independent contractors without any legwork. How do such tools set the new trend in powering freelancers? In this article, we share proven methods geared towards freelance website growth. Moreover, you will get a glimpse of how to create a micro-job marketplace like Fiverr of your own.

      It’s no secret that the COVID-19 pandemic has led many people to reconsider their jobs. Now, freelance as an alternative career path steadily becomes a reality. 50.9% of the U.S. workforce will be freelancing by 2027, a Statista survey shows.

      Businesses like Fiverr and fellow gig-focused companies rode the wave. To be more precise, they adopted a model allowing the hire of independent contractors without any legwork. How do such tools set the new trend in powering freelancers?

      In this article, we share proven methods geared towards freelance website growth. Moreover, you will get a glimpse of how to create a micro-job marketplace like Fiverr of your own.

  8. Aug 2021
  9. Oct 2019
  10. Oct 2018
  11. Aug 2018
    1. Borger.dk is an Internet portal for the citizens of Denmark. Here you can find different self-services and get information on issues regarding the public authorities. 

      Borger.dk - Internet Portal for Citizens of Denmark

  12. Dec 2016