Skip to content

Instantly share code, notes, and snippets.

View lukasz-madon's full-sized avatar

Lukasz lukasz-madon

View GitHub Profile
@lukasz-madon
lukasz-madon / send_empty_json.elm
Created July 20, 2018 17:32
Send an empty json to an endpoint in Elm. Ignore the response
sendJson : Cmd Msg
sendJson =
let
json =
Http.jsonBody (Json.Encode.object [])
in
Http.send SendEmptyJsonMsg
(Http.post "api/empty-json" json (Json.Decode.succeed ""))
@lukasz-madon
lukasz-madon / notebook-starter.ipynb
Created November 2, 2017 13:18
Jupyter notebook starter
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lukasz-madon
lukasz-madon / flatten_list.py
Created March 7, 2017 00:05
Flatten python collection
# following code uses recursion, so it may run out of stack memeory for large collections
def flatten(container):
"""generate a flatten sequence from the input list"""
for i in container:
if isinstance(i, (list, tuple)):
for j in flatten(i):
yield j
else:
yield i
{
"always_show_minimap_viewport": true,
"bold_folder_labels": true,
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
@lukasz-madon
lukasz-madon / gist:53a4a89a738ffb7c85e7
Created November 16, 2015 13:49
Generate CSRF token
/// <summary>
/// Generates AntiForgery Tokens
/// </summary>
public static class AntiForgeryTokensGenerator
{
private const string ConstantSalt = "b8YagDpYwB";
private static readonly RandomNumberGenerator CryptoRandomDataGenerator = new RNGCryptoServiceProvider();
// buffer for random string with 32 bytes of entropy
# -*- coding: utf-8 -*-
"""Convert Unicode text into plain ASCII string."""
# for brevity the table is kept simple
CONVERSION_TABLE = {
u"\u0394": "D",
u"\u03b1": "a",
u"\u03bd": "n",
u"\u03ac": "a",
u"\u03b7": "e"
"use latest";
let MongoClient = require('mongodb').MongoClient;
const questions = `
<html>
<head>
<title>Euler problems</title>
</head>
<body>
using System;
using System.Linq;
namespace EnumTest
{
public enum ContentAreaTagEnum
{
Unknown,
[ContentArea(Name = "Full")]
I wanna write a small tool that will swap music from my youtube video. Currently it's binary
if override_audio:
o_cmd = ["ffmpeg", "-i", music_url, "-i", video_url, "-codec", "copy",
"-y", "-shortest", output_video]
logger.info(o_cmd)
code = sp.call(o_cmd)
else:
cmd = ["ffmpeg", "-i", music_url, "-i", video_url, "-filter_complex",
"amix=duration=shortest", "-vcodec", "copy", "-y", "-shortest",
output_video]
# given list [2, 3, 5, 78]
# return 1, 4, 6-77, 79-99
# the range is always <1, 100)
def get_ranges(lst, N=100):
s = set(lst)
filtered = (i for i in xrange(1, N) if not i in s)
output2 = []
prev = None
skipping = False
for num in filtered: