This file contains hidden or 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
| #!/bin/bash | |
| find -type f -name "*.[c]" -o -name "*.cpp" | etags -D --no-globals -; | |
| sed -n ' | |
| /^[[:alpha:]].*\(c\|cpp\),[0-9]*/d; # removing files | |
| /^typedef /d # removing typed | |
| /^struct /d # removing struct | |
| s/(\?.*$//; # clean up | |
| /^[[:alpha:]]/p; | |
| ' TAGS |
This file contains hidden or 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
| /* | |
| Title: Date Handler (Library Manager) | |
| Version: 4 | |
| Started: 10 Nov 2006 | |
| Revised: 1 | |
| Program Status: perfect | |
| */ | |
| struct Date {int dd, mm, yy;} c;//current date |
This file contains hidden or 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
| /* | |
| Title: Configuration for OS | |
| Started: Oct 2008 | |
| Last Update: 9 Oct 2008 | |
| */ | |
| #ifdef MSWin | |
| #include<conio.h> | |
| #define cls system("cls") | |
| #else | |
| #define cls system("clear") |
This file contains hidden or 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
| #!/usr/bin/python3 | |
| # this code works has been corrected as suggested by Bhaskar Chaudhary <bha100710@gmail.com> | |
| from tkinter import * | |
| from tkinter import ttk | |
| if __name__ == '__main__': | |
| root=Tk() |
This file contains hidden or 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
| R0lGODlhKgAaAOfnAFdZVllbWFpcWVtdWlxeW11fXF9hXmBiX2ZnZWhpZ2lraGxua25wbXJ0 | |
| cXR2c3V3dHZ4dXh6d3x+e31/fH6AfYSGg4eJhoiKh4qMiYuNio2PjHmUqnqVq3yXrZGTkJKU | |
| kX+asJSWk32cuJWXlIGcs5aYlX6euZeZloOetZial4SftpqbmIWgt4GhvYahuIKivpudmYei | |
| uYOjv5yem4ijuoSkwIWlwYmlu56gnYamwp+hnoenw4unvaCin4ioxJCnuZykrImpxZmlsoaq | |
| zI2pv6KkoZGouoqqxpqms4erzaOloo6qwYurx5Kqu5untIiszqSmo5CrwoysyJeqtpOrvJyo | |
| tZGsw42typSsvaaopZKtxJWtvp6qt4+uy6epppOuxZCvzKiqp5quuZSvxoyx06mrqJWwx42y | |
| 1JKxzpmwwaqsqZaxyI6z1ZqxwqutqpOzz4+01qyuq56yvpizypS00Jm0y5W10Zq1zJa20rCy | |
| rpu3zqizwbGzr6C3yZy4z7K0saG4yp250LO1sqK5y5660Z+70qO7zKy4xaC806S8zba4taG9 | |
| 1KW9zq66x6+7yLi6t6S/1rC8yrm7uLO8xLG9y7q8ubS9xabB2anB07K+zLW+xrO/za7CzrTA | |
| zrjAyLXBz77BvbbC0K/G2LjD0bnE0rLK28TGw8bIxcLL07vP28HN28rMycvOyr/T38DU4cnR |
This file contains hidden or 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
| #!/usr/bin/python2.7 | |
| import Tix | |
| class View(object): | |
| def __init__(self, root): | |
| self.root = root | |
| self.makeCheckList() | |
| def makeCheckList(self): |
This file contains hidden or 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
| _ = ( | |
| 255, | |
| lambda | |
| V ,B,c | |
| :c and Y(V*V+B,B, c | |
| -1)if(abs(V)<6)else | |
| ( 2+c-4*abs(V)**-0.4)/i | |
| ) ;v, x=1500,1000;C=range(v*x | |
| );import struct;P=struct.pack;M,\ | |
| j ='<QIIHHHH',open('M.bmp','wb').write |
This file contains hidden or 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
| /* | |
| Title: Configuration for OS | |
| Started: Oct 2008 | |
| Last Update: 9 Oct 2008 | |
| Revised: 0 | |
| Program Status: Test mode | |
| Pipeline: None till date | |
| */ | |
| #ifdef MSWin | |
| #include<conio.h> |
This file contains hidden or 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
| py2 → py3 | |
| Tkinter → tkinter | |
| tkMessageBox → tkinter.messagebox | |
| tkColorChooser → tkinter.colorchooser | |
| tkFileDialog → tkinter.filedialog | |
| tkCommonDialog → tkinter.commondialog | |
| tkSimpleDialog → tkinter.simpledialog | |
| tkFont → tkinter.font | |
| Tkdnd → tkinter.dnd | |
| ScrolledText → tkinter.scrolledtext |