An opinionated configuration by @niftylettuce for Apple's M1 computer line-up.
I launched Forward Email in November and needed a faster machine to work with.
An opinionated configuration by @niftylettuce for Apple's M1 computer line-up.
I launched Forward Email in November and needed a faster machine to work with.
Minimal as possible. I2P is full of crypto primitives, file formats, and protocols.
The goal is to implement the smallest functional set of I2P concepts for a working router.
To begin, only implement the NTCP2 transport. This is a TCP-like end-to-end encrypted transport.
-- Remove the history from | |
rm -rf .git | |
-- recreate the repos from the current content only | |
git init | |
git add . | |
git commit -m "Initial commit" | |
-- push to the github remote repos ensuring you overwrite history | |
git remote add origin [email protected]:<YOUR ACCOUNT>/<YOUR REPOS>.git |
const vertices = ['a', 'b', 'c', 'd']; | |
const edges = [ | |
{ | |
starting: 'c', | |
ending: 'd', | |
weight: 500, | |
}, | |
{ | |
starting: 'a', | |
ending: 'b', |
#include <stdio.h> | |
#include <unistd.h> | |
#define itterator 100000 | |
#define pollingDelay 1 | |
int main() { | |
for(int i = 1; i <= itterator; i++){ | |
printf("i = %d\r", i); | |
sleep(pollingDelay/10); |
#!/usr/bin/env python3 | |
class Ship(): | |
def __init__(self, name="Ship", yearBuilt=2000): | |
self.name = str(name) | |
self.yearBuilt = int(yearBuilt) | |
def name(self, name=None): | |
if not name == None: |
#!usr/bin/env python3 | |
""" | |
This script is the r/DailyProgrammer Easy Challenge #321 titled | |
Talking Clock. | |
Author: Christopher Bilger | |
""" | |
WORD_HOURS = [ | |
"twelve", | |
"one", | |
"two", |
#!usr/bin/env python3 | |
""" | |
This script is the r/DailyProgrammer Easy Challenge #354 titled | |
Integer Complexity 1. | |
Author: Christopher Bilger | |
""" | |
import math as Math | |
class Integer(): |
120 | |
150 | |
3628800 | |
479001600 | |
6 | |
18 |
#!usr/bin/env python3 | |
""" | |
This script is the r/DailyProgrammer Easy Challenge #294 titled | |
Rack Management 1. | |
Author: Christopher Bilger | |
""" | |
def scrabble(rack_str, desired_str): | |
""" |