Skip to content

Instantly share code, notes, and snippets.

View CharlyMartin's full-sized avatar
👨‍💻
Working remotely

Charly MARTIN CharlyMartin

👨‍💻
Working remotely
View GitHub Profile
@CharlyMartin
CharlyMartin / .macos
Created September 12, 2023 14:23 — forked from mirhamasala/.macos
#!/usr/bin/env bash
# Run without downloading:
# curl https://gist.githubusercontent.com/mirhamasala/277abfb5f7c6c5540af7ad4485f5a593/raw/.macos | bash
# Resources
# [Change macOS user preferences via command line](https://pawelgrzybek.com/change-macos-user-preferences-via-command-line/)
# [codeinthehole/osx_bootstrap.sh](https://gist.github.com/codeinthehole/26b37efa67041e1307db)
# [kentcdodds/dotfiles/macos](https://github.com/kentcdodds/dotfiles/blob/main/.macos)
# [lotharschulz/osx_bootstrap](https://gist.github.com/lotharschulz/304243b8050801f1e9d9af7748b04eb5)
@CharlyMartin
CharlyMartin / events.json
Created June 27, 2023 15:44
Dummy events
'[{"id":1,"day":1,"date":"2023-05-29","isToday":false,"event":{"id":1,"illustration":"https://picsum.photos/300/300","invitees":[{"id":1,"avatar":"https://picsum.photos/100/100"}]}},{"id":2,"day":2,"date":"2023-05-30","isToday":false},{"id":3,"day":3,"date":"2023-05-31","isToday":true},{"id":4,"day":4,"date":"2023-06-01","isToday":false,"event":{"id":2,"illustration":"https://picsum.photos/300/300"}},{"id":5,"day":5,"date":"2023-06-02","isToday":false},{"id":6,"day":6,"date":"2023-06-03","isToday":false,"event":{"id":3,"illustration":"https://picsum.photos/300/300","invitees":[{"id":1,"avatar":"https://picsum.photos/100/100"},{"id":2,"avatar":"https://picsum.photos/100/100"}]}},{"id":7,"day":7,"date":"2023-06-04","isToday":false},{"id":8,"day":1,"date":"2023-06-05","isToday":false},{"id":9,"day":2,"date":"2023-06-06","isToday":false},{"id":10,"day":3,"date":"2023-06-07","isToday":false},{"id":11,"day":4,"date":"2023-06-08","isToday":false},{"id":12,"day":5,"date":"2023-06-09","isToday":false,"event":{"id":4,"
### Keybase proof
I hereby claim:
* I am charlymartin on github.
* I am charlymartin (https://keybase.io/charlymartin) on keybase.
* I have a public key ASCefvEVS2us1VtV94C37TnEmGY0L6khlaIYxKH5Iqid_Qo
To claim this, I am signing this object:

Kitt Lectures

HTML & CSS + Design Resources CSS Components Bootstrap, Grids & Layouts JavaScript & the DOM DOM Events & AJAX

=> Rewatch the lecture and code along what the teacher is doing

def size_splitter(array, size)
small_words = []
big_words = []
array.each do |element|
if element.size == size
small_words << element
else
big_words << element
end