Skip to content

Instantly share code, notes, and snippets.

@r1pper
r1pper / FastLog
Last active October 31, 2023 15:34
Fast float Logarithm in C# using lookup Table
using System;
using System.Runtime.InteropServices;
namespace Test2
{
public static class FastLog
{
[StructLayout(LayoutKind.Explicit)]
private struct Ieee754
{
@r1pper
r1pper / Fast Image Manipulation
Last active December 17, 2015 06:19
a lightweight class for fast image manipulation
using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Runtime.InteropServices;
namespace ImageManipulation
{
class FastImage : IDisposable
{
@r1pper
r1pper / WindowSpy
Last active June 13, 2023 07:16
a simple Spy++ Window Finder style written in c#
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Globalization;
using System.Runtime.InteropServices;
using System.Text;
using System.Windows.Forms;
namespace Spy
{