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:
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| func Sqrt(x float64) float64 { | |
| z:= x | |
| for i:=0;i<10000;i++ { | |
| z=z-(z*z-x)/(2*z) |
| syntax on | |
| set shiftwidth=4 | |
| set tabstop=4 | |
| set smarttab | |
| set expandtab | |
| set autoindent | |
| set nocompatible | |
| set number |
I hereby claim:
To claim this, I am signing this object:
| package com.company; | |
| import java.awt.*; | |
| import java.awt.event.*; | |
| import javax.swing.*; | |
| import javax.swing.event.*; | |
| import java.util.*; | |
| public class GameOfLife extends JFrame | |
| { |
| var colors = [ | |
| 'rgb(30, 104, 35)', 'rgb(68, 163, 64)', 'rgb(140, 198, 101)', 'rgb(214, 230, 133)', 'rgb(238, 238, 238)' | |
| ]; | |
| var days = $('.js-calendar-graph-svg').find('rect.day'); | |
| days.css({ | |
| fill: colors[4] | |
| }); | |
| days.on('click', function(e) { | |
| e.stopPropagation(); | |
| $this = $(this); |
| BUILD_DIR=build | |
| git add -f $BUILD_DIR | |
| git commit -m "git deployment" | |
| git push origin `git subtree split --prefix $BUILD_DIR master`:gh-pages --force | |
| git reset HEAD^ | |
| git reset $BUILD_DIR |
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # If not running interactively, don't do anything | |
| case $- in | |
| *i*) ;; | |
| *) return;; | |
| esac |
| # This is the ssh client system-wide configuration file. See | |
| # ssh_config(5) for more information. This file provides defaults for | |
| # users, and the values can be changed in per-user configuration files | |
| # or on the command line. | |
| # Configuration data is parsed as follows: | |
| # 1. command line options | |
| # 2. user-specific file | |
| # 3. system-wide file | |
| # Any configuration value is only changed the first time it is set. |
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>SSH Client</title> | |
| <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/socket.io/1.3.5/socket.io.min.js"></script> | |
| <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> | |
| <style> | |
| body { | |
| margin: 0; | |
| padding: 0; |
| /* picounter.c | |
| Counts digits of pi in binary. | |
| */ | |
| void setup() { | |
| pinMode(0, OUTPUT); | |
| pinMode(1, OUTPUT); | |
| pinMode(2, OUTPUT); | |
| pinMode(3, OUTPUT); | |
| } |