Skip to content

Instantly share code, notes, and snippets.

View Willienn's full-sized avatar
🌴
Living?

Willien Willienn

🌴
Living?
View GitHub Profile
@Willienn
Willienn / RedisJobQueue.cs
Created December 7, 2023 14:42 — forked from tenowg/RedisJobQueue.cs
A Message/Job Queue based on StackExchange.Redis and Redis Server
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using StackExchange.Redis;
namespace CitySurvival.Redis
{
@railson-ferreira
railson-ferreira / run-firebase-emulators.sh
Created March 17, 2022 12:44
Run Firebase emulators with persistent data (MacOS shell script)
#!/bin/sh
firebase emulators:start --export-on-exit ./data --import ./data
@tenowg
tenowg / RedisJobQueue.cs
Last active June 10, 2025 14:23
A Message/Job Queue based on StackExchange.Redis and Redis Server
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using StackExchange.Redis;
namespace CitySurvival.Redis
{