Question to pythonistas out there: Is it acceptable to reduce indentation by doing:
if blah:
# do stuff
return
# do lots of other stuffinstead of:
Question to pythonistas out there: Is it acceptable to reduce indentation by doing:
if blah:
# do stuff
return
# do lots of other stuffinstead of:
| from __future__ import division, print_function # Python 3 backwards compatible (and I'm lazy/hacky) | |
| outcomes = 0 | |
| # zip mult sum | |
| # returns [a[0] * amult + b[0] * bmult, a[1] * amult + b[1] * bmult, ...] | |
| def zms(a, b, amult=1, bmult=1): | |
| return list(map(lambda x, y: x * amult + y * bmult, a, b)) | |
| # cache decorator | |
| def cache(f): |
Stats overview:
| Attack | Health | Chance |
|---|---|---|
| 9 | 8 | 16.6667% |
| 6 | 6 | 16.6667% |
| 12 | 10 | 15.8333% |
| 15 | 12 | 13.0556% |
| 18 | 14 | 10.2976% |
| 18 | 13 | 8.9116% |
| // ==UserScript== | |
| // @name osu! HTML5 audio playback | |
| // @namespace http://your.homepage/ | |
| // @version 0.1 | |
| // @description Replaces the osu! Flash audio preview with an HTML5 one. | |
| // @author mcpower | |
| // @match https://osu.ppy.sh/p/beatmaplist* | |
| // @match https://osu.ppy.sh/s/* | |
| // @match https://osu.ppy.sh/b/* | |
| // @grant none |
| L = [int(x) for x in "1307 2716 3449 2758 4597 5191 1465 2259 2829 3004".split()] | |
| N = 20000 | |
| array = [[]] + [None for i in range(N-1)] | |
| minimum, route = float("inf"), None | |
| for num in L: | |
| todo = [] | |
| for index in range(N): |
| #Hotstring EndChars : | |
| #Hotstring O ? | |
| :::+1::👍 | |
| :::-1::👎 | |
| :::100::💯 | |
| :::1234::🔢 | |
| :::8ball::🎱 | |
| :::a::🅰️ | |
| :::ab::🆎 | |
| :::abc::🔤 |
| // ==UserScript== | |
| // @name osugame_func+ | |
| // @namespace /r/osugame | |
| // @author /u/N3G4 | |
| // @description Adds osu! related functionality to /r/osugame | |
| // @include *reddit.com/r/osugame* | |
| // @version 1.2.2 | |
| // @run-at document-end | |
| // @grant GM_xmlhttpRequest | |
| // ==/UserScript== |
| Add-AppxPackage -DisableDevelopmentMode "$env:windir\systemapps\ContactSupport_cw5n1h2txyewy\appxmanifest.xml" -Register | |
| Add-AppxPackage -DisableDevelopmentMode "$env:windir\systemapps\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy\appxmanifest.xml" -Register | |
| Add-AppxPackage -DisableDevelopmentMode "$env:windir\systemapps\Microsoft.AccountsControl_cw5n1h2txyewy\appxmanifest.xml" -Register | |
| Add-AppxPackage -DisableDevelopmentMode "$env:windir\systemapps\Microsoft.BioEnrollment_cw5n1h2txyewy\appxmanifest.xml" -Register | |
| Add-AppxPackage -DisableDevelopmentMode "$env:windir\systemapps\Microsoft.LockApp_cw5n1h2txyewy\appxmanifest.xml" -Register | |
| Add-AppxPackage -DisableDevelopmentMode "$env:windir\systemapps\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\appxmanifest.xml" -Register | |
| Add-AppxPackage -DisableDevelopmentMode "$env:windir\systemapps\Microsoft.PPIProjection_cw5n1h2txyewy\appxmanifest.xml" -Register | |
| Add-AppxPackage -DisableDevelopmentMode "$env:windir\systemapps\Microsoft.Windows.AppRep.ChxApp_cw5n1h2txyewy\appxmanifest.x |
| diff -ur old/extractwifi.c new/extractwifi.c | |
| --- old/extractwifi.c 2016-12-29 23:04:40.000000000 +1100 | |
| +++ new/extractwifi.c 2016-12-30 16:00:29.106186400 +1100 | |
| @@ -51,7 +51,7 @@ | |
| int main(int argc, char** argv) { | |
| if(argc<2) { | |
| printf("Usage:\n"); | |
| - printf("./extractwifi filename\n"); | |
| + printf("./extractwifi filename [offset=b730]\n"); | |
| return -1; |
| // ==UserScript== | |
| // @name Dynasty Preloader | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.3.5.1 | |
| // @description Preloads Dynasty Reader pages. | |
| // @author mcpower | |
| // @match http://dynasty-scans.com/chapters/* | |
| // @grant none | |
| // @license GPLv3 | |
| // ==/UserScript== |