Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by Alhazred

  1. Alhazred

    Writing mods for games

    Nexus Mods, probably the biggest and most famous website about game moddings, has many mods for that game, I doubt they'd host those if not legal.
  2. Alhazred

    Writing mods for games

    I am willing to learn how to write mods for games, but I can't get useful informations on how to get started and what do I need. Let's say I want to write a mod for GTA Vice City Definitve Edition, which I'm sure that can be modded since there are several mods around. Does any of you know which...
  3. Alhazred

    JavaScript Trying to write a FF extension, I've got problems with the storage

    I've solved the problem, I misunderstood the use of the variable to store the promise, it doesn't act as an alias, but it contains the value returned by browser.storage.local.get() when it is executed for the first time.
  4. Alhazred

    JavaScript Trying to write a FF extension, I've got problems with the storage

    Hello, I am trying to write my first extension for Firefox. This extension should get the title and URL of all the open tabs, and then store these information inside the local storage in this form: { 1: {title: "Google", url: "https://google.com"}, 2: ..., 3: ... } Once some tabs are...
  5. Alhazred

    Hello everyone

    Hello, I'm Luigi from Italy. I am a computer engineer now working for a marble stone manufacturer as technical designer and CNC programmer. I write software as an hobby now. I've moslty coded as web developer in the past. Now I some time like to program microcontrollers like Arduino, ESP32...
  6. Alhazred

    Fun activity Say hello... in a coding language!

    $letters = ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z',' ']; $selection = [7,8,26,4,21,4,17,24,14,13,4]; $output = ''; foreach( $selection as $pick ) { $output .= $letters[$pick]; } echo ucfirst($output);
Back
Top Bottom