Made possible with this reddit post.
wine regedit wine-breeze-dark.reg
wine regedit wine-reset-theme.reg
Made possible with this reddit post.
wine regedit wine-breeze-dark.reg
wine regedit wine-reset-theme.reg
| // Include this at the very top of both your main and window processes, so that | |
| // it loads as soon as possible. | |
| // | |
| // Why does this work? The node.js module system calls fs.realpathSync a _lot_ | |
| // to load stuff, which in turn, has to call fs.lstatSync a _lot_. While you | |
| // generally can't cache stat() results because they change behind your back | |
| // (i.e. another program opens a file, then you stat it, the stats change), | |
| // caching it for a very short period of time is :ok: :gem:. These effects are | |
| // especially apparent on Windows, where stat() is far more expensive - stat() | |
| // calls often take more time in the perf graph than actually evaluating the |
| // http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit | |
| // form_submit('/contact/', {name: 'Johnny Bravo'}); | |
| function form_submit(path, params, method) { | |
| method = method || "post"; // Set method to post by default if not specified. | |
| // The rest of this code assumes you are not using a library. | |
| // It can be made less wordy if you use one. | |
| var form = document.createElement("form"); | |
| form.setAttribute("method", method); | |
| form.setAttribute("action", path); |
Visit Gist and see 'raw' link, It's including SHA-1 long hash name like this.
https://gist.github.com/raw/2370972/47150711fedb7375d19d761ab122485b8105678d/gist-raw-perm-HEAD.user.js
| <RelativeLayout | |
| xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| android:padding="16dp"> | |
| <TextView | |
| android:text="I’m in this corner" | |
| android:layout_height="wrap_content" | |
| android:layout_width="wrap_content" |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- | |
| Copyright (C) 2014 Leo Iannacone <info@leoiannacone.com> | |
| This file was generated from a textmate theme named Monokai Extended | |
| with tm2gtksw2 tool. (Alexandre da Silva) | |
| This library is free software; you can redistribute it and/or | |
| modify it under the terms of the GNU Library General Public | |
| License as published by the Free Software Foundation; either |
| git branch -m old_branch new_branch # Rename branch locally | |
| git push origin :old_branch # Delete the old branch | |
| git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| #InstallKeybdHook | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| ; OPTIONAL: For those who use Home/End more than PgUp/PgDown, this flips their use with the Fn key. | |
| ; If you want the buttons to function as they are, add a semicolon (;) to the beginning of each line below. | |
| Home::PgUp | |
| End::PgDn | |
| PgUp::Home |