 |
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,218 |
 |
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,236 |
 |
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,255 |
 |
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,551 |
 |
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 |
 |
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,617 |
 |
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,536 |
 |
"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,154 |
 |
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,282 |
 |
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,805 |
 |
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,012 |
 |
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,511 |
 |
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,362 |
 |
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,904 |
 |
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,177 |
 |
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,029 |
 |
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,846 |
 |
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,476 |
 |
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,876 |
 |
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,445 |