This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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.", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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++) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#LINQPad optimize+ | |
void Main() | |
{ | |
BenchmarkRunner.Run<AnagramsBenchmark>(); | |
} | |
[MemoryDiagnoser] | |
public class AnagramsBenchmark | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface IStickyHeader |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bufio" | |
"fmt" | |
"os" | |
"time" | |
"github.com/briandowns/spinner" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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){ |