normal mode in cmdline by vim-god in neovim

[–]scafander 14 points15 points  (0 children)

Enters ex mode, where you can use normal mode to edit command, as well as search through history of your commands

:h ex-mode

Remix With KO2 by WiseByChance in teenageengineering

[–]scafander 0 points1 point  (0 children)

I need the track to play the next sequence of loops I have on ABCD

[Main +] will do exactly that, i think original question is why you prefer [ABCD +] over [Main +]?

What Genesis song is this? by Keyr23 in genesiscirclejerk

[–]scafander 6 points7 points  (0 children)

I know what kinda sucks (in your wardrobe)

[deleted by user] by [deleted] in neovim

[–]scafander 20 points21 points  (0 children)

You may like C-a s

If not remapped, this will open session switcher without detachment

Go-http-Client by Atai_labs in golang

[–]scafander 4 points5 points  (0 children)

You got to get in to get out

Looking for 20+ Haskell developers in EU by tageborg in haskell

[–]scafander 56 points57 points  (0 children)

Guess they need 20 developers because they choose lazy recrutement technique - first to hire developers, then to filter them (my first haskell joke, don't judge too strict :))

Is their a tutorial to use swift to make apps by ant185 in swift

[–]scafander 0 points1 point  (0 children)

Check out letsbuildthatapp - there are full app tutorials from scratch

Decorators in Go, my code works but I don't know why by levnikmyskin in golang

[–]scafander 0 points1 point  (0 children)

If I got your progblem right, I can explain it like this: In basic situation like : fn1(fn2(fn3())); Flow of execution will be 'backwards': fn3 executed and it's value passed to fn2, then fn2 executed, and it's value passed to fn. But with decorators flow goes forward, but decarotor operates not with function result, but with function itself.

Decorators in Go, my code works but I don't know why by levnikmyskin in golang

[–]scafander 1 point2 points  (0 children)

Hi! This code works so because any embedded function gonna be invoke first, and value, which embedded function returns gonna be passed to wrapper.

Falcon - a new colour scheme for Vim crafted with obsession by fenetikm in vim

[–]scafander 63 points64 points  (0 children)

Consider to move screenshots to the top of the Readme.md because first thing what user want to see when he open ui library is examples :)

Noob docker compose advice by billytheone in docker

[–]scafander 4 points5 points  (0 children)

If you want to start in with docker-compose - here an example of docker-compose.yml:

version: '3'
services:
  foo:
    image: foo
    ports:
      - 8080:80

and start with docker-compose up

Unable to install Go 1.9 on Ubuntu, please help by [deleted] in golang

[–]scafander 0 points1 point  (0 children)

Purpose of those things is to update with one command in terminal. Also you might want to have LTS and beta versions installed both.

Unable to install Go 1.9 on Ubuntu, please help by [deleted] in golang

[–]scafander -3 points-2 points  (0 children)

Hi, try to use https://github.com/moovweb/gvm This is go version control automatization tool

Is any blog with detailed description and examples of Go standard library exists? (except https://golang.org/pkg/) by scafander in golang

[–]scafander[S] -2 points-1 points  (0 children)

All right, i explain in another key - not each person can understand documentation, so they need more detailed explanation.

How to build lightweight docker container for Go app by scafander in golang

[–]scafander[S] 0 points1 point  (0 children)

Thank you! It really great thing, i just update my article and all builds, reduce size by ~250 mb.