- I know my parents.
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
| #!/usr/bin/env fish | |
| set success "false" | |
| while test "$success" = "false" | |
| set connect (bluetoothctl connect $argv[1]) | |
| set success (string match -q -r "Failed to connect" $connect;and echo false; or echo true) | |
| echo $connect \n | |
| end |
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
| source ~/.config/fish/fish.d/*.fish | |
| # set | |
| set -x PATH /usr/lib/go-1.12/bin $PATH | |
| set -x PATH ~/.gem/ruby/2.5.0/bin $PATH | |
| set -x PATH ~/Coding/go/bin $PATH | |
| set -x PATH ~/.local/bin $PATH | |
| set -x GOPATH ~/Coding/Go | |
| # Base16 Shell |
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
| #!/usr/bin/fish | |
| set ffpath ~/.config/fish/fish.d | |
| set ffile $ffpath/ffwayland.fish | |
| set annoy "Cmon dude, is it on or off?" | |
| function wayland_on | |
| echo set -x MOZ_ENABLE_WAYLAND 1 > $ffile | |
| end |
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
| # PATH | |
| set -gx GOPATH $HOME/Coding/go | |
| set -gx PATH $HOME/Coding/go/bin $PATH | |
| set -gx PATH $HOME/.gem/ruby/*/bin $PATH | |
| set -gx PATH $HOME/.local/bin $PATH | |
| set -gx PATH $HOME/.local/share/npm/bin $PATH | |
| # XDG |
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
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <its:rules xmlns:its="http://www.w3.org/2005/11/its" version="1.0"> | |
| <its:translateRule translate="no" selector="/fontconfig/*[not(self::description)]"/> | |
| </its:rules> | |
| <description>Set substitutions for emoji/math fonts</description> | |
| <!-- Keep in sync with 60-generic.conf --> |
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 ( | |
| "encoding/json" | |
| "flag" | |
| "fmt" | |
| "github.com/mb-14/gomarkov" | |
| "io/ioutil" | |
| "math/rand" | |
| "strings" |
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 ( | |
| "bufio" | |
| "fmt" | |
| "os" | |
| "regexp" | |
| "strings" | |
| ) |
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
| #!/usr/bin/fish | |
| # requires toot, a trained model.json, and generator | |
| # (found @ github.com/oct2pus/jadebot/markov/generator) | |
| while true | |
| toot post (./generator) | |
| sleep 3600 | |
| end |
I would like Pixelfed to follow in the steps of Mastodon, Pleroma, GNUSocial, Peertube and Friendica in licencing Pixelfed as APGL.
There are numerous reasons why AGPL is a better licence than the MIT licence for such a project, and let me go over my thoughts on the subject.
The AGPL licence would make instances of Pixelfed legally liable to publish their source code if they create any sort of modification, this promotes a culture of honesty present in the majority of the fediverse.