UBports Robot Logo UBports Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Bolly
    3. Best
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 13
    • Posts 203
    • Groups 0

    Posts

    Recent Best Controversial
    • Yumi Calendar 2022

      Hi, I have made some calendars for 2022, I hope you like them.

      Calendar with Spanish public holidays.
      Spanish calendar
      English calendar first monday
      English calendar first sunday

      Happy 2022 !!! πŸŽ‰πŸŽ‰πŸŽ‰

      Screenshot_20211229_175348.png

      posted in Off topic
      BollyB
      Bolly
    • Yumi calendar 2023

      Hello, I have made some calendars for 2023 again, I hope you like them.

      Calendar with Spanish public holidays.
      Spanish calendar
      English calendar first monday
      English calendar first sunday
      French Calendar

      Happy 2023 !!! πŸŽ‰πŸŽ‰πŸŽ‰ 😜

      Calendario foro.png

      posted in Off topic
      BollyB
      Bolly
    • Yumi calendar 2024

      Hello, I have made some calendars for 2024 again, I hope you like them.

      Calendar with Spanish public holidays
      Spanish calendar
      English calendar first monday
      English calendar first sunday
      French Calendar

      Happy 2024 !!! πŸŽ‰πŸŽ‰πŸŽ‰ 😜

      Calendar foro.png

      posted in Off topic
      BollyB
      Bolly
    • Yumi calendar 2025

      Hello, I have made some calendars for 2025 again, I hope you like them. This year there is a little novelty 🀫

      Calendar with Spanish public holidays
      Spanish calendar
      English calendar first monday
      English calendar first sunday
      French Calendar

      Happy 2025 !!! πŸŽ‰πŸŽ‰πŸŽ‰ 😜

      Calendar UBports 2025 monday.jpg

      posted in Off topic
      BollyB
      Bolly
    • Proposal for 14 February.

      Hi, this is a draft for 14 February (which can be repeated every year). I think it could be published on the blog, Telegram channel, forum, social networks...

      Show your love for UBports/UT/Yumi/Lomiri.

      • Consider testing OTA-23
      • Review your installed apps and consider making a donation or a nice review.
      • Write an article on your UBports blog/blog or something nice on your social media about UBports/UT/Lomiri or an app.
      • Make a video and share it on a platform.
      • Go to the UBports shop or donation page.
      • Put a nice picture of Yumi/UBports/Ubuntu Touch on your profile on Telegram, Mastodon, Matrix...
      • Share this post and if you can translate it into your language.
      • Stick a Yumi/Ubports/Ubuntu Touch sticker on your laptop, car...

      Consider starting to contribute to UBports on a non-sporadic basis:

      • With app, documentation and system translations.
      • Helping on the forum, Telegram, Matrix...
      • Creating or improving documentation.
      • Porting, helping to porting or helping to maintain a device.
      • Sorting Gitlab issues.
      • Contributing code to applications or the system.
      • Creating an application.
      • Submitting bug reports.
      • Contributing design ideas in the system or on your web pages.
      • Volunteering if you are a sysadmin, designer or anything else that might be useful.
      • Consider giving a talk about UBports/UT.
      • Buying hardware with UT pre-installed.
      • With system or application testing.
      • Consider making a monthly donation to UBports or to an application/UT developer.

      Surely there are more ways to show our love for UBports/UT/Yumi/Lomiri, such as adding a new way to this draft. 😊

      P.S. My language is not English, so this is not written in stone.

      posted in Marketing Incubator
      BollyB
      Bolly
    • RE: Clickable: docker images accumulate on my hard drive

      I use this to delete all unused images in a month.

      sudo docker rmi $(docker images -a | grep "month" | awk '{print $3}')
      
      posted in App Development
      BollyB
      Bolly
    • Funding with Internet Freedom Fund.

      Hello, I don't know if the foundation is interested.

      The Internet Freedom Fund seeks to support projects that defend human rights, internet freedom and open societies with between $10,000 and $900,000. The call is open on a rolling basis but applications are reviewed on the first day of January, March, May, July, September and November.
      Source: https://www.techtopias.com/blog/post-40/

      The Open Technology Fund (OTF) is an independent non-profit organization committed to advancing global Internet freedom. OTF supports projects focused on counteracting repressive censorship and surveillance, enabling citizens worldwide to exercise their fundamental human rights online. Through the research, development, implementation, and sustainability of technologies that facilitate the free flow of information, increase at-risk users’ digital security, and enable free expression, the OTF community is working to shape the Internet as a platform that fosters unimpeded connection and collaboration - facilitating positive social progress and reinforcing core democratic values.
      Source: https://www.opentech.fund/about/

      https://www.opentech.fund/funds/internet-freedom-fund/

      posted in General
      BollyB
      Bolly
    • Script to clean Teleports without logging out

      This time I have made a script to delete files from Teleports as their folders/files take up a lot of space. I always used to do it with UT Tweak Tool but the drawback is that you have to reconfigure the Telegram account.

      CleanTeleports.sh

      First, use the Morph browser or Teleports to download (just click) CleanTeleports.sh from here or create a file with the following code:

      #!/bin/bash
       
      du -hd 0 ~/.local/share/teleports.ubports/teleports.ubports/files/
      du -hd 0 ~/.local/share/teleports.ubports/teleports.ubports/database/thumbnails/
      du -hd 0 ~/.local/share/teleports.ubports/teleports.ubports/database/profile_photos/
      du -hd 0 ~/.local/share/teleports.ubports/teleports.ubports/database/db.sqlite
      read -p "Please close the Teleports application, is it closed? y/N " answer
      if [ "$answer" == "y" ] || [ "$answer" == "Y" ] ; then
          seconds=10; date1=$((`date +%s` + $seconds)); 
          while [ "$date1" -gt `date +%s` ]; do
              echo -ne "The files will be deleted within $(date -u --date @$(($date1 - `date +%s` )) +%s) seconds..\r"; 
          done
          sleep 1; echo -e "\nDeleting..."
          rm -rv ~/.local/share/teleports.ubports/teleports.ubports/files
          rm -rv ~/.local/share/teleports.ubports/teleports.ubports/database/thumbnails/
          rm -rv ~/.local/share/teleports.ubports/teleports.ubports/database/profile_photos/
          rm -v ~/.local/share/teleports.ubports/teleports.ubports/database/db.sqlite
          du -hd 0 ~/.local/share/teleports.ubports/teleports.ubports/files/
          du -hd 0 ~/.local/share/teleports.ubports/teleports.ubports/database/thumbnails/
          du -hd 0 ~/.local/share/teleports.ubports/teleports.ubports/database/profile_photos/
          du -hd 0 ~/.local/share/teleports.ubports/teleports.ubports/database/db.sqlite
          else
          echo "Script cancelled, it is necessary to manually close the Teleports application."
      fi
      

      Now we have to give run permissions to the CleanTeleports.sh file and run it, I assume it is in the Downloads folder. Open the terminal and run the following:

      cd Downloads
      chmod +x CleanTeleports.sh
      ./CleanTeleports.sh
      

      It then tells us the size of the folders and the db.sqlite database.

      If we want to delete these folders and the database, we will have to close Teleports if it is not already closed and tell it that we have already closed it by typing "y" and enter. If we don't want to clean up, we press anything other than "y" or "Y" or close the terminal.

      alt text

      I hope you find it as useful as I do, as I still use Krillin on a daily basis and he has always been the "little guy in the house", little space πŸ˜‚.

      Caution: Please note that running this script will delete some Teleports files and it might take a while to start up the first time because of this as they will be created again.

      In Spanish -> https://elcondonrotodegnu.wordpress.com/2024/03/31/limpiar-teleports-sin-cerrar-sesion/

      posted in App Development
      BollyB
      Bolly
    • RE: Remnant of Dev channel update still shows after reinstalling Stable channel.

      @keneda said in Remnant of Dev channel update still shows after reinstalling Stable channel.:

      Maybe because it's the 18th update in stable for this particular device ?

      Correct πŸ™‚

      posted in Support
      BollyB
      Bolly
    • UBports Foundation Board of Trustees Membership Application

      Hi, how can we know if the email has reached its recipient and has not been lost?
      A quick reply template would be nice.

      For example: "Received, you will receive a reply shortly".

      Thanks. πŸ™‚

      posted in General
      BollyB
      Bolly
    • RE: Ubuntu Touch Black Screen, Brightness all the way down.

      @nocturn-adrift Good luck !! πŸ™‚

      posted in Support
      BollyB
      Bolly
    • RE: I have ended my contract with the UBports Foundation

      Thank you very much, without you it would not have been the same. And now it's time to recharge your batteries. πŸ”‹

      Take care of yourself.πŸ™‚

      posted in General
      BollyB
      Bolly
    • RE: uNav - Data transfer

      The favorites are in...

      .local/share/navigator.costales/Databases
      

      At least the last time I did it. (2018/01/07)

      Spanish manual -> https://elcondonrotodegnu.wordpress.com/2018/01/07/unav-hacer-una-copia-de-seguridad-de-tus-favoritos/

      posted in Support
      BollyB
      Bolly
    • Script to convert videos for viewing on Ubuntu Touch

      Hello I share this script to run it on the PC if anyone can use it.

      The script in this case converts all mp4 and mkv files in the folder where you run it to an Ubuntu Touch readable mp4. The script does not delete the originals, it will put them in the Converted_videos folder at the same level.

      #!/bin/bash
       
      mkdir Converted_videos
       
      for i in *.mp4
      do
          withoutExtension=$(echo "$i" | cut -f 1 -d '.')
          ffmpeg -i "$i" Converted_videos/"$withoutExtension".mp4
      done
       
      for i in *.mkv
      do
          withoutExtension=$(echo "$i" | cut -f 1 -d '.')
          ffmpeg -i "$i" Converted_videos/"$withoutExtension".mp4
      done
      

      I also share the original entry in Spanish
      https://elcondonrotodegnu.wordpress.com/2024/05/28/my-scripts-v-convertir-videos-para-poder-verlos-en-ubuntu-touch-o-en-reproductores-no-compatibles/

      posted in General
      BollyB
      Bolly
    • RE: green led above 90% (during charging)

      On my E4.5 what you describe happens.
      On my M10FHD what you want happens.

      I want exactly the opposite. πŸ˜‚
      I think I read that the batteries or the OS already takes this into account. Even if you see 100% it is not 100% charged.

      For example I can assure you that the current PinePhone kernel has capped the charge (I think at 90%), although we see 100%.

      I also want to read other opinions in order to learn. ☺

      posted in OS
      BollyB
      Bolly
    • RE: Life with BQ4.5 after 20.04

      I think I have already read this discussion. And I think it has strayed from the main topic. I think opening another topic to talk about it (if it is not already open) is the right thing to do. 😜

      I think what we need for when 20.04 arrives is....

      • Information one month before (for example) when the openstore apps are going to be removed.
      • An image with the last (two?) OTA's supported.

      That in case of devices that can't be ported and the installer won't flash to 16.04.

      posted in BQ E4.5
      BollyB
      Bolly
    • RE: UBports Store Open

      Amazing !!!
      and see the shipping costs before entering all the data would also be good. 😊

      posted in News
      BollyB
      Bolly
    • RE: Focal Fossa on RPi 3 and 4

      Done https://masto.nobigtech.es/@UBports_ES/110960614982923549
      and done https://t.me/ubports_noticias/283
      and done https://t.me/UBPorts_ES/132794

      πŸ˜‰

      posted in News
      BollyB
      Bolly
    • RE: Vote for UBports until 19th of October 2021!

      Last hours to vote, tomorrow we will know the results 😊, what nerves !

      posted in Off topic
      BollyB
      Bolly