Hello Kozi
How are you?
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 | |
*/ |
use std::collections::HashSet; | |
use std::io::{self, BufRead}; | |
enum Token { | |
Query(i64), | |
Insert(i64), | |
} | |
impl Token { | |
fn parse(s: String) -> Option<Token> { |
import { defineAsyncComponent } from 'vue' | |
const Content = defineAsyncComponent(() => import('./component-content.js')) | |
export default { | |
name: 'App', | |
components: { Content }, | |
template: /*html*/` | |
<Content /> | |
` |
How are you?
{ | |
"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ź", |