Skip to content

Instantly share code, notes, and snippets.

View sijo0703's full-sized avatar
🏠
Working from home

Sijoy Thomas sijo0703

🏠
Working from home
View GitHub Profile
anonymous
anonymous / spread3.py
Created June 25, 2016 11:24
import sys
import os
import csv
from PyQt5.QtWidgets import QTableWidget, QApplication, QMainWindow, QTableWidgetItem, QFileDialog
class MyTable(QTableWidget):
def __init__(self, r, c):
super().__init__(r, c)
self.check_change = True
anonymous
anonymous / spread2.py
Created June 24, 2016 12:08
import sys
from PyQt5.QtWidgets import QTableWidget, QApplication, QMainWindow, QTableWidgetItem
class MyTable(QTableWidget):
def __init__(self, r, c):
super().__init__(r, c)
self.init_ui()
def init_ui(self):
@alexpchin
alexpchin / Add_Existing_Project_To_Git.md
Created June 1, 2014 20:14
Add Existing Project To Git Repo

#Adding an existing project to GitHub using the command line

Simple steps to add existing project to Github.

1. Create a new repository on GitHub.

In Terminal, change the current working directory to your local project.

##2. Initialize the local directory as a Git repository.

git init