Re: InstructureCon 2017 - Which missions to accept? (2024)

Skip to main content

Learn about Community

Sign In

You're signed out

Sign in to ask questions, follow content, and engage with the Community

Sign In

'; hoverCardInner.innerHTML = loadingHTML.repeat(4); hoverCardContainer.classList.add('profile-hover-card-show'); // Extract information from the image element const titleField = avatar.getAttribute('title'); const userInfoUrl = `https://${mainURL}/api/2.0/search?q=SELECT first_name, last_name, login, view_href, rank, topics, solutions_authored, id, email FROM users WHERE login = '${titleField}'`; const userPostsUrl = `https://${mainURL}/api/2.0/search?q=SELECT count(*) FROM messages WHERE author.login = '${titleField}'`; const userSolutionsUrl = `https://${mainURL}/api/2.0/search?q=SELECT count(*) FROM messages WHERE author.login = '${titleField}' AND is_solution = true`; const userBadgesUrl = `https://${mainURL}/api/2.0/search?q=SELECT user_badges from users where login = '${titleField}'`; // Fetch user information async function createProfileData() { const userInfo = await fetch(userInfoUrl); const userPosts = await fetch(userPostsUrl); const userSolutions = await fetch(userSolutionsUrl); const userBadges = await fetch(userBadgesUrl); const userInfoData = await userInfo.json(); const userPostsData = await userPosts.json(); const userSolutionsData = await userSolutions.json(); const userBadgesData = await userBadges.json(); const userBadgesArray = userBadgesData.data.items[0].user_badges.items; const earnedBadgesArray = userBadgesArray.filter(badge => badge.earned_date); earnedBadgesArray.sort((a, b) => new Date(b.earned_date) - new Date(a.earned_date)); const userRankName = userInfoData.data.items[0].rank.name; const userID = userInfoData.data.items[0].id; // const userKudosUrl = `https://${mainURL}/restapi/vc/users/id/${userID}/metrics/name/net_kudos_events_received?restapi.response_format=json`; const userKudos = await fetch(userKudosUrl); const userKudosData = await userKudos.json(); let fullName = userInfoData.data.items[0].login; if (userInfoData.data.items[0].first_name !== undefined && userInfoData.data.items[0].last_name !== undefined) { let firstName = userInfoData.data.items[0].first_name; let lastName = userInfoData.data.items[0].last_name; fullName = firstName + " " + lastName; } else { fullName = userInfoData.data.items[0].login; } let userRankIcon = ""; if (userInfoData.data.items[0].rank.icon_left !== undefined) { userRankIcon = userInfoData.data.items[0].rank.icon_left; } else { userRankIcon = ""; } let userEmail = ""; // <#if user_has_role> if (userInfoData.data.items[0].email !== undefined) { userEmail = userInfoData.data.items[0].email; } else { userEmail = ""; } // <#else> userEmail = ""; // #if> const userViewHref = userInfoData.data.items[0].view_href; const userPostsCount = userPostsData.data.count; const userSolutionsCount = userSolutionsData.data.count; const userKudosCount = userKudosData.response.value.$; const userBadgesCount = earnedBadgesArray.length; let badgesHTML = ""; if (earnedBadgesArray.length === 0) { badgesHTML = `

This user hasn't earned any badges yet.

`; } else { for (let i = 0; i < earnedBadgesArray.length; i++) { const badgeName = earnedBadgesArray[i].badge.title; const badgeIcon = earnedBadgesArray[i].badge.icon_url; const badgeHTML = `

Re: InstructureCon 2017 - Which missions to accept? (12)

`; badgesHTML += badgeHTML; if (i >= 4) { break; } }; } const hoverCardHTML = `

${fullName}

Re: InstructureCon 2017 - Which missions to accept? (13)${userRankName}

${userEmail}

${badgesHTML}

${userPostsCount} posts ${userKudosCount} likes ${userSolutionsCount} solutions

`; // // Display the hover card return hoverCardHTML; } if (hoverCardInner.innerHTML.includes('loading-box')) { createProfileData().then((hoverCardHTML) => { hoverCardInner.innerHTML = hoverCardHTML; }); } } }); //Hide the hover card on mouseout avatar.addEventListener('mouseout', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.remove('profile-hover-card-show'); }); hoverCardInner.addEventListener('mouseout', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.remove('profile-hover-card-show'); }); hoverCardInner.addEventListener('mouseover', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.add('profile-hover-card-show'); }); }); });

Turn on suggestions

Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.

Showing results for

Showonly | Search instead for

Did you mean:

  • Community
  • Canvas
  • Canvas LMS
  • Canvas Question Forum
  • Re: InstructureCon 2017 - Which missions to accept...

Options

  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page

`; const toolTip = document.createElement('div'); toolTip.classList.add('like-button-tooltip'); toolTip.innerHTML = toolTipCode; likeButton.appendChild(toolTip); } document.addEventListener('DOMContentLoaded', function () { const likeButton = document.querySelector('.lia-button-image-kudos'); const likeButtonLink = document.querySelector('.kudos-link'); let likeDismissCookie = localStorage.getItem("inst_comm_like_dismiss"); if (!likeDismissCookie) { localStorage.setItem("inst_comm_like_dismiss", "-1"); loginDate = -1; } if (likeDismissCookie !== "-1") { // toolTip.style.display = 'none'; const storedTime = new Date(parseInt(loginDate)); const currentTime = new Date(); if (storedTime.getTime() < currentTime.getTime()) { localStorage.setItem("inst_comm_like_dismiss", "-1"); } } else { createToolTip(likeButton, likeButtonLink); const toolTip = document.querySelector('.like-button-tooltip'); const toolTipClose = document.querySelector('.like-button-tooltip-close'); const observer = new IntersectionObserver(entries => { entries.forEach(entry => { if (entry.isIntersecting) { toolTip.style.display = 'block'; setTimeout(() => { toolTip.style.opacity = '1'; }, 2000); // toolTip.style.animationName = 'toolTipFlash'; // Stop observing once elementOne is visible observer.unobserve(likeButton); } }); }); // Start observing elementTwo observer.observe(likeButton); likeButtonLink.addEventListener('click', () => { toolTip.style.display = 'none'; }); if (toolTipClose) { toolTipClose.addEventListener("click", function () { const now = new Date(); const fourteenDays = new Date(now.getTime() + 14 * 24 * 60 * 60 * 1000); // Adding 24 hours in milliseconds const epochTime = fourteenDays.getTime(); // Getting the epoch time in milliseconds localStorage.setItem("inst_comm_like_dismiss", epochTime); toolTip.style.display = 'none'; }); } setTimeout(() => { toolTip.style.opacity = '0'; setTimeout(() => { toolTip.style.display = 'none'; }, 500); // Fade out duration (0.5 seconds) + delay (0.5 seconds) = 1 second }, 15000); // Hide after 10 seconds (including 2-second fade-in delay) } });

InstructureCon 2017 - Which missions to accept?

‎06-22-201701:29 PM

I am so excited about InstructureCon this year... We have been on Canvas for 1 year now. We attended InstructureCon last year, but we were so unsure of what we were doing, we sort of fumbled through the sessions. There were 7 of us there last year also, so we were able to divide and conquer most sessions. This year, there are two of us going. There are so many great sessions, how do you choose which ones to attend?

(I'm also an instructional designer, so sharing with that group as well!)

Labels (2)

Labels

  • Labels:
  • Admin

  • Administrator

I also have this question

8Likes

  • All forum topics
  • Previous Topic
  • Next Topic

3 Replies

Re: InstructureCon 2017 - Which missions to accept? (15)

Re: InstructureCon 2017 - Which missions to accept? (16)kona

Community Coach

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎06-22-201702:26 PM

I often do a combination of look for things that are new/different and who is presenting. Sometimes it doesn't matter if the content seems like something I might already know, it's worth it to see certain people present live. An excellent example of this is the Community session -Go Rogue with Us(I want to see the CM's present!) orA00364575‌'s session6 Years Later: Where Is This Canvas Early Adopter Now?(Neal is pretty awesome and since we've been using Canvas for 5 years I'm interested to hear what he has to say). It's also good to remember that all of the sessions are recorded so even if you miss one in person you can always go back after the fact and watch it!

And, since I'm into shameless plugs, I would also strongly recommend the Canvancement session to anyone -Accomplish the Impossibleand for any newbies (HE or K12) -No Need to Blame Canvas. 😉

5Likes

Re: InstructureCon 2017 - Which missions to accept? (17)

sbeck1

Community Champion

In response to kona

Author

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎06-29-201711:22 AM

Thanks, @kona‌! They were both on my list!

3Likes

Re: InstructureCon 2017 - Which missions to accept? (18)

PSU_Tony

Community Contributor

In response to sbeck1

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎07-06-201701:36 PM

Can't go wrong with anything Neal or the USU folks have to present on!

4Likes

Re: InstructureCon 2017 - Which missions to accept? (19)

Unanswered Topics

  • Issue with Portfolium portfolios

  • Group Project with Peer Reviews and Staggered Due ...

  • Speed grade reverse alpha order

  • Gradebook problem assignments grey, can't put in g...

  • Canvas resubmit button

View All

Latest Topics

  • How to add phone number as alternative contact met...

  • How to set student accommodation (extra time) for ...

  • Issue with Portfolium portfolios

  • Theme Editor (Admin) - Adjust Color for Icons Unde...

  • Group Project with Peer Reviews and Staggered Due ...

View All

View our top guides and resources:

Find My Canvas URL Help Logging into Canvas Generate a Pairing Code Canvas Browser and Computer Requirements Change Canvas Notification Settings Submit a Peer Review Assignment

To participate in the Instructure Community, you need to sign up or log in:

Sign In

Re: InstructureCon 2017 - Which missions to accept? (2024)
Top Articles
Read The Unforeseen Guest [To Chapter 122] Manga Online - ManhwaLike
The Unforeseen Guest Manga(Novel) at ManhwaTo
Health Stream Kaiser
Jazmen00 Mega
The Ultimate Guide To Jelly Bean Brain Leaks: Causes, Symptoms, And Solutions
Abcm Corp Training Reliaslearning
Nizhoni Massage Gun
Ohio Lottery Full Site
Leicht Perlig Biography
Accident On May River Road Today
Dusk Hypixel Skyblock
1V1.Lol Pizza Edition
Air Force Chief Results
Icy Veins Necromancer Diablo 4
Church Bingo Halls Near Me
Browse | Obituaries | Enid News and Eagle
NEU: LEAKSHIELD - das sicherste Flüssigkeits-Kühlsystem der Welt - Wasserkühlung
Sloansmoans Bio
Lord Lord You Been Blessing Me Lyrics
2503 South Tacoma Way
Craigslist Battle Ground Washington
ASVAB Test: The Definitive Guide (updated 2024) by Mometrix
Open jazz : podcast et émission en replay | France Musique
Cookie Clicker The Advanced Method
Emmi Sellers Cheerleader
Papa Johns Mear Me
Week In Review: Chaos at BDSwiss , IronFX Founder's Prop Firm, US FX Deposits, and More
How to Learn Brazilian Jiu‐Jitsu: 16 Tips for Beginners
Showcameips
02080797947
Used Fuel Tanks For Sale Craigslist
Sentara Norfolk General Visiting Hours
Hawkview Retreat Pa Cost
Dr Yakubu Riverview
Harleyxwest Of Leaks
Taylor Swift: The Eras Tour Showtimes Near Marcus Pickerington Cinema
Best Jumpshot
Bdo Obsidian Blackstar
Ella And David Steve Strange
Rubrankings Austin
Ttw Cut Content
Black Panther Pitbull Puppy For Sale
Order Irs Tax Forms Online
How To Use Price Chopper Points At Quiktrip
Potomac Edison Wv Outages
Tillamook Headlight Herald Obituaries
Kohl's Hixson Tennessee
Basis Phoenix Primary Calendar
Westside Veterinary Hospital Arab Photos
Rexford Tucker Pritchett
Adventhealth Employee Handbook 2022
Latest Posts
Article information

Author: Laurine Ryan

Last Updated:

Views: 5953

Rating: 4.7 / 5 (77 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Laurine Ryan

Birthday: 1994-12-23

Address: Suite 751 871 Lissette Throughway, West Kittie, NH 41603

Phone: +2366831109631

Job: Sales Producer

Hobby: Creative writing, Motor sports, Do it yourself, Skateboarding, Coffee roasting, Calligraphy, Stand-up comedy

Introduction: My name is Laurine Ryan, I am a adorable, fair, graceful, spotless, gorgeous, homely, cooperative person who loves writing and wants to share my knowledge and understanding with you.