- Run Automator
- Select Service as the new document type
- Find Run AppleScript from the Library and drag into the workflow
- Copy the script code into the Run AppleScript action
- Save as Merge Folders
This file contains hidden or 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
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; |
This file contains hidden or 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
/** | |
* | |
* Poor mans polymorphism | |
* | |
* c0der78 (www.arg3.com) | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> |
This file contains hidden or 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
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' |
This file contains hidden or 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
/** | |
* 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; |
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:
This file contains hidden or 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
#!/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: |
This file contains hidden or 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
-- Author: Ryan Jennings <[email protected]> | |
-- 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) |
This file contains hidden or 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
# ~/.android/avd/<name>.avd/config.ini | |
hw.lcd.density=320 |
This file contains hidden or 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
#!/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" |
OlderNewer