- Introductions
- CryptoNex: Past, Present, Future
- Exercises
- Visualization
- Demo Trade
- Questions
- Color preference
- Expectations
- How will the currency conversion rates be determined and updated?
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
// This is the class for the `AccessToken`. The main purpose is to take in the claims and call the `toJwt` method to create a JWT. | |
var AccessToken = class { | |
apiKey; | |
roomId; | |
role; | |
/** | |
* Permissions for the token | |
*/ | |
permissions; |
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
545827863 |
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
970054631 |
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
name: docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest |
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
{ | |
description = "CryptoNex nix flake"; | |
inputs = { | |
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-24.05"; | |
}; | |
outputs = { self, nixpkgs }: | |
let | |
system = "x86_64-linux"; |
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
if not vim.g.vscode then return {} end -- don't do anything in non-vscode instances | |
local vscode = require('vscode') | |
local enabled = {} | |
vim.tbl_map(function(plugin) enabled[plugin] = true end, { | |
-- core plugins | |
"lazy.nvim", | |
"AstroNvim", | |
"astrocore", |
Codevolution's React Playlist: https://youtube.com/playlist?list=PLC3y8-rFHvwgg3vaYJgHGnModB54rxOk3&si=0ao393ENHYpN5xSB
It's very detailed and would show you what's possible with react
The Official React webite: https://react.dev
Anything that's mentioned in the YouTube video can be cross referenced here. It's the official react website and it has the documentation for React
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
{ | |
"workbench.iconTheme": "ayu", | |
"workbench.colorTheme": "Ayu Mirage", | |
"extensions.experimental.affinity": { | |
"asvetliakov.vscode-neovim": 1 | |
}, | |
"biome.lspBin": "biome", | |
"editor.fontFamily": "'FiraCode Nerd Font Mono', 'Operator Caska', 'Droid Sans Mono', 'monospace', monospace", | |
"editor.fontLigatures": true, | |
"editor.minimap.enabled": false, |
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
total_units = 0; | |
total_points = 0; | |
total_years = input('How many years do you want to calculate for?:'); | |
% for loop to calculate the gpa of all the years | |
for year = 1:total_years | |
fprintf('Calculating for year %d\n', year); | |
number_of_courses = input('Enter number of courses offered: '); | |
NewerOlder