tf changeset changesetNumber /noprompt > "path\to\file.txt"
npx -p @angular/cli ng new hello-world-project | |
then locally can run | |
npx ng g c hello-world-component | |
code --list-extensions | xargs -L 1 echo code --install-extension > vscode-extensions.txt |
function main { | |
Update-Windows-Configuration | |
Install-Utils | |
Install-Browsers | |
Install-Fonts |
apm list --installed --bare > package-list.txt to create your package list and then apm install --packages-file package-list.txt to install them.
Found here: Installed packages list into single file
Files in this gist
- atom-packages-list.txt: list of my Atom Packages
Some of the sql queries I used at some point :)
Files in this gist
- SQLHeaderCommentFormat: Format for the header of the queries
- SelectRowWhenOtherRowDontExist.sql: Select the row that fulfill the condition, if that row does not exist or there is no row fulfilling that condition, chose another one
tu### Download from a list of files url usin Youtube-dl
choco install -y youtube-dl
choco install -y aria2
choco install -y ffmpeg
youtube-dl -v -i -c --add-metadata --write-info-json --write-all-thumbnails --embed-thumbnail -o "%(title)s.%(ext)s" --external-downloader aria2c --external-downloader-args "-x 16 -s 16" --download-archive _downloaded.txt -a {\\path\to\list.txt} --config-location PATH
These are my first BoxStarter scripts, awesome way to have your pc up and running really fast.
Visual Studio project folders contains a lot of files that it generates each time you compile your project, so you don't need them when zipping the folder, what about if we could use .gitignore?
There are ways to do this :) lets check them down
Here is the link to 7zip if not installed
I found myself a lot of time searching how to do some specific thing in windows, I found the forum with the answer, and a few month later I just fogot it, and have to search again, so I decided to put all this helpful windows scripts in a gist for a quick reference :)
Files in this gist