Skip to content

Instantly share code, notes, and snippets.

View gaetschwartz's full-sized avatar
🖥️
Developing apps

Gaëtan gaetschwartz

🖥️
Developing apps
View GitHub Profile
@simc
simc / indexable_skip_list.dart
Created August 2, 2023 09:53
Fast indexable skip list for Dart. All operations (except clear) are O(log n)
import 'dart:collection';
import 'dart:math';
class IndexableSkipList<K, V> {
static const _maxHeight = 12;
final _Node<K, V> _head = _Node(
null,
null,
List.filled(_maxHeight, null),
@ryo-ARAKI
ryo-ARAKI / starship.toml
Last active May 17, 2024 07:10
Starship configuration file
# ~/.config/starship.toml
[battery]
full_symbol = "🔋"
charging_symbol = "🔌"
discharging_symbol = "⚡"
[[battery.display]]
threshold = 30
style = "bold red"
@Fusseldieb
Fusseldieb / unlimited_trials_babeledit.txt
Last active March 25, 2024 08:26
Activate BabelEdit temporarily / Unlimited trial
/////////////////////////////////////////////////////////
As others have mentioned:
This workaround only works for versions 2.*
In other words: It's outdated and doesn't work anymore
Scroll down for community posts!
/////////////////////////////////////////////////////////
Original gist:
Obviously for educative purposes only.