VirtualTam's bookmarks
39 bookmarks found
-
- https://github.com/docker-library/official-images#architectures-other-than-amd64
- https://hub.docker.com/u/arm32v7/
- https://forums.docker.com/t/automated-build-raspberry-pi-based-image-on-docker-hub/4155/7
- https://www.ecliptik.com/Cross-Building-and-Running-Multi-Arch-Docker-Images/
- https://stackoverflow.com/questions/44925788/dockerfile-compile-in-local-machine-but-fails-in-docker-hub-for-automated-build
- https://github.com/alexellis/docker-arm
- https://github.com/resin-io-projects/armv7hf-debian-qemu
- https://github.com/cmosh/alpine-arm
-
PyCharm + Windows
2017-04-17 PyCharm setup
- https://www.jetbrains.com/pycharm/download/download-thanks.html?platform=windows&code=PCC
- https://www.jetbrains.com/help/pycharm/2017.1/git.html
- https://confluence.jetbrains.com/display/PYH/Using+PyCharm%27s+Git+integration+locally
- https://www.jetbrains.com/help/pycharm/2017.1/run-debug-configuration-tox.html
- https://www.jetbrains.com/help/pycharm/2017.1/configuring-colors-and-fonts.html
- https://training.talkpython.fm/courses/explore_pycharm/mastering-pycharm-ide
Environment
- doesn't work with Git from Cygwin
- https://git-for-windows.github.io/
- https://www.python.org/downloads/
- https://github.com/jkaving/intellij-colors-solarized
- http://ethanschoonover.com/solarized
- https://fonts.google.com/specimen/Noto+Sans
- https://www.microsoft.com/en-us/download/details.aspx?id=44266
Packages
-
-
IonicaBizau/git-stats · GitHub
2015-09-09 A GitHub-like contributions calendar, but locally, with all your git commits
-
Awesome-Selfhosted
2015-07-13 A list of software which can be hosted locally.
See https://prism-break.org/ for a more complete list
-
Pro: no need to setup a DNS server to test virtualhosts Con: keep in mind that all "fake" hosts will point to 127.0.0.1!
- Use /etc/hosts to declare test hosts / domains / subdomains
#<ip-address> <hostname.domain.org> <hostname> 127.0.0.1 localhost.localdomain localhost 127.0.0.1 host.localdomain host 127.0.0.1 sub.host.localdomain sub.host ::1 localhost.localdomain localhost
- Allow per-user virtualhost definition in either (depending on your distro)
/etc/httpd/conf/httpd.conf
/etc/apache2/apache2.conf
Include
/home/albert/.httpd/*.conf
- Profit! Create virtualhosts with local hostnames :)
-
electric-indent has been activated by default in emacs 24
to disable it for Python: (add-hook 'python-mode-hook (lambda () (set (make-local-variable 'electric-indent-functions) (list (lambda (arg) 'no-indent)))))
-
1# Global 2/etc/environment 3 4# X Session 5/var/lib/AccountsService/users/<username> 6~/.dmrc 7~/.xinitrc 8~/.xprofile 9 10# Session 11/etc/profile 12/etc/profile.d/*.sh 13~/.profile 14 15# Bash 16/etc/bash.bashrc 17~/.bash_profile 18~/.bashrc 19 20# ZSH 21/etc/zsh/zprofile 22~/.zshrc 23 24# Locales 25/etc/locale.conf 26/etc/locale.gen 27~/.config/locale 28 29# Superusers 30/etc/login.defs 31/etc/sudoers (use visudo to edit) 32 33# SSH 34/etc/ssh/sshd_config (server-side, can allow the client to pass variables) 35/etc/ssh/ssh_config (client-side, can send variables to servers) 36 37# SaltStack 38/etc/default/salt-minion (not always included in the distro's packages)
-
Gitolite SSH PATH hack
2014-06-09 in
GITOLITE_USER/.gitolite.rc
:$ENV{PATH} = "/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:$ENV{PATH}"
-
Bash: test if a file needs to be downloaded
2014-04-09 1#!/bin/bash 2# Check if a file needs to be downloaded 3# Useful iff there is no checksum available to check a local file 4url=http://test-url.com 5 6dl=1 7if [[ -f $file_path ]]; then 8 local_size=$(ls -l $file_path | awk '{print $5}') 9 remote_size=$(wget --spider $url 2>&1 | awk '/Length/ {print $2}') 10 11 if [[ $local_size -eq $remote_size ]]; then 12 echo "The file was previously downloaded" 13 dl=0 14 else 15 echo "Corrupted file found, re-downloading..." 16 rm -f $file_path 17 fi 18else 19 echo "Downloading file..." 20fi 21 22[[ $dl -eq 1 ]] && wget $url -O $file_path
-
Change install dir:
- get the EarSketch installer,
- launch it, install Reaper and EarSketch to the default location => C:\Program Files{EarSketch, REAPER (x64)},
- install the other softs (Python 2.7 and its extensions, Kommodo) where they belong,
- move the REAPER (x64) folder to a new location,
- edit the registry value [HKEY\LOCAL MACHINE\SOFTWARE\REAPER] to reflect this new location,
- edit the Actions menu file to reflect the new Plugins folder locations [%appdata%\REAPER\reaper-kb.ini],
- (restart Reaper),
- clean the cache.