Ref: https://gist.github.com/vertexclique/9839383
| VERSION | PLATFORM | OFFSET | ORIGINAL | CRACKED |
|---|---|---|---|---|
| 3143 | macOS | 0x65D4 | 55 | C3 |
| 3143 | macOS | 0x6219 | 55 | C3 |
| 3143 | macOS | 0x75214 | 55 48 89 E5 41 57 41 56 | 48 C7 C0 01 00 00 00 C3 |
Ref: https://gist.github.com/vertexclique/9839383
| VERSION | PLATFORM | OFFSET | ORIGINAL | CRACKED |
|---|---|---|---|---|
| 3143 | macOS | 0x65D4 | 55 | C3 |
| 3143 | macOS | 0x6219 | 55 | C3 |
| 3143 | macOS | 0x75214 | 55 48 89 E5 41 57 41 56 | 48 C7 C0 01 00 00 00 C3 |
| Name: Flash | |
| Serial: eNrzzU/OLi0odswsqnHLSSzOqDGoca7JKCkpsNLXLy8v1ytJTczVLUotKNFLzs8FAJHYETc= | |
| if anyone wants to thank ETH: 0x527c2aB55b744D6167dc981576318af96ed26676 | |
| Thank you! |
| Basically, notes for myself. | |
| This is a step by step guide that I use to get a postgresql database | |
| set up for a new django website. | |
| Postgresql has a user, postgres, that is used for certain config aspects: | |
| If you're on a new machine without a database cluster setup start with | |
| As root: | |
| # pacman -Syu |
Medium uses a strict subset of LESS for style generation. This subset includes variables and mixins, but nothing else (no nesting, etc.).
Medium's naming conventions are adapted from the work being done in the SUIT CSS framework. Which is to say, it relies on structured class names and meaningful hyphens (i.e., not using hyphens merely to separate words). This is to help work around the current limits of applying CSS to the DOM (i.e., the lack of style encapsulation) and to better communicate the relationships between classes.
Table of contents
| /* | |
| If you have a horizontal (or vertical) scroll container and want to set the scroll to center a specific | |
| element in the container you can use the following super simple technique. | |
| I'm going to show you how it was derived, because it's important to know why, not just how. | |
| */ | |
| /* | |
| Setup: | |
| [HTML] | |
| <div class="outer"> |
| # Path to Oh My Fish install. | |
| set -q XDG_DATA_HOME | |
| and set -gx OMF_PATH "$XDG_DATA_HOME/omf" | |
| or set -gx OMF_PATH "$HOME/.local/share/omf" | |
| # Load Oh My Fish configuration. | |
| source $OMF_PATH/init.fish | |
| # Administration | |
| alias ll="ls -aFl" |
| { | |
| // -------------------------------------------------------------------- | |
| // JSHint Configuration, Strict Edition | |
| // -------------------------------------------------------------------- | |
| // == Enforcing Options =============================================== | |
| // | |
| // These options tell JSHint to be more strict towards your code. Use | |
| // them if you want to allow only a safe subset of JavaScript, very |
$ apt-get install -y \
autoconf automake curl libcurl3-openssl-dev build-essential libxslt1-dev \
re2c libxml2 libxml2-dev bison libbz2-dev libreadline-dev \
libfreetype6 libfreetype6-dev libpng12-0 libpng12-dev libjpeg-dev libjpeg8-dev \
libjpeg8 libgd-dev libgd3 libxpm4 libltdl7 libltdl-dev \| // How to use: | |
| // 1. Open "Script Editor" (requires OS X 10.10 Yosemite) | |
| // 2. Change the language from "AppleScript" to "JavaScript" | |
| // 3. Paste the code below and replace the safari example. | |
| // | |
| // More info: | |
| // https://developer.apple.com/library/mac/releasenotes/InterapplicationCommunication/RN-JavaScriptForAutomation/index.html | |
| var sys_events = Application("System Events"); |