We’ve been anticipating it for years, and it’s finally happening. Google is finally killing uBlock Origin – with a note on their web store stating that the extension will soon no longer be available because it “doesn’t follow the best practices for Chrome extensions”.

Now that it is finally happening, many seem to be oddly resigned to the idea that Google is taking away the best and most powerful ad content blocker available on any web browser today, with one article recommending people set up a DNS based content blocker on their network 😒 – instead of more obvious solutions.

I may not have blogged about this but I recently read an article from 1999 about why Gopher lost out to the Web, where Christopher Lee discusses the importance of the then-novel term “mind share” and how it played an important part in dictating why the web won out. In my last post, I touched on the importance of good information to democracies – the same applies to markets (including the browser market) – and it seems to me that we aren’t getting good information about this topic.

This post is me trying to give you that information, to help increase the mind share of an actual alternative. Enjoy!

  • @Petter1@lemm.ee
    link
    fedilink
    English
    18 hours ago

    I used this prompt

    I want to create an electron app for linux of a third party webapp

    How would I do that?

    And chatGPT gave me a good instruction, will try that out. Apparently, you only need node, electron and the javascript like this:

    
    const { app, BrowserWindow } = require('electron')
    
    function createWindow() {
      // Create the browser window
      const win = new BrowserWindow({
        width: 800,
        height: 600,
        webPreferences: {
          nodeIntegration: true
        }
      })
    
      // Load the third-party web app
      win.loadURL('https://www.thirdpartyapp.com')
    
      // Optionally remove the default menu
      win.setMenu(null)
    
      // Open DevTools (optional for debugging)
      // win.webContents.openDevTools()
    }
    
    // Run the createWindow function when Electron is ready
    app.whenReady().then(createWindow)
    
    // Quit when all windows are closed
    app.on('window-all-closed', () => {
      if (process.platform !== 'darwin') {
        app.quit()
      }
    })
    
    app.on('activate', () => {
      if (BrowserWindow.getAllWindows().length === 0) {
        createWindow()
      }
    })
    
    
      • @Petter1@lemm.ee
        link
        fedilink
        English
        11 hour ago

        Electron is a tool to bundle a website and a interpreter for that website in an application. That works on many platforms. Official discord desktop app, for example, is an electron app, spotify as well.