• Activity
  • Votes
  • Comments
  • New
  • All activity
  • Showing only topics with the tag "ask.help". Back to normal view
    1. What's the best way to make non-English posts on Tildes? Can you? Should you?

      I'm guessing that it might just be that Tildes is an English only site, but as an avid language learner, I'd love to have a place to see and post non-English discussions. Is there a best practice...

      I'm guessing that it might just be that Tildes is an English only site, but as an avid language learner, I'd love to have a place to see and post non-English discussions.

      Is there a best practice for making a non-English discussion? Is it simply not allowed? Is it allowed but discouraged?

      18 votes
    2. Docker Nextcloud AIO Mastercontainer update failing

      I've got a problem with my nextcloud and as tildes is my favourite nice place to ask for tech-support, maybe somebody here can help me with that. I can start and run Nextcloud AIO without any...

      I've got a problem with my nextcloud and as tildes is my favourite nice place to ask for tech-support, maybe somebody here can help me with that.

      I can start and run Nextcloud AIO without any problems. I can update the subcontainers without any problems. But the update of the Mastercontainer always fails and I don't kno why, only that it has to be something with docker.sock and permissions, but I could not resolve the issues, and google does not seem to be helpful (or I'm looking for the wrong stuff).

      my update logs:

      time="2023-06-14T12:47:59Z" level=debug msg="Sleeping for a second to ensure the docker api client has been properly initialized."
      time="2023-06-14T12:48:00Z" level=debug msg="Making sure everything is sane before starting"
      time="2023-06-14T12:48:00Z" level=info msg="Watchtower 1.5.3"
      time="2023-06-14T12:48:00Z" level=info msg="Using no notifications"
      time="2023-06-14T12:48:00Z" level=info msg="Only checking containers which name matches \"nextcloud-aio-mastercontainer\""
      time="2023-06-14T12:48:00Z" level=info msg="Running a one time update."
      time="2023-06-14T12:48:00Z" level=debug msg="Checking containers for updated images"
      time="2023-06-14T12:48:00Z" level=debug msg="Retrieving running containers"
      time="2023-06-14T12:48:00Z" level=debug msg="FIXME: Got an status-code for which error does not match any expected type!!!" error="Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?" module=api status_code=-1
      time="2023-06-14T12:48:00Z" level=error msg="Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?"
      panic: runtime error: invalid memory address or nil pointer dereference
      [signal SIGSEGV: segmentation violation code=0x1 addr=0x30 pc=0x9f4a22]
      
      goroutine 1 [running]:
      github.com/containrrr/watchtower/pkg/metrics.NewMetric({0x0, 0x0})
      	/home/runner/work/watchtower/watchtower/pkg/metrics/metrics.go:31 +0x22
      github.com/containrrr/watchtower/cmd.runUpdatesWithNotifications(0xc0002fd830)
      	/home/runner/work/watchtower/watchtower/cmd/root.go:375 +0x15e
      github.com/containrrr/watchtower/cmd.Run(0xc00033c300?, {0xc000281300?, 0x4?, 0x4?})
      	/home/runner/work/watchtower/watchtower/cmd/root.go:168 +0x570
      github.com/spf13/cobra.(*Command).execute(0xc00033c300, {0xc0000300b0, 0x4, 0x4})
      	/home/runner/go/pkg/mod/github.com/spf13/cobra@v1.6.1/command.go:920 +0x847
      github.com/spf13/cobra.(*Command).ExecuteC(0xc00033c300)
      	/home/runner/go/pkg/mod/github.com/spf13/cobra@v1.6.1/command.go:1044 +0x3bc
      github.com/spf13/cobra.(*Command).Execute(...)
      	/home/runner/go/pkg/mod/github.com/spf13/cobra@v1.6.1/command.go:968
      github.com/containrrr/watchtower/cmd.Execute()
      	/home/runner/work/watchtower/watchtower/cmd/root.go:71 +0x52
      main.main()
      	/home/runner/work/watchtower/watchtower/main.go:13 +0x17
      
      

      my startup command

      sudo docker run \
      --sig-proxy=false \
      --name nextcloud-aio-mastercontainer \
      --restart unless-stopped \
      --publish 8080:8080 \
      -e APACHE_PORT=11000 \
      -e APACHE_IP_BINDING=127.0.0.1 \
      --volume nextcloud_aio_mastercontainer:/mnt/docker-aio-config \
      --volume /var/run/docker.sock:/var/run/docker.sock:ro \
      nextcloud/all-in-one:latest
      

      output after start:

      Trying to fix docker.sock permissions internally...
      Creating docker group internally with id 998
      WARNING: No swap limit support
      Initial startup of Nextcloud All-in-One complete!
      You should be able to open the Nextcloud AIO Interface now on port 8080 of this server!
      E.g. https://internal.ip.of.this.server:8080
      
      If your server has port 80 and 8443 open and you point a domain to your server, you can get a valid certificate automatically by opening the Nextcloud AIO Interface via:
      https://your-domain-that-points-to-this-server.tld:8443
      ++ head -1 /mnt/docker-aio-config/data/daily_backup_time
      + BACKUP_TIME=04:00
      + export BACKUP_TIME
      + export DAILY_BACKUP=1
      + DAILY_BACKUP=1
      ++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
      + '[' '' '!=' automaticUpdatesAreNotEnabled ']'
      + export AUTOMATIC_UPDATES=1
      + AUTOMATIC_UPDATES=1
      + set +x
      {"level":"info","ts":1686746753.2700157,"msg":"using provided configuration","config_file":"/Caddyfile","config_adapter":""}
      {"level":"info","ts":1686746753.2748601,"msg":"failed to sufficiently increase receive buffer size (was: 208 kiB, wanted: 2048 kiB, got: 416 kiB). See https://github.com/quic-go/quic-go/wiki/UDP-Receive-Buffer-Size for details."}
      [14-Jun-2023 12:45:53] NOTICE: fpm is running, pid 106
      [14-Jun-2023 12:45:53] NOTICE: ready to handle connections
      
      

      I tried to change permissions on /var/run/docker.sock
      I tried to change permissions on /lib/systemd/system/docker.sock

      same but with restart of docker.sock
      same but with restart of docker.sock and docker.service

      nothing helped

      does somebody know where I go wrong or can me point in the right direction to resolve this problem? It's not a game stopper as I can update the container manually, but it is annoying.

      edit: it runs on a ubuntu server 20.04.6 LTS

      6 votes
    3. List of recurring threads and their schedules?

      Do we have a list of recurring discussions and their schedules anywhere? I know they're generally weekly, but I often find myself having to do a quick search for when the last one was and...

      Do we have a list of recurring discussions and their schedules anywhere? I know they're generally weekly, but I often find myself having to do a quick search for when the last one was and determine whether or not I should hold onto my contribution to that thread until the next one occurs. eg if the new discussion is created tomorrow, I may as well just post my comments tomorrow rather than today. Admittedly a very minor inconvenience.

      Having a list somewhere easy to see could also help prevent folks from unintentionally creating duplicate discussions during the period between one week's discussion going quiet and the next week's starting.

      And maybe eventually it could be something like we subscribe to a recurring discussion and then it shows up in the sidebar somewhere in a list of upcoming discussions? Just spitballing here.

      Any thoughts?

      11 votes
    4. Let's talk Local LLMs - So many questions

      Hello there (oh god, I am opening my first thread here - so exciting) I'd love to ask the people here about local LLMs. To be honest, I got interested in this topic, but am leaving reddit, where a...

      Hello there
      (oh god, I am opening my first thread here - so exciting)

      I'd love to ask the people here about local LLMs.
      To be honest, I got interested in this topic, but am leaving reddit, where a sub r/locallama exists.
      I don't want to interact with that site anymore, so I am taking this here.

      My questions, to start us off:

      • Models are available on huggingface (among other places), but where do I get the underlying software? I read "oogabooga" somewhere, but honestly, I am lost.
      • If I only want to USE a local model, what are the requirements, and how do I judge if I can use something from the values of "4bit / 8 bit" and "30B, 7B"??
      • If I get crazy and want to TRAIN a LorA ... what then?
      • Good resources / wiki pages, tutorials, etc?
      21 votes
    5. Linux newbies: ask your questions

      Whether you're new to distro installs or aiming to delve deeper, feel free to ask any questions here - remember, no question is stupid! I'll do my best to answer, and if I can't, someone here...

      Whether you're new to distro installs or aiming to delve deeper, feel free to ask any questions here - remember, no question is stupid!

      I'll do my best to answer, and if I can't, someone here likely can, or at least guide you in the right direction.

      Background: I've been a Linux user since 2007, starting with Ubuntu Feisty Fawn after losing my Windows XP product key. I've performed countless installs, worked in web hosting NOCs, and use multiple distros daily, including Proxmox.

      If you prefer, don't hesitate to PM me directly!

      30 votes
    6. 2FA not working?

      tildes.net isn't accepting my 2FA codes on login. I used a recovery key and disabled 2FA, but now I can't re-enable it for the same reason (I generate a code with the new secret key given but it...

      tildes.net isn't accepting my 2FA codes on login. I used a recovery key and disabled 2FA, but now I can't re-enable it for the same reason (I generate a code with the new secret key given but it gets rejected). I've checked on other sites and it doesn't seem to be a problem with generated 2FA codes on my end, leading me to believe something may be misconfigured on the server (maybe the tildes.net system clock is off or something?).

      Anyone else experiencing this?

      Edit: Still not really sure why I couldn't get it to work initially, but after giving it some time the problem went away.

      4 votes
    7. [SOLVED] No audio in Chrome OS Flex on N42 Chromebook

      I currently have a Lenovo N42 Chromebook far past it's EoL, for which Google is no longer supporting it. I have put Chrome OS Flex on it by reflashing the bios, and it's pretty solid, but I have...

      I currently have a Lenovo N42 Chromebook far past it's EoL, for which Google is no longer supporting it. I have put Chrome OS Flex on it by reflashing the bios, and it's pretty solid, but I have no internal audio. Bluetooth audio and HDMI works fine, but no headphones, and no speakers.

      I found this solution for trying to hack in an Alsa configuration from an Ubuntu Live Disk (https://www.reddit.com/r/chromeos/comments/swzxsy/comment/irk5kqk/) and I was able to follow the instructions and enable development mode, but when I try to run the alsaconfig script, I get this.

      crosh> shell
      chronos@localhost / $ sudo alsarestore
      No state is present for card chtrt5650
      /usr/sbin/alsactl: sysfs_init:48: sysfs path '/sys' is invalid

      Found hardware: "chtrt5650" "" "" "" ""
      Hardware is initialized using a generic method
      No state is present for card chtrt5650

      It may have something to do with those instructions being for a different build computer, but I am outside my sphere of knowledge, and anything else I could troubleshoot would be appreciated. Internal audio isn't mission critical for me, but it would be appreciated.

      3 votes
    8. [SOLVED] Unable to give Exemplary label

      I wanted to label a comment as Exemplary today and when I clicked "Label" the option wasn't present. I've given Exemplary labels before, but it's been a while. I do know there's a cooldown, but I...

      I wanted to label a comment as Exemplary today and when I clicked "Label" the option wasn't present. I've given Exemplary labels before, but it's been a while. I do know there's a cooldown, but I don't think I've given any out lately, so I wouldn't think that would apply.

      I'm on Firefox, but I checked on both Chrome and Edge and I don't have the option there either.

      6 votes
    9. How do I comment on posts?

      Hi tildes! Awesome place! Just moved here with an account, any idea how to comment on "topics" directly and if there is a waiting period before i can do that? I think im allowed to reply to...

      Hi tildes! Awesome place! Just moved here with an account, any idea how to comment on "topics" directly and if there is a waiting period before i can do that? I think im allowed to reply to existing comments but not reply to the topic directly.

      6 votes
    10. Docker rootless and Watchtower and some general questions about Docker

      I finally decided to accepted that my interest in working and playing with computers and servers is worth to spend some money on. So I ditched my old box in the corner and with it all my fights...

      I finally decided to accepted that my interest in working and playing with computers and servers is worth to spend some money on. So I ditched my old box in the corner and with it all my fights with my ISP, their NAT, dynamic DNS and all that and got myself a VPS and 1 TB storage solution for less than I would have paid a static IP with my ISP.
      Best decicion ever :-)

      So I'm getting into Docker a bit, just because it's just so easy to get Nextcloud running. I used native Caddy as a reverse proxy, because if I got this "machine" there I will use it for other things as well, so make it right from the beginning. And I used native b.c I did not yet understand bridge/host mode and installing caddy native seems easier.
      Then I fought for one day with CIFS and the nextcloud gui to get the semantics right to get my storage solution accepted as external storage.
      Then I set up Jellyfin with Docker because why not. As well through caddy.
      Then I fucked something up and was like, fuck it, lets start again this time for real :-P
      I wiped my VPS clean (chose ubuntu again) set up and hardend ssh + sudo installed Docker, and then I found out about docker rootless and in the docker docs it's mentioned that it is/might be more secure, so I set up docker rootless and installed all the rest again.
      And then I was like, hmm, do these Docker Images/Containers update themself? Like snap did?
      It seems not, so I looked for a solution and found watchtower. And now I wasted another day trying to get watchtower to run, and I just can not.

      I tried so many variations of the run command now most recently I tried:

      docker run \
      --name watchtower \
      -v ${DOCKER_SOCKET_PATH}:/var/run/docker.sock \
      containrrr/watchtower
      
      time="2023-01-20T01:17:41Z" level=error msg="Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?"
      time="2023-01-20T01:17:41Z" level=info msg="Waiting for the notification goroutine to finish" notify=no
      

      /run/user/1000/docker.sock exists, I own it, i tried connecting to it through docker -e and containrrr/watchtower --host "unix:///run/user/1000/docker.sock"
      I dont now what to try more and I'm at my end with my ddg-fu as well.

      And now while proofreading this, I read everything again and decided to try something again and it just worked...

      docker run \
      --name watchtower \
      -v /run/user/1000/docker.sock:/var/run/docker.sock \
      containrrr/watchtower
      

      seems like the environment variable was not set. But I'm shure I tried that before and it did not work... ghost in a machine :-)

      So thats where I'm at. I have to say it was a lot of fun and doing and learning all that tingled my brain in a funny way :-)

      But now I have some questions for my much more experienced Tildes-friends:

      • Do I even need watchtower? because I'm not actually interested to connect to my server regularly to do the updates/maintenance.
      • Was switching to docker rootless even a good idea? it seemed so reading the docker installation docs, but just now I read the Archwiki and there it seems it has some heavy security implications, so I made the security situation acutally worse by thinking making it better.
      • How do I get this watchtower thing to fucking work? (only if I actually need it)

      I very much appreciate all further/other advise, tricks, recomendations, questions and discussion as well :-)

      4 votes
    11. PM UI issue

      I noticed this while sending out lots of PMs for my game giveaway thread. It's not a huge issue at all and doesn't really have any meaningful effect on the site's usability, but I thought I would...

      I noticed this while sending out lots of PMs for my game giveaway thread. It's not a huge issue at all and doesn't really have any meaningful effect on the site's usability, but I thought I would mention it anyway.

      Also, it might already be in the Gitlab, but I looked around and didn't see anything. I don't have an account there, so could someone (maybe @cfabbro?) add it for me if needed?

      Issue: Within a PM conversation, there is no indication of the person who is being PMed unless they have responded.

      Steps to recreate: send a user a PM, then click on that message from sent messages. If the person has not responded, you will only see your username and message. If the person responds, you can then see their username on their response, but that's currently the only way to know who the conversation is with from within the conversation itself.

      If anyone wants to recreate this for themselves, feel free to send me a PM referencing this thread and I will not respond.

      8 votes
    12. Invites disabled?

      I usually browse Tildes logged out, however today I decided to log in to participate. Before doing so, I wanted to explore Tildes' user interface a little. I opened the "Invite Users" page and was...

      I usually browse Tildes logged out, however today I decided to log in to participate. Before doing so, I wanted to explore Tildes' user interface a little. I opened the "Invite Users" page and was greeted with a message stating: "You aren't able to generate more invite links right now.".

      To the best of my knowledge, I have never invited anyone before. I have a strong, random password on my Tildes account so I believe it to be unlikely I was compromised.

      Are invites globally disabled, or could a site administrator take a look at my account and check what's going on?

      3 votes
    13. Does tildes.net allow updating of old links which have now moved to a different domain?

      I'm migrating my blog and domain from prahladyeri.com to prahladyeri.github.io. I've already implemented the HTTP 301 redirection in all pages and informed Google about the site move. After a...

      I'm migrating my blog and domain from prahladyeri.com to prahladyeri.github.io.

      I've already implemented the HTTP 301 redirection in all pages and informed Google about the site move. After a month or so, my old domain will expire and go out of my control.

      Is there a way to tell tildes.net to update my existing links which I've posted here to new ones based on their 301 redirection? Or some way to manually update them? What is the standard process on the Interwebs in this regard?

      8 votes
    14. Is there a terse way to say "movies and TV shows"?

      I often wish to refer to both "movies and/or TV shows" in a sentence. I wish to refer only to movies, or only to TV shows, much less often. Is there a word that could mean both? If not, should you...

      I often wish to refer to both "movies and/or TV shows" in a sentence. I wish to refer only to movies, or only to TV shows, much less often. Is there a word that could mean both? If not, should you create it?

      And yes, that is a silly, inconsequential, pedantic preoccupation about language. What can I tell you? I have lots of those. I am what I am :P

      10 votes
    15. Setting up a NAS as a first timer?

      So I've seen some posts here and elsewhere about people making a home NAS setup, using it as a media server with jellyfin/plex/.arr to set up media + keep files/passwords/photos, and then managing...

      So I've seen some posts here and elsewhere about people making a home NAS setup, using it as a media server with jellyfin/plex/.arr to set up media + keep files/passwords/photos, and then managing it remotely. That sounds incredibly cool.

      I also did some cursory searching that one way to do things without messing with port-forwarding is to look into Tailscale to network remotely.

      I want to try this for my parents and I, especially since I will be training abroad for several years while they will be based in Asia.

      The obvious problem is I don't have any experience with the process or even networking in general. I also do not know how to code in any capacity. I am in a decidedly non-tech field of work.

      I've been googling but want to know if this a feasible idea at my skill level? Is this work for hobbyists or those in the professional field of computing? Am I going to potentially shoot myself security-wise if i try this? Should experiment with something smaller-scale first?

      Preliminary "Research":

      1. Watched Practical Networking on youtube to see what I was getting into (understood... lets say 45% of what he was talking about)
      2. Plan to get a synology NAS with minimum 4 drive bays (Supposedly this is easiest for beginners?)
      3. Connect to network via tailscale
      4. Get a vpn
      5. Install docker
      6. Install apps
      7. Connect it to PCs and smart tv at my parent's home in Asia
      8. ???
      9. Maintain it from Europe?

      Any advice on how to start or any guides to recommend? (most of what I've found is 2021 or earlier so I am unsure if a lot's changed since then)

      9 votes
    16. I never stay logged in on my desktop + notebook

      I'm using Firefox on Arch with ublock origin, umatrix, decentraleyes, darkreader, bypass paywalls, old reddit redirect. None of these should affect Tildes in any way. but still, Firefox seems not...

      I'm using Firefox on Arch with ublock origin, umatrix, decentraleyes, darkreader, bypass paywalls, old reddit redirect.
      None of these should affect Tildes in any way. but still, Firefox seems not to be able to keep me logged in, and everytime i open Tildes in a new tab, I'm logged out. Sometimes it remembers the theme (solarized dark) sometimes it does not and only remembers it after a refresh, and sometimes it just dont.
      I dont even know where to look for a solution, especially as this seems to be Tildes specific as no other website seems to have this problems. an I'm pretty shure it has something to do with my Firefox, as it is that way on both of my computers.

      edit: solution was to delete all tildes.net cookies

      6 votes
    17. Question about using AppleTV+ in Firefox browser

      For the life of me I am unable to find the "up next" area to watch things I have added to watch. The left top of the screen has the AppleTV+ logo, and the right top has the settings. Can any of...

      For the life of me I am unable to find the "up next" area to watch things I have added to watch. The left top of the screen has the AppleTV+ logo, and the right top has the settings. Can any of you help me get this sorted?

      3 votes
    18. Has anyone with a WD NAS formatted drives for another system?

      This is a total longshot. I moved away from a WD My Cloud EX4100 w/ 3x WD Reds to a new box. I bought two more drives for the new one to make the move easier. After the move I took the drives out...

      This is a total longshot. I moved away from a WD My Cloud EX4100 w/ 3x WD Reds to a new box. I bought two more drives for the new one to make the move easier.

      After the move I took the drives out to format them only to find that each 4TB drive shows a partition of 1.8TB on any other system (diskpart with W10 LTSC, Disk Utility MacOS, and GParted with Ubuntu.) Inside the EX4100 the drives show their full capacity.. and I just don't get it.

      I reached out to their support, but I don't expect much of a response.

      Anybody have any idea why the heck this could be happening? This seems crazy. I don't mind buying more drives, but it seems like a waste when I've got 12TB just sitting there.

      7 votes
    19. "Rate limit exceeded"?

      Sometimes I'd like to post comments more frequently than a single comment anywhere on the site once every two hours. But I can't, because I get the error "Rate limit exceeded". Is it possible to...

      Sometimes I'd like to post comments more frequently than a single comment anywhere on the site once every two hours.

      But I can't, because I get the error "Rate limit exceeded".

      Is it possible to remove or at least significantly increase the limit site-wide for established users?

      The things a bear has to do..

      If there is a more appropriate place for this, I would appreciate having it moved there, or a link to the more appropriate area. Thanks!

      11 votes
    20. After blocking a user on uBlockOrigin I can't see the number of votes

      After using this method to block a user on here I can no longer see the number of votes a comment or a post gets. I can see it fine when I switch to a browser without uBlockOrigin, but not on...

      After using this method to block a user on here I can no longer see the number of votes a comment or a post gets.

      I can see it fine when I switch to a browser without uBlockOrigin, but not on FireFox.

      Any reason for this?

      Edit: I also can't see anyone's username in the comments.

      10 votes
    21. Looking for help with a DIY / household engineering project - hanging a water reservoir from my bed frame

      I have a Platypus Hoser water reservoir. And I have a metal canopy bed. Awhile back, I realized that I can hang the water reservoir from one of the top rails of the bed, and it gives me a way of...

      I have a Platypus Hoser water reservoir. And I have a metal canopy bed. Awhile back, I realized that I can hang the water reservoir from one of the top rails of the bed, and it gives me a way of drinking water in bed, with no risk of spilling it on myself or my bed, and without even needing to sit up.

      The only problem is, it leaks. It's a very slow leak, but it's dripping onto my bed or the carpet next to it, which obviously I'd like to avoid. And occasionally a droplet will fall on my outstretched hand or arm as I'm falling asleep, which tends to jerk me awake.

      You can see from the picture of the water reservoir above, the hole for hanging it is at the top, and the outlet for the hose is at the bottom. The way I'm hanging it now is just by threading a short length of "velcro tape" (tape without adhesive, but with velcro on each side so that it can stick to itself) through the hole and then around the top rail.

      So the way I have it now, all the water pressure concentrates on the spot where the hose screws on to the reservoir, and no matter how hard I tighten it, it still finds a way to leak.

      What I'd like to do is find an alternate way of hanging it, so that it's laying flat and there's much less water pressure on the outlet. Ideally I could also wrap the reservoir in a hand towel or something to absorb any leaks rather than letting them drip onto my bed.

      What I vaguely have in mind is that I'd like to build a "sling" of sorts that I could hang from the rail, and then lay the reservoir inside that sling. If I could find a very small plastic tarp (say 18 inches square) with metal grommets on each corner, that would more or less do what I want. But for understandable reasons, no one seems to make tarps that small.

      I'm sure there's something along those lines that I can assemble from inexpensive / easy-to-find parts. But...I can't think of what it might be.

      6 votes
    22. Continuing My Education with a CS Degree in Canada [A Help Thread]

      My Goal I am applying to Canadian universities for fall admission as a CS major. This will be my second degree, and one of the requirements of getting admitted for a second degree is to show that...

      My Goal

      I am applying to Canadian universities for fall admission as a CS major. This will be my second degree, and one of the requirements of getting admitted for a second degree is to show that you have a significant interest in the subject. My plan is to get online certificates to show that I am actually dedicated to learning CS and getting a job in the field. I am actually dedicated, I just need a way to show it on paper. I have some experience with software development (only the basics), but there aren't any records of it since it was just informal study.

      My Problem

      I can't decide which certificates I should pursue. I am torn between EdX and Udemy. I would Tilderinos' help in choosing between the two. I would also appreciate any general advice you may have.

      Here are the courses I plan to take on EdX (prices in USD):

      UBC's MicroMasters Program in
      Software Development
      - $832

      Harvard CS50's Web Programming with Python and JavaScript - $199

      IBM's Professional Certificate in
      Cloud Application Development Foundations
      - $169

      Here are the courses I plan to take on Udemy:

      The Ultimate 2021 Fullstack Web Development Bootcamp - $15

      The Complete 2021 Web Development Bootcamp - $15

      The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert - $30

      Angular - The Complete Guide (2021 Edition) - $15

      Comparisons

      To reiterate, I have two goals going into this. One is to actually learn web development, since I would like to become a fullstack developer (but my options are semi-open). The other is to prove to the Canadian universities that I am dedicated to learning and to give myself an edge over applicants.

      If I go with EdX, then I have to pay a much steeper price for the certificates. These courses also take a long time to get through and the projects don't seem as relevant to real word applications. But I will also be learning from established institutions like Harvard and UBC. EdX certificates also come with the distinct advantage that a human is checking the problem sets you submit. This will show the Canadian universities that I have actually spent the time and effort to go through the courses and pass them.

      If I go with Udemy, I will get through the courses in less time and their projects seem more related to real world projects. If I go through the courses faster, I will also have more time to start on some personal projects, and I can show my dedication to learning through those projects. Personal projects and also volunteer work will also help establish a resumé for future work. The courses on Udemy are a lot cheaper too. But they don't have the same level of verification or prestige that EdX does.

      So in summary, EdX has prestige and quality courses, but a steep prices and a huge time commitment. Udemy is cheaper and gives me more opportunities to do personal projects and volunteer work, but it's certificates aren't fully trustworthy from the Canadian universities' perspective.

      Final Words

      What do you think? Which path should I take?

      For those of you wondering, why I am going to university instead of a bootcamp, it's because I plan to immigrate to Canada and becoming a student seems the straightest way of getting PR. I need to leave my third world country as soon as I can, for mental health and economic reasons. I have been mostly unemployed ever since the pandemic started so I can't get work in Canada (or the U.S.) on my first degree (a management degree). I already tried that route. I can't find proper work here either.

      Also, I am sorry if I posted in the wrong group, or if I shouldn't have posted it anywhere at all. I desperately need advice on what to do and I don't have a trustworthy network here that can help me through this. I'm sorry and thank you for your help.

      8 votes
    23. Why does a completely local, self-contained html file need to access gstatic.com?

      So, I'm a privacy advocate (or paranoiac, depending on your perspective). I run both uMatrix and NoScript plug-ins (among others) in my Firefox browser, so I can see when and where websites send...

      So, I'm a privacy advocate (or paranoiac, depending on your perspective). I run both uMatrix and NoScript plug-ins (among others) in my Firefox browser, so I can see when and where websites send calls out to other locations, and block the ones I want ... google analytics, google fonts, google-apis, google tag manager, and gstatic are all ubiquitous out there, probably 99% of websites use at least one of them (PS: Tildes is in the 1%; yeay, Deimos).

      And note ... there may well be nothing at all wrong with any of those sites/services ... but Google has a global all-encompassing Terms and Conditions policy that says, you use anything of Theirs, and They are allowed to harvest your personal data and make money off of it.

      And I do not accept those terms.

      Okay, that's the prologue. The deal is, I have a small piece of documentation, just basic "how to use this" info, for a WordPress plug-in. It is in .html format, with bundled bootstrap and jquery and a few other assets.

      Nothing, anywhere in the entire folder, references gstatic. And yet when I open this local, on-my-computer-only html file ... my browser tells me that it is trying to connect to gstatic.com.

      Anyone happen to know why/how that is happening?

      4 votes
    24. Internet is slow, but only when opening a new domain

      Internet in my fiancee's house is weird. Once I open up a domain, going to links in the same domain is quite fast, but if I try opening another domain in another tab it is super slow. On Chrome it...

      Internet in my fiancee's house is weird. Once I open up a domain, going to links in the same domain is quite fast, but if I try opening another domain in another tab it is super slow. On Chrome it is really bad, Firefox is better but still sluggish. This occurs similarly on different devices running Windows, Linux, and Android. What could be causing this?

      8 votes
    25. Is there a way to make sure sent e-mails are opened?

      A few years ago I decided to ditch Gmail and started using Disroot as my e-mail provider. It was recommended by privacytools.io. I realized that at least one e-mail I sent went to spam and now...

      A few years ago I decided to ditch Gmail and started using Disroot as my e-mail provider. It was recommended by privacytools.io.

      I realized that at least one e-mail I sent went to spam and now every time I send an e-mail I get paranoid if it will reach its destination. Is there a way to know if the e-mails I send are opened?

      I've thought about switching to a more mainstream e-mail provider like ProtonMail but I already have so many accounts linked to Disroot that make switching dreadful. As a matter of fact I still have over 100 accounts that are using my Gmail address because it's so time intensive and not a priority to do the switch. Hopefully in the password-less future this kind of problem will cease to exist.

      11 votes
    26. PC doesn't connect properly to thunderbolt dock if it's plugged in after booting

      I have a CalDigit TS3+ dock that I switch between my M1 Macbook Pro and a System76 Galago Pro that's currently running Windows 10 (I'm sorry, FOSS gods). The M1 has no problem using the TS3+ when...

      I have a CalDigit TS3+ dock that I switch between my M1 Macbook Pro and a System76 Galago Pro that's currently running Windows 10 (I'm sorry, FOSS gods). The M1 has no problem using the TS3+ when it's connected or disconnected and reconnected. But the Galago Pro will only connect to the dock if it was connected while booting up. Disconnecting and reconnecting leaves the dock in a state where only the pass-through thunderbolt port works. So my monitor that uses the pass-through for DisplayPort can operate after reconnecting the dock, but no other devices plugged into the dock will. My mouse/keyboard for example don't even receive power in this state.

      Oddly when setting up the drivers for thunderbolt I found that the only drivers available are for Intel's NUCs. IIRC someone on reddit said that this is actually the software I need to install, so that's what I did.

      Any help getting the dock to work better is appreciated! Currently I need to reboot the laptop every time I switch back from the M1 to the Galago Pro.

      4 votes
    27. Search for tag site-wide?

      Clicking a tag provides the search results for that tag in the local group. Since some topics appear across groups, I think it'd be useful to view site-wide results as well, optionally. Does that...

      Clicking a tag provides the search results for that tag in the local group. Since some topics appear across groups, I think it'd be useful to view site-wide results as well, optionally. Does that already exist?

      9 votes
    28. [SOLVED] Looking to debug a wifi issue, or possibly for a new wifi router

      EDIT: Crisis averted! The problem was with the modem and not the devices connecting to it. I'm not sure why the first person I called at the ISP couldn't help me. In reality, the second person I...

      EDIT: Crisis averted! The problem was with the modem and not the devices connecting to it. I'm not sure why the first person I called at the ISP couldn't help me. In reality, the second person I called also didn't help, but something magically started working after talking with them a second time and rebooting the modem about 5 more times, so it turns out I don't need a new WiFi router at this time. That said, I will take these suggestions to heart, as I may be buying one anyway as a backup for when this inevitably happens again.

      TL;DR: I probably need a new wifi router and want one that isn't malware and will work even if the company I bought it from goes under or stops making it.

      Long version:
      So today my wifi stopped working. I use an Apple Airport Extreme (the tower one that has a Time Machine backup in it). I've had it for 5 or 10 years and it's worked fine during that time, other than replacing the hard drive it backs up to. My spouse and I were sitting on the couch after lunch surfing the web on our phones, when we suddenly couldn't reach anything. The router itself appears fine. We can connect to it and see other devices that are connected to it, but for some reason, it's no longer communicating with the cable modem via the WAN port. It still backs up the computers in our house, though. I have tested the cable that was connecting it to the cable modem, and it appears fine. I can connect my computer directly to the cable modem without issue using the same cable. So my guess is that the WAN port is hosed.

      However, I'm suspicious that something else is going on for 2 reasons. #1, the cable company (Spectrum) made me replace my cable modem last week. I did that, got my Airport connected to it, and after a call to tech support got it up and running. It's been working for the past week. I suspect the modem may have updated or changed configuration without me knowing it and that's the real cause here. They sent me a Wifi router with the modem, but will charge me $5.00/month if I keep it. I'd rather own the hardware. #2, I have an older Airport Express that was working the last time I used it. I replaced it with the newer model about 5 years ago so I could do backups. It fails to work in the same way. It seems like the WAN port isn't communicating with the cable modem. So, if there's some way to verify that the WAN ports on my Airports are or aren't working, I'd be interested to hear about it.

      I am able to connect a wired ethernet switch to the cable modem and all devices on the switch can see the Internet just fine. I tried connecting both Airports to the switch via their WAN ports while the switch was connected to the cable modem, but that did not work. (Or at least, I couldn't connect to the internet via either Airport.)

      So, on the off-chance that both my Airports have a similar failure, I need to replace them. I have gotten suggestions from others, but have been pretty unhappy with them. I have the following requirements:

      • Absolutely must not store any information about me in the cloud (for example as Ubiquiti apparently does)
      • Absolutely must not rely on any sort of connection to the manufacturer to work properly and must not phone home without my permission
      • Preferably not a poorly made device that will die in 3 years
      • Must work properly and at full speed with Apple devices
      • Must not require a phone app to configure
      • Must have ~3 ethernet ports so I can hardwire in my TV devices (AppleTV, TiVo, etc.)

      Things I don't need, but aren't a deal-breaker if it has it:

      • The ability to configure every little setting. I prefer to set it and forget it.
      • Mesh networking. My house is not huge, the cable modem is in the middle of the house and my single Airport base station has good coverage of the entire house.

      If you know of any device like this, please share!

      7 votes
    29. Change group color on unsubscribe (on the groups page)

      Perhaps the post was posted in the wrong place and can be moved or deleted. But it's not entirely clear. There is a page: https://tildes.net/groups Where is it written: Group name colors:...

      Perhaps the post was posted in the wrong place and can be moved or deleted. But it's not entirely clear.

      There is a page: https://tildes.net/groups

      Where is it written:

      Group name colors: subscribed / not subscribed. You can change your subscription status to a group in its sidebar when you are viewing it directly.

      I decided to experiment and unsubscribe from some groups. However, there are no changes on this page. Perhaps it’s just me or I’m doing something wrong.

      7 votes
    30. Does the Reddit 'Popular' page base results on the user's preferences?

      I use Reddit more than I should. I flip to the 'Popular' page to see current events. I am curious if I am looking at skewed results based on the subreddits and posts that I visit, or if I am truly...

      I use Reddit more than I should. I flip to the 'Popular' page to see current events. I am curious if I am looking at skewed results based on the subreddits and posts that I visit, or if I am truly looking at a good sample of Reddit's popular posts?

      3 votes
    31. Need help raising funds for a friend

      @ admin: Sorry if it's not allowed to post these kinds of things, feel free to remove it. I'm normally not someone who would post this kind of stuff to places like this or other sites, as it's...

      @ admin: Sorry if it's not allowed to post these kinds of things, feel free to remove it.

      I'm normally not someone who would post this kind of stuff to places like this or other sites, as it's probably kind of annoying, but l'm honestly starting to get super worried.

      A close friend recently broke her leg & thanks to the fucked up US healthcare system she's got a $1800 bill due on the 11th of October. I set up a fundraiser to try and help, which raised $500 so far, but that's just not enough.
      I'm really worried for her (mental) wellbeing & l am desperately trying to scrape together what l can to help. l think if the bill isn't paid, it wouldn't take long for her to end up homeless, or worse.

      l don't like asking this, but would anyone be able to either donate or share the tweet? Any amount helps.

      l would genuinely appreciate it a lot if you could, and l understand if you can't.

      https://twitter.com/asoftbird/status/1294762351242235904?s=21

      Edit: it's in the tweet, but l should mention she's trans and disabled; becoming homeless already is pretty bad, but given the other circumstances l'm honestly not sure if she'll survive that.
      I have donated her $600 already which is as much as l can miss, l don't know what to do about the bit that's still missing.

      10 votes
    32. Hive mind: In the early 2000s, there was a website that tracked and reviewed open source applications. What was it?

      You could look up, say, CMSes, get some basic info about each one (to make useful decision), and learn who its active committers were. The site closed, I know. Do you remember its name? Or people...

      You could look up, say, CMSes, get some basic info about each one (to make useful decision), and learn who its active committers were. The site closed, I know. Do you remember its name? Or people who were part of it?

      I asked someone to write an article for me about "review sites for open source" -- think Yelp for Software -- and neither of us can remember its name. But if you have others that you think should be included (for positive or negative reasons), please let me know.

      10 votes
    33. I can't invite anyone

      I never invited anyone, but the message says You aren't able to generate more invite links right now.. I've been on Tildes for about a month now. Please advise.

      8 votes
    34. Are there any requirements to creating a group on Tildes?

      I've been playing Destiny 2 and I have so many questions. I thought about reaching out to people who actually know what they are doing. Since I'm moving away from Reddit and other sites like that...

      I've been playing Destiny 2 and I have so many questions. I thought about reaching out to people who actually know what they are doing. Since I'm moving away from Reddit and other sites like that I thought about creating a D2 group here on Tildes. However, If it requires "work" as a moderator or something like that I would honestly pass.

      So my questions are: can anyone create a group? As a creator do you have to do any "work" on that group?

      Thanks

      14 votes