This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/dypsilon/frontend-dev-bookmarks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/sindresorhus/awesome |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Font, Icons, Stock Photos - free resources, everything else is free, and this link shall be updated regularly. | |
Follow the link: https://balapastudio.co/frontendlist/resources.php | |
Stock Photos | |
* Unsplash | |
* Gratisography | |
* Super Famous | |
* Moveast | |
* Travel Coffee Book |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat ~/.ssh/config | |
Host 10.x.x.x | |
Compression yes | |
ForwardX11 yes | |
Ciphers blowfish-cbc,arcfour |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
JAILS=`fail2ban-client status | grep "Jail list" | sed -E 's/^[^:]+:[ \t]+//' | sed 's/,//g'` | |
for JAIL in $JAILS | |
do | |
fail2ban-client status $JAIL | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## ## | |
cat ~moronkreacionz/bin/focusonself | |
-- start | |
#!/bin/sh | |
cp -f /etc/hosts_backup_on.0 /etc/hosts_backup_on.1 | |
cp -f /etc/hosts /etc/hosts_backup_on.0 | |
cat /etc/template_blocking_hosts >> /etc/hosts | |
-- end | |
## ## |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"log" | |
"log/syslog" | |
) | |
func main() { | |
logwriter, e := syslog.Dial("tcp","123.123.123.123:12345", syslog.LOG_DEBUG, "your.software.identifier") | |
if e != nil { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat .vimrc | |
" ================ Turn on syntax highlighting | |
syntax on | |
" ================ For plugins to load correctly | |
filetype plugin indent on | |
" ================ Show line numbers | |
set number |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Build a docker image | |
- Make sure you are in the folder that contains the `Dockerfile` | |
- If your folder is `/my-docker-image-name/`, these 3 files should be in your folder: | |
... | |
/my-docker-image | |
| | |
|---Dockerfile | |
|---Readme.md | |
|---requirements.txt |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer