Skip to content

Instantly share code, notes, and snippets.

@dentych
dentych / crypto.go
Last active April 5, 2022 13:28
AES streaming encryption
package crypto
import (
"bufio"
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"fmt"
"io"
"os"
@dentych
dentych / Signature.vue
Created April 30, 2019 15:39
Signature pad as Vue component
<template>
<canvas id="signature"></canvas>
</template>
<script>
export default {
name: "signature",
data: function () {
return {
mousePressed: false,
@dentych
dentych / sql
Created March 8, 2019 12:16
such sql
select project_id, hourly_rate, sum_elapsed
from projects p
inner join (SELECT project_id, sum(iv.seconds_elapsed) sum_elapsed
from issues i
left join intervals iv on i.id = iv.issue_id and
(i.internal_note is null or i.internal_note NOT LIKE '%SKIF%')
group by project_id) bla on p.id = bla.project_id and p.project_name NOT LIKE 'K - %'