Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

Notices by codesections (codesections@fosstodon.org), page 9

  1. Twelve (twelve@fosstodon.org)'s status on Thursday, 11-Jul-2019 10:49:46 EDT Twelve Twelve

    So anybody know a hood way to watch youtube on phone. perferebly through and app on the f-droid store.

    In conversation Thursday, 11-Jul-2019 10:49:46 EDT from fosstodon.org permalink Repeated by codesections
  2. Jens ♥ (ohyran@fosstodon.org)'s status on Thursday, 11-Jul-2019 10:09:20 EDT Jens ♥ Jens ♥

    At mums place now talking about racism and class backgrounds. Vacation and all

    In conversation Thursday, 11-Jul-2019 10:09:20 EDT from fosstodon.org permalink Repeated by codesections
  3. Baldur Bjarnason (baldur@toot.cafe)'s status on Thursday, 11-Jul-2019 10:02:38 EDT Baldur Bjarnason Baldur Bjarnason

    Finally getting around to properly digging into Svelte and it looks, well..., close to ideal.

    It looks so good that I wish I'd taken the time to try it out earlier so that I could have used it in my current work project.

    In conversation Thursday, 11-Jul-2019 10:02:38 EDT from toot.cafe permalink Repeated by codesections
  4. codesections (codesections@fosstodon.org)'s status on Thursday, 11-Jul-2019 09:07:17 EDT codesections codesections
    • Gina

    @Gina

    > is there really such a thing as ethical IT? What do you guys think?

    Maybe this is the response you'd expect from someone on #FOSStodon, but *of course* there's such a thing as ethical IT.

    For example: curl. It was built as an entirely libre project, simply because that's "the right thing to do".

    curl has been installed well over 6 *billion* times. Imagine how much worse off we'd all be if each of those projects had had to build their own/pay/do without.

    https://stackoverflow.com/questions/55884514/what-is-the-incentive-for-curl-to-release-the-library-for-free

    In conversation Thursday, 11-Jul-2019 09:07:17 EDT from fosstodon.org permalink

    Attachments

    1. What is the incentive for curl to release the library for free?
      from Stack Overflow
      I recently started using libCurl for my VC++ project. I've been wondering: what is the incentive for the curl creators to release the entire library for free? Is it purely to help their fellow
  5. codesections (codesections@fosstodon.org)'s status on Thursday, 11-Jul-2019 07:08:33 EDT codesections codesections
    • Kev Quirk
    • Sajesh Cherian

    @thumb @kev

    Also instances.social for me.

    In conversation Thursday, 11-Jul-2019 07:08:33 EDT from fosstodon.org permalink
  6. codesections (codesections@fosstodon.org)'s status on Thursday, 11-Jul-2019 07:05:24 EDT codesections codesections
    • Rain 🚱
    • André E. Veltstra

    @aeveltstra @grainloom

    > [my #rust program] built fast until I added… dependencies. Now, every time I build my app for release, rust has to build diesel and dotenv as well, even though nothing changed to those.

    Well, it doesn't *literally* start from scratch—if you run `cargo clean` before `cargo build --release`, it would be even slower.

    But, for release builds, you *want* to rebuild dependencies because available optimizations may have changed based on your code

    In conversation Thursday, 11-Jul-2019 07:05:24 EDT from fosstodon.org permalink
  7. Rain 🚱 (grainloom@cybre.space)'s status on Wednesday, 10-Jul-2019 21:25:01 EDT Rain 🚱 Rain 🚱

    using a (kind of) source based distribution (eg. Guix or 9front) really makes you appreciate simple software and fast compilers

    did you know that chromium takes frickin forever to build? i just gave up because i ain't got no patience for that.

    right now i'm waiting for Krita to build but that too is taking its sweet time.... but at least I like Krita

    In conversation Wednesday, 10-Jul-2019 21:25:01 EDT from cybre.space permalink Repeated by codesections
  8. codesections (codesections@fosstodon.org)'s status on Thursday, 11-Jul-2019 06:34:29 EDT codesections codesections
    • rob :fedora: :gnu:

    @feynman

    > Is there a mastodon integration like if I want to show my account on a web page or a specific hash tag?

    You can embed a particular toot (it's one of the options you get when clicking the three dots under a toot)

    Embedding your whole account/all the toots for a tag would be a bit more complicated, and I don't know of any out of the box integrations.

    I wrote something to embed the #fosstodon local timeline on https://hub.fosstodon.org and that was fairly easy

    In conversation Thursday, 11-Jul-2019 06:34:29 EDT from fosstodon.org permalink
  9. codesections (codesections@fosstodon.org)'s status on Thursday, 11-Jul-2019 06:14:42 EDT codesections codesections
    in reply to
    • Danct12

    @danct12

    welcome to #fosstodon! I hope you like it here as much as the rest of us do

    In conversation Thursday, 11-Jul-2019 06:14:42 EDT from fosstodon.org permalink
  10. Phil (pcrock@fosstodon.org)'s status on Thursday, 11-Jul-2019 05:55:14 EDT Phil Phil

    I filled out a survey today that had a "comments" field, which was restricted to 50 characters. So I wrote:

    "50 char restriction makes useful comments impossib"

    In conversation Thursday, 11-Jul-2019 05:55:14 EDT from fosstodon.org permalink Repeated by codesections
  11. codesections (codesections@fosstodon.org)'s status on Thursday, 11-Jul-2019 06:11:44 EDT codesections codesections
    • Sergey Bugaev
    • kungtotte
    • musicmatze

    @kungtotte @musicmatze @bugaevc

    Also, the main reason #rust has slower compile times is that we send a *ton* of code to LLVM (largely, though not entirely, due to monomorphisization).

    Most of the compile time actually comes at the LLVM stage, which is *after* we've performed all our safety checks

    In conversation Thursday, 11-Jul-2019 06:11:44 EDT from fosstodon.org permalink
  12. codesections (codesections@fosstodon.org)'s status on Thursday, 11-Jul-2019 05:59:37 EDT codesections codesections
    • Sergey Bugaev
    • kungtotte
    • musicmatze

    @kungtotte @musicmatze @bugaevc

    > but [ #golang compiles quickly] only because golang is a simple language without safety guarantees

    Not really. Go compiles fas because it was built to, from the ground up. Fixing slow build times on massive programs was one (probably *the*) major reasons Google even built Go.

    > the #rust compiler does a _lot_ more work during compilation!

    Meh. `cargo check` is fast—that extra work isn't what slows us down.

    In conversation Thursday, 11-Jul-2019 05:59:37 EDT from fosstodon.org permalink
  13. ataraxia937 :fedora: (ataraxia937@fosstodon.org)'s status on Wednesday, 10-Jul-2019 21:53:41 EDT ataraxia937 :fedora: ataraxia937 :fedora:

    I think I consider the various non-predictable post sorting algorithms on commercial social networks a form of gaslighting. Did you see this content before or not? Are you actually caught up, or is something you wanted to see consistently being sorted too low to reach? Is everybody ignoring some topic you find interesting, or are you just not seeing it?

    In conversation Wednesday, 10-Jul-2019 21:53:41 EDT from fosstodon.org permalink Repeated by codesections
  14. codesections (codesections@fosstodon.org)'s status on Wednesday, 10-Jul-2019 23:52:55 EDT codesections codesections
    • gaurdianaq

    @gaurdianaq

    Welcome back and congrats!

    In conversation Wednesday, 10-Jul-2019 23:52:55 EDT from fosstodon.org permalink
  15. trash wife 🗑✨ :verified: (fructosedealer@radical.town)'s status on Tuesday, 09-Jul-2019 03:29:11 EDT trash wife 🗑✨ :verified: trash wife 🗑✨ :verified:

    the great thing about UDP jokes is that idgaf if you get them

    In conversation Tuesday, 09-Jul-2019 03:29:11 EDT from radical.town permalink Repeated by codesections
  16. Naughtylus :archlinux: :gnome: (naughtylus@fosstodon.org)'s status on Wednesday, 10-Jul-2019 19:17:03 EDT Naughtylus :archlinux: :gnome: Naughtylus :archlinux: :gnome:

    Talk functional to me

    In conversation Wednesday, 10-Jul-2019 19:17:03 EDT from fosstodon.org permalink Repeated by codesections
  17. codesections (codesections@fosstodon.org)'s status on Wednesday, 10-Jul-2019 18:22:28 EDT codesections codesections
    • JordiGH

    @JordiGH

    > I really just want to know if I should use glass bottles or shoes to hammer nails. I have my reasons.

    You know, I'd actually mis-remembered that post. I thought he said "answer the question about glass bottles or shoes, *then* (if you want) tell them that there might be better options. But that wasn't thrust of the post at all.

    Oops, sorry about that!

    (Maybe that was in the comments? I'm too lazy to check right now)

    In conversation Wednesday, 10-Jul-2019 18:22:28 EDT from fosstodon.org permalink
  18. Nolan (nolan@toot.cafe)'s status on Wednesday, 10-Jul-2019 16:25:25 EDT Nolan Nolan

    Relevant: analysis of top ten Chrome extensions and their impact on page performance. Grammarly adds 100ms on average to First Input Delay. https://github.com/treosh/exthouse/blob/master/README.md#analysis-of-top-10-extensions-from-chrome-web-store

    In conversation Wednesday, 10-Jul-2019 16:25:25 EDT from toot.cafe permalink Repeated by codesections

    Attachments

    1. treosh/exthouse
      from GitHub
      Analyze the impact of a browser extension on web performance. - treosh/exthouse
  19. codesections (codesections@fosstodon.org)'s status on Wednesday, 10-Jul-2019 17:49:19 EDT codesections codesections
    • JordiGH

    @JordiGH

    > If I'm asking a stupid-looking question, please don't look for a question you'd rather be answering instead.

    I know, right!

    One of my favorite bloggers (himself a programmer) puts it this way:

    > If someone asks a, "How do I X?" forum question and you answer, "Why would you want to X?" then YOU SHOULD NOT BE ANSWERING FORUM QUESTIONS.

    https://www.shamusyoung.com/twentysidedtale/?p=21365

    In conversation Wednesday, 10-Jul-2019 17:49:19 EDT from fosstodon.org permalink
  20. codesections (codesections@fosstodon.org)'s status on Wednesday, 10-Jul-2019 17:44:18 EDT codesections codesections
    • Jens ♥

    @ohyran 🦓

    In conversation Wednesday, 10-Jul-2019 17:44:18 EDT from fosstodon.org permalink
  • After
  • Before
  • Help
  • About
  • FAQ
  • TOS
  • Privacy
  • Source
  • Version
  • Contact

Jonkman Microblog is a social network, courtesy of SOBAC Microcomputer Services. It runs on GNU social, version 1.2.0-beta5, available under the GNU Affero General Public License.

Creative Commons Attribution 3.0 All Jonkman Microblog content and data are available under the Creative Commons Attribution 3.0 license.

Switch to desktop site layout.