- Easy Hugo Mode
https://github.com/masasam/emacs-easy-hugo
Basically it is a very handy cms inside emacs
BUT it is not an improvement of the workflow
see, writing a post is not a linear process that happen only when you are writing a post, it happens all the time, when you are working and you need something that you can capture or marked some of these thoughts that happen while you work
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
Here are the cold hard facts. | |
Signal was developed by Open Whisper Systems, a for-profit corporation run by “Moxie Marlinspike,” a tall, lanky cryptographer who has a head full of dreadlocks and likes to surf and sail his boat. Moxie was an old friend of Tor’s now-banished chief radical promotor Jacob Appelbaum, and he’s played a similar fake-radical game — although he’s never been able to match Jake’s raw talent and dedication to the art of the con. Still, Moxie wraps himself in air of danger and mystery and hassles reporters about not divulging any personal information, not even his age. He constantly talks up his fear of Big Brother and tells stories about his FBI file. | |
So how big a threat is Moxie to the federal government? | |
This big: After selling his encryption start-up to Twitter in 2011, Moxie began partnering with America’s soft-power regime change apparatus — including the State Department and the Broadcasting Board of Governors (now called the U.S. Agency for Global Media) — on developing tech to |
This is inspired by A half-hour to learn Rust and Zig in 30 minutes.
Your first Go program as a classical "Hello World" is pretty simple:
First we create a workspace for our project:
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 | |
# DEST FOLDER | |
DEST=~/Videos/youtube | |
#OPTIONS | |
OVERWRITEFILEIFFOUND=-y | |
UPPERLEFTCORNEROF=-i | |
# Screen in the middle |
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 | |
# Cannot open mailbox /var/mail/$USER: Permission denied | |
sudo touch /var/mail/$USER | |
sudo chown $USER:mail /var/mail/$USER | |
sudo chmod o-r /var/mail/$USER | |
sudo chmod g+rw /var/mail/$USER |
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/Actyx/industrial-ui | |
https://github.com/georgesimos/paper-and-ink | |
https://github.com/Trendyol/quarkify |
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 ( | |
"bytes" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"net/url" | |
) |
NewerOlder