Skip to content

Instantly share code, notes, and snippets.

// πŸš€ WELCOME TO THE FUTURE OF COMPUTATIONAL INTELLIGENCE πŸš€
// This paradigm-shifting, blockchain-ready, AI-augmented FizzBuzz engine
// was coded in 3 minutes. We are disrupting the integer-enumeration space. Investors, take note.
let fizzBuzz = function (n) { // Harnessing the raw power of anonymous functions β€” Web 4.0 ready
const arr = [] // Instantiating a hyper-scalable, cloud-native dynamic data structure
// ═══════════════════════════════════════════════════════════════
// THE OUTER LOOP β€” The Pinnacle of Algorithmic Progress

The 19th-Century Novel

by Gail Cunningham

Background: Authors, Readers and Publishers

Where the Restoration and Enlightenment periods were dominated in literary terms by drama and poetry, the 19th century was indisputably the age of the novel. When Anthony Trollope noted in 1870 'that novels are in the hands of us all; from the Prime Minister down to the last appointed scullery-maid' he was drawing attention both to the pervasive cultural and social importance of fiction and, implicitly, to the immense range of novels available to what was by then a mass reading public. Not only did the novel form produce a consistent stream of major practitioners (of whom an uncontroversial listing would include Jane Austen, Charles Dickens, Charlotte and Emily Bronte, George Eliot and Thomas Hardy), it also gave expression to a huge variety of discourse from writers of less established reputation. Fiction in the 19th century could address every topic, enter every dispute, reflect every ideal of an age perceived by

@klaufir216
klaufir216 / remove-onedrive.ps1
Last active November 17, 2023 08:54
remove-onedrive.ps1
if (-Not([Environment]::Is64BitProcess))
{
Write-Output "Run this script in an x64 process. You are running this script from an x86 (32-bit) context."
Exit
}
if (-Not([bool](([System.Security.Principal.WindowsIdentity]::GetCurrent()).groups -match "S-1-5-32-544")))
{
Write-Output "Run this script with admin rights."
@klaufir216
klaufir216 / qcdeqz_config_info.md
Created July 13, 2022 15:26
QCDE/QZ config info

QCDE / QZ config info

Mouse & FOV

action command
enable raw input in_mouse 3
sensitivity mouse_sensitivity [half of your quake sens]
enable true horizonal fov gl_true_fov 1
fov fov [angle]
invert mouse invertmouse 1
@klaufir216
klaufir216 / bash-parameter-forwarding.md
Last active August 4, 2019 16:09
Bash: always quote when forwarding parameters: "$@"

Bash: always quote when forwarding parameters: "$@"

Create dumpargs executable for testing purposes

cat <<//EOF >dumpargs.c
#include <stdio.h>

int main(int argc, char *argv[]) {
  int i;
 for(i = 0; i &lt; argc; ++i)