Skip to content

Instantly share code, notes, and snippets.

View psukys's full-sized avatar
💃

Paulius Šukys psukys

💃
View GitHub Profile
@sirex
sirex / penciju_fondai.ipynb
Last active March 10, 2019 14:39
Pensijų fondų palyginimas
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@evert
evert / 00-email-to-google.md
Last active October 21, 2018 13:05
Email to google about carddav issues.

Context: This is the email I sent google, listing issues I came across when working with their carddav server. More information in this blogpost. I reformatted and redacted the email to protect people's privacy.

Hello redacted,

You may have figured it from the other emails, but we are currently working on providing a syncronization tool with Google's new CardDAV server. We've run into a number of issues that are definitely bugs, and looking for some advise in a different area.

I would much appreciate it if you could take a look at these, but I'd also completely understand if you're busy. Regardless, I feel that this information may be helpful for you, because I feel I will not the last to mention them

@staltz
staltz / introrx.md
Last active May 18, 2024 05:17
The introduction to Reactive Programming you've been missing
@tobert
tobert / showcam.sh
Created March 10, 2014 19:00
View a webcam with gstreamer
#!/bin/bash
set -e -x
gst-launch-1.0 \
v4l2src device=/dev/video0 ! \
image/jpeg, width=1280, height=720 ! \
jpegparse ! \
jpegdec ! \
autovideoconvert ! \
@zed
zed / cydot.pyx
Created March 16, 2012 18:25
Naive O(N**3) 2D np.dot() multithreaded implementation (CPython extension in Cython)
#cython: boundscheck=False, wraparound=False
import numpy as np
cimport numpy as np
from cython.parallel cimport prange
def dot(np.ndarray[np.float32_t, ndim=2] a not None,
np.ndarray[np.float32_t, ndim=2] b not None,
np.ndarray[np.float32_t, ndim=2] out=None):
"""Naive O(N**3) 2D np.dot() implementation."""