Skip to content

Instantly share code, notes, and snippets.

View Lobbyra's full-sized avatar

Jérémy Caudal Lobbyra

View GitHub Profile
@Lobbyra
Lobbyra / testGenerateCode.ts
Created December 16, 2021 08:04
sample code to test generateCode, part of auth_nest_template
function generateCode(): number {
var draw: number = Math.random();
draw *= Math.pow(10, 6);
while (draw < 100000) {
draw *= 10;
}
return (Math.round(draw));
}
var test: number;
@heading-color: #ff45ae;
@sub-heading-color: #66f38a;
@color: #9f9f9fb3;
.vc-container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
# i3 config file (v4)
#
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
#
# This config file uses keycodes (bindsym) and was written for the QWERTY
# layout.
#
# To get a config file with the same key positions, but for your current
# layout, use the i3-config-wizard
#

TITRE

[MAGNIFIQUE BANIERE en 750x256px]


Compétences abordées 📚

  • Liste
  • de
@Lobbyra
Lobbyra / c.json
Last active September 17, 2020 11:36
VS Code C snippets
{
"main snippet": {
"prefix": "main",
"body": [
"int\t\tmain(int argc, char **argv)",
"{",
"\t${1://code}",
"\treturn (0);",
"}"
]
@Lobbyra
Lobbyra / .zshrc
Created September 13, 2020 20:03
my zsh config with oh my zsh
# Path to your oh-my-zsh installation.
export ZSH="/Users/jecaudal/.oh-my-zsh"
ZSH_THEME="sunrise"
# Which plugins would you like to load?
# Standard plugins can be found in ~/.oh-my-zsh/plugins/*
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
@Lobbyra
Lobbyra / .vimrc
Last active September 13, 2020 19:59
my vim config
set number
syntax on
set mouse=a
set tabstop=4
set shiftwidth=4
set autoindent