Skip to content

Instantly share code, notes, and snippets.

View iam-medvedev's full-sized avatar
🤔

Ilya Medvedev iam-medvedev

🤔
View GitHub Profile
#import <Foundation/Foundation.h>
static const uint8_t huffman_table[] =
{
0xFF, 0xC4, 0x01, 0xA2, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01,
0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02,
0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x01, 0x00, 0x03,
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09,
0x0A, 0x0B, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05,
@iam-medvedev
iam-medvedev / userscript.js
Last active September 12, 2023 08:44
Github dashboard styles (Tampermonkey user script)
// ==UserScript==
// @name Github dashboard styles
// @version 0.1
// @description Github dashboard styles
// @match https://github.com/dashboard-feed
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
// @grant GM_addStyle
// ==/UserScript==
(function() {
const css = `.application-main { max-width: 676px; margin: 0 auto; }`;