Skip to content

Instantly share code, notes, and snippets.

View DineshDevaraj's full-sized avatar
💭
A ordinary and simple software developer

Dinesh Devaraj DineshDevaraj

💭
A ordinary and simple software developer
View GitHub Profile
/* Date : 22 Mar 2017 - Wed */
struct ContentViewer_t;
struct ContentEngine_t;
struct RenderingEngine_t;
struct Callable_t
{
virtual void callback() = 0;
/* Date : 22 Mar 2017 - Wed */
struct ContentViewer_t;
struct ContentEngine_t;
struct RenderingEngine_t;
struct Callable_t
{
virtual void callback() = 0;
struct Manager;
struct Employee
{
Manager * promote_to_manager();
};
struct Manager : Employee
{
# perl
use strict;
use warnings;
sub split_comment
{
my $line = shift @_;
my $fhandle = shift @_;
my @line = split //, $line;
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
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" :
#
# Date : 15/May/2018
# Author : Dinesh Devaraj
# Mobile : 8939773989
# Email : dineshdevarajece@gmail.com
# Github : https://github.com/dineshdevaraj
# Gist : http://bit.ly/deepvalue-bsprob
#
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
1. Cryptography
1.1 Hashing
1.2 Encryption
1.2.1 Symetric
1.2.2 Asymetric
2. Block-chain
3. Proof-of-work
import time
import pyautogui
screenWidth, screenHeight = pyautogui.size()
iconx = 85
icony = screenHeight - 25
I = 0