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
# 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
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
# 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>title</title> | |
<link rel="stylesheet" href="style.css"> | |
<script src="script.js"></script> | |
</head> | |
<body> | |
<!-- page content --> |
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
### | |
# numpy | |
### | |
# convert variable to other data type | |
x.astype(np.float32) |
https://conda.io/docs/index.html
conda create --name my_environment python=3
activate my_environment
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/zsh | |
if (( !($# == 3) )) | |
then | |
echo "Usage:" | |
echo $0 "<ffmpeg preset> <output file base name> <seconds per day>" | |
exit 1 | |
fi | |
""" |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
def main(): | |
print('Hello world!') | |
if __name__ == '__main__': | |
main() |