Skip to content

Instantly share code, notes, and snippets.

View thinkofher's full-sized avatar
🌈
lodz lodz lodz

thinkofher thinkofher

🌈
lodz lodz lodz
View GitHub Profile
{
"basics": {
"name": "Beniamin Dudek",
"label": "Software Developer",
"picture": "https://beniamindudek.xyz/assets/img/me.png",
"website": "https://beniamindudek.xyz",
"email": "mail@bdudek.xyz",
"summary": "Self-made wannabe hacker with engineering background. I am a graduate of the AGH University of Science and Technology in Cracow. I am mainly interested in web technologies and operating systems from the Linux family. I am an enthusiast and an advocate of Free and Open Source software. I’m highly enjoying using bleeding edge technologies, especially modern programming languages such as Go, Python or Rust. In my free time I try to develop my private projects (check my Github profile!) and broaden my knowledge of programming techniques.",
"location": {
"city": "Łódź",
@thinkofher
thinkofher / act.js
Last active December 21, 2020 19:32
vanilla js minimal react clone based on valoo
window.act = (() => {
/*!
* Just the bare necessities of state management
* (c) 2018 Google LLC, Apache-2.0 License
*
* https://gist.github.com/developit/a0430c500f5559b715c2dddf9c40948d
*
* @param {Any} v initial value
* @param {Array.<Function>} cb array with callback functions
*/
@thinkofher
thinkofher / main.rs
Created April 5, 2021 22:38
rust konkurs 2
use std::collections::HashSet;
use std::io::{self, BufRead};
enum Token {
Query(i64),
Insert(i64),
}
impl Token {
fn parse(s: String) -> Option<Token> {
@thinkofher
thinkofher / component-app.js
Created September 10, 2021 12:18 — forked from kesor/component-app.js
Vue.js 3.x with ES6 modules in the browser using import-map
import { defineAsyncComponent } from 'vue'
const Content = defineAsyncComponent(() => import('./component-content.js'))
export default {
name: 'App',
components: { Content },
template: /*html*/`
<Content />
`
@thinkofher
thinkofher / test.md
Last active October 17, 2021 16:40
hello_world.md

Hello Kozi

How are you?

@thinkofher
thinkofher / go.mod
Last active November 26, 2022 22:16
krs scrapping with go for fun and profit
module github.com/thinkofher/scrapper-boy
go 1.19
@thinkofher
thinkofher / go.mod
Created November 26, 2022 23:32
krs open api scrapping with go for fun and profit
module github.com/thinkofher/scrapper-boy
go 1.19