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
/* ******************************************************************************************* | |
* THE UPDATED VERSION IS AVAILABLE AT | |
* https://github.com/LeCoupa/awesome-cheatsheets | |
* ******************************************************************************************* */ | |
// 0. Synopsis. | |
// http://nodejs.org/api/synopsis.html | |
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
;; A tetris game -- partial implementation, part 4 | |
;; Copyright (c) 2020 Alex Harsányi ([email protected]) | |
;; Permission is hereby granted, free of charge, to any person obtaining a | |
;; copy of this software and associated documentation files (the "Software"), | |
;; to deal in the Software without restriction, including without limitation | |
;; the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
;; and/or sell copies of the Software, and to permit persons to whom the | |
;; Software is furnished to do so, subject to the following conditions: |
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
;; A tetris game -- partial implementation, part 4 | |
;; Copyright (c) 2020 Alex Harsányi ([email protected]) | |
;; Permission is hereby granted, free of charge, to any person obtaining a | |
;; copy of this software and associated documentation files (the "Software"), | |
;; to deal in the Software without restriction, including without limitation | |
;; the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
;; and/or sell copies of the Software, and to permit persons to whom the | |
;; Software is furnished to do so, subject to the following conditions: |
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
{ | |
"terminal.integrated.fontSize": 14, | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.tabSize": 2, | |
"editor.fontSize": 18, | |
"editor.lineHeight": 26, | |
"editor.fontFamily": "Fira Code", |
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
parse = n => ( | |
n = n.name, | |
(n == "K") ? true : | |
(n == "KI") ? false : false | |
) // parsing to unpack meaning from the lambda calculus. | |
I = a => a // λa.a - Idiot - Identity | |
K = a => b => a // λab.a - Kestrel - first, const | |
KI = a => b => b // λab.b - Kite - second | |
M = f => f(f) // λf.ff - Mockingbird - self-application |
Comando | Alias/Abrv. | O que faz? | Exemplo |
---|---|---|---|
echo | Imprime a string no output | echo Hello World |
|
mkdir | make directory | Cria um novo diretório | mkdir nome_pasta |
ln | link | Cria link | ln ./arquivo /usr/caminho |
chown | change owner | Muda o dono e grupo do arquivo | chown x+a ./arquivo |
chmod | change mode | Muda o modo de leitura do arquivo | chomod 777 ./arquivo |
touch | Muda as inform. de leitura ou cria arquivo vazio | touch index.php |
(Obs¹: JDK 11 é a versão LTS suportada até 2021)
(Obs²: A Plataforma de Java SE da Oracle - JDK, JRE, JavaFX e JRockit - somente é gratuita para o que a licensa define como "General Purpose Computing" e "Non-commercial applications" ou seja somente é gratuita caso seja usada para estudo, testes, durante o desenvolvimento de aplicações ainda não publicadas, projetos que sejam gratuitos e análise. Caso seja usado em um projeto comercial, a licensa deve ser comprada.)
- Ir na página de Download dos produtos da Oracle: https://www.oracle.com/downloads/
- Ir em "Java"
- Escolher "Java (JDK) for Developers"