Skip to content

Instantly share code, notes, and snippets.

View Krule's full-sized avatar
🍐
Fruity

Armin Pašalić Krule

🍐
Fruity
View GitHub Profile
This file has been truncated, but you can view the full file.
aachen
aachener
aachenerin
aachenern
aacheners
aachens
aadorf
aalbauer
aalbeck
aalbestand
@Krule
Krule / cv-brief.tex
Created January 11, 2016 21:20
My brief CV
\documentclass[letterpaper]{article}
\usepackage{color,hyperref,geometry,subfigure,fancyhdr,sectsty,pstricks}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[sc,osf]{mathpazo}
\usepackage{adforn}
\usepackage{soul}
\geometry{ body={6.5in, 8.5in}, left=1.0in, top=1.20in }
@Krule
Krule / tokens.json
Created January 19, 2016 13:23
Token result
{
"tokens": [
{
"token": " adaquaten",
"start_offset": 6,
"end_offset": 15,
"type": "shingle",
"position": 0
},
{
@Krule
Krule / itex.sublime-snippet
Last active September 22, 2016 08:18
Rspec it { is_expected.to }
<snippet>
<content><![CDATA[it { is_expected.to($0) }]]></content>
<tabTrigger>itex</tabTrigger>
<scope>source.ruby</scope>
<description>it { is_expected.to(...) }</description>
</snippet>
@Krule
Krule / itexi.sublime-snippet
Created September 22, 2016 08:19
Rspec snippet: `it { is_expected.to include(...) }`
<snippet>
<content><![CDATA[it { is_expected.to include($0) }]]></content>
<tabTrigger>itexi</tabTrigger>
<scope>source.ruby</scope>
<description>it { is_expected.to include(...) }</description>
</snippet>
@Krule
Krule / main.go
Created December 1, 2022 16:13
ChatGPT first attempt
// Event is a representation of a significant happening in the gang's history.
type Event struct {
Timestamp time.Time
Name string
Data map[string]interface{}
}
// EventLog is a record of all the significant happenings in the gang's history.
type EventLog []Event