I hereby claim:
- I am deltawhy on github.
- I am deltawhy (https://keybase.io/deltawhy) on keybase.
- I have a public key ASCs-JnuTBVcsMSkptdzRl_cVn9XJ_V6k_lCQCHj7ukGawo
To claim this, I am signing this object:
| FROM python:3.9 | |
| RUN pip list | |
| RUN pip install poetry 'setuptools<58' | |
| COPY . /app | |
| WORKDIR /app | |
| RUN poetry install -vvv || poetry run pip list && false |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env ruby | |
| require 'open-uri' | |
| class IpInfoDb | |
| attr_reader :source | |
| URI = "http://ipinfodb.com" |
| #1. Download Khroki/MCEdit-Unified. | |
| #2. Copy this script and your existing Minecraft world into the MCEdit-Unified folder. | |
| #3. Run the script to add the new stone types and regenerate rabbits, horses, and wolves. | |
| from __future__ import print_function | |
| import pymclevel | |
| import pymclevel.minecraft_server | |
| import time | |
| import sys | |
| def playerChunk(world): |
| #!/bin/sh | |
| cd "/run/media/michael/Backup/Screencasts Raw/" | |
| echo "Select monitor device:" | |
| pactl list sinks | sed -rn 's/\s+Description: (.*)/\1/p' | nl | |
| read -p "? " | |
| monitor=$(pactl list sinks | sed -rn 's/\s+Name: (.*)/\1/p' | sed -n "${REPLY}p") | |
| pacmd set-default-sink ${monitor} | |
| echo "Select microphone:" | |
| pactl list sources | sed -rn '/Monitor of/d; s/\s+Description: (.*)/\1/p' | nl |
| #!/bin/bash | |
| # Drop in /etc/wicd/scripts/postconnect/ | |
| # Chown to root:root and chmod to 700 since it has your password in plaintext | |
| connection_type="$1" | |
| essid="$2" | |
| bssid="$3" | |
| if [ "${connection_type}" == "wireless" ]; then | |
| if [ "${essid}" == "GTother" ]; then |
| name = PEAP with AES/MSCHAPV2 | |
| author = Douglass | |
| version = 1 | |
| require identity *Username password *Password | |
| optional ca_cert *Path_to_CA_Cert | |
| ----- | |
| ctrl_interface=/var/run/wpa_supplicant | |
| network={ | |
| ssid="$_ESSID" | |
| proto=RSN |
| CONNECTION='wireless' | |
| DESCRIPTION='' | |
| INTERFACE='wlp3s0' | |
| SECURITY='wpa-configsection' | |
| IP='dhcp' | |
| CONFIGSECTION=' | |
| ssid="GTwifi" | |
| key_mgmt=WPA-EAP | |
| proto=RSN | |
| eap=PEAP |
| 1.9.3p362 :001 > h = {} | |
| => {} | |
| 1.9.3p362 :002 > h[:h] = h | |
| => {:h=>{...}} | |
| 1.9.3p362 :003 > h | |
| => {:h=>{...}} | |
| 1.9.3p362 :004 > h[:h] | |
| => {:h=>{...}} | |
| 1.9.3p362 :005 > h[:h][:h] | |
| => {:h=>{...}} |
| def parse_csv | |
| csv = CSV.parse(STDIN.read) | |
| columns = csv[0].map(&:to_sym) | |
| csv.delete_at(0) | |
| csv.map do |row| | |
| Hash[columns.zip(row)] | |
| end | |
| end |