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
<?php | |
require_once('php-github-api/lib/phpGitHubApi.php'); | |
$github = new phpGitHubApi(); | |
$repositories = array( | |
array('jquery', 'jquery'), | |
array('madrobby', 'scriptaculous'), | |
array('jashkenas', 'coffee-script'), |
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
<?php | |
require_once('php-github-api/lib/phpGitHubApi.php'); | |
$github = new phpGitHubApi(); | |
$repositories = array( | |
array('jquery', 'jquery'), array('madrobby', 'scriptaculous'), | |
array('jashkenas', 'coffee-script'), array('yui', 'yui3'), | |
array('sstephenson', 'prototype'), array('mootools', 'mootools-core') |
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
startup_message off | |
defscrollback 4096 | |
# turn sending of screen messages to hardstatus off | |
hardstatus off | |
hardstatus alwayslastline "%{= kW}%-w%{=b bW}%n %t%{-}%+w %= %c:%s" | |
bce on | |
# set these terminals up to be 'optimal' instead of vt100 | |
termcapinfo xterm*|linux*|rxvt*|Eterm* OP |
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
# -*- c--oding: ko_KR.UTF-8 -*- | |
# remote PHP debugger : remote debugger interface to DBGp protocol | |
# | |
# Copyright (c) 2003-2006 ActiveState Software Inc. | |
# | |
# The MIT License | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining | |
# a copy of this software and associated documentation files | |
# (the "Software"), to deal in the Software without restriction, |
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
<?php | |
$fcmd = fopen('/dev/ttyUSB0', 'w'); | |
$fp = fopen('/dev/ttyUSB0', 'r'); | |
if ($fp === false || $fcmd === false) { | |
throw new Exception("Failed to open modem device"); | |
} | |
$levels = array(); |
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
--- /tmp/eB8iAd_AmenityType.java 2015-02-02 00:49:26.055866038 +0600 | |
+++ OsmAnd-java/src/net/osmand/data/AmenityType.java 2015-01-15 22:40:04.441862245 +0600 | |
@@ -46,10 +46,11 @@ | |
public static AmenityType NATURAL = reg("natural", "natural"); // [TAG] natural places, peaks, caves, trees,... //$NON-NLS-1$ //$NON-NLS-2$ | |
public static AmenityType LANDUSE = reg("landuse", "landuse"); // [TAG] landuse //$NON-NLS-1$ //$NON-NLS-2$ | |
public static AmenityType MILITARY = reg("military", "military"); // [TAG] military //$NON-NLS-1$ //$NON-NLS-2$ | |
public static AmenityType OSMWIKI = reg("osmwiki", "osmwiki"); //$NON-NLS-1$ | |
+ public static AmenityType WIKIVOYAGE = reg("wikivoyage", "wikivoyage"); //$NON-NLS-1$ | |
public static AmenityType USER_DEFINED = reg("user_defined", "user_defined"); //$NON-NLS-1$ |