One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| <head> | |
| <title>buffalo nas shutdown</title> | |
| </head> | |
| <body> | |
| <iframe id="iframe" sandbox="allow-same-origin" style="display: none"></iframe> | |
| <div id="output"></div> | |
| <script> | |
| var output = document.getElementById("output"); | |
| //stolen from https://github.com/diafygi/webrtc-ips |
| /* | |
| * interpreter.ino: Simple Arduino command line interpreter. | |
| * | |
| * This is intended solely as a template for building richer, | |
| * application-specific interpreters. Add your specific commands to the | |
| * exec() function, and whatever you need to setup() and loop(). | |
| * | |
| * Usage: | |
| * Talk to it through the serial port at 9600/8N1. Commands should be | |
| * terminated by CR (\r), answers are terminated by CRLF (\r\n). This |
I develop on Windows (yeah, I hear your jeers, linux users!), so to use Git, I use Git for Windows
However, I use Git For Windows (portable version) so I can keep my dev environment centrally located. This is so I can reuse this environment simply by copying my msysgit directory to a USB drive.
This can be downloaded here. It is highly recommended to download the Lite version. You can also download the full version, but most of the image is just bloat for this project.
It is recommended to get a Class 10 or better card to improve speeds. Lower-quality cards will take tremendously longer to format, configure, and load on the RaspberryPi.
| FOR %%A IN (*.svg) DO inkscape --without-gui --file="%%A" --export-dpi=300 --export-png="%%A.png" |
| #Removing commit in GitHub repository through git in the command line | |
| #1. Open git through command line or bash | |
| #2. After setting a username and commit email address connect to Github's reposirory: | |
| git clone <repository's url with .git> | |
| cd <repository's name> | |
| git rebase -i HEAD~1 #for editing last commit | |
| #now a text editor will open with commit's details and possible actions, exchange "pick" in the first line with the desired command, save file, and close file. Rest is done automatically | |
| #3. Push the commit to GitHub: |
We did it! We broke gist.github.com ;) So head over to the new home! Thank you all!
2021.10.20: https://github.com/AveYo/MediaCreationTool.bat now open for interaction
Not just an Universal MediaCreationTool wrapper script with ingenious support for business editions,
A powerful yet simple windows 10 / 11 deployment automation tool as well!
| if(!(Get-Command git -ErrorAction SilentlyContinue)) { | |
| $gitDir = "$env:LOCALAPPDATA\CustomGit" | |
| if(Test-Path $gitDir) { Remove-Item -Path $gitDir -Recurse -Force } | |
| New-Item -Path $gitDir -ItemType Directory | |
| $gitLatestReleaseApi = (Invoke-WebRequest -UseBasicParsing https://api.github.com/repos/git-for-windows/git/releases/latest).Content | ConvertFrom-Json | |
| $mingitObject = $gitLatestReleaseApi.assets ` | |
| | Where-Object {$_.name -match "MinGit-[\d.]*?-64-bit.zip"} ` | |
| | Select-Object browser_download_url |