Skip to content

Instantly share code, notes, and snippets.

View eduellery's full-sized avatar

Eduardo Ellery eduellery

View GitHub Profile
@eduellery
eduellery / basic-english-850-words.txt
Last active September 24, 2023 08:32
Basic English (Business Academic Scientific International Commercial) - 850 words
OPERATIONS - 100 words
come
get
give
go
keep
let
make
put
@eduellery
eduellery / grid-garden.css
Created July 9, 2022 16:03
Grid Garden solutions (levels 1 to 28) - https://cssgridgarden.com/
/* Level 1 */
#garden {
display: grid;
grid-template-columns: 20% 20% 20% 20% 20%;
grid-template-rows: 20% 20% 20% 20% 20%;
}
#water {
grid-column-start: 3;
@eduellery
eduellery / flexbox-froggy.css
Created July 8, 2022 19:36
Flexbox Froggy solutions (levels 1 to 24) - https://flexboxfroggy.com/
/* Level 1 */
#pond {
display: flex;
justify-content: flex-end;
}
/* Level 2 */
#pond {
@eduellery
eduellery / HelloWorld.kt
Created March 6, 2022 13:15
Hello, World! (Kotlin)
fun main(args: Array<String>) {
println("Hello, World!")
}
@eduellery
eduellery / HelloWorld.java
Last active March 6, 2022 13:11
Hello, World! (Java)
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}