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 crypto | |
import ( | |
"bufio" | |
"crypto/aes" | |
"crypto/cipher" | |
"crypto/rand" | |
"fmt" | |
"io" | |
"os" |
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
<template> | |
<canvas id="signature"></canvas> | |
</template> | |
<script> | |
export default { | |
name: "signature", | |
data: function () { | |
return { | |
mousePressed: false, |
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
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 - %' |