This file contains 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
(ns example.login.views | |
(:require | |
[re-frame.core :as rf] | |
[example.login.subs :as subs] | |
[example.login.events :as events] | |
["@material-ui/core/Button" :default mui-button] | |
["@material-ui/core/Dialog" :default dialog] | |
["@material-ui/core/DialogTitle" :default dialog-title] | |
["@material-ui/core/DialogContent" :default dialog-content] | |
["@material-ui/core/DialogActions" :default dialog-actions] |
This file contains 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
(ns interceptors.auth | |
(:require [cheshire.core :as json] | |
[clojure.spec.alpha :as s] | |
[clojure.walk :refer [postwalk]] | |
[clojure.core.async :as a]) | |
(:import (java.net URL) | |
(com.auth0.jwk GuavaCachedJwkProvider UrlJwkProvider) | |
(com.auth0.jwt.interfaces RSAKeyProvider ECDSAKeyProvider) | |
(com.auth0.jwt.algorithms Algorithm) | |
(com.auth0.jwt JWT) |
This file contains 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
#!/bin/bash | |
# Download the Microsoft package | |
wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb | |
# Install the package | |
sudo dpkg -i packages-microsoft-prod.deb | |
# Remove the package | |
rm packages-microsoft-prod.deb |