 |
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,275 |
 |
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 19,998 |
 |
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,797 |
 |
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,839 |
 |
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,248 |
 |
"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,148 |
 |
Classes and Functions
If we are not using a language, which doesn’t support anything but objects what should be our choice in building frequently used functionality. What will be the design approach, class based or function based? Big questions, isn’t it? Let’s find out if we can put some light...
By rahulnaskar
Last Message By mschouhdry
|
1 6,073 |
 |
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,869 |
 |
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,534 |
 |
First, though, let me eliminate a myth: some people think that math skills are important, but I've seen great mathematicians who are mediocre programmers, and lots of great programmers who are certainly not mathematicians (and probably never expected to be).
Programming is more of a designer's...
By neil
Last Message By ash_work
|
3 4,509 |
 |
In large and complex systems that we are dealing with regularly, what makes our projects standoff from others is:
a. Quality of the software
b. Time line
Both being mission critical, how good is it to have a prototype?
After the “Process Oriented Architecture” hype, most approaches in...
By rahulnaskar
|
0 4,470 |
 |
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,357 |
 |
Planning You Big Programming Project
So you have reached the point when you want to make that big dream project or game. Maybe a big RPG or FPS. But every time you try you end up giving up and failing or you have not started yet and you dont know what to start with. This article hopes to help...
By capture
|
0 4,235 |
 |
Abstract
Introduction
Why do I think about these questions?
Where does the difficulty come from?
If everything is difficult why do they say that it is simple?
Conclusions
References
Abstract
By Karpov2007
Last Message By Oyetunde
|
5 4,215 |
 |
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,173 |
 |
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 |
 |
As I was going Through some of the codes in this section, I saw some faulty codes and some suggestions regarding them. Here is a guide to point out the mistakes by the coder in a proper way. If you ever find a bug/vulnerability/hole/flaw in someone's code, here's how you should go about reporting...
By vishal sharma
|
0 3,548 |
 |
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,471 |
 |
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,403 |
 |
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 |