Check list de configuracao para ambiente de desenvolvimento
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
```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] | |
]; |
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 <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}, |
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
;; -*- 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 |
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
:root { | |
/* COLORS */ | |
--brand: #244fe6; | |
--brand-dark: #142a7c; | |
--brand-light: #78dcf5; | |
--other: #ff0101; | |
--other-dark: #ff7575; | |
--other-light: #8a0404; |