This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pyodbc | |
def upgrade_saex_database_with_track_and_marginal_info(database_loc): | |
conn_old = ( | |
r'DRIVER={Microsoft Access Driver (*.mdb)};' | |
r'DBQ='+database_loc+';' | |
) | |
cnxn_old = pyodbc.connect(conn_old) | |
crsr_old = cnxn_old.cursor() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from Tkinter import * | |
from tkMessageBox import showerror | |
from tkFileDialog import askopenfilename | |
class Application(Frame): | |
"""A GUI to Generate Tfw file from Tiff File """ | |
def __init__(self,master): | |
"""Initializes the frame""" | |
Frame.__init__(self, master) | |
self.grid() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
Enable-RemoteDesktop | |
cinst fiddler4 | |
cinst git-credential-winstore | |
cinst console-devel | |
cinst sublimetext2 | |
cinst poshgit | |
cinst dotpeek |