๐ฎ
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 bash | |
# | |
# โโโโโโโฌ โโโ โโโโฌโโโโโโโโโโโฌโ | |
# โโโโโค โ โโคโโโโโโโโ โฌโโโโโค โโ | |
# โโโโโโโดโโโ โโโโดโโโโโโโโโโโดโ | |
# | |
# Filename: self-signed.sh | |
# GitHub: https://github.com/thiago-rezende | |
# Maintainer: Thiago Rezende <[email protected]> |
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
let | |
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-unstable"; | |
pkgs = import nixpkgs { config = {}; overlays = []; }; | |
in | |
pkgs.mkShellNoCC { | |
packages = with pkgs; [ | |
neovim | |
cowsay | |
lolcat |
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
--- | |
BasedOnStyle: Chromium | |
# column rules | |
ColumnLimit: 120 | |
# file rules | |
TabWidth: 2 | |
IndentWidth: 2 | |
LineEnding: LF |
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
root = true | |
[*] | |
charset = utf-8 | |
tab_width = 2 | |
indent_size = 2 | |
indent_style = space | |
end_of_line = lf |
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 | |
# โโโ โโ โโโโโโ โโโโโโ โ โโ โโโโโโ | |
# โโโโ โโโโโโโ โโโโโโ โ โโโ โโ โโโโโโโ โ | |
# โโโโโโโโโโโโ โโโโโโ โโโ โโโโ โโโโโ โโโโ | |
# โโโ โโโ โโโ โโโโโโโโโโ โโโ โโโโ โ โโโ | |
# โโโโโโโโโ โโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโ | |
# โ โโโโโโ โโโโโโ โ โโ โโโโโโโโ โ โ โ โโโ โ โ | |
# โ โโโ โ โ โ โโ โโ โ โโโโโโ โ โ โ โโ โ โ | |
# โ โโ โโ โ โ โ โโ โ โโโ โ โ โ โ โ |
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
# โโโ โโ โโโโโโ โโโโโโ โ โโ โโโโโโ | |
# โโโโ โโโโโโโ โโโโโโ โ โโโ โโ โโโโโโโ โ | |
# โโโโโโโโโโโโ โโโโโโ โโโ โโโโ โโโโโ โโโโ | |
# โโโ โโโ โโโ โโโโโโโโโโ โโโ โโโโ โ โโโ | |
# โโโโโโโโโ โโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโ | |
# โ โโโโโโ โโโโโโ โ โโ โโโโโโโโ โ โ โ โโโ โ โ | |
# โ โโโ โ โ โ โโ โโ โ โโโโโโ โ โ โ โโ โ โ | |
# โ โโ โโ โ โ โ โโ โ โโโ โ โ โ โ โ | |
# โ โ โ โ โ โ โ โ | |
# |
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
" | |
" โโโ โโ โโโโโโ โโโโโโ โ โโ โโโโโโ | |
" โโโโ โโโโโโโ โโโโโโ โ โโโ โโ โโโโโโโ โ | |
" โโโโโโโโโโโโ โโโโโโ โโโ โโโโ โโโโโ โโโโ | |
" โโโ โโโ โโโ โโโโโโโโโโ โโโ โโโโ โ โโโ | |
" โโโโโโโโโ โโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโ | |
" โ โโโโโโ โโโโโโ โ โโ โโโโโโโโ โ โ โ โโโ โ โ | |
" โ โโโ โ โ โ โโ โโ โ โโโโโโ โ โ โ โโ โ โ | |
" โ โโ โโ โ โ โ โโ โ โโโ โ โ โ โ โ | |
" โ โ โ โ โ โ โ โ |
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 initialization | |
(require 'package) | |
(package-initialize) | |
;; package archives | |
(add-to-list 'package-archives | |
'("melpa" . "https://melpa.org/packages/")) | |
;; editor |
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
CC = clang | |
DEBUGGER = lldb | |
BUILD_DIR = build | |
BIN_DIR = $(BUILD_DIR)/bin | |
OBJ_DIR = $(BUILD_DIR)/obj | |
LIBS_CFLAGS = $(shell pkg-config --cflags uuid) | |
LIBS_LDFLAGS = $(shell pkg-config --libs uuid) |
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 bash | |
# | |
# โโโ โโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ โโโ | |
# โโโ โโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โโโโ | |
# โโโ โโโ โโโ โโโโโโ โโโ โโโ โโโโโโโ | |
# โโโ โโโ โโโ โโโโโโ โโโ โโโ โโโโโ | |
# โโโโโโโโโ โโโ โโโโโโโโโโโโโโ โโโ โโโ | |
# โโโโโโโ โโโ โโโโโโโโโโโโโโ โโโ โโโ | |
# |
NewerOlder