#nobridge

  • 1 Post
  • 37 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle


  • For details follow the link. This is nothing more than the headlines.

    Finances
    The GNOME Foundation reserves policy says that the buffer is too low to run at a deficit any longer, which it has done for three years. This years budget is a break-even budget.

    Strategy & Fundraising
    A five year strategic plan has been prepared and a draft approved by the board. A variety of fundraising activies will be launched over the coming months.

    Board Development
    More directors are being added to reduce workload on individual board members. Non-voting officer seats will be added for the same reason.

    Elections
    Annual board elections is coming up, 6 seats are being elected.













  • It’s a problem if a projects wiki doesn’t have complete information, but I’d say that’s true whether it’s about their mailing list or something else.
    My text was a simple quote from GNUs mailing lists page, so they definitely have it documented.

    I’m not a user of mailing lists, but I can see the use of having all correspondence neatly delivered to your inbox where it can be subjected to whatever mail client rules you want. Especially if you are active in dozens of lists.



  • Sweet! Here comes a random tidbit now that your problem is solved.

    Easy screen mirroring of android to linux:
    Prereqs:

    1. Setup DHCP to always assign the same IP to the phone.
    2. Install adb and scrcpy on the Linux machine.
    3. Allow the linux machine to usb debug the phone.
    4. Allow wireless debugging in the phone settings.

    .bashrc function:
    #Connect to Android and view phone screen
    #Tip: If using PIN on lock screen you can unlock by entering PIN + Enter even if screen is black
    function phoneconnect(){
    sudo adb start-server
    adb tcpip 2233
    adb connect <phoneIP>:2233
    scrcpy
    }

    Simply write phoneconnect in terminal when both devices are accessible on the LAN and you can remote control your phone. Some applications will blacken the screen on the computer if sensitive data is shown.