This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.adamratzman.spotify.SpotifyApiBuilderKt; | |
| import com.adamratzman.spotify.SpotifyAppApi; | |
| import com.adamratzman.spotify.javainterop.SpotifyContinuation; | |
| import com.adamratzman.spotify.models.Album; | |
| import com.adamratzman.spotify.models.PagingObject; | |
| import com.adamratzman.spotify.models.SimpleAlbum; | |
| import org.jetbrains.annotations.NotNull; | |
| import java.util.concurrent.ExecutionException; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [{"first":{"first":{"state":"al","number":1},"second":33.9160350375902},"second":{"first":{"first":{"state":"al","number":1},"second":100},"second":0.08472183,"third":0.2186483}},{"first":{"first":{"state":"al","number":2},"second":33.36125357973934},"second":{"first":{"first":{"state":"al","number":2},"second":100},"second":0.07261871,"third":0.20727064}},{"first":{"first":{"state":"al","number":3},"second":32.73744404715355},"second":{"first":{"first":{"state":"al","number":3},"second":100},"second":0.1775124,"third":0.21652797}},{"first":{"first":{"state":"al","number":4},"second":33.654379955034045},"second":{"first":{"first":{"state":"al","number":4},"second":100},"second":0.08472183,"third":0.20976934}},{"first":{"first":{"state":"al","number":5},"second":35.9234820860103},"second":{"first":{"first":{"state":"al","number":5},"second":100},"second":0.16540928,"third":0.22179286}},{"first":{"first":{"state":"al","number":6},"second":39.00363651651146},"second":{"first":{"first":{"state":"al","number":6}," |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 98167 total graded courses since Fall 2011 | |
| Average IU Course Grade: 3.409 (3.275) [3.209] | |
| Average IU Course Grade (Fall): 3.407 (3.258) [3.201] | |
| Average IU Course Grade (Spring): 3.414 (3.28) [3.22] | |
| Average 100 course grade: 3.268 (3.127) [3.053] | |
| Average 200 course grade: 3.244 (3.156) [3.156] | |
| Average 300 course grade: 3.329 (3.232) [3.229] |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 98167 total graded courses since Fall 2011Average IU Course Grade: 3.409 (3.275) [3.209]Average IU Course Grade (Fall): 3.407 (3.258) [3.201]Average IU Course Grade (Spring): 3.414 (3.28) [3.22] | |
| Average 100 course grade: 3.268 (3.127) [3.053] Average 200 course grade: 3.244 (3.156) [3.156] Average 300 course grade: 3.329 (3.232) [3.229] Average 400 course grade: 3.534 (3.478) [3.308] Average 500 course grade: 3.734 (3.679) [3.641] Average 600 course grade: 3.6 (3.563) [3.178] Average 700 course grade: 3.433 (3.518) [2.875] Average 800 course grade: 3.842 (3.823) [3.597] Average 900 course grade: 3.977 (3.967) [3.805]Easiest courses: CHEM-X 270: 4.0 (4.0) [3.67] - 17.0 students average over 4 teachings by 1 instructors - last taught Spring 2019 CJUS-X 395: 4.0 (4.0) [3.235] - 12.5 students average over 2 teachings by 1 instructors - last taught Spring 2019 GEOL-X 420: 4.0 (4.0) [3.425] - 10.5 students average over 2 teachings by 1 instructors - last taught Spring 2018 HO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package quotedb; | |
| import org.springframework.stereotype.Controller; | |
| import org.springframework.ui.Model; | |
| import org.springframework.web.bind.annotation.GetMapping; | |
| import org.springframework.web.bind.annotation.PostMapping; | |
| import org.springframework.web.bind.annotation.RequestMapping; | |
| import org.springframework.web.bind.annotation.RequestParam; | |
| import javax.servlet.http.HttpSession; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> | |
| <html> | |
| <body> | |
| <h2>Quote Database</h2> | |
| <c:if test="${error != null}"><p style="color: red;"><b><c:out value="${error}" /></b></p></c:if> | |
| <h3>Your session</h3> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> | |
| <html> | |
| <body> | |
| <h2>Quote Database</h2> | |
| <c:if test="${error != null}"><p style="color: red;"><b><c:out value="${error}" /></b></p></c:if> | |
| <h3>Your session</h3> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| buildscript { | |
| repositories { | |
| mavenCentral() | |
| } | |
| dependencies { | |
| classpath("org.springframework.boot:spring-boot-gradle-plugin:2.1.6.RELEASE") | |
| } | |
| } | |
| apply plugin: 'java' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| plugins { | |
| kotlin("multiplatform") version "1.3.50" | |
| kotlin("plugin.serialization") version "1.3.50" | |
| id("com.diffplug.gradle.spotless") version "3.25.0" | |
| } | |
| group = "spotify-web-api-kotlin" | |
| version = "1.0-SNAPSHOT" | |
| repositories { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Spotify Web API - Kotlin Wrapper; MIT License, 2019; Original author: Adam Ratzman */ | |
| package com.adamratzman.spotify.http | |
| import com.adamratzman.spotify.SpotifyApi | |
| enum class HttpRequestMethod { | |
| GET, | |
| POST, | |
| PUT, | |
| DELETE; |
NewerOlder