Skip to content

Instantly share code, notes, and snippets.

@mmahadt
mmahadt / gruoidufgidjfhglkhdflkfhg
Created July 6, 2020 11:15
jfkjjhgfdkjdhfgjkh
gjiadfghoidhgoihdoighoiherjgiohjrighjkjrghdf
@mmahadt
mmahadt / aaaaaaaaaaaaaaaa
Created July 2, 2020 07:28
ddddddddddddddddddddddddddd
dddddddddddddddddddd
@mmahadt
mmahadt / aa
Last active July 2, 2020 07:15
New Gist
lklkjgjdfjgk
@mmahadt
mmahadt / hello_world.py
Created June 16, 2020 11:02
Hello World Examples111
class HelloWorld:
def __init__(self, name):
self.name = name.capitalize()
def sayHi(self):
print "Hello " + self.name + "!"
hello = HelloWorld("world")
hello.sayHi()
@mmahadt
mmahadt / hello_world.py
Last active June 15, 2020 03:24
Hello World Examples
# Project Title
One Paragraph of project description goes here
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
### Prerequisites
@mmahadt
mmahadt / Gist.jsx
Created June 13, 2020 12:04
This is gist page code to edit, delete, star and fork a gist.
import React, { Component } from "react";
import { connect } from "react-redux";
import { TABLE_VIEW } from "../constants";
async function fetchData(url) {
try {
const response = await fetch(url);
const data = await response.text();
console.log(data);
return data;
@mmahadt
mmahadt / hello_world.py
Created June 4, 2020 05:49
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()
@mmahadt
mmahadt / a.py
Created June 2, 2020 07:11
Python is as easy as abc
print 'abc'