home.social

#firefishtips — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #firefishtips, aggregated by home.social.

  1. #FediFact — Did you know that you can set different privacy settings for your posts? Depending on the privacy settings you choose, it may impact (and affect) how visible your post is, and how discoverable it might be.

    PublicPublic is the default privacy setting. When you use the Public privacy setting there are no restrictions on your posts. Your posts will be visible to any of the public timelines here on nsfw.social, and on other fedi servers depending on the other servers' admin's settings.

    UnlistedUnlisted prevents your posts from appearing in any of the public timelines both here, and on other servers. This also means that people won't be able to discover your posts unless someone they follow boosts one of your posts.

    FollowersFollowers limits your posts to only your followers. Neither your followers, or anyone they follow, will be able to boost your posts (though they will be able to react and reply).

    DirectDirect limits your posts to only those people you explicitly tag and specify to be able to see them. Admins on your local server, and on any remote server of users' that are tagged, technically have the ability to see your Direct posts. (At least today.) Do not post or send any sensitive information in Direct posts.

    PrivatePrivate is a special post permission that basically means your post is only visible to you. It will appear in your timeline but in nobody else's. Admins on your local server technically have the ability to see your Private posts. Do not post any sensitive information in Private posts.

    Local OnlyLocal Only is a special flag you can add to your posts that is separate from any of the permissions outlined above. Setting a post to Local Only will cause the post to NOT federate. Your post will stay on your local server, and will be visible to other users on your local server depending on the other permissions you might set.

    Hope you found this helpful!
    #FirefishTips

  2. #FediFact — Did you know that you can set different privacy settings for your posts? Depending on the privacy settings you choose, it may impact (and affect) how visible your post is, and how discoverable it might be.

    PublicPublic is the default privacy setting. When you use the Public privacy setting there are no restrictions on your posts. Your posts will be visible to any of the public timelines here on nsfw.social, and on other fedi servers depending on the other servers' admin's settings.

    UnlistedUnlisted prevents your posts from appearing in any of the public timelines both here, and on other servers. This also means that people won't be able to discover your posts unless someone they follow boosts one of your posts.

    FollowersFollowers limits your posts to only your followers. Neither your followers, or anyone they follow, will be able to boost your posts (though they will be able to react and reply).

    DirectDirect limits your posts to only those people you explicitly tag and specify to be able to see them. Admins on your local server, and on any remote server of users' that are tagged, technically have the ability to see your Direct posts. (At least today.) Do not post or send any sensitive information in Direct posts.

    PrivatePrivate is a special post permission that basically means your post is only visible to you. It will appear in your timeline but in nobody else's. Admins on your local server technically have the ability to see your Private posts. Do not post any sensitive information in Private posts.

    Local OnlyLocal Only is a special flag you can add to your posts that is separate from any of the permissions outlined above. Setting a post to Local Only will cause the post to NOT federate. Your post will stay on your local server, and will be visible to other users on your local server depending on the other permissions you might set.

    Hope you found this helpful!
    #FirefishTips

  3. Question: How can I make my firefish experience the most like a 2000s forum post? Where can I use animated gifs and how close can I get to a signature?! :D #firefishtips #firefish
    Can people who don't run firefish see this as blurred?!

  4. Question: How can I make my firefish experience the most like a 2000s forum post? Where can I use animated gifs and how close can I get to a signature?! :D #firefishtips #firefish
    Can people who don't run firefish see this as blurred?!

  5. Question: How can I make my firefish experience the most like a 2000s forum post? Where can I use animated gifs and how close can I get to a signature?! :D #firefishtips #firefish
    Can people who don't run firefish see this as blurred?!

  6. Question: How can I make my firefish experience the most like a 2000s forum post? Where can I use animated gifs and how close can I get to a signature?! :D #firefishtips #firefish
    Can people who don't run firefish see this as blurred?!

  7. I have created several custom CSS styles that can be utilized in #Firefish .

    In the Global Timeline (GTL), all boosted posts are hidden:

    /* Hide boosted posts in the Global Timeline */
    div:has(button.tab._button.active[aria-label="Global"])  + div .list .notes .renote {
        display: none;
    }

    In the Social Timeline (STL), only boosted posts are displayed. In essence, it transforms the Social Timeline into a dedicated timeline exclusively for viewing boosted posts:
    /* Display only boosted posts in the Social Timeline */
    div:has(button.tab._button.active[aria-label="Social"])  + div .list .notes > div:not(:has(.renote)) {
        display: none;
    }
    Using this CSS may enhance the discoverability of currently popular posts.

    If you wish to apply these CSS styles to other timelines, simply modify the
    aria-label="xxx".

    To apply custom CSS, navigate to
    Settings -> Themes -> Custom CSS, copy and paste the CSS into the text area, and click the Save button.

    Thanks to this note by Misskey for giving me the idea to create this CSS.
    https://misskey.io/notes/9h07kfnw07
    #CustomCSS #FirefishTips

  8. I have created several custom CSS styles that can be utilized in #Firefish .

    In the Global Timeline (GTL), all boosted posts are hidden:

    /* Hide boosted posts in the Global Timeline */
    div:has(button.tab._button.active[aria-label="Global"])  + div .list .notes .renote {
        display: none;
    }

    In the Social Timeline (STL), only boosted posts are displayed. In essence, it transforms the Social Timeline into a dedicated timeline exclusively for viewing boosted posts:
    /* Display only boosted posts in the Social Timeline */
    div:has(button.tab._button.active[aria-label="Social"])  + div .list .notes > div:not(:has(.renote)) {
        display: none;
    }
    Using this CSS may enhance the discoverability of currently popular posts.

    If you wish to apply these CSS styles to other timelines, simply modify the
    aria-label="xxx".

    To apply custom CSS, navigate to
    Settings -> Themes -> Custom CSS, copy and paste the CSS into the text area, and click the Save button.

    Thanks to this note by Misskey for giving me the idea to create this CSS.
    https://misskey.io/notes/9h07kfnw07
    #CustomCSS #FirefishTips

  9. I have created several custom CSS styles that can be utilized in #Firefish .

    In the Global Timeline (GTL), all boosted posts are hidden:

    /* Hide boosted posts in the Global Timeline */
    div:has(button.tab._button.active[aria-label="Global"])  + div .list .notes .renote {
        display: none;
    }

    In the Social Timeline (STL), only boosted posts are displayed. In essence, it transforms the Social Timeline into a dedicated timeline exclusively for viewing boosted posts:
    /* Display only boosted posts in the Social Timeline */
    div:has(button.tab._button.active[aria-label="Social"])  + div .list .notes > div:not(:has(.renote)) {
        display: none;
    }
    Using this CSS may enhance the discoverability of currently popular posts.

    If you wish to apply these CSS styles to other timelines, simply modify the
    aria-label="xxx".

    To apply custom CSS, navigate to
    Settings -> Themes -> Custom CSS, copy and paste the CSS into the text area, and click the Save button.

    Thanks to this note by Misskey for giving me the idea to create this CSS.
    https://misskey.io/notes/9h07kfnw07
    #CustomCSS #FirefishTips

  10. Pretty much the only thing I miss from Mastodon is the follower/following management panel — it's so useful being able to drop the dormant accounts, particularly given the nature of the Fediverse, but if #firefish has this functionality I'm yet to find it ​:blobcatgooglyshrug:​
    #firefishhelp #firefishtips

  11. Pretty much the only thing I miss from Mastodon is the follower/following management panel — it's so useful being able to drop the dormant accounts, particularly given the nature of the Fediverse, and if #firefish has this functionality I'm yet to find it ​:blobcatgooglyshrug:​
    #firefishhelp #firefishtips

  12. Pretty much the only thing I miss from Mastodon is the follower/following management panel — it's so useful being able to drop the dormant accounts, particularly given the nature of the Fediverse, but if #firefish has this functionality I'm yet to find it ​:blobcatgooglyshrug:​
    #firefishhelp #firefishtips

  13. Pretty much the only thing I miss from Mastodon is the follower/following management panel — it's so useful being able to drop the dormant accounts, particularly given the nature of the Fediverse, but if #firefish has this functionality I'm yet to find it ​:blobcatgooglyshrug:​
    #firefishhelp #firefishtips

  14. #firefishtips #firefish friends, my soft mute for terms isn’t working. Hard mute works. I double-checked I’m using OR and AND conditions correctly. What do?

  15. #firefishtips #firefish friends, my soft mute for terms isn’t working. Hard mute works. I double-checked I’m using OR and AND conditions correctly. What do?

  16. #firefishtips #firefish friends, my soft mute for terms isn’t working. Hard mute works. I double-checked I’m using OR and AND conditions correctly. What do?

  17. #firefishtips #firefish friends, my soft mute for terms isn’t working. Hard mute works. I double-checked I’m using OR and AND conditions correctly. What do?

  18. #firefishtips #firefish friends, my soft mute for terms isn’t working. Hard mute works. I double-checked I’m using OR and AND conditions correctly. What do?

  19. #Firefish and #Calckey users, I can't stress enough how useful the Preference Backups feature can be!

    Settings > Preference Backups

    Simply click a backup to reveal options for easy loading of custom configs, including themes, wallpaper, plugins, custom css, and post preferences. Back up online and download for safekeeping.
    🎉

    #FirefishTips #CalckeyTips

  20. #Firefish and #Calckey users, I can't stress enough how useful the Preference Backups feature can be!

    Settings > Preference Backups

    Simply click a backup to reveal options for easy loading of custom configs, including themes, wallpaper, plugins, custom css, and post preferences. Back up online and download for safekeeping.
    🎉

    #FirefishTips #CalckeyTips

  21. #Firefish and #Calckey users, I can't stress enough how useful the Preference Backups feature can be!

    Settings > Preference Backups

    Simply click a backup to reveal options for easy loading of custom configs, including themes, wallpaper, plugins, custom css, and post preferences. Back up online and download for safekeeping.
    🎉

    #FirefishTips #CalckeyTips

  22. #Firefish and #Calckey users, I can't stress enough how useful the Preference Backups feature can be!

    Settings > Preference Backups

    Simply click a backup to reveal options for easy loading of custom configs, including themes, wallpaper, plugins, custom css, and post preferences. Back up online and download for safekeeping.
    🎉

    #FirefishTips #CalckeyTips

  23. #Firefish and #Calckey users, I can't stress enough how useful the Preference Backups feature can be!

    Settings > Preference Backups

    Simply click a backup to reveal options for easy loading of custom configs, including themes, wallpaper, plugins, custom css, and post preferences. Back up online and download for safekeeping.
    🎉

    #FirefishTips #CalckeyTips

  24. #FirefishTips TIL you can paste a link to another post into the compose box, and it'll ask if you want to quote the post you pasted. This seems to only work for post links on the local instance (so for me, that would be https://firefish.social/notes/...)
    If the post you want to quote isn't on your instance, you can get that link by searching for the post's link in your instance in a new tab, copying that tab's URL, and pasting it back in the box.
    (If you get the red popup when searching, you or them are probably blocked, so you can't quote that post.)

    (This is probably something the Bird did/does but I wasn't on that site very much.)

  25. #FirefishTips TIL you can paste a link to another post into the compose box, and it'll ask if you want to quote the post you pasted. This seems to only work for post links on the local instance (so for me, that would be https://firefish.social/notes/...)
    If the post you want to quote isn't on your instance, you can get that link by searching for the post's link in your instance in a new tab, copying that tab's URL, and pasting it back in the box.
    (If you get the red popup when searching, you or them are probably blocked, so you can't quote that post.)

    (This is probably something the Bird did/does but I wasn't on that site very much.)

  26. #FirefishTips TIL you can paste a link to another post into the compose box, and it'll ask if you want to quote the post you pasted. This seems to only work for post links on the local instance (so for me, that would be https://firefish.social/notes/...)
    If the post you want to quote isn't on your instance, you can get that link by searching for the post's link in your instance in a new tab, copying that tab's URL, and pasting it back in the box.
    (If you get the red popup when searching, you or them are probably blocked, so you can't quote that post.)

    (This is probably something the Bird did/does but I wasn't on that site very much.)

  27. If you, like me, want notifications on mobile for #Firefish, then (at least on iOS) this works:

    From mobile Firefox tap the hamburger menu in the bottom right corner and then tap share and “add to homescreen.” Then open
    #firefish and login. Then head to settings and notifications and you will be able to enable push notifications!

    And they work!!!!

    #fediverse #feditips #firefishtips #firefox

  28. If you, like me, want notifications on mobile for #Firefish, then (at least on iOS) this works:

    From mobile Firefox tap the hamburger menu in the bottom right corner and then tap share and “add to homescreen.” Then open
    #firefish and login. Then head to settings and notifications and you will be able to enable push notifications!

    And they work!!!!

    #fediverse #feditips #firefishtips #firefox

  29. If you, like me, want notifications on mobile for #Firefish, then (at least on iOS) this works:

    From mobile Firefox tap the hamburger menu in the bottom right corner and then tap share and “add to homescreen.” Then open
    #firefish and login. Then head to settings and notifications and you will be able to enable push notifications!

    And they work!!!!

    #fediverse #feditips #firefishtips #firefox

  30. If you, like me, want notifications on mobile for #Firefish, then (at least on iOS) this works:

    From mobile Firefox tap the hamburger menu in the bottom right corner and then tap share and “add to homescreen.” Then open
    #firefish and login. Then head to settings and notifications and you will be able to enable push notifications!

    And they work!!!!

    #fediverse #feditips #firefishtips #firefox

  31. If you, like me, want notifications on mobile for #Firefish, then (at least on iOS) this works:

    From mobile Firefox tap the hamburger menu in the bottom right corner and then tap share and “add to homescreen.” Then open
    #firefish and login. Then head to settings and notifications and you will be able to enable push notifications!

    And they work!!!!

    #fediverse #feditips #firefishtips #firefox

  32. In the latest dev version of #Calckey v14 (v14.0.0-dev35), tooltips were added for each timeline.

    These are:
    -
    Home: The Home timeline is where you can see posts from the accounts you follow.
    -
    Local: The Local timeline is where you can see posts from everyone on this server.
    -
    Recommended: The Recommended timeline is where you can see posts from servers the admins recommend.
    -
    Social: The Social timeline is a combination of the Home and Local timelines.
    -
    Global: The Global timeline is where you can see posts from every other connected server.

    #CalckeyTips #FirefishTips #Firefish

  33. In the latest dev version of #Calckey v14 (v14.0.0-dev35), tooltips were added for each timeline.

    These are:
    -
    Home: The Home timeline is where you can see posts from the accounts you follow.
    -
    Local: The Local timeline is where you can see posts from everyone on this server.
    -
    Recommended: The Recommended timeline is where you can see posts from servers the admins recommend.
    -
    Social: The Social timeline is a combination of the Home and Local timelines.
    -
    Global: The Global timeline is where you can see posts from every other connected server.

    #CalckeyTips #FirefishTips #Firefish

  34. In the latest dev version of #Calckey v14 (v14.0.0-dev35), tooltips were added for each timeline.

    These are:
    -
    Home: The Home timeline is where you can see posts from the accounts you follow.
    -
    Local: The Local timeline is where you can see posts from everyone on this server.
    -
    Recommended: The Recommended timeline is where you can see posts from servers the admins recommend.
    -
    Social: The Social timeline is a combination of the Home and Local timelines.
    -
    Global: The Global timeline is where you can see posts from every other connected server.

    #CalckeyTips #FirefishTips #Firefish

  35. In the latest dev version of #Calckey v14 (v14.0.0-dev35), tooltips were added for each timeline.

    These are:
    -
    Home: The Home timeline is where you can see posts from the accounts you follow.
    -
    Local: The Local timeline is where you can see posts from everyone on this server.
    -
    Recommended: The Recommended timeline is where you can see posts from servers the admins recommend.
    -
    Social: The Social timeline is a combination of the Home and Local timelines.
    -
    Global: The Global timeline is where you can see posts from every other connected server.

    #CalckeyTips #FirefishTips #Firefish

  36. Another tip, if your #Calckey Deck UI setup requires horizontal scrolling, you can also do this:

    1. Hover over a column header
    2. Use the regular mouse scroll

    Calckey will horizontally scroll the Deck UI.

    #CalckeyTips #FirefishTips #Firefish

  37. Another tip, if your #Calckey Deck UI setup requires horizontal scrolling, you can also do this:

    1. Hover over a column header
    2. Use the regular mouse scroll

    Calckey will horizontally scroll the Deck UI.

    #CalckeyTips #FirefishTips #Firefish

  38. Another tip, if your #Calckey Deck UI setup requires horizontal scrolling, you can also do this:

    1. Hover over a column header
    2. Use the regular mouse scroll

    Calckey will horizontally scroll the Deck UI.

    #CalckeyTips #FirefishTips #Firefish

  39. Another tip, if your #Calckey Deck UI setup requires horizontal scrolling, you can also do this:

    1. Hover over a column header
    2. Use the regular mouse scroll

    Calckey will horizontally scroll the Deck UI.

    #CalckeyTips #FirefishTips #Firefish

  40. Oh, I just found out that clicking a column header in the Deck UI of #Calckey will make that column scroll “back to the top”.

    #CalckeyTips #FirefishTips #Firefish

  41. Oh, I just found out that clicking a column header in the Deck UI of #Calckey will make that column scroll “back to the top”.

    #CalckeyTips #FirefishTips #Firefish

  42. Oh, I just found out that clicking a column header in the Deck UI of #Calckey will make that column scroll “back to the top”.

    #CalckeyTips #FirefishTips #Firefish

  43. Oh, I just found out that clicking a column header in the Deck UI of #Calckey will make that column scroll “back to the top”.

    #CalckeyTips #FirefishTips #Firefish

  44. Re: #notifications setting in calckey.social.

    Just in case clicking the “Enable” button is not working, check that the notification isn't blocked in the browser.

    If it is blocked/not allowed/disabled, change it to ask or allow, refresh the site, then go back to your Calckey settings. The button to enable notifications should work fine then.

    #Calckey #CalckeyTips #FirefishTips #Firefish

    See these two screenshots.

  45. Re: #notifications setting in calckey.social.

    Just in case clicking the “Enable” button is not working, check that the notification isn't blocked in the browser.

    If it is blocked/not allowed/disabled, change it to ask or allow, refresh the site, then go back to your Calckey settings. The button to enable notifications should work fine then.

    #Calckey #CalckeyTips #FirefishTips #Firefish

    See these two screenshots.

  46. Re: #notifications setting in calckey.social.

    Just in case clicking the “Enable” button is not working, check that the notification isn't blocked in the browser.

    If it is blocked/not allowed/disabled, change it to ask or allow, refresh the site, then go back to your Calckey settings. The button to enable notifications should work fine then.

    #Calckey #CalckeyTips #FirefishTips #Firefish

    See these two screenshots.