I hereby claim:
- I am kuntau on github.
- I am kuntau (https://keybase.io/kuntau) on keybase.
- I have a public key ASB3kc-9o1lh1sXHVKgG9ODzw-N3HfrwQB_r7W-T-dA0Uwo
To claim this, I am signing this object:
| Result: 1 | |
| Items { | |
| TemplateId: "BADGE_BATTLE_ATTACK_WON" | |
| Badge { | |
| BadgeType: BADGE_BATTLE_ATTACK_WON | |
| BadgeRanks: 4 | |
| Targets: "\nd\350\007" | |
| } | |
| } | |
| Items { |
I hereby claim:
To claim this, I am signing this object:
user@user:~$HandBrakeCLI -i /file/input.mp4 -o /file/out.mp4 -E fdk_faac -B 96k -6 stereo -R 44.1 -e x264 -q 27 -x cabac=1:ref=5:analyse=0x133:me=umh:subme=9:chroma-me=1:deadzone-inter=21:deadzone-intra=11:b-adapt=2:rc-lookahead=60:vbv-maxrate=10000:vbv-bufsize=10000:qpmax=69:bframes=5:b-adapt=2:direct=auto:crf-max=51:weightp=2:merange=24:chroma-qp-offset=-1:sync-lookahead=2:psy-rd=1.00,0.15:trellis=2:min-keyint=23:partitions=all
** Don't Re-encode already shitty encodes...get good source!**
| #!/usr/bin/env python | |
| import random | |
| import struct | |
| import sys | |
| # Most of the Fat32 class was cribbed from https://gist.github.com/jonte/4577833 | |
| def ppNum(num): | |
| return "%s (%s)" % (hex(num), num) |
When creating a clean install, using the combination of an SSD system drive and a conventional disk drive, as a data drive, there is a way to "move" the Users folder (normally, C:\Users) and the hidden ProgramData folder (normally C:\ProgramData) to the conventional disk, or data drive, using an answer file, or unattend.xml, for an unattended installation, as mentioned above.
For an individual doing a single, one-off installation, trying to figure out how to create an answer file for a completely unattended installation, just to accomplish this one small task, is way, way too much trouble. It's also not necessary.
It is possible, during the course of a conventional, interactive installation from an installation disc or USB thumbdrive, to enter what is called, "Audit Mode", before the Computer is named or a Username created, and accomplish the necessary re-assignment.
1.) Do a conventional installation. If you are using an SSD, at the point in the installation process where you are asked where you want to
| <?xml version="1.0" encoding="utf-8"?> | |
| <unattend xmlns="urn:schemas-microsoft-com:unattend"> | |
| <settings pass="oobeSystem"> | |
| <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <FolderLocations> | |
| <ProfilesDirectory>d:\Users</ProfilesDirectory> | |
| <ProgramData>d:\ProgramData</ProgramData> | |
| </FolderLocations> | |
| </component> | |
| </settings> |
| :map <space> : |
| <?php | |
| //source http://pastebin.com/W8B3CGiN | |
| namespace Money; | |
| class Bitcoin { | |
| #const BITCOIN_NODE = '173.224.125.222'; // w001.mo.us temporary | |
| const BITCOIN_NODE = '50.97.137.37'; | |
| static private $pending = array(); |
| /* | |
| On Tue, Sep 30, 2008 at 6:52 AM, Austin English <austinenglish at gmail.com> wrote: | |
| > On Mon, Sep 29, 2008 at 3:39 PM, Mark Wagner <carnildo at gmail.com> wrote: | |
| >> What's the best way for an application to detect that it's running under Wine? | |
| >> | |
| >> As part of the installation process, under Windows our program does a | |
| >> full-disk search of all local hard drives, but ignoring network drives | |
| >> and removable media. Under Wine, this doesn't work too well, as | |
| >> there's not a one-to-one mapping between disks and drive letters, and | |
| >> there's usually at least one way to access the entire *nix filesystem. |
| # The other answers are correct, in that chmod -R 755 will set this as permissions to all files and folders in the tree. But why on earth would you want to? It might make sense for the directories, but why set the execute bit on all the files? | |
| # I suspect what you really want to do is set the directories to 755 and either leave the files alone or set them to 644. For this, you can use the find command. For example: | |
| # To change all the directories to 755 (-rwxr-xr-x): | |
| find /opt/lampp/htdocs -type d -exec chmod 755 {} \; | |
| # To change all the files to 644 (-rw-r--r--): |