Skip to content

Instantly share code, notes, and snippets.

#! /bin/bash
IFS="
"
echo
for FRAME in \
" B :^)" \
" B :^)" \
" B :^)" \
" B :^)" \
final ImageView image = (ImageView) findViewById(R.id.imageview_to_animate);
Animation rotate = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.rotate_picture);
image.startAnimation(rotate);
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="true" android:ordering="sequentially">
<rotate
android:fromDegrees="0"
android:toDegrees="30"
android:duration="500"
android:pivotX="50%"
android:pivotY="50%">
</rotate>
@phyous
phyous / Build.scala
Last active December 19, 2015 17:29
How to schedule background tasks in Play with Akka. Example below sends an email every 5 seconds
import sbt._
import Keys._
import play.Project._
object ApplicationBuild extends Build {
val appName = "chain-mail"
val appVersion = "1.0-SNAPSHOT"
val appDependencies = Seq(
@phyous
phyous / outer_join_list.rb
Created July 12, 2013 00:44
Remove names from file1 contained in file2
#!/usr/bin/env ruby
# remove names from file1 contained in file2
unique_entries = File.readlines(ARGV[0]) - File.readlines(ARGV[1])
unique_entries.each{|l| puts l}
package com.phyous.leap
import java.io.IOException
import java.lang.Math
import com.leapmotion.leap._
import com.leapmotion.leap.Gesture.State
class SampleListener extends Listener {
override def onInit(controller: Controller) {
package com.phyous.leap
import java.io.IOException
import com.leapmotion.leap._
object App {
def main(args: Array[String]) {
val listener = new SampleListener
val controller = new Controller
% echo "{\"array\":[1,2,3],\"boolean\":true}" | json
{
"array": [
1,
2,
3
],
"boolean": true
}
# 1- Make sure you have node installed
brew install node
# 2- install prettyjson as a global package
sudo npm install -g prettyjson
@phyous
phyous / install_simple_pretty_print.sh
Last active June 29, 2017 12:12
A script to enable simple pretty printing of json data.
# Add alias to bash shell
echo "alias json='python -mjson.tool'" >> ~/.bashrc
# Add alias for zsh shell
echo "alias json='python -mjson.tool'" >> ~/.zshrc