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
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. | |
# Initialization code that may require console input (password prompts, [y/n] | |
# confirmations, etc.) must go above this block; everything else may go below. | |
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then | |
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" | |
fi | |
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH |
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
@namespace html url("http://www.w3.org/1999/xhtml"); | |
:root { | |
--surface-800: #e4e4e7; | |
--input-600: #f4f4f5; | |
--tabsurface-500: #f4f4f5; | |
--lwt-selected-tab-background-color: var(--tabsurface-500) !important; | |
--uc-tabs-width: 40vw; | |
--uc-toolbar-height: 34px; | |
--uc-font-family: "JetBrains Mono", monospace; | |
--uc-bg-color: var(--surface-800); |
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
export const decode = (encoded) => { | |
const _0 = '\u200c'; | |
const _1 = '\u200d'; | |
const chLen = 25; | |
const emLen = 25; | |
let channelName = ''; | |
let emoteName = ''; |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#define DB_MAXSIZE 100 | |
struct document { | |
char* companyName; | |
int stateSize; | |
long capitalization; | |
}; |
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
export const decode = (encoded) => { | |
const _0 = '\u200c'; | |
const _1 = '\u200d'; | |
const chLen = 25; | |
const emLen = 25; | |
let channelName = ''; | |
let emoteName = ''; |
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
const express = require('express'); | |
const fs = require('fs'); | |
const app = express(); | |
app.get('/version', (req, res) => { | |
let version = JSON.parse(fs.readFileSync('version.json')); | |
res.json(version); | |
}); |
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
struct joinRequest { | |
uint8_t appEUI[8]; | |
uint8_t devEUI[8]; | |
uint8_t devNonce[2]; | |
} | |
struct joinAccept { | |
uint8_t appNonce[3]; | |
uint8_t netID[3]; | |
uint8_t devAddr[4]; |
NewerOlder