Skip to content

Instantly share code, notes, and snippets.

View mandulaj's full-sized avatar
🤖
👍

Jakub Mandula mandulaj

🤖
👍
View GitHub Profile

Keybase proof

I hereby claim:

  • I am mandulaj on github.
  • I am mandula (https://keybase.io/mandula) on keybase.
  • I have a public key ASC-ftOgJdN8l8Au6R0F7carsWKuJfAKLvkQPRd5dtXILgo

To claim this, I am signing this object:

@mandulaj
mandulaj / .vimrc
Created September 6, 2014 16:44
My .vimrc
syntax on
set shiftwidth=4
set tabstop=4
set smarttab
set expandtab
set autoindent
set nocompatible
set number
@mandulaj
mandulaj / ToG25.go
Last active August 29, 2015 14:04
Tour of Go
package main
import (
"fmt"
)
func Sqrt(x float64) float64 {
z:= x
for i:=0;i<10000;i++ {
z=z-(z*z-x)/(2*z)