Nvidia source code leaked, and more to come. This is not good at all.

Nvidia source code leaked Some of the Nvidia source code and chip designs have been leaked on the Internet. The first leak includes the source code for “nvn” which is the custom Nvidia driver used on the Nintendo switch, and also “nvn2” which is probably for the next Nintendo console, I can guarantee you that … Read more

Very interesting code sample in the Internet Explorer source code. This is to check if NT Service pack 3 is installed.

This source code sample I found in the Internet Explorer source code was something I just had to post. This code handles the check for Windows NT 4.0 to see if Service Pack 3 is installed or not. This is irrelevant in Windows NT 5.0 but on NT 4, this is a necessary check. shell\iexplore\mainloop.cpp272 … Read more

Some more very useful Arma 3 scripting commands.

There are many very useful scripting commands for Arma 3 that are less known. The one below will return the number of days the player has played Arma 3 in total. _daysplayed = getStatValue "GamePlayedDays";_daysplayed = getStatValue "GamePlayedDays"; Use this code to determine if a player has finished the Bootcamp campaign before jumping into multiplayer. … Read more

Cyberpunk 2077 source code has some interesting stuff in it.

This code in the Cyberpunk 2077 source leak has information about censorship options. This is to do with censoring Homosexuality, Nudity, Drugs, and Gore. dev/src/common/gameTelemetry/src/telemetryAggregator_InitialChoices.cpp215 216 217 218 219 220 221 222 223 224 225 226 227 228 void InitialChoicesAggregator::GetCenshorship( telemetry::parameters::Censorship& censorship ) const { RED_SCOPE_FLAG_GUARD( m_accessFlag, Inclusive );   censorship.region = red::GCensorshipSystem.GetCensorRegion().AsChar();   censorship.isNudityCensored … Read more

Miscellaneous programming tricks with C.

This is a very simple Hello World program in C. int main() { write(1, "Hello World\n", 14); }int main() { write(1, "Hello World\n", 14); } Counting how long a text string is. #include <stdio.h> #include <string.h> #define MSG "Hello Doctor, let’s get back to the TARDIS!" int main() { int g; g = strlen(MSG); if … Read more

Windows XP Program Manager source code.

Here is the source code to the Windows Program Manager, this is the main interface in Windows 3.1 and 3.11. This used program groups to organize various applications like Microsoft Office and accessories. As well as the ability to create your own program groups to organize your favorite applications. Download the source code here: https://mega.nz/file/R1hy1RyS#Dkm0hK8hGmwTx-__9hOQKBWtNDDBCW-ChSneHGSc_RY. … Read more

Nissan source code leaked due to a mis-configured GIT repository.

The source of numerous Nissan products has been leaked to the Internet due to an improperly configured GIT repository. The login details were admin:admin. That is how useless the incompetent IT staff are. Now countless people are downloading the torrent and looking through all of the files. This is why you have properly trained IT … Read more

Windows XP source code has been leaked. This is not good for anyone still using it.

The source code for Windows XP has been leaked, this means that any exploits still in the code are out in the open for all to see. Apparently a lot of things have been discovered already. Windows XP included an old, but non-functional theme called “Candy”, this was a Macintosh OSX styled theme. I guess … Read more