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. agoes_doubleb
    Started by agoes_doubleb,

    This is some animation text with vb... VERSION 5.00 Begin VB.Form Form1 Caption = "Form1" ClientHeight = 3570 ClientLeft = 60 ClientTop = 450 ClientWidth = 7500 LinkTopic = "Form1" ScaleHeight = 3570 ScaleWidth = 7500 StartUpPosition = 3 'Windows Default Begin VB.Timer TmrAnim8 Interval = 50 Left = 6660 Top = 3780 End Begin VB.Timer TmrAnim7 Interval = 20 Left = 6210 Top = 3780 End Begin VB.Timer TmrAnim6 Interval = 50 Left = 5760 Top = 3780 End Begin VB.Timer TmrAnim5 Interval = 100 Left = 5310 Top = …

    • 6 replies
    • 4.2k views
  2. Hadi.Delphi
    Started by Hadi.Delphi,

    this is a anti loader trick writen in delphi. executing code in randomly place ( not a specific address ) only for fun !!! AntiLoader.rar

    • 12 replies
    • 6.1k views
  3. 0xFF
    Started by 0xFF,

    Pre-compiled header, and add conio.h and windows.h if anyone needs describition on what's going on or have a question, then post here and i will be glad to help out. // ConsoleInjector.cpp : Defines the entry point for the console application. //#include "stdafx.h"//DWORD dwProcessId;void inject(LPCWSTR procname, LPCSTR dll_path) { SIZE_T BytesWritten; HANDLE hSnap; PROCESSENTRY32 lppe; lppe.dwSize = sizeof(lppe); hSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); Process32First(hSnap, &lppe); do { if( wcscmp( lppe.szExeFile, procname ) == 0 ) { printf("Found target!\n"); break; } } while( Process32Next(hSnap, &lppe) ); HANDLE hP…

    • 23 replies
    • 10.7k views
  4. urbanyoung
    Started by urbanyoung,

    Hey, I'm making a program atm which needs to open other processes, however there are a few processes that I've come across that use AddAccessDeniedAce and SetSecurityInfo to prevent me from opening the process. I can't use SetSecurityInfo to remove this attribute because that requires a handle to the process, which I cannot obtain due the the ACE. I can reverse this easily, but I'm trying to code it into a program that will work on all apps. Can someone give me some hints on how to open a process that's using AddAccessDeniedAce? I've been googling for quite a while but couldn't find anything useful. I don't want to do a system wide hook (at startup) because that would aff…

    • 1 reply
    • 3.4k views
  5. starzboy
    Started by starzboy,

    Hello Today we see a lot of applications which use the container file. How does this container file work ? We have many files and some folders with files in them, if i need to create a container to store them, how does it work ? Does it have a fixed header whihc has the file names and sizes ? Please shed some light on this

    • 6 replies
    • 3.6k views
  6. high6

    Sorry don't know the technical term. How do you register a dll to be loaded into every process? (Also how do you get the list of all the dlls loaded into every process?) On a side note, is this documentation on writing a driver still good (it is 4-5 years old)? Is there something I should know/worry about when making a driver?

    • 12 replies
    • 3.8k views
  7. another
    Started by another,

    Hi, How a other window/apps title change? I need delphi7 code. Please help me.

    • 3 replies
    • 3.3k views
  8. Guest LaYmAn
    Started by Guest LaYmAn,

    I found this resource to this handy online Instruction Set reference a little while back and it has come in quite handy for me to reference whilst learning the trade. I thought I'd share with other starters that may need this quick reference to understand whats being done. just click the Letter to the instruction you are after and follow... I hope someone gets a good use from it: http://faydoc.tripod.com/cpu

    • 2 replies
    • 3.8k views
  9. tagor
    Started by tagor,

    Please give me tutorial with make program for Radasm???Please???? And give me source code for Radasm to!!!

    • 17 replies
    • 9.9k views
  10. abhijit mohanta
    Started by abhijit mohanta,

    I have written simple hellpoworld ida plugin using devcpp on windows ida plugin dev kit.I have put the .plw file into plugins path in ida . plugin sdk version 5.2 ida version 5.2 but I dont see the plugin coming in ida edit-->plugins options.I tried to configure plugins.cfg file still no results.I want to know whats wrong.I have even tried to place some readymade plugins in the plugin folder I see some of them orking while others not.Can anyone suggest on this. plugin source code #include <ida.hpp> #include <idp.hpp> #include <loader.hpp> int IDAP_init(void) { } void IDAP_term(void) { return; } void IDAP_run(int arg) { msg("hello world"); return…

    • 0 replies
    • 3.2k views
    abhijit mohanta
  11. steve10120
    Started by steve10120,

    HoundPE.rar

    • 15 replies
    • 6.9k views
  12. bigboss-62
    Started by bigboss-62,

    Hello guys... The wsprintf function is very cool, but it destroy most of registers. The most important in this function is the conversion, and the only needed return value is the size of formatted buffer. I have written the following prototype to include some functions of wsprintf, and the only modified value in return was eax, which contains the size of buffer. Also included is a test program. Currently supports: - %s (string) - %??d (decimal signed, up to 16 chars displayed) - %??X (haxadecimal, up to 16 chars displayed) - %??u (decimal, up to 16 chars displayed). The working method is like the original wsprintf function... Any comments / ideas / tests are welcome... La…

    • 0 replies
    • 4k views
  13. unix
    Started by unix,

    Hi, I want to write a little program, which should only consists out of two or three specific functions as i want then to analyse it with ollydbg and see if i can figure it out, how the asm code actually works. Unfortunately i have some problems, maybe someone can help me. I am using Microsoft Visual C++ 2008 Express Edition as my IDE, but the code seems already a little 'overwhelmed' when i wrote a program which only prints hello world. The basic source looks like this: using namespace std;int _tmain(int argc, _TCHAR* argv[]) { cout << "Hello World\n"; system("pause"); return 0; }When i try to analyse this with ollydbg, i get the following message when opening: …

      • Like
    • 9 replies
    • 17.2k views
  14. urbanyoung
    Started by urbanyoung,

    Hey, I'm trying to dump a dll in memory using c++, the actual dumping is fine but I'm looking for help in fixing he virtual addresses. At the moment I am dumping the virtual addresses but need to change them to the offset (i think that's right). I know I'm not being very clear, so I'll post some code. 01E5102A A1 1444E901 MOV EAX,DWORD PTR DS:[1E94414]Of course because I'm not changing the virtual address code, the dump will crash when run (because it will try to mov 1E94414 into eax, which is an invalid address). I'd really appreciate some help, I looked around the forum but couldn't find anything that helped.

    • 4 replies
    • 4.3k views
  15. 0xFF
    Started by 0xFF,

    Features: Process Information. Module Unloader. Process Watcher. Fixes: No more memory leaks. http://www.speedyshare.com/716737345.html

    • 15 replies
    • 7.2k views
  16. busclock
    Started by busclock,

    I need to modify some source code. I need to get a 2nd string from given string which contains 2 string. The length of 1st string is always changed time to time. For example: NuQW4CSS0Qpa8TnZor in hex: 01 01 01 01 01 01 01 01 1C 01 01 01 01 01 08 4E 75 51 57 34 43 53 53 01 01 01 01 01 08 30 51 70 61 38 54 6E 5Athe 1st string NuQW4CSS (4E 75 51 57 34 43 53 53) it begins with 1 byte in front (08) as the length of the string the 2nd string 0Qpa8TnZ (30 51 70 61 38 54 6E 5A) it also begins with 1 byte in front (08) as the length of the string The problem in the source code i got is, it gets the 2nd string with fixed method, always get it from the 29th byte, which is actually …

    • 1 reply
    • 4.8k views
  17. alaphate
    Started by alaphate,

    I'm using VC6.0 In Debug Output Window, there're lots of "no matching symbolic information found" e.g. How to disable these message without installing debug symbols? Thanks for helping.

    • 0 replies
    • 3.5k views
  18. Bleed
    Started by Bleed,

    Hi, I was just playing around in visual basic 6 and some idea from nowhere came. The idea was to add music to my projects. I was thinking of using chiptunes (xm or mod) but I don't know how. Please do help me if this is possible. Thanks.

    • 6 replies
    • 5.2k views
  19. _ak47_
    Started by _ak47_,

    hello everyone I just make this post beacuase I looK for any cryptersuorce made in VB If anybody have one please shared it for me thanks

    • 2 replies
    • 3.6k views
  20. 0ron
    Started by 0ron,

    Does anyone have source for a C# exe or dll packer?

    • 4 replies
    • 5.3k views
  21. nosconf
    Started by nosconf,

    Is it possible to rip asm code and use it in delphi? Many thanks NoScONf

    • 7 replies
    • 4.3k views
  22. alaphate
    Started by alaphate,

    I found a article about how to change the button text of MessageBox. http://www.codeguru.com/cpp/w-p/win32/mess...icle.php/c10873 Could Any buddy tell me how to draw MessageBox buttons? Such as IDOK button IDCANCEL button I know how to make these buttons to OWNERDRAW buttons in CBTProc hook procedure. i.e. SendMessage(hMB,BM_SETSTYLE,BS_OWNERDRAW,TRUE); However, I don't figure out how to draw these buttons. Thanks for help.

    • 4 replies
    • 3.8k views
  23. mudlord
    Started by mudlord,

    Hello, Here's some stuff I have been mucking around with since WinAHX has a tendency to play some AHX tunes completely wrong. This lib is based on Xeron/IRIS's official code, straight from the official replayer and Winamp plugin sources. CPU usage of the library is very small too (around 0-4% on a E2200 dual core). The lib is public domain and is built with MSVC6. Included is the source code as well as a usage example. hvlplay.zip

    • 13 replies
    • 5.1k views
  24. glaufan
    Started by glaufan,

    Interesting interview http://philosecurity.org/2009/01/12/interv...n-adware-author

    • 1 reply
    • 3.5k views
  25. glaufan
    Started by glaufan,

    hi This post is in literate Haskell which means the entire post can be posted into a .lhs file and compiled by GHC. Haskell is a lazy pure functional programming language named after the logician Haskell Curry. http://en.wikipedia.org/wiki/Haskell_(programming_language) http://haskell.org The following code generates a random cd key for an old game, Battlefield 1942. I derived the keygen method with OllyDBG on a random keygen I found on astalavista. Thanks NaG-Scrim/Fighting For Fun - it had good music ;D but your generated code is weird, either msvc6 is not so smart at optimization or your src code is strange, never mind I still made sense of the larger picture. &gt…

    • 11 replies
    • 8k views

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.