This file contains 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
/** | |
* @fileOverview | |
* This file is a GreaseMonkey user script containing various Twitter hacks. | |
* | |
* Changelog | |
* --------- | |
* Version 1.0 (2009-11-07): | |
* - adds "Following you" to users in following/followers pages | |
* | |
* @author <a href="http://twitter.com/robinsk">Robin Skoglund</a> |
This file contains 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
#!/bin/sh | |
gconftool-2 -t string -s /desktop/gnome/url-handlers/spotify/command "env WINEPREFIX=\"$HOME/.wine\" wine \"C:\Program Files\Spotify\spotify.exe\" /uri %s" | |
gconftool-2 -t bool -s /desktop/gnome/url-handlers/spotify/needs_terminal false | |
gconftool-2 -t bool -s /desktop/gnome/url-handlers/spotify/enabled true |
This file contains 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
<buffer_manifest> | |
<refresh_intervals default="20"> | |
</refresh_intervals> | |
<files> | |
<file> | |
<url>http://www.nrk.no/moreogromsdal/siste.rss</url> | |
<localFileName>83f7dfe2-74f0-40d2-8e61-587f74eef9be.xml</localFileName> | |
<lastAccess>633942234345690000</lastAccess> | |
</file> | |
<file> |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<s:WindowedApplication | |
xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:s="library://ns.adobe.com/flex/spark" | |
xmlns:mx="library://ns.adobe.com/flex/halo" | |
applicationComplete="appComplete()" | |
width="640" | |
height="480"> | |
<fx:Script> | |
<![CDATA[ |
This file contains 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
<dependency> | |
<groupId>org.apache.activemq</groupId> | |
<artifactId>activemq-core</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.camel</groupId> | |
<artifactId>camel-core</artifactId> | |
</dependency> | |
<dependency> |
This file contains 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
$services = [ | |
foo, | |
bar, | |
baz, | |
bat | |
] |
This file contains 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
<plugin> | |
<groupId>org.fusesource.scalate</groupId> | |
<artifactId>maven-scalate-plugin_${scala.version}</artifactId> | |
<executions> | |
<execution> | |
<goals> | |
<goal>precompile</goal> | |
</goals> | |
</execution> |
This file contains 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
<%@ val it: no.ok.prk.adm.brukerinfo.Bruker %> | |
<tr onclick="location = '<%= uri("/bruker/" + it.brukernavn) %>'"> | |
<td><a href="<%= uri("/bruker/" + it.brukernavn) %>"><%= it.brukernavn %></a></td> | |
<td><%= it.fornavn %> <%= it.etternavn %></td> | |
<td><%= it.epost %></td> | |
<td><%= it.brukertypeFormatert %></td> | |
<td><%= it.organisasjonNavn %></td> | |
</tr> |
This file contains 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
# mapping... something to something | |
"\e1": "©" | |
"\e2": "@" | |
"\e3": "£" | |
"\e4": "$" | |
"\e5": "â" | |
"\e6": "§" | |
"\e7": "|" | |
"\e8": "[" | |
"\e9": "]" |
This file contains 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
[ | |
{ | |
"id": 1, | |
"name": "Item number 1" | |
}, | |
{ | |
"id": 2, | |
"name": "A second item" | |
} | |
] |
OlderNewer