Skip to content

Instantly share code, notes, and snippets.

View danilodequeiroz's full-sized avatar
🍅
piccolo pomodoro

Danilo de Queiroz danilodequeiroz

🍅
piccolo pomodoro
View GitHub Profile
@danilodequeiroz
danilodequeiroz / 0_reuse_code.js
Last active August 29, 2015 14:16
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@danilodequeiroz
danilodequeiroz / 10-Bit H.264
Created September 3, 2017 14:37
10-Bit H.264 explanation
10-Bit H.264
For all those who haven’t heard of it already, here’s a quick rundown about the
newest trend in making our encodes unplayable on even more systems: So-called
high-bit-depth H.264. So, why another format, and what makes this stuff
different from what you know already?
First off: What is bit depth?
In short, bit depth is the level of precision that’s available for storing color
information. The encodes you’re used to have a precision of 8 bits (256 levels)
@danilodequeiroz
danilodequeiroz / .bash_profile
Created September 6, 2019 09:52
open "~/.bash_profile" with some text editor and add the following lines, then source with ". ~/.bash_profile" or "source ~/.bash_profile"
export ANDROID_HOME=/Users/{{your_macos_user_name}}/Library/Android
export ANDROID_SDK_ROOT=/Users/{{your_macos_user_name}}/Library/Android/sdk
export ANDROID_AVD_HOME=/Users/{{your_macos_user_name}}/.android/avd
export PATH="$ANDROID_SDK_ROOT/platform-tools:$PATH"
@danilodequeiroz
danilodequeiroz / zuhixywan.md
Created July 8, 2017 21:23 — forked from anonymous/zuhixywan.md
xp sp3 msdn download

xp sp3 msdn download

4/24/2008 · We are happy to announce that Windows® XP Service Pack 3 (SP3) is now available for download for subscribers on MSDN and Technet. You will find the. 9/2/2008 · Free Download Windows XP Service Pack 3 Build 5512 FINAL - Microsoft periodically combines updates, fixes, and other improvements into a single pack... 10/19/2009 · Windows XP Mode for Windows 7 makes it easy to install and run many of your productivity programs that run on Windows XP directly from a computer that … 5/15/2017 · Security Update for Windows XP SP3. Windows XP Service Pack 3 Install Instructions. To start the download, click the. Video embe
@danilodequeiroz
danilodequeiroz / gist:25f02bc2b7634094b968f0db5981dd32
Last active August 11, 2023 05:11
update all al commit's email and username from gitlog to specific user
git filter-branch -f --env-filter "GIT_AUTHOR_NAME='newusename'; GIT_AUTHOR_EMAIL='someuser@email.com'; GIT_COMMITTER_NAME='newusename'; GIT_COMMITTER_EMAIL='someuser@email.com';" HEAD