Skip to content

Instantly share code, notes, and snippets.

View GiorgioBrux's full-sized avatar

GiorgioBrux GiorgioBrux

View GitHub Profile
@neilio
neilio / kagi-google.css
Last active April 28, 2025 14:13
Kagi Google Style
:root {
--app-text: #fdfdfd !important;
--app-search-text: #cccccc;
--app-bg: #000000;
--primary-25: #0f1013;
--button-color: rgba(150, 171, 250, 0.8);
--button-hover-color: rgba(102, 132, 244, 0.8);
--kagi-accent: #212533 !important;
--source-highlight-color: #d9a23c;
--sri-hover-color: rgb(65, 144, 226);
@motorailgun
motorailgun / idea.md
Last active April 11, 2025 11:36
Installing Windows and Linux into the same partition

Installing Windows and Linux into the same partition

But WHY?

There was a reddit post about installing Arch on NTFS3 partition. Since Windows and Linux doesn't have directories with same names under the /(C:\), I thought it's possible, and turned out it was actually possible.
If you are not familiar to Linux, for example you've searched on Google "how to dualboot Linux and Windos" or brbrbr... you mustn't try this. This is not practical.

Pre-requirements

  • UEFI system
  • Any Linux live-boot CD/DVD/USB... with Linux kernel newer than 5.15
  • Windows installer USB
@bennadel
bennadel / test.js
Created July 4, 2017 22:20
Using Chalk 2.0's Tagged Template Literals For Nested And Complex Styling
// Require the core node modules.
var chalk = require( "chalk" );
// ----------------------------------------------------------------------------------- //
// ----------------------------------------------------------------------------------- //
// Try using plain-old interpolation.
// --
// CAUTION: Will not work as hoped, "reset" bleeds into rest of string.
console.log( chalk.dim.underline( `Alpha ${ chalk.reset.bold.red( 'Beta' ) } Charlie` ) );