• 1 Post
  • 13 Comments
Joined 2 months ago
cake
Cake day: February 5th, 2025

help-circle


  • One thing about the thumbdrives, a LOT of features did not work for me when running live bootable, and it almost put me off. Then I made the actuall full install and a lot of the stuff that had not worked now did. Just so people understand the live bootables are very much just a demo, and doesn’t say much about compatibility really.


  • Nice I didn’t know that ^^ should probably learn at least the basic bash operators, I am just hacking together the different commands I happen to know at the moment really

    Edit: why echo instead of printf?

    This was causing a lot of issues with newlines, like when I fetched the log to view it my $ was right after the log entry so I switched it back. But it is probably useful in the future to use >> instead :)



  • It is not as cryptic as it sounded I just explained it badly.

    Log everything you do in human readable text, because realistically as a beginner going through machine generated logs is not very fun, and .bash_history will be filled with stuff that isn’t relevant always.

    It is just a bash script that logs a message with the current date to a file I can access from MacOS as well (on the shared partition) so that I can see what I did if I mess up too bad…

    Edit:

    Here it is:

    # Log argument to changelog.txt with current date and time.
    
    function log()
    {
    	local changelog="/run/media/jamie/DUAL/changelog"
    	local text="$(cat $changelog)" 
    	if [ "$1" == "--view" ]; then
    		cat $changelog
    	else
    		printf "$text\n$(date +%D:%H:%M): $1\n" > $changelog
    	fi
    }
    

    Each line looks like this: 03/16/25:11:49: Running dnf upgrade

    I will probably add some stuff so I can get the last 5 lines or something if I want, but at the moment this is really fine.








  • jamie_oliver@lemmy.worldtoFediverse@lemmy.worldTumblr to join fediverse
    link
    fedilink
    English
    arrow-up
    12
    ·
    edit-2
    2 months ago

    Tumblr was a lot of fun. Yes it is a microblogging platform, but that doesn’t explain what the appeal was. I have no idea what the appeal is today as I left in 2015.

    People would share text or image or links of things they liked, and if you reblogged it (shared to your own blog) the comment you added would be retained when someone reblogged your reblog, creating ludicrous chains of conversations that people would build and build on. They eventually became unreadable because they got squashed into one line. There was no way to comment without reblogging.

    Tumblr predates influencer culture, and tumblr celebrities were not really a thing (except for @pizza by accident being tagged everywhere).

    You also had a tag system, where you added hashtags to reblogs that were searchable. This way you would find topics you liked, and blogs to follow. If you followed you would get their reblogs in your home feed.

    The blogs had custom CSS, with graphics and music playing but less free for all than MySpace. This made some blogs into minor art pieces, along with the things they reblogged. This was a big part of what made tumblr cool when websites all started going uniform and looking exactly the same.

    For me the initial appeal was high def images. Instagram had not taken off, and so finding consistent high quality images of art, nature, sub culture and pop culture imagery or artists, porn etc. was not as obvious as it is today.

    I loved tumblr but eventually got bored. Eventually they killed custom CSS and porn, and basically made tumblr worthless for anyone who wasn’t into fandoms (/s but kind of not. I have no idea what happens on tumblr today).


  • I am very new here, and not as passionate about the fediverse as some of you are (like your average redditor most likely).

    Reading the comments here I think that the fact that you notice decentralization as a user can be a problem for many but offering simple instance lists, community lists in the UI can mitigate that and make it more a feature than a nuisance (for those that have trouble navigating it).

    On desktop, I don’t mind switching servers with different URLs, especially since I can read them all with the same proton UI. However, on mobile (I spend more time on social media via mobile than desktop, I imagine most people do these days) using the Jerboa app I cannot figure out how to “visit” another server. I can’t enter the URL, I cannot click on the URL, I cannot search for @URL and get a list of the communities hosted on it…

    I am sure there is documentation somewhere explaining how I achieve this, but I should not have to look for that just to acces different instances. I use lemmy on breaks mostly and as I said, am not passionate enough about social media to read manpages for it… I imagine some will think “then we don’t need people like you here”, but in the end if close-to mainstream user adoption is a goal, you kind of will need people who just want to look at cats and discover communities as well, and making jumping between instances and finding communities is an important part of making that happen.

    Edit: I do not think having an official sign up is a solutiom btw, I think different servers are neat, and I most likely will sign up to another I am more in line with when I know which are available. It is neat to choose a home server, but it should be seemless to find others. There is no need to obfuscate servers and pretend everything is centralized, but having easy access to a centralized list of servers and communities built into the UI seems like a must for me.