Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
--- src/main.c~ 2012-10-23 12:35:34.000000000 +0900 | |
+++ src/main.c 2012-12-04 18:42:25.000000000 +0900 | |
@@ -2315,6 +2315,7 @@ | |
mch_errmsg("\"\n"); | |
mch_exit(2); | |
} | |
+ setvbuf(scriptout, NULL, _IONBF, 0); | |
break; | |
#ifdef FEAT_GUI_W32 |
-
download the source data
wget http://fred.dev.openstreetmap.org/density/tiles.13 wget http://fred.dev.openstreetmap.org/density/tiles.16
-
convert to simple, gnuplot-readable text format
sed 's/\([0-9]*\) z=\([0-9]*\) x=\([0-9]*\) y=\([0-9]*\)/\3 \4 \1/' < tiles.13 > tiles.13.txt sed 's/\([0-9]*\) z=\([0-9]*\) x=\([0-9]*\) y=\([0-9]*\)/\3 \4 \1/' < tiles.16 > tiles.16.txt
List of features that are supported by Opera 12 but not by Opera 15 due to the switch to Blink/Chromium:
fixed as of August 19, 2013xhr.responseType = 'json'
Link
HTTP headerLink
HTTP header for stylesheets specifically- Pressing
Enter
when an element withtabindex
has focus should trigger a click - Fragment identifiers in
data:
URIs should be handled correctly - CSS gradients with transparency
- Accurate SVG rendering
- [`` where
foo.svg
is an SVG file that contains text looks terrible](https://code.google.com/p/chromium/issues/detail?id=33
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
# Copyright 2013AD Gallus Absurd | |
def unfalse_poem(): | |
None is not True or False | |
for subject in [complex(True,False)]: | |
subject is not object | |
for certainty in [complex(False,True)]: | |
certainty is not Exception | |
certainty is not license |
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
Warning: array_key_exists() expects parameter 2 to be array, null given in /var/www/magento/app/code/core/Mage/Captcha/Model/Observer.php on line 69 | |
#0 [internal function]: mageCoreErrorHandler(2, 'array_key_exist...', '/var/www/magent...', 69, Array) | |
#1 /var/www/magento/app/code/core/Mage/Captcha/Model/Observer.php(69): array_key_exists('username', NULL) | |
#2 /var/www/magento/app/code/core/Mage/Core/Model/App.php(1338): Mage_Captcha_Model_Observer->checkUserLogin(Object(Varien_Event_Observer)) | |
#3 /var/www/magento/app/code/core/Mage/Core/Model/App.php(1317): Mage_Core_Model_App->_callObserverMethod(Object(Mage_Captcha_Model_Observer), 'checkUserLogin', Object(Varien_Event_Observer)) | |
#4 /var/www/magento/app/Mage.php(447): Mage_Core_Model_App->dispatchEvent('controller_acti...', Array) | |
#5 /var/www/magento/app/code/core/Mage/Core/Controller/Varien/Action.php(532): Mage::dispatchEvent('controller_acti...', Array) | |
#6 /var/www/magento/app/code/core/Mage/Core/Controller/Front/Action.php(64): Mage_Core_Controller_Var |
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 'csv' | |
#Parse the CSV that Twilio provides https://www.twilio.com/resources/rates/international-rates.csv | |
numbers = [] | |
CSV.foreach('international-rates.csv', :headers => true) do |row| | |
starts = row[2].split(",") | |
starts.each do |p| | |
numbers.push([p.strip, p.strip.length, row[1], row[0]]) | |
end | |
end |
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
# The blog post that started it all: https://neocities.org/blog/the-fcc-is-now-rate-limited | |
# | |
# Current known FCC address ranges: | |
# https://news.ycombinator.com/item?id=7716915 | |
# | |
# Confirm/locate FCC IP ranges with this: http://whois.arin.net/rest/net/NET-165-135-0-0-1/pft | |
# | |
# In your nginx.conf: | |
location / { |
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
This diff is a modified version of a diff written by Arnis Lapsa. | |
[ The original can be found here: https://gist.github.com/ArnisL/6156593 ] | |
This diff adds support to tmux for 24-bit color CSI SRG sequences. This | |
allows terminal based programs that take advantage of it (e.g., vim or | |
emacs with https://gist.github.com/choppsv1/73d51cedd3e8ec72e1c1 patch) | |
to display 16 million colors while running in tmux. | |
The primary change I made was to support ":" as a delimeter as well |
OlderNewer