furiousengineerbeard-blog
furiousengineerbeard-blog
The Cheat Sheet
11 posts
Don't wanna be here? Send us removal request.
furiousengineerbeard-blog · 6 years ago
Text
create macOS UUID
uuidgen | pbcopy
0 notes
furiousengineerbeard-blog · 6 years ago
Text
macOS USBPcap Wireshark
Sudo ifconfig XHC20 up
via https://aud-ios.com/2017/10/22/usb-monitoring-with-wireshark/
0 notes
furiousengineerbeard-blog · 8 years ago
Text
Repair SVN Checksum in Working Copy
With TortoiseSVN on Windows.
Open the Repo-Browser by right-clicking on the file's parent folder and selecting TortoiseSVN > Repo-Browser
In the repo-browser, right-click on your file, Select Update item to Revision
In the Drop-Down menu Update Depth, select Exclude, click OK. This removes the checksum entry from your local repository database.
Delete the file in the Explorer (trashbin), update your repository
Go back to "Update item to Revision", for Update Depth select Working Copy
Update your repository again
Everything should be back to normal.
0 notes
furiousengineerbeard-blog · 8 years ago
Link
0 notes
furiousengineerbeard-blog · 8 years ago
Text
It’s the process, stupid!
always!
0 notes
furiousengineerbeard-blog · 9 years ago
Text
macOS SDK location
xcrun --show-sdk-path
0 notes
furiousengineerbeard-blog · 10 years ago
Link
0 notes
furiousengineerbeard-blog · 10 years ago
Text
The big Players
http://www.inmusicbrands.com/
http://loudtechinc.com/
http://www.music-group.com/
0 notes
furiousengineerbeard-blog · 10 years ago
Text
Tiled Image Rendering
Image size should be multiple of 4 (e.g. 16x16, 24x24, 40x40, etc.) otherwise a reasonable margin should be applied.
Tumblr media
https://en.wikipedia.org/wiki/Tiled_rendering
0 notes
furiousengineerbeard-blog · 10 years ago
Text
pkg
Packages install to the system, not to home directories. If an application needs to create objects in the user's home directory, it should do so itself when it is first launched, not when it is installed.
0 notes
furiousengineerbeard-blog · 10 years ago
Text
Batch Rename
for i in * do mv -v "$i" "$(echo "$i" | sed -e 's/\(^[0-9]\{2\}\)\./\1_/g')" done
sed explained
Do a substitution / search for 2 digits at the beginning (and remember them) followed by a '.' / substitute with the remembered two digites followed by a '_'
01.my file name 23.ext --> 01_my file name 23.ext
More sed: http://www.grymoire.com/Unix/Sed.html
0 notes