Skip to content

Instantly share code, notes, and snippets.

View IS4Code's full-sized avatar
🇺🇦
​Freedom to the oppressed!

IS4 IS4Code

🇺🇦
​Freedom to the oppressed!
View GitHub Profile
@IS4Code
IS4Code / json.pwn
Created May 9, 2018 14:33
JSON parser example using PawnPlus
#include <a_samp>
#include <file>
#include <float>
#include <PawnPlus>
const json_ichar = -2;
const GlobalVariant:json_error_obj = GlobalVariant:-1;
static stock File:json_input;
@IS4Code
IS4Code / idea.cpp
Created February 22, 2021 10:23
C++ reflection idea
class std::identifier
{
public:
template <size_t Size>
consteval identifier(const char (&name)[Size]);
consteval const char (&name() const)[auto];
}
struct *
@IS4Code
IS4Code / DelphiFormReader.cs
Created March 12, 2022 12:35
DelphiFormReader
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
namespace IS4.Delphi
{
public static class DelphiFormReader