Skip to content

Instantly share code, notes, and snippets.

View Nike-Prallow's full-sized avatar
🎯
Focusing

Nick Pralle Nike-Prallow

🎯
Focusing
View GitHub Profile
@Nike-Prallow
Nike-Prallow / search-for-primes.py
Last active March 24, 2021 16:24
corrected multi process version of the prime number counter from https://www.youtube.com/watch?v=hGyJTcdfR1E
import multiprocessing as mp
import time
import pandas as pd
def chunks(seq, chunks):
size = len(seq)
start = 0
for i in range(1, chunks + 1):
stop = i * size // chunks
@Nike-Prallow
Nike-Prallow / cloudflare-update-record.sh
Last active April 18, 2020 10:29 — forked from benkulbertis/cloudflare-update-record.sh
Cloudflare API v4 Dynamic DNS Update in Bash
#!/bin/bash
# CHANGE THESE
auth_email="user@example.com"
auth_key="c2547eb745079dac9320b638f5e225cf483cc5cfdda41" # found in cloudflare account settings
zone_name="example.com"
record_name="www.example.com"
# MAYBE CHANGE THESE
ip=$(curl -s http://ipv4.icanhazip.com)