<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>localhost.pbcopy</string>
This file contains 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
<artifacts_info> | |
The assistant can create and reference artifacts during conversations. Artifacts are for substantial, self-contained content that users might modify or reuse, displayed in a separate UI window for clarity. | |
# Good artifacts are... | |
- Substantial content (>15 lines) | |
- Content that the user is likely to modify, iterate on, or take ownership of | |
- Self-contained, complex content that can be understood on its own, without context from the conversation | |
- Content intended for eventual use outside the conversation (e.g., reports, emails, presentations) | |
- Content likely to be referenced or reused multiple times |
This file contains 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 main | |
import ( | |
"fmt" | |
"time" | |
"github.com/go-redis/redis" | |
"github.com/kristoff-it/redis-memolock/go/memolock" | |
) | |
func main () { |
This file contains 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
# | |
# Sets history options. | |
# | |
# Authors: | |
# Robby Russell <[email protected]> | |
# Sorin Ionescu <[email protected]> | |
# | |
HISTFILE="$HOME/.zhistory" | |
HISTSIZE=10000000 |
This file contains 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
set runtimepath^=~/.vim runtimepath+=~/.vim/after | |
let &packpath = &runtimepath | |
source ~/.vimrc |
This file contains 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
diff --git a/core/internal/cltest/cltest.go b/core/internal/cltest/cltest.go | |
index 829c221e9..192686737 100644 | |
--- a/core/internal/cltest/cltest.go | |
+++ b/core/internal/cltest/cltest.go | |
@@ -142,6 +142,7 @@ type TestApplication struct { | |
wsServer *httptest.Server | |
connectedChannel chan struct{} | |
Started bool | |
+ stoppedOnce bool | |
} |
This file contains 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 main | |
import "fmt" | |
func main() { | |
fmt.Println("append gotcha\n") | |
// not copying | |
arr1 := []int{1, 2, 3} | |
for i, _ := range arr1 { |
This file contains 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
diff --git a/explorer/package.json b/explorer/package.json | |
index f4ab26f7..883c9fd3 100644 | |
--- a/explorer/package.json | |
+++ b/explorer/package.json | |
@@ -53,6 +53,7 @@ | |
"@types/express": "^4.16.1", | |
"@types/jest": "^24.0.11", | |
"@types/material-ui": "^0.21.6", | |
+ "@types/mime-types": "^2.1.0", | |
"@types/node": "^11.11.3", |
I hereby claim:
- I am dimroc on github.
- I am dimroc (https://keybase.io/dimroc) on keybase.
- I have a public key ASCc3JOAcj8yfjiENaPu69P66KMcwhMSOZEup5z1PAtUMQo
To claim this, I am signing this object:
This file contains 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
diff --git a/web/keys_controller.go b/web/keys_controller.go | |
index c76ba719..091ad270 100644 | |
--- a/web/keys_controller.go | |
+++ b/web/keys_controller.go | |
@@ -18,16 +18,22 @@ type KeysController struct { | |
// "<application>/keys" | |
func (c *KeysController) Create(ctx *gin.Context) { | |
request := models.CreateKeyRequest{} | |
+ | |
// TODO: Change CreateKeyRequest to only have one password |
NewerOlder