Name | Remarks |
---|---|
OpenCart | |
Magento Community Edition |
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
# Check if Kaggle has launched a competition today. | |
# | |
# Ported to Python 2 from https://github.com/BraunPhilipp/snippets/blob/master/kaggle.py | |
from urllib2 import urlopen | |
from bs4 import BeautifulSoup | |
import time | |
import random | |
import string | |
import datetime |
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
Redirect 301 / http://www.newdomain.com/ |
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
# Convert a playlist in text format to a cue file | |
# Author: steven2358 | |
# Usage: | |
# 1. Make a playlist file "playlist.txt" using this format: | |
''' | |
Album Artist - Album Name | |
FileName.mp3 | |
MM:SS:mm - Artist1 - Title1 | |
MM:SS:mm - Artist2 - Title2 | |
MM:SS:mm - Artist3 - Title3 |
Web (no QR-scan) | Android | iOS | ||
---|---|---|---|---|
Coinbase.com | yes | yes | yes | varying BTC addresses |
blockchain.info | yes | yes | yes | |
Verso Card | no | yes | yes | Article and Discussion 17$ one-time |
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
function [A_inv, d] = pivinv(A) | |
% PIVINV inversion of a matrix by pivoting method | |
% | |
% Input: A, a square matrix | |
% Outputs: A_inv, the inverse of A; d, the determinant of A | |
% | |
% Reference: Enrique Castillo and Francisco Jubete, "The Gamma-algorithm | |
% and some applications," International Journal of Mathematical Education | |
% in Science and Technology 35, no. 3 (2004): 369-389. | |
% |
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
# Convert a playlist in text format to a cue file | |
# Author: steven2358 | |
# Usage: | |
# 1. Make a playlist file "playlist.txt" using this format: | |
''' | |
Album Artist - Album Name | |
FileName.mp3 | |
MM:SS:mm - Artist1 - Title1 | |
MM:SS:mm - Artist2 - Title2 | |
MM:SS:mm - Artist3 - Title3 |
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
javascript:(function(){ | |
if (document.body.parentNode.style.webkitFilter==='grayscale(1)'){ | |
document.body.parentNode.style.webkitFilter='grayscale(0)' | |
} else { | |
document.body.parentNode.style.webkitFilter='grayscale(1)'; | |
} | |
})(); |
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
% Matlab cheat sheet | |
% Author: Steven Van Vaerenbergh | |
% Last version: https://gist.github.com/steven2358/7578242 | |
%% SYSTEM | |
% seed a random generator | |
seed = 1; | |
rng('default'); |
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
name = Hide language Options | |
description = "Hide the language options on the user edit page." | |
dependencies[] = locale | |
package = User interface | |
version = "6.x-1.0" | |
core = "6.x" | |
project = "hide_language_options" |