Durszlak jest serwisem agregującym blogi kulinarne.
Jeżeli uważasz, że to brzmi nudnie - masz rację. Dlatego potrzebujemy Ciebie, bo chcemy zrobić dużo więcej.
Wymagania wszyscy mają takie same.
| #!/usr/bin/env python3 | |
| import psutil | |
| import time | |
| def logDebug(msg): | |
| print(time.ctime() + " " + msg) | |
| while True: | |
| count = 0 |
| #Do not run this !!! | |
| #IO operations | |
| alias less='cat' | |
| alias sed='awk' | |
| #administration | |
| alias apt-get='aptitude' | |
| #file editing |
| #!/bin/bash | |
| echo "WEBVTT" | |
| echo "" | |
| sed '/[0-9][0-9]:[0-9][0-9]:[0-9][0-9],[0-9][0-9][0-9] --> [0-9][0-9]:[0-9][0-9]:[0-9][0-9],[0-9][0-9][0-9]/s/,/./g' $1 |
Durszlak jest serwisem agregującym blogi kulinarne.
Jeżeli uważasz, że to brzmi nudnie - masz rację. Dlatego potrzebujemy Ciebie, bo chcemy zrobić dużo więcej.
Wymagania wszyscy mają takie same.
| sub vcl_recv { | |
| # unless sessionid/csrftoken is in the request, don't pass ANY cookies (referral_source, utm, etc) | |
| if (req.request == "GET" && (req.url ~ "^/static" || (req.http.cookie !~ "sessionid" && req.http.cookie !~ "csrftoken"))) { | |
| remove req.http.Cookie; | |
| } | |
| # normalize accept-encoding to account for different browsers | |
| # see: https://www.varnish-cache.org/trac/wiki/VCLExampleNormalizeAcceptEncoding | |
| if (req.http.Accept-Encoding) { | |
| if (req.http.Accept-Encoding ~ "gzip") { |
| # http://notmysock.org/blog/hacks/a-twisted-dns-story.html | |
| # http://blog.inneoin.org/2009/11/i-used-twisted-to-create-dns-server.html | |
| # twistd -y dns.py | |
| import socket | |
| from twisted.internet.protocol import Factory, Protocol | |
| from twisted.internet import reactor | |
| from twisted.names import dns | |
| from twisted.names import client, server |
| easterEgg.BadWorder.list={ | |
| "4r5e":1, | |
| "5h1t":1, | |
| "5hit":1, | |
| a55:1, | |
| anal:1, | |
| anus:1, | |
| ar5e:1, | |
| arrse:1, | |
| arse:1, |
| Anna | |
| Maria | |
| Katarzyna | |
| Małgorzata | |
| Agnieszka | |
| Krystyna | |
| Barbara | |
| Ewa | |
| Elżbieta | |
| Zofia |
| #!/bin/bash | |
| if [ "$1" = "-h" -o "$1" = "--help" -o -z "$1" ]; then cat <<EOF | |
| appify v3.0.1 for Mac OS X - http://mths.be/appify | |
| Creates the simplest possible Mac app from a shell script. | |
| Appify takes a shell script as its first argument: | |
| `basename "$0"` my-script.sh |
| #!/bin/bash | |
| echo "[Gmail]/All Mail" > /tmp/archive_mail_plugin_config | |
| archive_mail_plugin_config=`cat /tmp/archive_mail_plugin_config` | |
| echo \'$archive_mail_plugin_config\' | xargs -0 defaults write com.apple.mail ArchiveMailboxName | |
| rm /tmp/archive_mail_plugin_config |