A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
| #!/bin/bash | |
| set -eu -o pipefail | |
| # ----------------------------------------------------------------------------- | |
| export LANG=en_US.UTF-8 | |
| export BORG_PASSPHRASE='' | |
| MAIN_USER="johndoe" | |
| MAIN_HOMEDIR="$(getent passwd ${MAIN_USER} | cut -f 6 -d ':')" |
| % | |
| % beamerthemeStanford.sty | |
| % | |
| % Created by Zhiming Wang on August 26, 2014. | |
| % | |
| % This theme is inspired by the CambridgeUS theme packaged with the | |
| % Beamer LaTeX package. The major colors are taken from Stanford's | |
| % official palettes: https://identity.stanford.edu/overview/color. | |
| % | |
| % This work is dedicated by the author to the public domain. |
| { | |
| {I have|I've} been {surfing|browsing} online more than {three|3|2|4} hours today, yet I never found any interesting article like yours. {It's|It | |
| is} pretty worth enough for me. {In my opinion|Personally|In my view}, if all {webmasters|site owners|website owners|web owners} and bloggers made good content as | |
| you did, the {internet|net|web} will be {much more|a lot more} | |
| useful than ever before.| | |
| I {couldn't|could not} {resist|refrain from} commenting. {Very well|Perfectly|Well|Exceptionally well} written!| | |
| {I will|I'll} {right away|immediately} {take hold of|grab|clutch|grasp|seize|snatch} | |
| your {rss|rss feed} as I {can not|can't} {in finding|find|to find} your {email|e-mail} subscription {link|hyperlink} or {newsletter|e-newsletter} service. Do {you have|you've} any? | |
| {Please|Kindly} {allow|permit|let} me {realize|recognize|understand|recognise|know} {so that|in order that} I {may just|may|could} subscribe. | |
| Thanks.| |
| <?php | |
| namespace Fuel\Tasks; | |
| class MySQLBackup | |
| { | |
| public static function system_ex($cmd, $stdin = "") | |
| { | |
| $descriptorspec = array( | |
| 0 => array("pipe", "r"), |
| #!/bin/bash | |
| # | |
| # This program is free software. It comes without any warranty, to | |
| # the extent permitted by applicable law. You can redistribute it | |
| # and/or modify it under the terms of the Do What The Fuck You Want | |
| # To Public License, Version 2, as published by Sam Hocevar. See | |
| # http://sam.zoy.org/wtfpl/COPYING for more details. | |
| # | |
| # Version 3, enhanced for Ubuntu 13.X+, Fedora 19+, and similar distros. |
| alias doc='cd ~/Documents' | |
| alias desk='cd ~/Desktop' | |
| alias ren='mv' | |
| alias up='cd ..' | |
| alias ..='cd ..' | |
| alias ...='cd ../..' | |
| alias ls='ls -F' | |
| alias l='ls' |
| #! /usr/bin/python | |
| from sys import argv | |
| from os.path import exists | |
| from os import makedirs | |
| from os import symlink | |
| from os import system | |
| import getopt | |
| # |
Awesome PHP has been relocated permanently to its own Github repository. No further updates will made to this gist.
Please open an issue for any new suggestions.
| <?php | |
| /* | |
| * Lightweight detector of mobile devices, OSs & browsers | |
| * Copyright 2012 Túbal Martín (email: [email protected]) | |
| * License: GPL2 | |
| */ | |
| if ( ! function_exists('mobile_detector') ) | |
| { |