Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Programming and Coding

Programming and coding tips, help and solutions...

  1. justdream
    Started by justdream,

    Hi guys, I've coded a basic memory scanner(DLL) in Delphi to search a string in game's memory.. but I'm with a problem.. After a few seconds scanning, the scan stops.. and I don't know why... Can you help-me? function HexToInt(s : string) : Int64; begin if (s <> '') and (s[1] <> '$') then result := strToInt64('$' + s ) else result := strToInt64(s); end;procedure FirstScan(valor: string); var dwEndAddr : dword; i:dword; mbi : TMemoryBasicInformation; valor:string; begin while (VirtualQuery(Pointer(DWORD(mbi.BaseAddress) + MBI.RegionSize), MBI, SizeOf(MEMORY_BASIC_INFORMATION))=SizeOf(TMemoryBasicInformation)) do begin if (MBI.State = MEM_COMMIT) a…

    • 14 replies
    • 10.7k views
  2. LCF-AT

    Hi guys, I'm trying to find out how to make this (title question) possible. Normally I'm using Windows Explorer as file manager and the WE does handle the drag & drop function so that all other app windows which are set in from on the WE area keep in front when you do press the left mouse down on any selected file/s so that you can move that file in any other app window if you want. Just a normal drag & drop from WE into any other app Window like Notepad for example. I would like to know how to code this. So what I have to do or possibly hook to prevent setting the focus on my own app when I press left mouse etc you know. Since a while I'm using another …

    Teddy Rogers
  3. CodeExplorer
    Started by CodeExplorer,

    Looking for low level x86 dissasembler code c++ I want it at low level with knowing everything is going on, altrought information from libraries may bring usefull information. In the end I want to grab all operands, but that's final step.

    CodeExplorer
  4. CodeExplorer
    Started by CodeExplorer,

    error C2133: 'cmddata' : unknown size in h file: extern const t_cmddata cmddata[]; typedef unsigned long ulong; // Unsigned long typedef struct t_cmddata { ulong mask; // Mask for first 4 bytes of the command ulong code; // Compare masked bytes with this char len; // Length of the main command code char bits; // Special bits within the command char arg1,arg2,arg3; // Types of possible arguments char type; // C_xxx + additional information char *name; …

    CodeExplorer
  5. dilip35

    i need your help to make a script for my server its a easy script but its hard for me since i don't have any knowledge on the JavaScript and programming i already attached the script screenshot

  6. Skarz
    Started by Skarz,

    View File tuts4you Symbolic logo source for GIMP Hello friends. I try to prepare a classic logo for the forum. -Feel free to use in your projects or documents. I hope you will like it. note:Source file only xcf format. for GIMP. sory for photoshop users. Detailed previw ( click to support button in forum page.) Submitter Skarz Submitted 09/11/2016 Category Source Code

      • Thanks
      • Like
    • 8 replies
    • 6.4k views
  7. Diorma

    I tried this or that, but strangely, I am unable to compile https://github.com/ribthegreat99OrN0P/Agile.NET-Deobfuscator-Latest. can anyone give advise how to reinstate 'Echo' dependencies correctly? i cant find them neither in nuget search or anywhere. Tried to manually build Echo projects and reference their dll, but was tiresome and still they were not accepted in primary solution.

  8. Bang1338
    Started by Bang1338,

    Hi, I'm trying to make my program to play tracker This time, i'm using BASS hResource = FindResource(NULL, MAKEINTRESOURCE(IDR_BASS), "BINARY"); hResourceLoaded = LoadResource(NULL, hResource); lpBuffer = (LPBYTE)LockResource(hResourceLoaded); dwFileSize = SizeofResource(0, hResource); GetTempPath(MAX_PATH, szTempName); GetTempFileName(szTempName, "MOD", 0, szTempName); hFile = CreateFile(szTempName,GENERIC_READ | GENERIC_WRITE,0,NULL,CREATE_ALWAYS,FILE_ATTRIBUTE_NORMAL,NULL); WriteFile(hFile, lpBuffer, dwFileSize, &dwBytesWritten, 0); CloseHandle(hFile); hLibrary = LoadLibrary(szTempName…

  9. PeterN
    Started by PeterN,

    Is it possible to create a new process of a PE file which is already in memory? I need my PE file(parent) execute a PE file embedded inside but as a separate process, not in memory space of the parent.

    • 0 replies
    • 2k views
  10. Asif
    Started by Asif,

    as we know we can use it in .net , is there a way to use it on framework or netcore or netstanderd ?? https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/required

    • 10 replies
    • 3.5k views
  11. wunder
    Started by wunder,

    Hi I came across this ripp of a keygen by NGEN coded all apparently in masm32 http://cyberdoomsyst...ngen_matrix.rar I will upload it here if the link dies... does anybody have the source ? or does naybody have this keygen?? It looks like they used Unicode macros to get this going??

    • 7 replies
    • 7.5k views
  12. CodeExplorer
    Started by CodeExplorer,

    Remove use of cs-parser.jay, use instead cs-parser.cs ??? Useful links: https://www.codeproject.com/Articles/330184/How-does-it-work-in-Mono-s-C-compiler https://stackoverflow.com/questions/7944695/jay-the-mono-c-sharp-compiler-and-changing-the-grammar https://www.cnblogs.com/shanyou/archive/2012/09/03/2669711.html So I already have cs-parser.cs, the problem is that the unknown format file cs-parser.jay is used instead of cs-parser.cs, I see this while I'm debugging the program. How to fix that? My program is using NRefactory v5.2 Here is program uploaded: https://www76.zippyshare.com/v/wZpa0g6k/file.html

  13. CodeExplorer
    Started by CodeExplorer,

    DUMP of .Net memory assembly (ProFile): https://zditect.com/code/dump-of-net-memory-assembly-profile.html dump .NET assembly using profiler.

  14. CodeExplorer

    Read a xml without start format <?xml version="1.0" encoding="utf-8"?> in C# how to do it? .csproj file format old: <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProductVersion>9.0.21022</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{B18A33EF-0831-44A1-84A9-DD1D16301856}</Pr…

  15. CodeExplorer
    Started by CodeExplorer,

    New Python Coders Be Like... https://www.youtube.com/watch?v=0MhVkKHYUAY 24 hours to compute a maxim between numbers... WTF?

  16. CodeExplorer
    Started by CodeExplorer,

    C# - get short name from type name ??? "Boolean" -> "bool" I remember of seeing something like this but don't remember where...

  17. ItIsInx
    Started by ItIsInx,

    Guys i tried to fix this control flow protection class but failed when i use it to protect some assemblies sometimes it cause crash or not injected in methods so can anyone tell me why ! or fix it or even guide me RTControlFlow.cs

  18. CodeExplorer
    Started by CodeExplorer,

    So I've added an ImageList to MainForm but unfortunately in compiled exe is not under MainForm resource but as an separated resource called imageListTreeView.ImageStream, when I try to run the program it complain about resource not being found: this.imageListTreeView.ImageStream = (ImageListStreamer)componentResourceManager.GetObject("imageListTreeView.ImageStream"); How to fix this problem?

    • 2 replies
    • 2.4k views
  19. r0ger
    Started by r0ger,

    Hey guys, merry xmas to all ! I just wanted to modify the aboutbox that i have ripped by adding the snow effect from the "New year theme by x0man" effect. I tried initializing all the snow procedures and it crashed. Any suggestions please? if it is possible, i really need it a little urgent these days cuz i wanna make an xmas-themed keygen template. hohohooooo.rar

  20. Faris94

    Hello I'm working on XUI ONE server (linux based server), XUI Panel has option to set default http header. I have searched on google unfortunately there is very few documents on ffmpeg headers command information. so i want to override http headers restrict stream request allow only certain domain name , i have applied the below code but its not working , my main purpose is to allow only my website access the url streams and block all others requests. what would be the best example of restricting streams using http headers by ffmpeg command? ffmpeg -headers "Access-Control-Allow-Credentials: true" -headers 'Access-Control-Allow-Methods…

  21. unknown
    Started by unknown,

    I came into a problem where i need to grab BeingDebugged BYTE from PEB https://learn.microsoft.com/en-us/windows/win32/api/winternl/ns-winternl-peb I got the address of PEB from x64 system PEB* _PEB = (PEB*)(__readgsqword(0x60)); to get the address of BeingDebugged flag i need something like (PBYTE)_PEB + 0x002 but i am not sure what typecasting exactly i have to use , give me your lights.

  22. SuperJackAbcd
    Started by SuperJackAbcd,

    #pragma once namespace CppCLR_WinformsProject1 { using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::Windows::Forms; using namespace System::Data; using namespace System::Drawing; /// <summary> /// Summary for Form1 /// </summary> public ref class Form1 : public System::Windows::Forms::Form { public: Form1(void) { InitializeComponent(); // //TODO: Add the constructor code here // } protected: /// <summary> /// Clean up any resources being us…

  23. unknown
    Started by unknown,

    I am trying to load x86 dll in address space of x64 process. Most of resources i found online talk about calling x64 bit dll in x86 process.

  24. CodeExplorer
    Started by CodeExplorer,

    Hi. I looking for something... ComboBox event when selected item text was changed and finalized??? - After selected value changed! Visual C++ 6.0

  25. LCF-AT
    Started by LCF-AT,

    Hi guys, so I was just coding around a little and testing my stuff in OllyDBG and was wondering why I could not find the CreateProcess function in my intermodular calls list. Then I was checking out my IAT of my app and there could also not found the CreateProcess function and just found a address to AcLayers address which seems to be on top before calling the function. Just wanna know why and of course why? Is it just a on top protection function or something? Is it needed to use it by Windows and is there a way to prevent / disable that and is there also a function list what APIs are affected from those OnTop AcLayers PRE calls? Why that injection? Below my IAT pa…

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.