Infrastructure LMS (formerly Canvas) (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 = `

Infrastructure LMS (formerly Canvas) (12)

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

${fullName}

Infrastructure LMS (formerly Canvas) (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
  • Infrastructure LMS (formerly Canvas)

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) } });

Infrastructure LMS (formerly Canvas)

Jump to solution

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

‎09-11-202101:03 AM

For once in my career, I need to find a sales rep for a company instead of them beating down our door. We're in Central California. Anyone have contact info for a Canvas LMS rep halfway local to this area?

Solved!Go to Solution.

Labels (1)

Labels

  • Labels:
  • Canvas

I also have this question

0Likes

1 Solution

Jump to solution

Infrastructure LMS (formerly Canvas) (15)

Infrastructure LMS (formerly Canvas) (16)Chris_Hofer

Community Coach

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

‎09-11-202108:27 AM

Hello@lucasPeni...

I will pass your message along to the Canvas Community Managers in hopes that they will be able to direct you to a sales representative. You may not get a response until early next week (because it's the weekend). In the mean time, you can check out their website:https://www.instructure.com/and click on the "Get In Touch" button at the top right corner of the screen.

As a side note, Instructure (not Infrastructure) is the company that designs the Canvas LMS (Learning Management System). So, as far as I know, there is no "formerly Canvas".

View solution in original post

This reply answered my question

0Likes

  • All forum topics
  • Previous Topic
  • Next Topic

2 Replies

Jump to solution

Infrastructure LMS (formerly Canvas) (17)

Infrastructure LMS (formerly Canvas) (18)Chris_Hofer

Community Coach

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

‎09-11-202108:27 AM

Hello@lucasPeni...

I will pass your message along to the Canvas Community Managers in hopes that they will be able to direct you to a sales representative. You may not get a response until early next week (because it's the weekend). In the mean time, you can check out their website:https://www.instructure.com/and click on the "Get In Touch" button at the top right corner of the screen.

As a side note, Instructure (not Infrastructure) is the company that designs the Canvas LMS (Learning Management System). So, as far as I know, there is no "formerly Canvas".

This reply answered my question

0Likes

Jump to solution

Infrastructure LMS (formerly Canvas) (19)

Infrastructure LMS (formerly Canvas) (20)Stef_retired

Instructure Alumni

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

‎09-13-202106:45 AM

Hi,@lucasPeni,@Chris_Hofergave you the right information!(Thanks, Chris.) After you fill out the form on this page, the appropriate representative for your region will contact you.

1Like

Infrastructure LMS (formerly Canvas) (21)

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

Infrastructure LMS (formerly Canvas) (2024)
Top Articles
Hattie Bartons Brownie Recipe
Deshuesadero El Pulpo
Skamania Lodge Groupon
Holly Ranch Aussie Farm
Sportsman Warehouse Cda
Craigslist In South Carolina - Craigslist Near You
Violent Night Showtimes Near Amc Fashion Valley 18
Ap Chem Unit 8 Progress Check Mcq
Wnem Radar
Readyset Ochsner.org
อพาร์ทเมนต์ 2 ห้องนอนในเกาะโคเปนเฮเกน
Conan Exiles Thrall Master Build: Best Attributes, Armor, Skills, More
Boston Gang Map
List of all the Castle's Secret Stars - Super Mario 64 Guide - IGN
Jang Urdu Today
Gayla Glenn Harris County Texas Update
Pearson Correlation Coefficient
Buying Cars from Craigslist: Tips for a Safe and Smart Purchase
Hctc Speed Test
480-467-2273
As families searched, a Texas medical school cut up their loved ones
Horses For Sale In Tn Craigslist
Maine Racer Swap And Sell
Netspend Ssi Deposit Dates For 2022 November
Roseann Marie Messina · 15800 Detroit Ave, Suite D, Lakewood, OH 44107-3748 · Lay Midwife
Kuttymovies. Com
The Procurement Acronyms And Abbreviations That You Need To Know Short Forms Used In Procurement
Spirited Showtimes Near Marcus Twin Creek Cinema
Progressbook Newark
5 Star Rated Nail Salons Near Me
Dailymotion
2487872771
Inmate Search Disclaimer – Sheriff
Star News Mugshots
Donald Trump Assassination Gold Coin JD Vance USA Flag President FIGHT CIA FBI • $11.73
Vlocity Clm
P3P Orthrus With Dodge Slash
Lichen - 1.17.0 - Gemsbok! Antler Windchimes! Shoji Screens!
Finland’s Satanic Warmaster’s Werwolf Discusses His Projects
Hingham Police Scanner Wicked Local
2700 Yen To Usd
Complete List of Orange County Cities + Map (2024) — Orange County Insiders | Tips for locals & visitors
craigslist: modesto jobs, apartments, for sale, services, community, and events
Panorama Charter Portal
Homeloanserv Account Login
Martha's Vineyard – Travel guide at Wikivoyage
Cryptoquote Solver For Today
Roller Znen ZN50QT-E
Vrca File Converter
라이키 유출
Dcuo Wiki
Obituary Roger Schaefer Update 2020
Latest Posts
Article information

Author: The Hon. Margery Christiansen

Last Updated:

Views: 6242

Rating: 5 / 5 (50 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: The Hon. Margery Christiansen

Birthday: 2000-07-07

Address: 5050 Breitenberg Knoll, New Robert, MI 45409

Phone: +2556892639372

Job: Investor Mining Engineer

Hobby: Sketching, Cosplaying, Glassblowing, Genealogy, Crocheting, Archery, Skateboarding

Introduction: My name is The Hon. Margery Christiansen, I am a bright, adorable, precious, inexpensive, gorgeous, comfortable, happy person who loves writing and wants to share my knowledge and understanding with you.