Skip to content

Instantly share code, notes, and snippets.

View hygull's full-sized avatar
😃
Enjoying work at AIPALETTE & in home. Programming is there as my best friend.

Rishikesh Agrawani hygull

😃
Enjoying work at AIPALETTE & in home. Programming is there as my best friend.
View GitHub Profile
@hygull
hygull / Pointer and memory allocation.go
Created December 5, 2016 16:36
Pointer and memory allocation created by hygull - https://repl.it/Eg23/0
/*
@Date of creation : 05 Dec 2016.
@Aim of program : To allocate storage for data of type int8 using pointer.
@Coded by : Rishikesh Agrawani.
*/
package main
import "fmt"
@hygull
hygull / Golang - 3 different forms of for loop.go
Created December 8, 2016 02:32
Golang - 3 different forms of for loop created by hygull - https://repl.it/Eifo/9
/*
{ "Date of creation" => "07 Dec 2016 (Started after 06:45 am)" }
{ "Aim of program" => "To use 3 different forms of for loop" }
{ "Coded by" => "Rishikesh Agrawani" }
{ "Go version" => "1.7" }
*/
package main
import "fmt"
@hygull
hygull / Checking availabillity of keys in map.go
Last active February 1, 2017 17:14
Checking availabillity of keys in map created by hygull - https://repl.it/Eifo/10
/*
@Date of creation : 24 November 2016.
@Aim of program : To check the availability status of keys in MAP.
@Go version : 1.7.1 [go version command(on MAC )prints -> go version go1.7.1 darwin/amd64]
@Coded by : Rishikesh Agrawani.
*/
package main
import "fmt"
@hygull
hygull / main.go
Created December 8, 2016 23:59
strconv (convert a string to an int) created by hygull - https://repl.it/Eg5v/0
/*
@Date of creation : 05 Dec 2016.
@Aim of program : To convert a string of digits to an integer.
@Coded by : Rishikesh Agrawani.
*/
package main
import "fmt"
import "strconv"
@hygull
hygull / main.go
Created December 9, 2016 00:22
Pointer and memory allocation for an object with new keyword created by hygull - https://repl.it/Eg23/4
/*
@Date of creation : 05 Dec 2016.
@Aim of program : To allocate storage for data of type int8 using pointer.
@Coded by : Rishikesh Agrawani.
*/
package main
import "fmt"
func main() {
@hygull
hygull / Marshalling JSON.go
Created December 9, 2016 00:52
Marshalling JSON created by hygull - https://repl.it/EigQ/3
/*
{ "Date of creation" => "07 Dec 2016 (Started after 09:51 am)" }
{ "Aim of program" => "Marshalling JSON object" }
{ "Coded by" => "Rishikesh Agrawani" }
{ "Go version" => "1.7" }
*/
package main
import "fmt"
@hygull
hygull / Variable number of arguments of any type.go
Created December 9, 2016 01:24
Variable number of arguments of any type created by hygull - https://repl.it/Eiky/6
package main
import "fmt"
func main() {
showAllParamsOfAnyTypes("Golang",2007,[]string{"Robert Griesemer","Rob Pike",
"Ken ThThompsson"})
showAllParamsOfIntType(12,34,45,67,45) //Passinng 5 parameters
showAllParamsOfIntType(23,45,75) //Passing 3 parameters
@hygull
hygull / 3 ways of using for loop with map.go
Last active December 23, 2016 16:03
3 ways of using for loop with map created by hygull - https://repl.it/EigB/2
/*
{ "Date of creation" => "07 Dec 2016 (Started after 07:35 am)" }
{ "Aim of program" => "To use for loop on maps in 3 ways" }
{ "Coded by" => "Rishikesh Agrawani" }
{ "Go version" => "1.7" }
*/
package main
import "fmt"
@hygull
hygull / Printing system time and its decoration.go
Created December 9, 2016 01:48
Printing system time and its decoration created by hygull - https://repl.it/Eikz/1
/*
* Date of creation : 09/12/2016.
* Aim of program : To print the system time and decorate it.
* Go version : 1.7
* Coded by : Rishikesh Agrawani.
*/
package main
import "fmt"
import "time"
@hygull
hygull / main.go
Created December 9, 2016 02:18
operator precedence created by hygull - https://repl.it/Eg5w/4
/*
@Date of creation : 06 Dec 2016.
@Aim of program : Checking operator precedence.
@Coded by : Rishikesh Agrawani.
*/
package main
import "fmt"
func main(){