Skip to content

Instantly share code, notes, and snippets.

View adophilus's full-sized avatar
💭
Learning 🤓

Uchenna Ofoma adophilus

💭
Learning 🤓
View GitHub Profile
// 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;
545827863

Agenda

  • Introductions
  • CryptoNex: Past, Present, Future
  • Exercises
    • Visualization
    • Demo Trade
  • Questions
    • Color preference
    • Expectations
    • How will the currency conversion rates be determined and updated?
name: docs
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
{
description = "CryptoNex nix flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-24.05";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
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",
{
"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,
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: ');