15 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
180
views
How to read team chats with Keybase Chat API?
Whenever I use the following Keybase Chat API query:
{
"method": "read",
"params": {
"options": {
"channel": {
"name": ...
1
vote
0
answers
48
views
Create dynamic subteam in keybase from cmd line
I'm trying to create a subteam in keybase from the command line. If I explicitly mention the team names like this keybase team create treehouse.hiring. Subteam gets created without any error. But if I ...
1
vote
1
answer
12k
views
Cannot git checkout master: invalid path '?'
After an "unsuccessful" git pull on my local master, an error prevents to switch back to master:
C: repo_folder> git checkout master
error: invalid path '?'
The ? must be because it is a ...
1
vote
1
answer
148
views
Javascript - read all filenames and output to html with hyperlink
I have a limited hosting server. I want to read the filetree (all files and folders) and create a hyperlink to them on a basic html page.
For clarity, I'm using Keybase, am publicly sharing files, but ...
0
votes
0
answers
217
views
I am having issues with the node module compilation
I need to install keybase-bot on an existing system which is based on Laravel. I have installed keybase-bot and its dependencies but it still gives me error like this. I am not a node.js dev so its ...
1
vote
0
answers
883
views
How to decrypt password from terraform output
How can I decrypt generated passwords from output like this:
passwords = {
"user-1" = "encrypted_password_by_keybase"
"user-2" = "...
1
vote
1
answer
213
views
How to use keybase's git inside docker?
I have a keybase client running in the machine, but I want to be able to push commits from inside the container. However, keybase works a little different than git itself. It provides a git 'url' like ...
PPP's user avatar
- 2,040
0
votes
1
answer
820
views
How to use Keybase Git repository in Termux
Keybase-cli installs and runs in Termux on Android. However, I can't figure out if using the git helper is supposed to work in that environment or not.
If I add a remote from Keybase (i.e. keybase = ...
7
votes
2
answers
405
views
Can I sign git commits with keybase.io?
I am setting up a new machine and would prefer to use keybase for various pgp activities like signing commits. I can run a command like
$ keybase pgp sign -m foo > x
$ gpg --verify x 2>&1 | ...
2
votes
1
answer
3k
views
Keybase private PGP key export fails but decryption is working as expected. So where is my private key?
I use Keybase and I want to export my private PGP key, but I don't know where it is.
Encryption and decryption with keybase pgp [encrypt|decrypt] works as expected with messages sent to and from ...
0
votes
1
answer
531
views
Keybase "keybased.sock: connect n osuch file or directory"
I need to install keybase, and I followed the instructions available on the official linux download page.
I executed the following commands:
curl -O https://prerelease.keybase.io/keybase_amd64.deb
...
1
vote
0
answers
153
views
Keybase API use in PHP application
I am creating a new PHP application in which I want to interact with Keybase.
First option is to use the API, but unfortunately I am running into some issues.
First step is to call the signup call.
...
2
votes
0
answers
390
views
Integrating Jenkins pipeline with keybase.io
My team is using keybase.io instead of slack, and I'd like our Jenkins results to post into the builds directory of our keybase team. So far I have a post step (I'm using a declarative pipeline) like ...
1
vote
2
answers
172
views
flags need an argument keybase chat api example
I'am trying to test the example of the keybase chat api :
echo "{'method': 'send', 'params': {'options': {'channel': {'name': 'you', 'public': true}, 'message': {'body': 'Still going...'}}}}" | ...
2
votes
1
answer
3k
views
Implementing HMAC-SHA256 for Keybase in Javascript
I am working with the keybase.io API - trying to drive it from javascript. Logging in is a two step process. The second step is detailed at
https://keybase.io/docs/api/1.0/call/login.
I am stuck on ...