Skip to content

Instantly share code, notes, and snippets.

View garudamon's full-sized avatar
:shipit:

Ali garudamon

:shipit:
View GitHub Profile
@bradtraversy
bradtraversy / js_linked_list.js
Last active July 20, 2025 19:42
JS Linked List Class
// Construct Single Node
class Node {
constructor(data, next = null) {
this.data = data;
this.next = next;
}
}
// Create/Get/Remove Nodes From Linked List
class LinkedList {
@patriknyblad
patriknyblad / xcrun_simctl_cheatsheet.md
Last active September 10, 2025 15:53
iOS Simulator Terminal Commands `$ xcrun simctl`

Managing iOS Simulators

List all simulators created

$ xcrun simctl list --json

Delete old and unavailable simulators

$ xcrun simctl delete unavailable