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
/* Date : 22 Mar 2017 - Wed */ | |
struct ContentViewer_t; | |
struct ContentEngine_t; | |
struct RenderingEngine_t; | |
struct Callable_t | |
{ | |
virtual void callback() = 0; |
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
/* Date : 22 Mar 2017 - Wed */ | |
struct ContentViewer_t; | |
struct ContentEngine_t; | |
struct RenderingEngine_t; | |
struct Callable_t | |
{ | |
virtual void callback() = 0; |
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
struct Manager; | |
struct Employee | |
{ | |
Manager * promote_to_manager(); | |
}; | |
struct Manager : Employee | |
{ |
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
# perl | |
use strict; | |
use warnings; | |
sub split_comment | |
{ | |
my $line = shift @_; | |
my $fhandle = shift @_; | |
my @line = split //, $line; |
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
import os | |
import time | |
from datetime import datetime | |
from stat import * | |
# | |
# 1. File type (directory / regular file) | |
# 2. File permission (owner, group, others) | |
# 3. Owner name |
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
import sys | |
from xml.dom import minidom | |
def PrintXml(root, pad) : | |
sys.stdout.write("\n%s%s : " % (' '*pad, root.tagName)) | |
for child in root.childNodes : | |
if isinstance(child, minidom.Text) : | |
if child.data[0] != "\n" : |
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
# | |
# Date : 15/May/2018 | |
# Author : Dinesh Devaraj | |
# Mobile : 8939773989 | |
# Email : [email protected] | |
# Github : https://github.com/dineshdevaraj | |
# Gist : http://bit.ly/deepvalue-bsprob | |
# |
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
In the website landing page in the News scroll there is a spelling mistake in the PDF document "Year wise Toll Colelction since inception - As per available data for all projects" Colelction should be Collection | |
I "toll plaza at a glance page" the following toll plaza are wrongly shown under West Bengal which are actually in Tamil Nadu | |
460 West Bengal 67 Manavasi Km 198.500 Trichy - Karur | |
464 West Bengal 44 Rasampalayan Km 259.500 Nammakal - Karur | |
467 West Bengal 81 Thirupparaithurai Km 157.500 Trichy - Karur | |
468 West Bengal 44 Velanchettiyur Km 338.000 Karur Bypass - Dindigul bypass | |
In the PDF document "Year wise Toll Colelction since inception - As per available data for all projects" the last 2 entries in page 11 and first 2 entries in page 12 have same serial number |
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
1. Cryptography | |
1.1 Hashing | |
1.2 Encryption | |
1.2.1 Symetric | |
1.2.2 Asymetric | |
2. Block-chain | |
3. Proof-of-work |
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
import time | |
import pyautogui | |
screenWidth, screenHeight = pyautogui.size() | |
iconx = 85 | |
icony = screenHeight - 25 | |
I = 0 |
OlderNewer