You can use strace on a specific pid to figure out what a specific process is doing, e.g.:
strace -fp <pid>
You might see something like:
select(9, [3 5 8], [], [], {0, 999999}) = 0 (Timeout)
<?xml version="1.0" encoding="utf-8"?> | |
<gpx xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="1.0" creator="Groundspeak, Inc. All Rights Reserved. http://www.groundspeak.com" xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd http://www.groundspeak.com/cache/1/0 http://www.groundspeak.com/cache/1/0/cache.xsd" xmlns="http://www.topografix.com/GPX/1/0"> | |
<name>Cache Listing Generated from Geocaching.com</name> | |
<desc>This is an individual cache generated from Geocaching.com</desc> | |
<author>Account "Gb UK" From Geocaching.com</author> | |
<email>[email protected]</email> | |
<url>http://www.geocaching.com</url> | |
<urlname>Geocaching - High Tech Treasure Hunting</urlname> | |
<time>2010-10-10T22:54:31.1487819Z</time> | |
<keywords>cache, geocache</keywords> |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>com.mycompanyname.mydepartment.mytaskname</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/Users/myuser/Dashboard/mytask.sh</string> | |
</array> |
As configured in my dotfiles.
start new:
tmux
start new with session name:
Sometimes you want to have a subdirectory on the master
branch be the root directory of a repository’s gh-pages
branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master
branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist
.
Remove the dist
directory from the project’s .gitignore
file (it’s ignored by default by Yeoman).
#!/usr/bin/env python | |
# Clone or update all a user's gists | |
# curl -ks https://raw.github.com/gist/5466075/gist-backup.py | USER=fedir python | |
# USER=fedir python gist-backup.py | |
import json | |
import urllib | |
from subprocess import call | |
from urllib import urlopen | |
import os |
package java8tests ; | |
import java.util.function.BiFunction ; | |
import java.util.function.Function ; | |
public class Currying { | |
public void currying() { | |
// Create a function that adds 2 integers | |
BiFunction<Integer,Integer,Integer> adder = ( a, b ) -> a + b ; |
#!/usr/bin/env python | |
""" | |
This script parses a geocaching.loc file and produces GPX files suitable | |
for loading into a GPS unit. | |
Usage: | |
$ ./loc2gpx geocaching.log | |