programming

  1. M

    Windows 10 Is it important to you how much of your code makes it into production?

    Hi all! As an engineer, is it important to you how much of your code makes it into production? Do you frequently monitor the features and projects you deliver in production, even if it's not your direct responsibility?
  2. AlishS

    Windows 7 Permit HTML material to be published.

    Recently, I encountered an interview question. You have completed an ASP.NET application with .NET framework 3.5. You plan to submit text with HTML tags to a page in the application. You need to make sure that the HTML code will be submitted without causing any disruption to other programs...
  3. AlishS

    Windows 11 Is this code correct?

    I learn javascript from an online resource. I got to this example. Is there any possibility how to write this code "better"? Is it not antiquated? <!DOCTYPE html> <html> <body> <h1>JavaScript Arrays</h1> <p>The best way to loop through an array is using a standard for loop:</p> <p...
  4. E

    Windows 10 Building a Tool to Access All Firmware on Device

    I am attempting to write a tool that is able to read and write firmware on any hardware device that has firmware. I cannot find any resources on YouTube, Google, or the Windows Developer API. Is it even possible to access any firmware on the Device?
  5. A

    Windows 10 GetKeyState weirding out? (Windows API)

    I am at the end of my wisdom and need some help. Here are the relevant parts of my code: proc isKeyPressed(virtKeyCode: int32, stateCode: SHORT): bool = if GetAsyncKeyState(virtKeyCode) and 0x8000 != 0: return true else: return false template checkKey(virtKeyCode: int32, keyValue...
  6. G

    Add New User with Specific Expire Date

    I want to add a user account to my linuxbox. But this user will have specific expire time which will be specified at the useradd definition.
  7. G

    Check Java version from Command Line

    I have a Java installation and I have only access via bash. How can I check the Java version from command line.
  8. AgejevDominik

    Windows 10 Advanced program start-up and killing | On charge/plug-in

    Hi, First of all, I'm sorry if this isn't the right place to post this kind of question. If you know where I can post this please let me know. Onto the question. I'd like to start a program (Rainmeter) when I plug in my laptop to charge, I would also like to kill it when I plug it out, i.e...
  9. RUDY03

    QBasic help....

    I'm pretty new to QBasic, and I have missed the classes in school concerning a) PRINT TAB b) END IF commands. I shall be very very grateful indeed, if someone would please urgently clear my doubts, by putting in the syntax of both commands separately and using example programs. P.S. I use...
Back
Top