Skip to content

Instantly share code, notes, and snippets.

View fincs's full-sized avatar
🐱
( ͡° ͜ʖ ͡°)

fincs

🐱
( ͡° ͜ʖ ͡°)
View GitHub Profile
@fincs
fincs / gist:d5796e96a44916c2a6e8c263519e4c84
Created May 17, 2018 22:06
(uBlock Origin) Fix new GitHub dashboard layout
github.com###dashboard:style(display: flex; flex-direction: row)
github.com###dashboard > .dashboard-sidebar:style(order: 2)
github.com###dashboard > .news:style(order: 1)
github.com###dashboard > .news > .Details
diff --git a/Makefile b/Makefile
index 0d01996..42b9e08 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ VERSION := $(DSWIFI_MAJOR).$(DSWIFI_MINOR).$(DSWIFI_REVISION)
all: include/dswifi_version.h release debug
-include/dswifi_version.h : makefile
+include/dswifi_version.h : Makefile
@fincs
fincs / main.s
Created June 28, 2012 22:19
Tiniest possible FeOS app
.arch armv5te
.section .init
.global __entrypoint
.hidden __entrypoint
.align 2
@ This word-sized space is reserved by the OS.
.word 0
@fincs
fincs / main.cpp
Created May 24, 2012 17:47
Very early FOM/FTL preview
#include <stdio.h>
#include <fom.h> // FeOS Object Model header file
#include <ftl.h> // FOM Template Library header file
using namespace FOM;
using namespace FTL;
// Declare some interfaces...
// {65D3561A-7DD0-4740-BD4E-EA82DF1B8E9D}
@fincs
fincs / main.cpp
Created May 19, 2012 22:37
Fully native C++ WinRT (Metro-style) app
//
// Fully native C++ WinRT application example
// Programmed by fincs
//
#include <windows.h>
#include <roapi.h>
#include <wchar.h>
#include <stdio.h>
#include <stdlib.h>
@fincs
fincs / gist:2346412
Created April 9, 2012 20:32
AutoHotkey Gist & forum test
/*
***************************************************
* SciTE4AutoHotkey v3 syntax highlighting demo *
* August 19, 2010 - fincs *
***************************************************
*/
; Normal comment
/*
Block comment
@fincs
fincs / main.c
Created January 13, 2012 23:32
NeHe Lesson 4 FeOS port
#include <feos.h>
#include <feos3d.h>
static void init3D()
{
videoSetMode(MODE_0_3D);
glInit();
// enable antialiasing
glEnable(GL_ANTIALIAS);
@fincs
fincs / lz77.s
Created November 6, 2011 16:16
LZ77 decompression routine
@ LZ77 decompression routine
@ v1.0 - by fincs
.arch armv5te
.arm
.align 2
.global LZ77_Decompress
.hidden LZ77_Decompress