This file contains hidden or 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
{ | |
"name": "Halloween 2023", | |
"background": "#030603", | |
"black": "#030603", | |
"blue": "#596994", | |
"brightBlack": "#264633", | |
"brightBlue": "#596994", | |
"brightCyan": "#ea7600", | |
"brightGreen": "#bb0dcf", | |
"brightPurple": "#8c9386", |
This file contains hidden or 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
#!/usr/bin/env bash | |
export PROFILE_NAME="Halloween 2023" | |
export COLOR_01="#030603" # Black (Host) | |
export COLOR_02="#538d97" # Red (Syntax string) | |
export COLOR_03="#bb0dcf" # Green (Command) | |
export COLOR_04="#5f559a" # Yellow (Command second) | |
export COLOR_05="#596994" # Blue (Path) | |
export COLOR_06="#8c9386" # Magenta (Syntax var) |
This file contains hidden or 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
/// <summary> | |
/// Just another concurrent list implementation. | |
/// </summary> | |
public class ConcurrentList<T> : IList<T> | |
{ | |
private readonly ConcurrentDictionary<int, T> _dictionary = new ConcurrentDictionary<int, T>(); | |
public IEnumerator<T> GetEnumerator() | |
{ | |
return _dictionary.Values.GetEnumerator(); |
This file contains hidden or 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
#!/bin/bash | |
# | |
# Cleans up all reflog (forced expire), all unreachable branches, | |
# old LFS content, and performs aggressive GC. | |
git reset --hard | |
git clean -fd | |
git fetch --prune | |
git reflog expire --expire=now --all | |
git gc --prune=now --aggressive |
This file contains hidden or 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
#!/bin/bash | |
# | |
# Installs Adapta theme and icons and cursors. | |
# Install common prerequsites: | |
sudo apt-get install -y software-properties-common | |
# Install Tweaks (Elementary OS): | |
#sudo add-apt-repository ppa:philip.scott/elementary-tweaks | |
#sudo apt-get install -y elementary-tweaks |