Skip to content

Instantly share code, notes, and snippets.

View ZakiMohammed's full-sized avatar
🎨
Painting

Zaki Mohammed ZakiMohammed

🎨
Painting
View GitHub Profile
@odan
odan / xampp_php7_xdebug.md
Last active May 29, 2024 13:56
Installing Xdebug for XAMPP
@richardkundl
richardkundl / BloomFilter.cs
Created January 7, 2014 14:29
Bloom filter implementation in c#.
namespace BloomFilter
{
using System;
using System.Collections;
/// <summary>
/// Bloom filter.
/// </summary>
/// <typeparam name="T">Item type </typeparam>
public class Filter<T>