Jump to content

Humming Owl

Member
  • Posts

    305
  • Joined

  • Last visited

  • Days Won

    4
  • Donations

    0.00 USD 
  • Country

    Venezuela, Bolivarian Republic Of

Everything posted by Humming Owl

  1. Hello! I've been wanting to learn some assembly programming and stumbled upon this book which some people mention it as a good introduction to 80x86 Assembly language. https://www.amazon.com/80X86-IBM-Compatible-Computers-Interfacing/dp/013061775X The book is old, and I know that its contents are not updated to the newer processors from nowadays but as it involves old stuff I would like to give it a try (seems fun ). To someone that knows about the book or about this subject the question I have is the following, which operating system do I use for DOS stuff? The book mentions the MASM assembler and there is some material on this website (archived by the Internet Archive) and mentions DOS (which is like an old Windows, I think ). https://web.archive.org/web/20090120232105/http://microdigitaled.com/x86/x86 Books.htm I really don't know about this very much but I would like to. I think that I might be able to get stuff emulated on my system so I could follow the book. Also, if you know about a good way (or several ways) to follow this book, let me know! Seems like a very interesting journey. Cheers. PD: I don't know if this thread is in the correct place but as it has to do with assembly programming I figured it would fit well this category.
  2. I remember minibrowser crashing when inserting USB drives (it is not the same thing but it relates to external media stuff), user @realisty found out that by turning off the "Enable new USB backend" flag in "chrome://flags/" made the browser not to crash anymore. I don't know if that can help (I also don't know if that flag still exists on 115).
  3. I do have to say that I was not expecting chromium 115 to be able to be ran on XP . I do notice that even if it runs it has to be very resource consuming on old computers in which XP is the only choice to go. Extensions work well on it?
  4. just as a suggestion in case you want to use another code hosting service rather than GitHub, NotABug (https://notabug.org/) seems very nice.
  5. yeah, also the web hosting service of that page seems very nice (with a good base idea) --> https://neocities.org/ I recently migrated my website stuff to that service because I was using GitHub, and well, Microsoft owns GitHub and that makes it boring. Also because I want to support it in some way (at least by using the service for now). Seeing the same kind of plastic web pages all the time and how easy is to break a website nowadays just makes it obvious that website development is just a Jenga tower that is mantained by some kind of temporal anti-gravity force. Originality and own effort is just thrown away for an ugly/soulless template and the people thinks that said template is the only way to build websites in the present.
  6. Thanks for the information, will attach the Internet Archive link shared by @mina7601 --- BTW, Hello to everybody! I hope everyone is doing great and the browser still is usuable for some >:] PD: A link I just found recently about browsers --> https://retrobrowsers.neocities.org/
  7. I knew about those but they are basically copies of DC. IIRC the original one was FX browser. TS browser has a permanent certificate issue with all websites no matter what you do. I have not used ChromeCore.
  8. Sorry for the delay in the answer. Can you tell a little more about the version? do you still have the older package? I really don't see why a rebase would change how the browser interacts with websites Cheers.
  9. I believe you can just use a user-agent switcher extension and you will be fine. That's just a little notification Google does to scare you to be honest (at least for now).
  10. AFAIK yes. The modifications are not a big deal, just take a look at this --> https://ia802303.us.archive.org/28/items/360EE_Modified_Version/DCB_4.0.7.22_Modified_Notes.txt Your welcome. I use XP on a 2003 laptop (Dell Inspiron 600m iirc) and it is very slow unfortunately. Rebasing did improve memory usage so I just decided to go for it. Hope you can make good use of the browsers!
  11. How much RAM does v11 use with only 1 tab opened on your system (without extensions)?
  12. Good call, I edited the updated dates on the first post and in the Internet Archive item.
  13. Do you have a list of the 360EE versions for each engine? I also assume that there are those small engine updates on v9, v11 and v12.
  14. Updated 360EE v9, v11, v12, v13, DCB, and both MiniBrowser browser's files. - Rebased chrome.dll (and chrome_child.dll where it applies) to address 0x10010000. non-rebased DLLs are kept just in case. https://archive.org/download/360EE_Modified_Version Cheers.
  15. To be honest I am still hoping someone will be able to compile newer Chromium or Firefox versions on XP that don't require such "dirty" methods to make it relatively safe/useful for people (ie. patching hex strings so connections to china.cn aren't made ). I would prefer lower versions as the ones in which 360EE is based as the most recent ones consume a lot of resources on older computers that need to run XP because they can't run anything higher. For example, I would be happy with a Chromium 69 version with no certificate issues with its code on github or an equivalent platform (similar to what Feodor is doing). I can't run 360EE v13 on my laptop (Chromium 86) so if there is some other chinese chromium based browser with a higher version than Chromium 86 I would only be able to run it under another "newer" computer with Win7, which is quite weird because the whole point is to be able to use it under XP. Sorry that the reply does not have to do much with the comment quoted .
  16. Sad to see that it isn't up anymore. I actually used some good info from there when I started searching these browsers. Forgive my ignorance but, what does OP mean? Cheers. EDIT: I think it is Original Post after thinking for a bit.
  17. Also, going to see when I have the time to update all browsers with chrome.dll and (chrome_child.dll for the ones that use it) with a different preferred base address (probably 0x10010000) as RAM consumption gets reduced a lot when doing that. I will preserve the non-rebased DLLs in case something goes wrong. PD: Thanks to @NotHereToPlayGames for pointing it out.
  18. Certificate issues are always going to be a problem with XP. It is something related to XP not having support for some newer certificate types. These browsers were not built to treat those certificates issues so you should expect these problems to vary between browser versions and different websites. There are some tools to manually update XP certs as the one @VistaLover pointed. You may be able to fix some of the certificate errors by using that tool. Cheers.
  19. I did some tests (under Windows 7) using Process Hacker's PE Viewer and noted that the checksums for all chrome.dll files (and chrome_child.dll for v9, v11 and v12) were incorrect. After rebasing to another address (rebase.exe, any correct address) and going back to 0x10000000 the checksum was "fixed". I don't know about this checksum stuff but, could it be related to the memory consuption issue on XP? On Win7 memory consumption is not an issue (at least on my end), I've read a little and I assume it is because of ASLR (Address Space Layout Randomization) --> https://stackoverflow.com/a/4871945 Again, don't know about this stuff
  20. chrome://flags/#ignore-gpu-blocklist As pointed by @VistaLover for example.
  21. AF, which tool did you use to rebase the chrome.dll file and how? I think I am going to follow that method with my releases as well by default. Also, why at address 0x3e1c0000? Cheers.
  22. I keep the browser files involved with WebGL. IIRC some flags need to be turned on to be able to use WebGL. @Chuck Do you still experience the fonts issue you said before?
  23. You could use (if possible) the Viewtube script with Greasemonkey. IMO it is the best to avoid ads --> http://sebaro.pro/viewtube/
  24. Oh, my bad . Never saw it before to be honest.
  25. off-topic: Apparently this is a thing now.
×
×
  • Create New...