Skip to content

Instantly share code, notes, and snippets.

View tuscen's full-sized avatar
🐼

Aleksey Usatov tuscen

🐼
View GitHub Profile
@tuscen
tuscen / EscapeMarkdown.cs
Last active March 17, 2018 15:44
Escape markdown tokens for Telegram markdown markup
// Does it work properly with utf16 encoded strings (utf16 is used in .NET internally)
// considering that its length is two bytes and strings are iterated char by char?
public static class StringExtensions
{
private static char[] EscapableChars = { '*', '_', '[', '`', '\\', ']' };
public static string EscapeMarkdown(this string value)
=> string.Join(
string.Empty,
value.Select(
public class DisableMultipleQueuedItemsFilter : JobFilterAttribute, IClientFilter, IServerFilter
{
private static readonly TimeSpan LockTimeout = TimeSpan.FromSeconds(5);
private static readonly TimeSpan FingerprintTimeout = TimeSpan.FromHours(1);
public void OnCreating(CreatingContext filterContext)
{
if (!AddFingerprintIfNotExists(filterContext.Connection, filterContext.Job))
{
filterContext.Canceled = true;
@tuscen
tuscen / nginx.conf
Created December 8, 2017 16:45 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@tuscen
tuscen / tap.md
Created September 23, 2017 02:01 — forked from ripesunflower/tap.md
The Task-based Asynchronous Pattern
@tuscen
tuscen / RouteParser.cs
Created September 16, 2017 23:32 — forked from wcharczuk/RouteParser.cs
C# Route Parser
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
using System.Text.RegularExpressions;
//TODO: probably want to change this if you're using it your project
namespace ClothesHorse.Core
{

Rate limiting with Redis

June 2011 - Chris O'Hara - (archived original post)

Rate limiting can be an effective way of conserving resources and preventing automated or nefarious activities on your site.

A common use case is to limit the amount of requests an IP can make over a certain time frame. For example, you might want to restrict users from using an expensive search utility on your site. If the user attempts to search more than 5 times a minute, you can redirect them to another page informing them that they need to wait.

IP based rate limiting is already in use on larger sites. Google and Yahoo both employ the technique to prevent (or at least complicate) automated requests to their services.

@tuscen
tuscen / add_intellij_launcer
Created August 6, 2017 20:55 — forked from rob-murray/add_intellij_launcer
Add Intellij launcher shortcut and icon for ubuntu
// create file:
sudo vim /usr/share/applications/intellij.desktop
// add the following
[Desktop Entry]
Version=13.0
Type=Application
Terminal=false
Icon[en_US]=/home/rob/.intellij-13/bin/idea.png
Name[en_US]=IntelliJ
@tuscen
tuscen / RedisJobQueue.cs
Created July 14, 2017 15:18 — 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
{
@tuscen
tuscen / event_emitter.js
Created April 4, 2016 21:07
Event emitter
const events = Symbol("events");
class EventEmitter {
constructor() {
this[events] = new Map();
}
addListener(event, callback, once = false) {
this[events].has(event) || this[events].set(event, new Map());
@tuscen
tuscen / sortByFrequencies.js
Last active February 17, 2016 14:26
Sort elements in array by their frequencies
function sortByFrequencies(coll) {
'use strict';
const frequencies = coll.reduce((freq, elem) => {
if (freq.has(elem)) {
return freq.set(elem, freq.get(elem) + 1);
} else {
return freq.set(elem, 1);
}
}, new Map());