Search results

  1. 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.
  2. 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...
  3. 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...
  4. 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);
Top Bottom