| GHC | base | Cabal | Win32 |
|---|---|---|---|
| ghc-7.8.3 | base-4.7.0.1 | Cabal-1.18.1.3 | Win32-2.3.0.1 |
| ghc-7.8.4 | base-4.7.0.2 | Cabal-1.18.1.5 | Win32-2.3.0.1 |
| ghc-7.10.1 | base-4.8.0.0 | Cabal-1.22.2.0 | Win32-2.3.1.0 |
| ghc-7.10.2 | base-4.8.1.0 | Cabal-1.22.4.0 | Win32-2.3.1.0 |
| ghc-7.10.3 | base-4.8.2.0 | Cabal-1.22.5.0 | Win32-2.3.1.0 |
| ghc-8.0.1 | base-4.9.0.0 | Cabal-1.24.0.0 | Win32-2.3.1.1 |
| ghc-8.0.2 | base-4.9.1.0 | Cabal-1.24.2.0 | Win32-2.3.1.1 |
| ghc-8.2.1 | base-4.10.0.0 | Cabal-2.0.0.2 | Win32-2.5.4.1 |
add-apt-repository ppa:certbot/certbot
apt update
apt-get install python-certbot-nginx
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
| export const slugify = (text?: string) => { | |
| if (text == undefined) { | |
| return ""; | |
| } | |
| return text | |
| .toString() | |
| .normalize("NFD") | |
| .replace(/[\u0300-\u036f]/g, "") |
- Database
User Admin, Member
User history For the future
Group
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 ( | |
| "crypto/tls" | |
| "flag" | |
| "fmt" | |
| "github.com/jackdanger/collectlinks" | |
| "net/http" | |
| "net/url" | |
| "os" |
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> | |
| <alias> | |
| <family>sans-serif</family> | |
| <prefer> | |
| <family>Noto Sans</family> | |
| <family>Noto Color Emoji</family> | |
| <family>Noto Emoji</family> | |
| <family>DejaVu Sans</family> |
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
| { | |
| "color_scheme": "Packages/ayu/ayu-mirage.sublime-color-scheme", | |
| "font_face": "Source Code Variable Semi-Bold", | |
| "font_size": 12, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "line_padding_bottom": 8, | |
| "line_padding_top": 8, |
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
| { | |
| "workbench.startupEditor": "newUntitledFile", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.colorTheme": "Atom One Dark", | |
| "window.menuBarVisibility": "hidden", | |
| "editor.lineHeight": 40, | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 20, | |
| "editor.fontFamily": "Fira Code", | |
| "editor.semanticHighlighting.enabled": true |