// Define a cloning function if not provided.
const cloneFn = clone || (el => {
let clone = el.children[0].cloneNode(true);
el.insertBefore(clone, el.children[0]);
return clone;
});
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
| # ~/.config/starship.toml | |
| [battery] | |
| full_symbol = "🔋" | |
| charging_symbol = "🔌" | |
| discharging_symbol = "⚡" | |
| [[battery.display]] | |
| threshold = 30 | |
| style = "bold red" |
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
| # fun stuff | |
| alias lenny='echo \_(ツ)_/¯ | pbcopy' | |
| alias tuxsay='cowsay -f tux ' | |
| alias fortunes='sh ~/.fortunes.sh' | |
| alias life='figlet 42 | lolcat' | |
| alias lol='while true; do sl; done;' | |
| alias starwars='telnet towel.blinkenlights.nl' | |
| alias fancy='figlet $@' | |
| # to make people confused xD |
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
| # SOURCE: https://starship.rs/config | |
| # DEBUG via: `starship explain` | |
| # Timeout for commands executed by starship (ms) | |
| command_timeout = 500 | |
| # Replace the "❯" | |
| [character] | |
| success_symbol = "[λ](green)" |
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
| <timeline-post post-id="54235" source-id="13" > | |
| <sl-card style="margin-bottom: var(--sl-spacing-large)"> | |
| <a href="https://appleinsider.com/articles/21/05/11/jamf-acquires-zero-trust-cloud-security-startup-wandera-in-400m-deal?utm_medium=rss" target="_blank" slot="image"><img | |
| src="https://photos5.appleinsider.com/gallery/41951-81380-34258-61556-jamf-pro-head-xl-xl.jpg" | |
| alt="article thumbnail" | |
| class="post-thumbnail" | |
| /></a> | |
| <h3><a target="_blank" class="link" href="https://appleinsider.com/articles/21/05/11/jamf-acquires-zero-trust-cloud-security-startup-wandera-in-400m-deal?utm_medium=rss">Jamf acquires 'zero trust' cloud security startup Wandera in $400M deal</a></h3> |
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
| document.addEventListener("turbo:visit", () => { | |
| let main = document.querySelector("main"); | |
| if (main.dataset.turboTransition == "false") return; | |
| let [movement, scale] = ["-12px", "0.99"]; | |
| if (window.matchMedia("(prefers-reduced-motion: reduce)").matches) { | |
| [movement, scale] = ["-6px", "1"] | |
| }; |
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
| # Created by https://www.gitignore.io/api/node,bower,osx,linux,windows,dropbox,sass,less,grunt,sublimetext,code | |
| ### Node ### | |
| # Logs | |
| logs | |
| *.log | |
| npm-debug.log* | |
| # Runtime data |
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
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
