Skip to content

Instantly share code, notes, and snippets.

@C0reFast
C0reFast / README.md
Created September 26, 2022 04:57 — forked from Mnkai/README.md
TDP and turbo parameter modification with MSR on non-overclockable Intel CPU (such as Intel i7-8550U)

TDP and turbo parameter modification with MSR on non-overclockable CPU

Disclaimer

  • MSR modification may void your CPU's (or system board's) warranty. Proceed with care. I'm not responsible for any destruction caused by this article.
  • MSR address (greatly) differs from CPU to CPU. Check your own CPU's MSR address using Intel's documentation.
  • Only tested on Intel i7-8550U (Kaby Lake R).
  • This article is translation of this article. If you can understand Korean, I recommend reading that article, not this.

Start

@C0reFast
C0reFast / bj-unicom-iptv.m3u
Created June 20, 2020 14:23 — forked from sdhzdmzzl/bj-unicom-iptv.m3u
北京联通iptv列表
#EXTM3U name="bj-unicom-iptv"
#EXTINF:-1,天津卫视高清
rtp://239.3.1.141:1234
#EXTINF:-1,爱上4K
rtp://239.3.1.236:2000
#EXTINF:-1,山东教育
rtp://239.3.1.52:4120
@C0reFast
C0reFast / gh-check
Created November 3, 2019 02:04 — forked from lilydjwg/gh-check
gh-check: speed test to known GitHub IPs
#!/usr/bin/python3
import asyncio
import time
import socket
import sys
import aiohttp
class MyConnector(aiohttp.TCPConnector):
@C0reFast
C0reFast / docker-registry-caching-proxy.conf
Created December 13, 2018 02:25 — forked from etuttle/docker-registry-caching-proxy.conf
NGINX config for a caching proxy that sits in front of a docker registry
upstream docker-mirror-upstream {
server upstream.example.com;
}
proxy_cache_path /var/lib/docker-mirror/cache levels=1:2 max_size=10g inactive=48h keys_zone=cache:10m;
server {
listen 80 default_server;
listen 443 ssl default_server;
@C0reFast
C0reFast / binlog-rollback.pl
Created October 9, 2016 08:24
binlog-rollback.pl
#!/usr/bin/perl -w
use strict;
use warnings;
use Class::Struct;
use Getopt::Long qw(:config no_ignore_case); # GetOption
# register handler system signals
use sigtrap 'handler', \&sig_int, 'normal-signals';
@C0reFast
C0reFast / killcx
Created September 22, 2016 08:38 — forked from kisel/killcx
killcx
#!/usr/bin/perl
######################################################################
# killcx :
#
# Close a TCP connection under Linux.
#
# (c) Jerome Bruandet - <floodmon@spamcleaner.org>
#
# version 1.0.3 - 18-May-2011
#