Programming Resources
Share an interesting blog, news page or other resource...
155 topics in this forum
-
The Complete Reference VB.NET
by CodeExplorer- 0 replies
- 3.6k views
The Complete Reference VB.NET />http://www.mediafire.com/?h5b4b4a959kxj5r
-
Inlining Java Native Calls at Runtime
by CodeExplorer- 1 reply
- 4k views
Inlining Java Native Calls at Runtime />http://www.slidefinder.net/I/Inlining_Java_Native_Calls_Runtime/5429232 />http://www.google.ro/#hl=ro&source=hp&biw=1024&bih=578&q=Inlining+Java+Native+Calls+at+Runtime&aq=f&aqi=&aql=&oq=&fp=aca76bf0002b48d8 />http://www.google.ro/url?sa=t&source=web&cd=3&ved=0CCcQFjAC&url=http%3A%2F%2Fwebdocs.cs.ualberta.ca%2F~amaral%2Fcascon%2FCDP05%2Fslides%2FCDP05-stepanian.pdf&rct=j&q=CDP05-stepanian&ei=J6N6Tby6EZD0sga_qKjcBw&usg=AFQjCNHimuDigrVUseiMQ0R5h-ivGATrSQ&cad=rja
-
Handling CoInitialize (and CoUninitialize!)
by CodeExplorer- 0 replies
- 3.6k views
Handling CoInitialize (and CoUninitialize!) />http://blogs.msdn.com/b/benkuhn/archive/2006/09/15/756401.aspx
-
Writing a JIT
by CodeExplorer- 0 replies
- 19.9k views
Writing a JIT />http://www.sourcemod.net/devlog/?p=76
-
asmjit
by CodeExplorer- 0 replies
- 6.2k views
AsmJit AsmJit is complete x86/x64 JIT-Assembler for C++ language. It supports 32/64-bit x86 processors including all usable extensions (FPU, MMX, 3dNow, SSE, SSE2, SSE3 and SSE4) through type-safe API that mimics Intel assembler syntax and eliminates nearly all common mistakes that can be done by developers. AsmJit contains also high-level code generation classes that can be used as a portable way to create JIT code that should run on all supported architectures. High-level classes can handle various function calling-conventions, register allocation and 32/64-bit mode differences. AsmJit has been successfully tested by various C++ compilers (including MSVC, GCC and Borlan…
-
Turn MethodInfo to DynamicMethod
by CodeExplorer- 0 replies
- 4k views
Turn MethodInfo to DynamicMethod />http://blogs.msdn.com/b/haibo_luo/archive/2006/11/07/turn-methodinfo-to-dynamicmethod.aspx />http://blogs.msdn.com/b/zelmalki/archive/2009/03/29/msil-injection-rewrite-a-non-dynamic-method-at-runtime.aspx />http://www.lesuna.com/blog/net-21453-23556-33073-22771-26426-26680-24515-31243-24207-20195-30721/
-
Application.Exit vs. Environment.Exit
by CodeExplorer- 0 replies
- 4.9k views
Application.Exit vs. Environment.Exit />http://geekswithblogs.net/mtreadwell/archive/2004/06/06/6123.aspx
-
Installing a global hot key with C#
by CodeExplorer- 0 replies
- 3.8k views
Installing a global hot key with C# />http://www.liensberger.it/web/blog/?p=207 />http://stackoverflow.com/questions/3654787/global-hotkey-in-console-application
-
- 0 replies
- 3.7k views
Logical Call Context: Flowing Data across Threads, AppDomains, and Processes />http://www.wintellect.com/cs/blogs/jeffreyr/default.aspx
-
.NET Memory Leak: XmlSerializing your way to a Memory Leak
by CodeExplorer- 0 replies
- 4.9k views
.NET Memory Leak: XmlSerializing your way to a Memory Leak />http://blogs.msdn.com/b/tess/archive/2006/02/15/532804.aspx?PageIndex=3
-
The Stack Collection C#
by CodeExplorer- 1 reply
- 4.1k views
The forty-first part of the C# Fundamentals tutorial examines the Stack class. This collection includes the functionality required in a 'Last In, First Out' (LIFO) stacking structure. Stacks allow items to be held for later extraction and processing. />http://www.blackwasp.co.uk/Stack.aspx Download: />http://cid-e8f82acbdb9dc8f4.office.live.com/self.aspx/.Public/Sample%20Code/StackDemo.zip
-
Project Shellcode
by sirp- 0 replies
- 5k views
The first stage of Project Shellcode aims to become the knowledge base for all shellcode related resources, including white papers, tutorials, tools, links, assembly code, and of course shellcode. This will allow the community to submit their own shellcode and shellcode related resources to the project so that they are available for others to use and learn from, as well as allowing them to extend their own knowledge and skills by gaining access to new materials and previously unreleased shellcode. This also allows a bridge to be created that enables those new to shellcoding to use the resources at hand to advance their skills so that they too can contribute their…
-
Managed Windows API
by CodeExplorer- 1 reply
- 6.6k views
Managed Windows API A collection of .NET components that wrap PInvoke calls to access native API by managed code />http://mwinapi.sourceforge.net/
-
CLR Injection: Runtime Method Replacer
by CodeExplorer- 0 replies
- 4.1k views
CLR Injection: Runtime Method Replacer />http://www.codeproject.com/KB/dotnet/CLRMethodInjection.aspx
-
Have the Background Programs Lower Their Process Priority
by CodeExplorer- 0 replies
- 3.4k views
Have the Background Programs Lower Their Process Priority />http://www.novicksoftware.com/TipsAndTricks/Tips-Lower-your-Process-Priority-with-the-Win32-API.htm
-
low-fragmentation heap (LFH) C#
by CodeExplorer- 0 replies
- 6.2k views
The low-fragmentation heap (LFH) helps to reduce heap fragmentation. The LFH is not a separate heap. Instead, it is a policy that applications can enable for their heaps. When the LFH is enabled, the system allocates memory in certain predetermined sizes. When an application requests a memory allocation from a heap that has the LFH enabled, the system allocates the smallest block of memory that is large enough to contain the requested size. The system does not use the LFH for allocations larger than 16 KB, whether or not the LFH is enabled. // C# code: // Imports: [DllImport("kernel32.dll")] private static extern uint GetProcessHeaps(uint NumberOfHeaps, IntPtr[…
-
Change ImageBase of a PE File (Delphi)
by CodeExplorer- 1 reply
- 8.1k views
Change ImageBase of a PE File (Delphi) />http://sites.google.com/site/delphibasics/home/delphibasicssnippets/changeimagebaseofapefile
-
[VB.NET] JapaBrz's RunPe
by CodeExplorer- 0 replies
- 6.2k views
[VB.NET] JapaBrz's RunPe />http://www.l33thackers.com/showthread.php?tid=622
-
- 0 replies
- 3.7k views
Quick Start Autoit files without any delay...and with any firewall />http://www.autoitscript.com/forum/topic/108296-mfc-quickrun-mem/
-
- 0 replies
- 3.6k views
Using memory mapped files to conserve physical memory for large arrays: />http://www.codeproject.com/KB/recipes/MemoryMappedGenericArray.aspx
-
A Resource Monitor for NT 4.0
by CodeExplorer- 0 replies
- 4.9k views
A Resource Monitor for NT 4.0 Compared to Windows 3.1, NT offers programmers many improvements over its 16-bit predecessor. For example, NT does away with many of the memory and resource limitations imposed by Windows 3.1. One particular Achilles’ heel for Windows 3.1 was the system-wide 64K memory limit for GDI objects, such as brushes and fonts. With such a low limit, it was relatively easy for Windows 3.1 to run out of space for GDI objects. NT 4.0 offers some improvement in this area, but there are still system-wide limits that you might find surprising. The same is true for USER objects, such as windows and menus. The bottom line is that efficient resource usage is s…
-
Walking the callstack (Visual C++)
by CodeExplorer- 0 replies
- 3.7k views
Walking the callstack />http://www.codeproject.com/KB/threads/StackWalker.aspx
-
enumerate windows hooks C++
by CodeExplorer- 0 replies
- 6.5k views
enumerate windows hooks C++ />http://forum.sysinternals.com/enumerate-windows-hooks_topic23877.html />http://social.msdn.microsoft.com/Forums/en-US/windowsgeneraldevelopmentissues/thread/56093d14-c1bc-4d0a-a915-57fef0695191
-
Global message hoocking C#
by CodeExplorer- 0 replies
- 4.6k views
Add Your Control to Another Application (global message hoocking) />http://blogs.microsoft.co.il/blogs/shair/archive/2010/05/12/add-your-control-on-top-another-application-part-4-win32.aspx />http://reflector.webtropy.com/default.aspx/4@0/4@0/DEVDIV_TFS/Dev10/Releases/RTMRel/wpf/src/Framework/System/Windows/Documents/WinEventHandler@cs/1305600/WinEventHandler@cs />http://social.msdn.microsoft.com/Forums/en/winforms/thread/30ae2081-17ed-497a-942e-efb75bca6295 />http://www.codeproject.com/KB/cs/WindowHook.aspx />http://weblogs.asp.net/spano/archive/2008/01/15/ccf-listening-to-external-application-events.aspx />http://reflector.webtropy.com/default.a…
-
Global Hotkeys and User Activity Detection (C#)
by CodeExplorer- 0 replies
- 3.8k views
Global Hotkeys and User Activity Detection (C#) />http://blog.rees.biz/2010/12/global-hotkeys-and-user-activity.html