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

    So I'm fairly familiar with multiple languages, my programming foundation is pretty strong. I wrote a program using Java (just because it was the quickest language to make a mock up for me at least) and it's creating 5 threads. Each thread is shared with 1 HttpClient (Apache) which sends/receives JSON commands, and my computer begins to get really slow if I run too many threads. I'm looking for efficiency and speed. There was a really good article about Java vs C# on Google, and I've been sold on C#. I need the language to be compatiable with both mac/windows (it's all console, no gui). And yes, my computer is up to par, it's very powerful. Which languages would be b…

      • Like
    • 6 replies
    • 4.7k views
  2. Ali.Dbg
    Started by Ali.Dbg,

    View File SnR Patch Delphi Source SnR Patch Delphi Source by Ali.Dbg Submitter Ali.Dbg Submitted 12/30/2015 Category Source Code

    • 0 replies
    • 9.4k views
  3. permana
    Started by permana,

    Hi again I'm Newbie In delphi7 . And i want to ask to all member how to click another button application in delphi ? i want click button remember with delphi , and view mmy attacment

    • 3 replies
    • 5.9k views
  4. Perplex

    What is the difference between the SSCLI2 corinfo header and the CoreCLR corinfo header ?

      • Like
    • 2 replies
    • 4.5k views
  5. Pancake
    Started by Pancake,

    Hello. Im coding small server with c++11 which is running on linux, everything works as fine as it should, but i got security question. It is multithreaded server, so every new client has new thread which exits at connection exit. Connection takes jsut few seconds, to check if the key is registered in the database. But the problem is, what if someone wants to fornication me up and opens many connections which lead to creation of so many threads that server will crash? I did not find any solution to limit the time of std::thread execution time, to kill it after 5 seconds if it not exited. Do you have any suggestions? Greetz Hmm actually i think i found std::future and…

    • 3 replies
    • 6.6k views
  6. MindSystem
    Started by MindSystem,

    Hi, i want to set an operand to MessageBox.Show("test"); But when i debug, using this code : method.Body.Instructions.Insert(0, Instruction.Create(OpCodes.Ldstr, "test")); object a = MessageBox.Show(method.Body.Instructions[0].Operand.ToString()); method.Body.Instructions.Insert(1, Instruction.Create(OpCodes.Nop)); method.Body.Instructions.OpCode = OpCodes.Call; method.Body.Instructions.Operand = a; (Yeah the code is strange haha) So, when i debug using this code, it shows messagebox unlimited...; My Question is : how to set…

      • Like
    • 2 replies
    • 6.1k views
  7. Rajesh
    Started by Rajesh,

    I want to access a site (third party, I do not have any server side access) via Httpwebrequest in c#. All works well but I want to access the site most at a certain time of the day, for 4-5 minutes. But this time the server flooded by user requests and server responds very slowly. The time is almost fixed, that is when I want to get contents from it.And it gets inaccessible for that time due to loads of user hits. Is there any technique, that can maximize my chance to get response from that site when it even gets busy? I search a lot but found nothing. If you could help me, I would be grateful. Thanks guys. I'am Adding request and response header for your f…

    • 6 replies
    • 20k views
  8. zadow
    Started by zadow,

    Hope its the right place to post this I have converted the old version https://github.com/htk59/IDA-Pro-plugin-wizardif anyone would like to try it outinstallthen new project >> VC ++ >> IDA PRO pluginYou proberly have to add idasdk dir under project proberties and vc++ general IDA.PRO.PLUGIN.WIZARD.VS2013.rar

      • Like
    • 5 replies
    • 24.9k views
  9. noob.exe
    Started by noob.exe,

    Hi, I have a question, when i resolve the refproxy (strong) of confuserex, and I want to replace the delegate call with the real MemberRef how do i know if I need to use call/callvirt/newobj? Is that somehow encoded in the signature or so? Or how can i find out what OpCode to use? ~yq8

      • Like
    • 2 replies
    • 8.8k views
  10. LCF-AT
    Started by LCF-AT,

    Hello again, at the moment I try to find out how to build libs from dll files.I found some infos on internet how to do it but I don't get it work and I don't know why and what the problem is.Infos about building a lib I found on that source... http://win32assembly.programminghorizon.com/importlib.html https://adrianhenke.wordpress.com/2008/12/05/create-lib-file-from-dll/ ...I did these steps and got a lib file of my xy dll and did add it into my asm include lib code but if I try to use any export API then I always get a unresolved external error of the APIs I wanna use. The question what I do wrong if I did anything wrong and how to fix it.So its the …

    • 21 replies
    • 8.5k views
  11. noob.exe
    Started by noob.exe,

    Yo guys, I already asked this on BS but unluckily nobody found a solution there eitehr, so i decided to ask on tuts4you What I am trying to do is basically, converting this System.Reflection based code into dnlib-only based code. int num2 = fieldFromHandle.GetOptionalCustomModifiers()[0].MetadataToken; So, how can I do what this code does with dnlib ?? I already looked through the dnlib src but I couldn't find much. The user "n0th!ng" suggested me to check out CModOptSig() in dnlib, - which I did, but I couldn't come up with a proper solution either, since I dont entirely understand this line.. (I know it grabs the MDToken of a class, bu…

    • 1 reply
    • 6.3k views
  12. LCF-AT
    Started by LCF-AT,

    Hi again, got a new problem again where I need some help.I created a sliderbar control and wanna change the position by mouseclick exactly where I do press with the mouse.I did subclass the slider control and do catch at WM_LBUTTONDOWN message and wrote my code so far... .if uMsg == WM_LBUTTONDOWN LOWORD lParam mov pt.x,eax mov ISH, eax ; <---- HIWORD lParam mov pt.y,eax nop invoke SendMessage,SLIDERHANDLE,TBM_GETCHANNELRECT,0,addr CHANNELRECT push CHANNELRECT.right pop eax push CHANNELRECT.bottom pop ecx push CHANNELRECT.left ; x …

    • 1 reply
    • 4.8k views
  13. Undebel
    Started by Undebel,

    Hi, i want get a pointer of integer value without using unsafe, i tried with GCHandle.Alloc but only work for strings I was wondering if there is any way to get it without using unsafe I appreciate any help. Thanks

    • 2 replies
    • 5.4k views
  14. zuberspicy
    Started by zuberspicy,

    I need the c#.net experts who can help me in the form auto filler application development. I need the expert person in optimization and webservice calls and web requests. The application is used to fill forms on a website and also pays on behalf of the user from the provided bank account. I need experts who can guide me in optimization of the application. And also help me in optimization of the bank payment. So, the user can complete the process very fast, If anyone is interested than please contact me on my skype. My skype id is : mr_orio.

    • 1 reply
    • 13.1k views
  15. CodeExplorer
    Started by CodeExplorer,

    8 Most common mistakes C# developers make: Link: http://blog.goyello.com/2013/01/07/8-most-common-mistakes-c-developers-make/

    • 4 replies
    • 5.1k views
  16. zuberspicy
    Started by zuberspicy,

    I need the c#.net experts who can help me in the form auto filler application development. I need the expert person in optimization and webservice calls and web requests. The application is used to fill forms on a website and also pays on behalf of the user from the provided bank account. I need experts who can guide me in optimization of the application. And also help me in optimization of the bank payment. So, the user can complete the process very fast, If anyone is interested than please contact me on my skype. My skype id is : mr_orio.

      • Like
    • 14 replies
    • 10.2k views
  17. Hakman
    Started by Hakman,

    Hello. As far as I understand, there are various assemblers like MASM, FASM, NASM, etc, which may differ in syntax. I'm about to begin learning and choose one to start with. I would like to choose assembler which syntax is as close as possible to what IDA pro produces. Which one should I pick?

    • 5 replies
    • 13.5k views
  18. RustyNail
    Started by RustyNail,

    Recently, I found a site that contains most of the common hash generators. I thought it would be useful to share. Adler32 Hash Generator Base64 Converter CRC32 Hash Generator CRC32B Hash Generator GOST Hash Generator MD2 Hash Generator MD4 Hash Generator MD5 Hash Generator SHA1 Hash Generator SHA256 Hash Generator SHA384 Hash Generator SHA512 Hash Generator RIPEMD128 Hash Generator RIPEMD160 Hash Generator RIPEMD256 Hash Generator RIPEMD320 Hash Generator SNEFRU Hash Generator Whirlpool Hash Generator

      • Like
    • 4 replies
    • 5.5k views
  19. LCF-AT
    Started by LCF-AT,

    Hi again, so I have a little question again and need some help. Can anybody tell me how to control & handle & work with the CMD console inside of own code?So what I want at the moment is to get the content of the CMD console. Exsample / Steps: ----------------------------------------- 1.) I start the a CMD tool xy with specific paramters via CreateProcess API 2.) Now the CMD console gets some results xy back (text xy) 3.) I wanna get this text etc logged into memory buffer 4.) Now I check the text for some strings as success or failed for exsample 5.) I got the results of CMD console 6.) If string success was found = keep console r…

      • Like
    • 220 replies
    • 66.6k views
  20. hotpockets

    Hey guys, I recently got my feet wet in unpacking programs to view source code in .NET Reflector. I had success in the past using megadumper's dumping tool to dump all the files, and then using PE Universal fixer to repair the files. I'm trying another file with the same method and it shows some of the code but shows a lot of lines such as "// Invalid method body" and etc. I threw the original file in protection id it says its packed with themida, and so I also threw the one I dumped&fixed it says it's okay. So I tried using de4dot to check for any obfuscation, it says unknown obfuscator but it'll try to fix anyways. I'm positive it's obfuscated with Crypto …

    • 5 replies
    • 8.3k views
  21. kerg
    Started by kerg,

    I am using visual studio 2013 ultimate extensions: RESHARPER just wondering what you talented people are using these days for programming in general?

      • Like
    • 18 replies
    • 5.9k views
  22. akkaldama
    Started by akkaldama,

    Hi all, I am developing a POS system for a hospital management solution using asp.net mvc, angularjs, javascript and rdlc for reporting. Anyone know there is anyway to print the rdlc directly without previewing or showing print dialog box in the client PC and without using third party components? I have searched in the internet and found some solutions, some of them uses third party components like 'itextsharp', 'crystalreport' etc. Any help will be appreciated. Regards, akkaldama.

    • 3 replies
    • 6.7k views
  23. chickenbutt
    Started by chickenbutt,

    Anyone know of any OSS efforts to allow apps to use TrustZone isolation without the big licensing process?

    • 1 reply
    • 5.1k views
  24. simple
    Started by simple,

    Get some ides from the spirit of this thread... - http://codegolf.stackexchange.com/questions/35569/tweetable-mathematical-art?page=1&tab=votes#tab-top... & make some cool GDI animations - demo style !Here's a code skeleton, core algo is the same as KyleMcCormick's - except for GDI animationsThis code will work on all Win C or C++ compilers - Goal is to edit PixelWrite() - the R, G & B values to make original, unique animationsedit a few lines & post ur graphics : ) RULES:- Post a binary - Post the source for your PixelWrite() function - No rules really, just try to make small code do big things & keep .exe's small - Post in whatever language u want-…

      • Like
    • 19 replies
    • 8.2k views
  25. teehist
    Started by teehist,

    anyone have any idea how to remove the latest protection Agile.NET? I'm having trouble with the de4dot, he kind of leaves a clean form, more actually has a System Log. Note: I am using the latest version of de4dot.

    • 4 replies
    • 14.6k 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.