A curated list of arrrrrrrrr!
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Windows 95 Scrollbar</title> | |
| <style> | |
| body { | |
| display: flex; | |
| justify-content: center; |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PeerDistSvc] | |
| "Start"=dword:00000004 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\diagsvc] | |
| "Start"=dword:00000004 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache] | |
| "Start"=dword:00000004 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\GraphicsPerfSvc] | |
| "Start"=dword:00000004 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AppVClient] |
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
| # Script to set up a Windows 11 machine for software development | |
| # Author: Gary Oberbrunner, garyo@darkstarsystems.com | |
| # License: MIT | |
| # Requires elevation | |
| if (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { | |
| Write-Host "This script requires admin privileges. Please run PowerShell as Administrator and try again." | |
| Exit 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
| 00s club hits | 2000's Club Hits | 00sclubhits | |
|---|---|---|---|
| ambient | Ambient | ambient | |
| atmospheric breaks | Atmospheric Breaks | atmosphericbreaks | |
| bassline | Bassline | bassline | |
| bass n jackin house | Bass and Jackin House | bassnjackinhouse | |
| big beat | Big Beat | bigbeat | |
| big room house | Big Room House | bigroomhouse | |
| breaks | Breaks | breaks | |
| chilled m | Chilled | chilledm | |
| chill hop | Chill Hop | chillhop |
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
| // Run as a Chrome Snippetfrom either of the below urls: | |
| // https://www.jazzradio.com/member/favorite/channels | |
| // https://www.classicalradio.com/member/favorite/channels | |
| // https://www.radiotunes.com/member/favorite/channels | |
| // https://www.rockradio.com/member/favorite/channels | |
| // https://www.zenradio.com/member/favorite/channels | |
| const KEY = '<yourkeyhere>' | |
| const subsidy = document.location.host.split('.')[1] | |
| function getChannelInfos() { |
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
| @echo off | |
| setlocal EnableDelayedExpansion | |
| ver | find "10." > nul | |
| if errorlevel 1 ( | |
| echo Your Windows version is not Windows 10... yet. Brace yourself, Windows 10 is coming^^! | |
| pause | |
| exit | |
| ) |
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
| -------------------------------------------- | |
| Version: 1.45.1 | |
| Commit: 5763d909d5f12fe19f215cbfdd29a91c0fa9208a | |
| Date: 2020-05-14T08:33:47.663Z | |
| Electron: 7.2.4 | |
| Chrome: 78.0.3904.130 | |
| Node.js: 12.8.1 | |
| V8: 7.8.279.23-electron.0 | |
| OS: Darwin x64 18.5.0 | |
| ------------------------------------------- |
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
| ::-webkit-scrollbar { | |
| width: 1rem; | |
| } | |
| ::-webkit-scrollbar-corner, | |
| ::-webkit-scrollbar-track { | |
| background: #333333; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #575757; | |
| background-clip: padding-box; |
NewerOlder