Skip to content

Instantly share code, notes, and snippets.

View altalk23's full-sized avatar
💖
:3

alk altalk23

💖
:3
View GitHub Profile
@sciolist
sciolist / build.sh
Created March 17, 2013 00:21
Sectcreate
gcc -Os main.c -sectcreate __TEXT example example.txt
@arrieta
arrieta / lexer.cpp
Last active June 5, 2024 17:22
Simple C++ Lexer
// A simple Lexer meant to demonstrate a few theoretical concepts. It can
// support several parser concepts and is very fast (though speed is not its
// design goal).
//
// J. Arrieta, Nabla Zero Labs
//
// This code is released under the MIT License.
//
// Copyright 2018 Nabla Zero Labs
//
@SMJSGaming
SMJSGaming / CCAnimateFrameCache.hpp
Created May 1, 2022 14:24
A full reload system for Geometry Dash using cocos2d
#pragma once
#include <cocos2d.h>
using namespace cocos2d;
namespace cocos2d {
struct CCAnimateFrameCache : CCObject {
CCDictionary* m_dict0;
CCDictionary* m_dict1;