Skip to content

Instantly share code, notes, and snippets.

View KaxLon's full-sized avatar

Kim Hulkkonen KaxLon

View GitHub Profile

Easy Telemetry Disable for 10/11

Prerequisites

  1. Upgrade to Enterprise edition of Windows 10/11 if you are running Home or Pro.
    • You can do this through the Change Edition option in the Extras menu in MAS.

Disabling Telemetry via Group Policy

  1. Open the Group Policy Editor. Search for "Edit Group Policy" in search or run gpedit.msc.
@imniko
imniko / change-dpi-scale-v2.ahk
Created February 2, 2023 14:22
Sample AHK script to change windows display scaling using https://github.com/imniko/SetDPI, compatible with AHK version 2.x
#Requires AutoHotkey v2.0
current_scale := 100 ; scale value you are currently in
next_scale := 125 ; scale value you want to switch to next
is_scaled := 0
; Ctrl + Win + F1 toggles main monitor between 2 scale values
^#F1::
{
global is_scaled
global next_scale
@imniko
imniko / change-dpi-scale.ahk
Last active May 10, 2026 11:44
Sample AHK script to change windows display scaling using https://github.com/imniko/SetDPI , compatible with AHK version 1.x
#persistent
current_scale := 100 ; scale value you are currently in
next_scale := 125 ; scale value you want to switch to next
is_scaled := 0
return
; Ctrl + Win + F1 toggles main monitor between 2 scale values
^#F1::
@benjchristensen
benjchristensen / index.html
Created May 2, 2012 19:34
Simple Line Graph using SVG and d3.js
<html>
<head>
<title>Simple Line Graph using SVG and d3.js</title>
<script src="http://mbostock.github.com/d3/d3.v2.js"></script>
<style>
/* tell the SVG path to be a thin blue line without any area fill */
path {
stroke: steelblue;
stroke-width: 1;
fill: none;
@benjchristensen
benjchristensen / index.html
Created August 16, 2011 03:21
Animated Line Graphs / Sparklines using SVG Path and d3.js
<html>
<head>
<title>Animated Sparkline using SVG Path and d3.js</title>
<script src="http://mbostock.github.com/d3/d3.v2.js"></script>
<style>
/* tell the SVG path to be a thin blue line without any area fill */
path {
stroke: steelblue;
stroke-width: 1;
fill: none;