Skip to content

Instantly share code, notes, and snippets.

View boardev's full-sized avatar

Boar boardev

  • MHP
  • Ukraine
  • 19:57 (UTC +02:00)
View GitHub Profile
<!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;
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]
@boardev
boardev / WindowsDevMachineSetup.ps1
Created April 17, 2025 18:42 — forked from garyo/WindowsDevMachineSetup.ps1
Script to set up a Windows dev machine
# 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
}
@boardev
boardev / difm.csv
Created April 12, 2025 12:34 — forked from moniquelive/difm.csv
DI.fm csv file for Alfred workflow
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
@boardev
boardev / all-but-di.fm.js
Created April 12, 2025 11:57 — forked from thlorenz/all-but-di.fm.js
Get Di.fm and related stations playlist for all channels
// 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() {
@boardev
boardev / awesome-re-piracy-mega-list.md
Created March 9, 2025 13:15 — forked from ohsevin/awesome-re-piracy-mega-list.md
awesome.re piracy mega list (archived) for safe keeping!
@boardev
boardev / make_windows10_great_again.bat
Created February 2, 2025 14:49 — forked from IntergalacticApps/make_windows10_great_again.bat
Make Windows 10 Great Again - stop Windows 10 spying!
@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
)
@boardev
boardev / meta-tags.md
Created January 21, 2025 09:52 — forked from whitingx/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>
@boardev
boardev / VSCode Internal Commands
Created December 24, 2024 15:15 — forked from skfarhat/VSCode Internal Commands
List of VSCode commands
--------------------------------------------
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
-------------------------------------------
@boardev
boardev / scrollbar.css
Created December 21, 2024 05:30 — forked from jaydodge1975/scrollbar.css
Color scrollbar CSS
::-webkit-scrollbar {
width: 1rem;
}
::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
background: #333333;
}
::-webkit-scrollbar-thumb {
background: #575757;
background-clip: padding-box;