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
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', |
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
#.# Better Git Logs. | |
### Using EMOJI-LOG (https://github.com/ahmadawais/Emoji-Log). | |
# Git Commit, Add all and Push — in one step. | |
function gcap() { | |
git commit -m "$*" && git push | |
} | |
# NEW. | |
function gnew() { |
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
# Default editor | |
export EDITOR="/usr/bin/vim" | |
# Omzh home | |
export ZSH="$HOME/.oh-my-zsh" | |
# Omzh theme | |
ZSH_THEME="avit" | |
# Omzh Plugings |
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
set number relativenumber | |
set autoindent | |
set cindent | |
set shiftwidth=4 | |
set smartindent | |
set softtabstop=4 | |
colo serape "monokai | |
syntax on | |
set mouse=a | |
set ruler |
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
{"version":1,"resource":"file:///Users/ouss/Projects/blueRiverTech/height-labeler/src/hooks/useEventListener.ts","entries":[{"id":"uuTB.ts","timestamp":1648837807622},{"id":"PtjE.ts","timestamp":1648935645680}]} |
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
#include <dlfcn.h> | |
#include <unistd.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <stdio.h> | |
int main(void) | |
{ | |
char *name; | |
void *handle; |