Skip to content

Instantly share code, notes, and snippets.

View alfredoPacheco's full-sized avatar

Alfredo Pacheco alfredoPacheco

View GitHub Profile
@alfredoPacheco
alfredoPacheco / CV.json
Last active March 25, 2022 04:55
CV data source
{
"pdf": "/cv.pdf",
"updated_at": "Mar, 2022",
"external_links": [
{
"link": "https://www.linkedin.com/in/alfredo-pacheco",
"img_src": "/images/linkedin.png",
"img_alt": "Linkedin",
"img_height": null
}
@alfredoPacheco
alfredoPacheco / main.cs
Last active July 1, 2020 13:47 — forked from mythz/main.cs
Redis RemoveAll repro Fork
using System;
using ServiceStack;
using ServiceStack.Text;
using ServiceStack.Redis;
using ServiceStack.DataAnnotations;
using ServiceStack.Caching;
var redisManager = new RedisManagerPool("localhost:6379");
var redis = redisManager.GetClient();
redis.FlushAll();