₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,330,699 members, 8,446,692 topics. Date: Friday, 17 July 2026 at 01:16 AM

Toggle theme

Heritage2009's Posts

Nairaland ForumHeritage2009's ProfileHeritage2009's Posts

1 2 3 4 (of 4 pages)

RomanceRe: Man Masturbating At CMS Busstop, Lagos Filmed (Video) by heritage2009(m): 4:40pm On Sep 28, 2016
Point of correction: intruded into his public privacy grin

goldedprince:
This is not public. You intruded into his private... Sorry privacy
PhonesRe: TECNO Mobile Twitter Account Hacked by heritage2009(m): 1:48am On Sep 20, 2016
Who told you it was cracked? Cracking is crude method. cool I suspect Injoo grin

tafat:
So Tecno upon how big they are no fit use hard password like @lalamynd24!987*

I swear e go hard die for anyone to Crack
CrimeRe: Troops Recover Weapons, Kill 23 Militants In Gun Battle by heritage2009(m): 9:13pm On Sep 17, 2016
rusher14:
Buratai is brutal.

He loves snakes but crocodiles make him smile.

angry

Jokes EtcRe: Pictures Smokers Can Relate To by heritage2009(m): 12:54pm On Sep 14, 2016
Khd95:
When u smoke weed for the first time grin

Car TalkRe: Man Protects His Car Side Glasses In A Hilarious Way {hilarious Pic} by heritage2009(m): 9:39am On Aug 05, 2016
The owner of the vehicle is a madman
CrimeRe: Injecting Drug-related Offenders To Run Mad Shortly After Deportation by heritage2009(m): 8:11pm On Aug 03, 2016
U can not get every info on the "normal" internet. I guess a step further the answer is unveiled before you.

achidisucre:
Is the stereotype true? I here people say that once a drug pusher is caught, he is either jailed, executed or INJECTED to run mad in his country following deportation.

The other penalties are well comprehended but that of the injection, I don't fathom it because I've searched the net thoroughly but couldn't come up with such.

Nonetheless, I have only seen people who travelled and came back insane, rumours have it that they were injected. Please, anyone with concrete knowledge should help elaborate and substantiate.

Finally, let's all say no to drug peddling, the way our people are being killed these days is alarming. We pray that God should make our land a better place so as to ward us off from crime. Lord please receive the souls been condemned recently in Indonesia, Amen.
TravelRe: The Modern Emerging Face Of Ibadan City. by heritage2009(m): 5:22pm On Jul 31, 2016
Be not deceived. Go to bodija, or lalupon or oojo or bere or Popoyemoja or oke ado. You will know that its not all that glitter is gold. Ibadan and scam is like rice and beans grin

FashionRe: Oshewa Beauty Transforms Lady With Acne's Face (WOW Photos) by heritage2009(m): 8:48pm On Jul 24, 2016
Haaaaa. This is SCAM! WOMEN MISLEADING MEN SINCE 1846 grin

EducationRe: Madonna University Finalists In Primary School Outfits by heritage2009(m): 9:30pm On Jul 09, 2016
Mologi:
I love this....

Where is Madonna located,in the North?
I guess Oshodi or better still in mushin Bariga yaba isolo or Ajegunle. O I forgot, its in Togo close to lake chad after Hiroshima Adjacent to Venezuela grin grin
CrimeRe: How We Produced And Sell Fake Engine Oil In Lagos - Suspects by heritage2009(m): 7:13am On Jun 28, 2016
grin

BusinessRe: Has The ATM Ever Short-paid Anyone Before? by heritage2009(m): 11:44am On Jun 08, 2016
okey4reel:
thanks
ATM is ATM = Automated Teller Machine
Not ATM Machine. That is tautology Of the word machine
BusinessRe: Has The ATM Ever Short-paid Anyone Before? by heritage2009(m): 11:44am On Jun 08, 2016
okey4reel:
thanks
ATM is ATM = Automated Teller Machine
Not ATM Machine. That tautology Of the word machine
Forum GamesRe: This Riddle Would Really Test Your Intelligence,can You Crack This by heritage2009(m): 9:56pm On Jun 05, 2016
Common sense : C Daughter

Jokes EtcFunny Response by heritage2009(op): 3:57pm On Jun 05, 2016
grin grin

PoliticsRe: Boko Haram Responsible For Scarcity Of Tomato In Nigeria- Lai Mohammed by heritage2009(m): 11:44pm On Jun 01, 2016
Liana

Christianity EtcRe: Yoruba Theology Has No Satan- Esu Is Not Satan. by heritage2009(m): 9:02pm On May 31, 2016
JBismarck:
I think the mixup started when Samuel Ajayi Crowther wanted to interpret Bible to Yoruba, he substituted the concept of Satan with Esu, I guess for want of Appropriate concept. There was a prominent King of Lagos named Esugbayi Eleko in the early 20th century.

Obinoscopy, Mogidi, Seun and Lalasticlala please help spread this knowledge.
For your information Samuel Ajayi yoruba Translation of the bible states "Satani" as Satan and not Esu.
ProgrammingVb.net Programming Language Tutorial by heritage2009(op): 11:37am On May 29, 2016
NET Framework

.NET is a "Software Platform". It is a language-neutral environment for developing rich .NET experiences and building applications that can easily and securely operate within it. When developed applications are deployed, those applications will target .NET and will execute wherever .NET is implemented instead of targeting a particular Hardware/OS combination. The components that make up the .NET platform are collectively called the .NET Framework. The .NET Framework is a managed, type-safe environment for developing and executing applications. The .NET Framework manages all aspects of program execution, like, allocation of memory for the storage of data and instructions, granting and denying permissions to the application, managing execution of the application and reallocation of memory for resources that are not needed.

The .NET Framework is designed for cross-language compatibility. Cross-language compatibility means, an application written in Visual Basic .NET may reference a DLL file written in C# (C-Sharp). A Visual Basic .NET class might be derived from a C# class or vice versa. The .NET Framework consists of two main components:

Common Language Runtime (CLR)

Class Libraries

Common Language Runtime (CLR)

The CLR is described as the "execution engine" of .NET. It provides the environment within which the programs run. It's this CLR that manages the execution of programs and provides core services, such as code compilation, memory allocation, thread management, and garbage collection. Through the Common Type System (CTS), it enforces strict type safety, and it ensures that the code is executed in a safe environment by enforcing code access security. The software version of .NET is actually the CLR version.

Working of the CLR

When the .NET program is compiled, the output of the compiler is not an executable file but a file that contains a special type of code called the Microsoft Intermediate Language (MSIL), which is a low-level set of instructions understood by the common language run time. This MSIL defines a set of portable instructions that are independent of any specific CPU. It's the job of the CLR to translate this Intermediate code into a executable code when the program is executed making the program to run in any environment for which the CLR is implemented. And that's how the .NET Framework achieves Portability. This MSIL is turned into executable code using a JIT (Just In Time) complier. The process goes like this, when .NET programs are executed, the CLR activates the JIT complier. The JIT complier converts MSIL into native code on a demand basis as each part of the program is needed. Thus the program executes as a native code even though it is compiled into MSIL making the program to run as fast as it would if it is compiled to native code but achieves the portability benefits of MSIL.

Class Libraries

Class library is the second major entity of the .NET Framework which is designed to integrate with the common language runtime. This library gives the program access to runtime environment. The class library consists of lots of prewritten code that all the applications created in VB .NET and Visual Studio .NET will use. The code for all the elements like forms, controls and the rest in VB .NET applications actually comes from the class library.
PoliticsRe: Past Govt Wasted Forex On Importation Of Toothpicks — Buhari by heritage2009(m): 11:07am On May 29, 2016
Enough of the blame game[color=#550000][/color].

1 2 3 4 (of 4 pages)