Skip to content

Instantly share code, notes, and snippets.

View ax-hd's full-sized avatar

Akshay Shinde ax-hd

  • Dents
  • India
View GitHub Profile
It's amazing moment when I stay in bed ther's a lot to dream about.
I have always loved to be alone, my friend. I am on the ... train again ... more to go and soon it's summer.
You'll be gone and that's a bummer. If you got time to spare, so much silence, to share,
please try to say no more, say no more. I'll stay a while. We could do slow motion dives, you and I.
Let's smoke inside the funeral home. Yes it seems like we cracked it and I still in bed there's a lot to dream about,
sometimes it's nice to be alone, my friend. I am on the grain? train again and I've got 50 years or so to go,
good time are dawning, yet together in the morning, if you got time to spare so much silence to share, please
try to say no more, say no more. Oh stay a while, we could do slow motion dives, you and I.
Let's smoke inside the funeral home, the funeral home. Let's smoke inside the funeral home.
@ax-hd
ax-hd / hello_world.py
Created October 21, 2019 00:52
Hello World Examples
class HelloWorld:
def __init__(self, name):
self.name = name.capitalize()
def sayHi(self):
print "Hello " + self.name + "!"
hello = HelloWorld("world")
hello.sayHi()
testing
testing
testing
testing
@ax-hd
ax-hd / testfileX.txt
Created October 17, 2019 06:01
My test Gist
this is the test file content for My test Gist
@ax-hd
ax-hd / NewCreation.txt
Created October 17, 2019 05:57
Student Creates Gist
This is the content of new created gist.
@ax-hd
ax-hd / hello_world.py
Created October 17, 2019 05:16
Hello World Examples
class HelloWorld:
def __init__(self, name):
self.name = name.capitalize()
def sayHi(self):
print "Hello " + self.name + "!"
hello = HelloWorld("world")
hello.sayHi()
@ax-hd
ax-hd / helloWorld.py
Created October 17, 2019 04:11
Hello World
print('Hello
World')