All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker. This will install the whole docker suite, left only Tini to be compiled manually.
| # Enable tab completion of flags | |
| source $(dirname $(gem which colorls))/tab_complete.sh | |
| # Move standard ls | |
| alias ols="ls" | |
| # Base formats | |
| alias ls="colorls -A" # short, multi-line | |
| alias ll="colorls -1A" # list, 1 per line | |
| alias ld="ll" # ^^^, NOTE: Trying to move to this for alternate hand commands | |
| alias la="colorls -lA" # list w/ info |
I created a new htaccess generator for angular apps that makes it easier for you to create the optimal htaccess file: https://julianpoemp.github.io/ngx-htaccess-generator/
The goal of this generator is to create the optimal .htaccess file for Angular apps easily. By default the generator creates an .htaccess file that solves the route redirection issue. To make it easier for you I created a kind of interview mode with some questions. As an additional feature the generator supports adding exclusions for example if you have installed a blog in a subdirectory of your web application and more!
The generator 😁: https://julianpoemp.github.io/ngx-htaccess-generator/
The project: https://github.com/julianpoemp/ngx-htaccess-generator
| #!/bin/bash | |
| # Check if ran with root permissions | |
| if [ `id -u` -ne 0 ]; then | |
| printf "The script must be run as root! (you can use sudo)\n" | |
| exit 1 | |
| fi | |
| function arrayContains { | |
| local e match="$1" |
It is loaded by default by /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist.
If you run
launchctl unload -w /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist
In August 2007 a hacker found a way to expose the PHP source code on facebook.com. He retrieved two files and then emailed them to me, and I wrote about the issue:
http://techcrunch.com/2007/08/11/facebook-source-code-leaked/
It became a big deal:
http://www.techmeme.com/070812/p1#a070812p1
The two files are index.php (the homepage) and search.php (the search page)