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 / Increment & decrement operators (and their alternatives).go
Created December 10, 2016 02:29
Increment & decrement operators (and their alternatives) created by hygull - https://repl.it/EmXC/5
/*
{
"created_at" : "Sat Dec 10 07:27:03 IST 2016",
"aim_of_program" : "Using increment & decrement operators(and their alternatives)"
"coded_by" : "Rishikesh Agrawani"
}
*/
package main
@hygull
hygull / Creating a new directory in cwd.go
Created December 10, 2016 16:56
Creating a new directory in cwd created by hygull - https://repl.it/Emak/4
/*
{
"cretaed_after" : "Sat Dec 10 12:01:49 IST 2016"
"aim_of_program" : "To create a new directory in current working directory (On Unix based system)"
"coded_by" : "Rishikesh Agrawani"
}
*/
package main
import "os"
@hygull
hygull / plateform independent directory creation.go
Created December 10, 2016 17:05
plateform independent directory creation created by hygull - https://repl.it/Emay/0
/*
{
"cretaed_after" : "Sat Dec 10 12:01:49 IST 2016"
"aim_of_program" : "To create a new directory in current working directory(On MAC/UNIX/Windows)"
"coded_by" : "Rishikesh Agrawani"
}
*/
package main
import (
@hygull
hygull / Structure and its use in 3 ways.go
Created December 10, 2016 17:08
Structure and its use in 3 ways created by hygull - https://repl.it/EmYJ/3
/*
{
"created_after" : "Sat Dec 10 07:27:03 IST 2016",
"focus_of_program" : "Structure and its usage in 3 diffferent ways"
"coded_by" : "Rishikesh Agrawani"
}
*/
package main
@hygull
hygull / Inserting nodes at beginning of the singly linked list.go
Created December 10, 2016 17:18
Inserting nodes at beginning of the singly linked list created by hygull - https://repl.it/EmbX/2
/*
{ "Date of creation" => "Sat Dec 10 20:28:10 IST 2016" }
{ "Aim of program" => "To create a singly linked list and traversing through it after inserting nodes at front" }
{ "Coded by" => "Rishikesh Agrawani" }
{ "Go version" => "1.7" }
*/
package main
import "fmt"
@hygull
hygull / Inserting nodes at the end of singly linked list.go
Created December 10, 2016 17:41
Inserting nodes at the end of singly linked list created by hygull - https://repl.it/EmcK/0
/*
{ "Date of creation" => "Sat Dec 10 23:08:10 IST 2016" }
{ "Aim of program" => "To create a singly linked list and traversing through it after inserting nodes at end" }
{ "Coded by" => "Rishikesh Agrawani" }
{ "Go version" => "1.7" }
*/
package main
import "fmt"
@hygull
hygull / To print X symbol using * characters.go
Created December 10, 2016 18:10
To print X symbol using * characters created by hygull - https://repl.it/EmdA/4
/*
{
"cretaed_after" : "Sat Dec 10 23:14:26 IST 2016"
"aim_of_program" : "To print X symbol using * characters"
"coded_by" : "Rishikesh Agrawani"
}
*/
package main
import "fmt"
@hygull
hygull / To use Split() and Fields() functions for getting the list of words separated by spaces.go
Created December 12, 2016 15:12
To use Split() and Fields() functions for getting the list of words separated by spaces created by hygull - https://repl.it/Enra/1
/*
{
"cretaed_after" : "Mon Dec 12 20:42:22 IST 2016"
"aim_of_program" : "To use Split() and Fields() functions for getting the list of words separated by spaces"
"coded_by" : "Rishikesh Agrawani"
}
*/
package main
import "fmt"
@hygull
hygull / Creating slices in 3 different ways.go
Last active December 12, 2016 15:49
Creating slices in 3 different ways created by hygull - https://repl.it/Enu0/0
/*
{
"cretaed_after" : "Mon Dec 12 21:13:14 IST 2016"
"aim_of_program": "Creating slices in 3 different ways"
"coded_by" : "Rishikesh Agrawani"
}
*/
package main
import "fmt"
@hygull
hygull / Channels (Printing table of numbers from 1 to 10).go
Created December 12, 2016 17:17
Channels (Printing table of numbers from 1 to 10) created by hygull - https://repl.it/EnwS/22
/*
{
"cretaed_after" : "Mon Dec 12 22:35:30 IST 2016"
"aim_of_program": "channels (Printing table of numbers from 1 to 10)"
"coded_by" : "Rishikesh Agrawani"
}
*/
package main
import "fmt"