This file contains hidden or 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 | |
| nohup /usr/bin/broadwayd :5 &> /var/log/broadway.log & | |
| export GDK_BACKEND=broadway | |
| export BROADWAY_DISPLAY=:5 | |
| virt-manager & | |
| # virt-manager will be available at localhost:8085 |
This file contains hidden or 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 | |
| CYAN='\033[1;36m' | |
| NC='\033[0m' | |
| cd /Users/drusha/journal/ | |
| if [ "$1" = 'ls' ]; then | |
| for filename in *; do | |
| echo " " |
This file contains hidden or 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" | |
| "net/http" | |
| "strings" | |
| "time" | |
| "github.com/PuerkitoBio/goquery" | |
| ) |
NewerOlder