I hereby claim:
- I am kalafut on github.
- I am kalafut (https://keybase.io/kalafut) on keybase.
- I have a public key ASBFWROk5GskUBI7MP7ZaeBX6noxn15vMoXxZOK3jJ43wQo
To claim this, I am signing this object:
| import json | |
| import sqlite3 | |
| output = [] | |
| conn = sqlite3.connect('PinboardBookmarks.db') | |
| c = conn.cursor() | |
| for row in c.execute("SELECT url, description, tags FROM bookmark"): | |
| output.append({"href": row[0], "description": row[1], "tags": row[2]}) |
| package main | |
| // Running gorename -from example.go::Foo -to foo on this file will not work. | |
| // There are multiple errors, but it appears that gorename stops after the first one. | |
| // | |
| // example.go:16:6: renaming this type "Foo" to "foo" | |
| // example.go:21:6: conflicts with func in same block | |
| // | |
| // After commenting out or changing foo(), the errors moves down: | |
| // |
| #!/bin/bash | |
| # | |
| # Simple creation of a single-app django project, as described in: https://zindilis.com/posts/django-anatomy-for-single-app/ | |
| # | |
| # ./django_init foo | |
| # | |
| # This will result is the following flat structure: | |
| # | |
| # . | |
| # └── foo |
| package vault | |
| import ( | |
| "context" | |
| "crypto/sha256" | |
| "crypto/sha512" | |
| "encoding/base64" | |
| "encoding/hex" | |
| "encoding/json" | |
| "errors" |
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "log" | |
| "time" | |
| "github.com/labstack/echo/v5" | |
| "github.com/pocketbase/pocketbase" | |
| "github.com/pocketbase/pocketbase/apis" | |
| "github.com/pocketbase/pocketbase/core" |