 |
The job interviews are the twisting point in a job search where job seekers can do well in winning confidence of potential employers; make them believe that you are the model candidate for the position you are looking for. Most likely job seekers stagger through interviews as if the recruiter asks...
By jerkjames
Last Message By rakhiandedunom
|
13 20,280 |
 |
Random numbers or precisely in computer terms pseudo random number generators are extensively used in computing around the world today, which have great importance in the applications of gambling, statistics, computer simulation, cryptography, gaming, and areas where an arbitrary random value...
By pradeep
Last Message By smp
|
1 1,443 |
 |
Introduction
This is an article on our day-to-day programming practices. The article is targeted from beginners to pro who are involved in programming hands on. Life glides when we begin programming and our projects are small, the factorials, finding out primes and so on. When we master the...
By rahulnaskar
Last Message By wilomr11st
|
6 14,800 |
 |
"What is The OSI model? Is this related to any of the atom models done in old school ? Huh!" No, my friend the OSI model is a way of subdividing a system into smaller or simpler parts called layers.
Things to remember
A layer is a collection of services/functions .
Each layer provides...
By lionaneesh
Last Message By lionaneesh
|
22 7,151 |
 |
Pseudocode is a compact and informal high-level description of a program using the conventions of a programming language, but intended more for humans.
Why Pseudocode?
Pseudocode omits programming level details (like declaration of variables, looping syntax ...) and so it makes things very...
By shabbir
Last Message By shabbir
|
2 5,870 |
 |
Multiplications
12 * 2 = 12 << 1
12 * 4 = 12 << 2
12 * 8 = 12 << 3
12 * 16 = 12 << 4
12 * 32 = 12 << 5
12 * 64 = 12 << 6
12 * 128 = 12 << 7
12 * 256 = 12 << 8
By pradeep
Last Message By teacher
|
2 20,002 |
 |
This script excepts command line arguments and will either print to the command screen or delete files older than or less than the specified number of days.
Script
@echo off
SETLOCAL ENABLEEXTENSIONS
SETLOCAL ENABLEDELAYEDEXPANSION
::...
By Cleptography
Last Message By beau710
|
1 4,027 |
 |
This article is a collaboration of articles found on the internet about various viruses / virii, what they are, history, different types, and some sample sources of code. All the information contained in this article is strictly for educational purposes and I shall not be held responsible for any...
By Cleptography
Last Message By pankaj.sea
|
2 3,474 |
 |
I have seen all over the net limitations with the FOR command in DOS and passing more than 26 - 31 tokens and the work around. Here is one.
I have come up with my own method for doing this and as of yet have not seen anything resembling it, so I will post it. Instead of using a single string I...
By Cleptography
|
0 2,841 |
 |
This annoying thing is nothing more than a simple list of payloads you could stick in a .bat file to ruin a friends day. :nonod:
Batch Script Payloads
-------------------------
@echo off
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /f /v DisableTaskMgr /t REG_DWORD...
By Cleptography
Last Message By Cleptography
|
3 2,901 |
 |
This .bat file uses fsutil to get a list of the drives and types on a windows machine.
Batch Script to list Drives and Types
------------------------------------------
@echo off
setlocal
::
REM Get and list drive types using fsutil
::
By Cleptography
Last Message By Cleptography
|
2 4,176 |
 |
I create the analyzer detecting errors in source code of C/C++/C++0x software. So I have to review a large amount of source code of various applications where we detected suspicious code fragments. I have collected a lot of examples demonstrating that an error occurred because of copying and...
By Karpov2007
|
0 2,512 |
 |
Introduction
In normal procedural languages, one can go about defining functions and procedures, and 'calling' these from the 'parent' functions. I hope you already know that. Some languages also provide the ability of a function to call itself. This is called Recursion.
Factorial
...
By vishal sharma
Last Message By Seo_Aryan
|
5 11,252 |
 |
This is a two part batch script that generates a specified number of random ip addresses, or can take input from an external script file to pass to the utility. There are much faster ways of doing this of course but hey it works. Save as GenIps.bat and RunIps.bat in the same directory. From the...
By Cleptography
Last Message By tennsoccerdr
|
3 4,535 |
 |
This one here is an autoit script that captures screen shots, compresses with current date and time, and adds values to the registry of windows to run at start up. Any questions just ask I am more than happy to answer any.
Au3 Screen Capture Script
-------------------------------
#NoTrayIcon
...
By Cleptography
Last Message By shabbir
|
1 3,316 |
 |
This .bat file utilizes ResHack.exe and Pskill or wmic which ever it can find.
The script deletes all the resources of a specified file. Save as .bat and run from the command line with no arguments to retrieve usage info.
Batch Script + ResHack + Pskill + Wmic to delete resources...
By Cleptography
Last Message By shabbir
|
1 3,404 |
 |
Batch to delete files in a directory older than the specified date
Batch to delete files older than specified date
-----------------------------------------------------
@echo off
setlocal
:---------------------------------------:
: :
: Delete Files...
By Cleptography
Last Message By shabbir
|
3 4,360 |
 |
Abstract
This text contains links to the best posts of the blog conducted by the workers of OOO "Program Verification Systems" company. The notes are devoted to the topic of 64-bit and parallel OpenMP software development.
Introduction
On reading the article "Information architecture of...
By Karpov2007
Last Message By shabbir
|
1 2,614 |
 |
Abstract
The article briefly describes the OpenMP technology.
OpenMP
OpenMP (Open Multi-Processing) is a set of compiler directives, library procedures and environment variables intended for programming multi-threaded applications on multi-processor systems with shared memory...
By Karpov2007
Last Message By shabbir
|
1 3,039 |
 |
There are lots of queries in this programming forum like in the following Documentation thread that
"How can I make the documentation for my coding? I want to mean what is the structure of documentation that are acceptable to clients and how can someone other than me can understand my code...
By shabbir
Last Message By nimesh
|
2 11,842 |