Skip to content

Instantly share code, notes, and snippets.

View adophilus's full-sized avatar
💭
Learning 🤓

Uchenna Ofoma adophilus

💭
Learning 🤓
View GitHub Profile
@adophilus
adophilus / hackathons-2026.md
Created August 17, 2026 21:48
Winnable Hackathons — research for @adophilus (Aug 2026)

Winnable Hackathons — Research for @adophilus

Compiled Aug 17, 2026 · ranked by prize-to-competition ratio (TS fullstack, some Rust, prior 0G hackathon experience)

Top picks (open now)

# Event Prize Competition signal Deadline
1 BUIDL CTC 2026 Fall (Creditcoin, DoraHacks) $15k 85 hackers registered Sep 6
2 DevNetwork @ API World (Devpost) $39.5k across 8 sponsor tracks, 2 winner slots each 697 regs ÷ 8 tracks → ~dozens of real submissions per track Sep 3
3 ETHOnline 2026 (ETHGlobal) $100k+, incl. $15k 0G track High overall, but judged per-track Sep 4–16
// 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",