Skip to content

Instantly share code, notes, and snippets.

View jhserodio's full-sized avatar

João Henrique Serodio jhserodio

View GitHub Profile
@jhserodio
jhserodio / theme.css
Last active September 26, 2023 13:46
Default Theme CSS with Variables, resets and Normalize
:root {
/* COLORS */
--brand: #244fe6;
--brand-dark: #142a7c;
--brand-light: #78dcf5;
--other: #ff0101;
--other-dark: #ff7575;
--other-light: #8a0404;
;; -*- mode: emacs-lisp; lexical-binding: t -*-
;; This file is loaded by Spacemacs at startup.
;; It must be stored in your home directory.
(defun dotspacemacs/layers ()
"Layer configuration:
This function should only modify configuration layer settings."
(setq-default
;; Base distribution to use. This is a layer contained in the directory
@jhserodio
jhserodio / linux_confg_dev_env.md
Last active May 17, 2021 14:58
Linux Config Dev Env
#include <stdio.h>
int main(void)
{
int i;
int j;
int first[6][6] = {
{1,1,1,0,0,0},
{0,1,0,0,0,0},
```javascript=
const firstInt = [
[1,1,1,0,0,0],
[0,1,0,0,0,0],
[1,1,1,0,0,0],
[0,0,0,2,0,1],
[0,0,0,0,2,0],
[0,0,0,2,3,9]
];