I hereby claim:
- I am ryjen on github.
- I am ryjen (https://keybase.io/ryjen) on keybase.
- I have a public key ASC-db02whCj20wicuamJmdKEi2ZxFdUiW3reqFrXSmopQo
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| import argparse | |
| import json | |
| import logging | |
| import os | |
| import re | |
| import sys | |
| import requests |
| #!/usr/bin/env bash | |
| function clean_dir { | |
| for f in $(find . -mindepth 1 -maxdepth 1 -type d -printf "%P\n"); do | |
| if [ "$f" = "node_modules" ]; then | |
| echo "Removing: ${PWD}/node_modules" | |
| rm -rf "$f" | |
| fi | |
| if [ "$f" = ".git" ]; then | |
| echo "Cleaning git repository: $PWD" |
| # ~/.android/avd/<name>.avd/config.ini | |
| hw.lcd.density=320 |
| -- Author: Ryan Jennings <robert@ryanjennin.gs> | |
| -- Date: Aug 2, 2019 | |
| -- Description: | |
| -- Finds duplicate songs in a selection in itunes | |
| -- Ranked meta data is: | |
| -- 1. song name | |
| -- 2. artist | |
| -- 3. bitrate (ex 320 over 256) | |
| -- 4. duration (ex keep 12:00 as too different from 4:40, but discard 3:50) |
| #!/usr/bin/env perl | |
| # | |
| # Summary: | |
| # Sends a post for facebook with or without a link. | |
| # Requirements: | |
| # Create a couple maker and facebook recipes in IFTTT.com | |
| # 1) text post named 'post_facebook' with value1 as the content | |
| # 2) link post named 'post_link_facebook' with value1 as the link and value2 as the content | |
| # Set a IFTTT_MAKER_KEY environment variable containing your key | |
| # Author: |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * gets [section,item idx in section] for raw list position | |
| * | |
| * @param adapter | |
| * @param position: raw position in {@link com.commonsware.cwac.merge.MergeAdapter} | |
| * @return ArrayList<Integer> | |
| */ | |
| public static Pair<Integer, Integer> getMergeAdapterPos(MergeAdapter adapter, int | |
| position) { | |
| int section = -1; |
| require 'formula' | |
| class Sfml < Formula | |
| homepage 'http://www.sfml-dev.org' | |
| version '2.1' | |
| url 'https://github.com/LaurentGomila/SFML/archive/2.1.zip' | |
| sha1 'ff345985a301bbee350b1193f48f712acc656fc6' | |
| head 'https://github.com/LaurentGomila/SFML/archive/master.zip' |
| /** | |
| * | |
| * Poor mans polymorphism | |
| * | |
| * c0der78 (www.arg3.com) | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <time.h> |
| package com.arg3.java.fortunes; | |
| import java.io.BufferedInputStream; | |
| import java.io.BufferedReader; | |
| import java.io.File; | |
| import java.io.FileInputStream; | |
| import java.io.FileReader; | |
| import java.io.IOException; | |
| import java.io.InputStream; |