Advanced Search
Search Results
258 total results found
terminal: count all files - including in sub folders
find DIR_NAME -type f | wc -l Explanation: -type f to include only files. | redirects find command's standard output to wc command's standard input. wc (short for word count) counts newlines, words and bytes on its input (docs). -l t...
Xcode: Update device support files wo update xcode
Currently I can't update Xcode because it needs a newer OS X version, I don't want to install.To work with newer iOS versions on iPad or iPhone you need new device support files. First have a look here:github.com/filsv/iPhoneOSDeviceSupport Download version...
wget website
Whole page: wget --mirror --convert-links --adjust-extension --page-requisites -e robots=off $WEBSITE wget \ --recursive \ --no-clobber \ --page-requisites \ --html-extension \ --convert-links \ --restrict-file-names=windo...
Infoscreen: start local MySQL on mbax
We've installed your MySQL database without a root password. To secure it run: mysql_secure_installation MySQL is configured to only allow connections from localhost by defaultTo connect run: mysql -uroot mysql@5.7 is keg-only, which means ...
Audio distribution with Raspberry Pi
In diesem Audio-Blog stehen interessante DIY Audiodinge.Hier z.B. Audio over IP via RTP:crazy-audio.com/projects/raspberry-pi-for-audio-distribution/ Interessanterweise führt die Blog-Adresse mit SSL zu HifiBerry:https://www.crazy-audio.com/https://www.hifibe...
mpv configs
Personal configs: ~/.config/mpv/ Personal scripts: ~/.config/mpv/scripts/ Default key commands: ~/.config/mpv/input.conf But can be defined in special lua scripts too.Binary is here: /usr/local/Cellar/mpv/
git log --pretty variants
git log --pretty=format:"%C(yellow)%h %Cblue%>(12)%ad %Cgreen%<(7)%aN%Cred%d %Creset%s" git log --pretty=format:"%C(yellow)%h %Cblue%>(12)%ad %Cgreen%<(7)%aN%Cred%d %Creset%s" --graph --date=short Windows: DOSKEY gll=git log --pretty=format:'%%C(yellow)%%h%...
alias.cmd windows NDR client
stackoverflow.com/questions/20530996/aliases-in-windows-command-promptRegistry (Typ REG_SZ): Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Command Processor] "AutoRun"="H:\\alias.cmd" Edit: vim h:\alias.cmd @echo off :: fi...
terminal / cmd.exe: open current directory
Windows cmd.exe: start . Terminal: open .
git init on server
git init --bare --shared REPO.git
copy local repo to NAS as backup
scp -r /Users/cox/Documents/GitHub/REPO/ nas:/volume1/web/ Copies .git folder too.If .git should not be copied use: scp /Users/cox/Documents/GitHub/REPO/*.* nas:/volume1/web/REPO/
git: show all remotes
git remote -v shows: origin https://github.com/SimpelMe/Braille.git (fetch) origin ssh://nas/volume1/git/braille.git (push) origin https://github.com/SimpelMe/Braille.git (push) or more verbose: git remote show origin shows: ...
git error nas: unable to create temporary object directory
Problem can occur if git init is made as root. Then git folder will have wrong group: error: Entpacken auf der Gegenseite fehlgeschlagen: unable to create temporary object directory error: Fehler beim Versenden einiger Referenzen nach 'ssh://nas/volume1/...
successful git branching model
Blog:nvie.com/posts/a-successful-git-branching-modelModel as PDF:nvie.com/files/Git-branching-model.pdf
git: pushing to multiple repos
You can push to more then one instance but fetch/pull only from one. Main repo will be set: git remote add origin https://github.com/SimpelMe/REPO.git Set both or more push urls: git remote set-url --add --push origin https://github.com/SimpelMe/REPO....
Atom package pathes
OSX: /Users/cox/.atom/packages Windows 10: C:\Users\zelckc\.atom\packages
Synology SSL Zertifikat Ablage Pfad
Zuerst mal als root einloggen, damit man das Verzeichnis lesen darf: sudo -i Passwort des nas admin eingeben.Danach anzeigen lassen, in welchem Ordner das Standardzertifikat liegt: cat /usr/syno/etc/certificate/_archive/DEFAULT Aktuelles Er...
Fritzbox URL
https://patapaya.dyndns.org
NAS file server / disk drive local / external urls
Disk station including file station app: https://192.168.180.30:5001 https://simpel.dyndns.org:5001 Files station directly/only: https://192.168.180.30:7001 https://simpel.dyndns.org:7001Drive with shares: https://192.168.180.30:10003 https://simpel.dyn...
terminal: scan ports
Examples NAS internal nmap 192.168.180.30 NAS external: nmap simpel.dyndns.org With specific port: nmap -p 80 192.168.180.30