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

    Hi, I'm currently developping a finance application and I'm using this math libs QuantLib: http://quantlib.org/ Free and very nice lib NAG Mark 8: http://www.nag.co.uk/numeric/CL/CLdescription.asp Huge lib. Probably the best as far as I know Does anyone here use or know some math libs for finance? Thanks in advance!

    • 0 replies
    • 3.4k views
  2. diamond_sh
    Started by diamond_sh,

    hi everyone i am sorry for my bad english is there any way to interrupts access without using sys file? for example can i write kernel mode program in a dll? or can i acess to interrupts with directly using assembly in windows? please help me

    • 3 replies
    • 4k views
  3. human
    Started by human,

    does someone has a clue wtf is goin on. i try to use terminal font inside edit box. font=CreateFont(-8,0,0,0,FW_NORMAL,0,0,0,DEFAULT_CHARSET,0,0,0,0,"Terminal"); hEdit=GetDlgItem(hWnd,MINT_EDIT); SendMessage(hEdit,WM_SETFONT,(WPARAM)font,1); well it sets font to terminal but some of chars are incorrect, but when i run ollydbg in background or run it in olly then somehow magical all chars are like ansi in dos. and question is what do i have to set more to get same effect without olly, i could do it all as bitmap but im too lazy to recode asm back to c++

    • 31 replies
    • 12.7k views
  4. Ziggy
    Started by Ziggy,

    Months ago - (I can't remember how far back) this XP STyle manifest did the job of changing buttons etc to XP Style. One of the WINXP hotfixes over the last few months has changed something. <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity name="Microsoft.Windows.Keygen" processorArchitecture="x86" version="1.0.0.0" type="win32"/> <description>SnD Keygen</description> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" …

    • 16 replies
    • 8.9k views
  5. levil
    Started by levil,

    Daemon Tools,Alcohol,etc. let you mount an image to a virtual drive, but they're for pre-made images. And the mounted image is not writable at all. Is it possible to make a virtual drive which is writable? To select it from any of the burning softwares, and the burned data will be written to an image file on the hard drive. I found some solutions - open source virtual drive makers, but after hours of discovering the code,I realized that I don't have enough experience to upgrade it. And I also don't know is it generally possible.Any solution? found sources: http://www.acc.umu.se/~bosse/filedisk.zip http://www.torry.net/pages.php?id=922 http://www.jeffothy.com/weblog/filedi…

    • 2 replies
    • 5.6k views
  6. Teddy Rogers
    Started by Teddy Rogers,

    Here is a Delphi example code on how to play multiple XM files in a DLL using uFMOD Delphi_XM_Player_Source_Code.zip Ted.

    • 2 replies
    • 5.3k views
  7. Guest sonic_00
    Started by Guest sonic_00,

    I'm back (after months ) well i'm trying to learn MASM and i've copied the code of lioczar's tutorial on a new file in Quick Editor, just to see if it works, but it doesn't. Why? The code: .386 .model flat, stdcallinclude \masm32\include\windows.inc include \masm32\include\user32.inc include \masm32\include\kernel32.incincludelib \masm32\lib\user32.lib includelib \masm32\lib\kernel32.lib.DATA ClassName db "SimpleWinClass",0 AppName db "Our First Window",0 .DATA? hInstance HINSTANCE ? CommandLine LPSTR ?.CODE start: invoke GetModuleHandle, NULL mov hInstance,eax invoke GetCommandLine mov CommandLine,eax invoke WinMain, hInstance,NULL,CommandLine, SW_SHOWDEF…

    • 12 replies
    • 6.8k views
  8. F0X
    Started by F0X,

    hey guy's, since angel-55 is off for some days, I was trying to make my own keygen layout, and I wanted a sinusscroller on the top, one that just make sinus movements steady on one place, not moving I mean this skin: that top text: "

    • 10 replies
    • 5.7k views
  9. Mouradpr
    Started by Mouradpr,

    please i want a source code with masm for calcul ( a mod B )... thnks

    • 5 replies
    • 6.3k views
  10. Mouradpr
    Started by Mouradpr,

    this is my first scanner .... mini scanner for Winupack 0.39 version beta coded by MASM Please encourage your Winupack_Scan.rar

    • 6 replies
    • 6.8k views
  11. Guest quantumfusion
    Started by Guest quantumfusion,

    what does Encoding.get_Default().GetBytes(whatever) do ? and BitConverter.GetBytes(num2 + 1) do ? and text1 = Encoding.get_Default().GetString(buffer1, 5, num4); do ? thanks

    • 1 reply
    • 3.5k views
  12. cegy
    Started by cegy,

    Hi, am a n00b to delphi but i've been trying to making a small program so good so far but the only problem i am having is that i want to be able to change the font colour and the tmemo background colour and not sure how to do this. many thanks

    • 3 replies
    • 4.6k views
  13. SHKODRAN
    Started by SHKODRAN,

    Where can find info on how to build scripts for Olly ? Thanks in advance!

    • 2 replies
    • 3.9k views
  14. Guest Eudorian
    Started by Guest Eudorian,

    Hi all, this is my first post overhere. I have this simple asm program that shows a messagebox (I have win xp and I'm using winasm): .386 .model flat, stdcall option casemap: none include windows.inc include kernel32.inc include user32.inc includelib kernel32.lib includelib user32.lib Encr_Routine proto .data MsgBoxTxt db "Test Message",0 MsgBoxCaption db "Crypting",0 .data? ;initialized variables hInstance HINSTANCE ? .code start: mov edi,a_end-1 mov ecx, a_end-a invoke GetModuleHandle, hInstance mov hInstance,eax a: invoke MessageBox,NULL, addr MsgBoxTxt, addr MsgBoxCaption, MB_OK a_end: invoke ExitProcess, NULL Encr_Routine proc decr_next_byte: …

    • 5 replies
    • 4.1k views
  15. Guest -IeNz-
    Started by Guest -IeNz-,

    Hello! I developed some keygens written in Visual Basic 6.0 BUT i believe that i have compatibilty problems when i am trying to execute the compiled exe files on computer system without the Visual Basic runtime files (.OCX etc).... Any solutions how can i avoid these type of problems?! Can i attach these #%$#% runtime files in my program code?! (I just want to have a compatible keygen written in Visual Basic on an xp system without any "x file is missing" problems...) I already know that unistalling VB and have a fresh start programming in asm is a good solution... Thank You in advance

    • 6 replies
    • 4.8k views
  16. Guest quantumfusion
    Started by Guest quantumfusion,

    Hi all RE Experts, I would appreciate if you can help a noob here. Ok , i have a server application(only binary code no source) that i have added additional functions-using olly . I would like to add a protection system to this server application. Thus ,i wrote a VB application which will ask for serial key and automatically close the program if the serial key is invalid . Also ,it will allow the user to carry out 30 mins trial. The serial key will be specific to each computer based on the hardware ID and MAC address . I would like to integrate this VB application to the server file so that it can protect the file . How do i do that so that it will not be recognised as a …

    • 2 replies
    • 3.9k views
  17. antrobs
    Started by antrobs,

    Does someone know how to used RGN file in coding in MASM? Need some help here mates...... AnTroBs

    • 5 replies
    • 4.8k views
  18. winndy

    http://www.woodmann.com/forum/showthread.php?t=10003 xm.VMCompiler.By.Orp.zip

    • 7 replies
    • 4.3k views
  19. Sonny27
    Started by Sonny27,

    hi everyone, I

    • 7 replies
    • 4.2k views
  20. Guest [n]ewcom3R
    Started by Guest [n]ewcom3R,

    Hi, i'm new here on this board. I want to code an Offset converter in Delphi. There is only one problem!! How can I calculate the section from the RVA or from the VA? (sections .text, .data, .idata ....)

    • 4 replies
    • 4.8k views
  21. Guest sac
    Started by Guest sac,

    Hi, there are many things I don

    • 7 replies
    • 4.9k views
  22. A.summers
    Started by A.summers,

    I need to change this: byte_[Fix]_Enable_9_Character_Slots_(Recommended):59FFA:117:235 byte_[Fix]_Enable_9_Character_Slots_(Recommended):F1C49:116:144 byte_[Fix]_Enable_9_Character_Slots_(Recommended):F1C4A:7:144and change it to 18 is that possible??

    • 0 replies
    • 3.7k views
  23. A.summers
    Started by A.summers,

    Is there a way to extract the codeing for a CP like ROCP ? Be it thru source code or what?

    • 0 replies
    • 4.9k views
  24. Teddy Rogers
    Started by Teddy Rogers,

    File Name: deleted File Submitter: floodeur-666 File Submitted: 7 May 2007 File Updated: 22 May 2007 File Category: Source Code Admin please deleted my release source code Click here to download this file

    • 11 replies
    • 5.9k views
  25. oricode
    Started by oricode,

    I wanted to know , is there a direct way of creating and then hiding registry keys created during execution of any app.In other words, the key should not be visible through 'regedit'. Or even if it is visible, then how to encrypt it , so that the key value could not be known? Help in any coding language would be appreciated Oricode.

    • 6 replies
    • 5k 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.