- C-a == Ctrl-a
- M-a == Alt-a
:q close
:w write/saves
:wa[!] write/save all windows [force]
:wq write/save and close
Host * | |
ControlPath ~/.ssh/sockets/master-%l-%r@%h:%p | |
ControlMaster auto | |
GSSAPIAuthentication=no | |
ServerAliveInterval 25 | |
Compression yes | |
IdentityFile ~/.ssh/id_rsa | |
#ControlPersist yes | |
UseRoaming no |
package main | |
import ( | |
"fmt" | |
"log" | |
"net" | |
"github.com/milosgajdos83/tenus" | |
) |
package main | |
import ( | |
"fmt" | |
"log" | |
"net" | |
"github.com/milosgajdos83/tenus" | |
) |
package main | |
import ( | |
"fmt" | |
"net" | |
) | |
func main() { | |
ifaces, err := net.Interfaces() | |
for _, iface := range ifaces { |
#!/usr/bin/env ruby | |
require 'ipaddr' | |
ARGV.each do |int| | |
puts "#{int} = #{IPAddr.new(int.to_i, Socket::AF_INET).to_s}" | |
end |
From - String | |
To - String/List of string | |
Message - String |
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"reflect" | |
) | |
type To []string |
<template> | |
<ul class="language-selector"> | |
<li | |
v-for="(language, idx) in $i18n.availableLocales" | |
:class="{selected: language === $i18n.locale}" | |
> | |
<a @click="changeLayout(language, $t(`languages.list[${idx}].bidi`))> | |
<Flag | |
:country="$t(`languages.list[${idx}].country-code`)" | |
:title="language" |