Skip to content

Instantly share code, notes, and snippets.

{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"basics": {
"name": "Jakub Syty",
"label": "Technical Team Lead at Euvic S.A.",
"email": "syty.jakub@gmail.com",
"phone": "+48 721 043 077",
"url": "https://github.com/jakoss",
"image": "https://gravatar.com/avatar/be47884caaad28586216cc9ff22dab71717f6abea7402cc0142caa7b2cbd3c98?s=300",
"summary": "I’m a pragmatic and flexible software engineer with extensive experience in software architecture, backend systems, and mobile technologies.\nA passionate supporter of open source, I frequently contribute my own work to the community.\nWhile I’m always eager to learn and adopt new technologies, my core expertise lies in Android/Kotlin (mobile) and .NET (backend and tooling).\nAs a Technical Team Lead, I’ve focused on improving developer experience, establishing patterns, jumpstarting large projects, architecting solutions, and mentoring other developers.",
@jakoss
jakoss / main.cs
Created July 15, 2020 12:59
Automated todoist tasks creation
void Main()
{
using var client = new HttpClient();
client.DefaultRequestHeaders.Add("Authorization", "Bearer <integration_token_here>");
var dates = new List<DateTime>();
for (int year = 2020; year <= 2023; year++)
{
for (int i = 1; i <= 12; i++)
{
@jakoss
jakoss / MediaDecoder.java
Created April 15, 2020 18:57 — forked from a-m-s/MediaDecoder.java
Android code to extract raw audio from arbitrary media files.
/* MediaDecoder
Author: Andrew Stubbs (based on some examples from the docs)
This class opens a file, reads the first audio channel it finds, and returns raw audio data.
Usage:
MediaDecoder decoder = new MediaDecoder("myfile.m4a");
short[] data;
while ((data = decoder.readShortData()) != null) {
@jakoss
jakoss / MediaDecoder.java
Created April 15, 2020 18:57 — forked from a-m-s/MediaDecoder.java
Android code to extract raw audio from arbitrary media files.
/* MediaDecoder
Author: Andrew Stubbs (based on some examples from the docs)
This class opens a file, reads the first audio channel it finds, and returns raw audio data.
Usage:
MediaDecoder decoder = new MediaDecoder("myfile.m4a");
short[] data;
while ((data = decoder.readShortData()) != null) {
#LINQPad optimize+
void Main()
{
BenchmarkRunner.Run<AnagramsBenchmark>();
}
[MemoryDiagnoser]
public class AnagramsBenchmark
{
interface IStickyHeader
@jakoss
jakoss / spinner_charset_iterate.go
Created August 7, 2015 20:45
Iterate through the all charsets in briandowns/spinner
package main
import (
"bufio"
"fmt"
"os"
"time"
"github.com/briandowns/spinner"
)
#include <iostream>
using namespace std;
void sumakontrolna(char * pakiet, long& suma, int n = 5){
for(int i = 0; i < n; i++)
suma += pakiet[i];
}
void sumakontrolna(int liczba, long& suma){