Skip to content

Instantly share code, notes, and snippets.

{"level":"info","ts":"2023-04-21T09:13:06+01:00","caller":"lspcmd/main.go:74","msg":"lsp: starting up..."}
{"level":"info","ts":"2023-04-21T09:13:06+01:00","caller":"lspcmd/main.go:81","msg":"lsp: starting gopls..."}
{"level":"info","ts":"2023-04-21T09:13:06+01:00","caller":"lspcmd/main.go:93","msg":"creating client"}
{"level":"info","ts":"2023-04-21T09:13:06+01:00","caller":"lspcmd/main.go:98","msg":"creating proxy"}
{"level":"info","ts":"2023-04-21T09:13:06+01:00","caller":"lspcmd/main.go:103","msg":"creating templ server"}
{"level":"info","ts":"2023-04-21T09:13:06+01:00","caller":"lspcmd/main.go:114","msg":"starting debug http server","addr":"localhost:7474"}
{"level":"info","ts":"2023-04-21T09:13:06+01:00","caller":"lspcmd/main.go:123","msg":"listening"}
{"level":"info","ts":"2023-04-21T09:13:06+01:00","caller":"proxy/server.go:164","msg":"client -> server: Initialize"}
{"level":"info","ts":"2023-04-21T09:13:06+01:00","caller":"proxy/server.go:181","msg":"client -> server: Initialize end"}
{"level":"info"
{"level":"info","ts":"2023-04-17T14:35:31+01:00","caller":"lspcmd/main.go:74","msg":"lsp: starting up..."}
{"level":"info","ts":"2023-04-17T14:35:31+01:00","caller":"lspcmd/main.go:81","msg":"lsp: starting gopls..."}
{"level":"info","ts":"2023-04-17T14:35:31+01:00","caller":"lspcmd/main.go:93","msg":"creating client"}
{"level":"info","ts":"2023-04-17T14:35:31+01:00","caller":"lspcmd/main.go:98","msg":"creating proxy"}
{"level":"info","ts":"2023-04-17T14:35:31+01:00","caller":"lspcmd/main.go:103","msg":"creating templ server"}
{"level":"info","ts":"2023-04-17T14:35:31+01:00","caller":"lspcmd/main.go:114","msg":"starting debug http server","addr":"localhost:7474"}
{"level":"info","ts":"2023-04-17T14:35:31+01:00","caller":"lspcmd/main.go:123","msg":"listening"}
{"level":"info","ts":"2023-04-17T14:35:31+01:00","caller":"proxy/server.go:164","msg":"client -> server: Initialize"}
{"level":"info","ts":"2023-04-17T14:35:31+01:00","caller":"proxy/server.go:181","msg":"client -> server: Initialize end"}
{"level":"info"
@joerdav
joerdav / cdk.go
Created June 6, 2022 09:47
Sharing Resources Between Stacks
package main
import (
"github.com/aws/aws-cdk-go/awscdk"
"github.com/aws/aws-cdk-go/awscdk/awsiam"
"github.com/aws/aws-cdk-go/awscdk/awss3"
"github.com/aws/constructs-go/constructs/v3"
"github.com/aws/jsii-runtime-go"
)
@joerdav
joerdav / .vimrc
Created April 3, 2019 13:10
My .vimrc
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#begin()
Plugin 'cespare/vim-toml'
Plugin 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plugin 'junegunn/fzf.vim'
Plugin 'terryma/vim-multiple-cursors'
Plugin 'skywind3000/asyncrun.vim'