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

    Bolly

    @Bolly

    117
    Reputation
    266
    Profile views
    211
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online
    Website elcondonrotodegnu.wordpress.com

    Bolly Unfollow Follow

    Best posts made by Bolly

    • 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

    Latest posts made by Bolly

    • RE: Some shell programs are missing in 24.04-1

      @Charly Were you able to resolve the Rsync issue?

      posted in OS
      BollyB
      Bolly
    • RE: How can I browse files from a computer?

      @mihael, I'm sorry, I misunderstood.

      I thought you were referring to PC to UT, not UT to PC.

      posted in General
      BollyB
      Bolly
    • RE: How can I browse files from a computer?

      In File Explorer, try...

      sftp://phablet@192.168.1.5
      fish://phablet@192.168.1.5
      ssh://phablet@192.168.1.5
      

      More information in Spanish: https://elcondonrotodegnu.wordpress.com/2018/03/21/administrar-archivos-de-ubuntu-touch-con-el-administrador-de-archivos-del-pc-mediante-wifi/

      posted in General
      BollyB
      Bolly
    • RE: Where can i highlight spelling errors on app pages on the OpenStore website?

      @Opolork said in Where can i highlight spelling errors on app pages on the OpenStore website?:

      Hi @CiberSheep.

      Ok. I posted to those places already over a week ago but nothing has been done.

      These things take time. They are volunteers like you. Patience.

      posted in General
      BollyB
      Bolly
    • RE: Ubuntu Touch Q&A 176 call for questions.

      Hello @grenudi,
      Apart from what has already been said to you in this and other threads, you often confuse what you want with what the volunteers and the UBports community want.

      posted in News
      BollyB
      Bolly
    • RE: Where can i highlight spelling errors on app pages on the OpenStore website?

      @Opolork No, that's not an option. The OpenStore maintainer has nothing to do with the text that each programmer puts in their applications. Besides, you had to open an issue in each application, not both in the same application.

      posted in General
      BollyB
      Bolly
    • Questions and answers 166 to 175: blog and audio now available.

      Ubuntu Touch Q&A 166, 169 and 172 is available in both blog and audio versions.
      https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-166-3964
      https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-169-3967
      https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-172-3970

      Ubuntu Touch Q&A 167, 168, 170, 171, 173, 174 and 175 audio only
      https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-167-3965
      https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-168-3966
      https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-170-3968
      https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-171-3969
      https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-173-3974
      https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-174-3975
      https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-175-3976

      I am announcing these posts on the forum, as I have not seen them published as on other occasions.

      posted in General
      BollyB
      Bolly
    • RE: Where can i highlight spelling errors on app pages on the OpenStore website?

      Hello @Opolork, you can open a bug in each application's repository. You can even make an MR.

      f16b3d78-dc66-45e0-a6e9-1e43c41bc765-image.png

      posted in General
      BollyB
      Bolly
    • RE: How to record a screencast with UT?

      @musicologist Do you tested Recorder?
      https://open-store.io/app/audio-recorder.luksus

      posted in Off topic
      BollyB
      Bolly
    • RE: Ubuntu Touch Q&A 168 call for questions

      @Lakotaubp said in Ubuntu Touch Q&A 168 call for questions:

      @captainfunk You mean if you rotate so that the usb port becomes the "top" of the phone the screen does not rotate with it. Which it does not even on an android phone I have.
      As to why, no idea : )

      In Xenial they implemented it and it works. I don't remember in which OTA it started working.

      posted in News
      BollyB
      Bolly