Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

Notices by ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social), page 12

  1. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Wednesday, 07-Nov-2018 05:43:52 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account

    *wakes up with dry eye again*
    *gets out of bed*
    *makes breakfast*
    *cat caught in keyboard cable again*
    *tries to remove him*
    *gets two deep claw marks in hand*
    *keyboard slides into breakfast*
    *swears a lot*
    *can't open pack of bandages*
    *swears some more*
    *goes to supermarket*
    *buys too much candy*
    *goes back*
    *dry eye gets worse*
    *cat wants attention again*

    Fuck this.

    *goes back to bed*

    In conversation Wednesday, 07-Nov-2018 05:43:52 EST from octodon.social permalink
  2. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Wednesday, 07-Nov-2018 05:42:44 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account

    *wakes up dry eye*
    *gets out of bed*
    *makes breakfast*
    *cat caught in keyboard cable again*
    *tries to remove him*
    *gets two deep claw marks in hand*
    *keyboard slides into breakfast*
    *swears a lot*
    *can't open pack of bandages*
    *swears some more*
    *goes to supermarket*
    *buys too much candy*
    *goes back*
    *cat wants attention again*
    Fuck this.
    *goes back to bed*

    In conversation Wednesday, 07-Nov-2018 05:42:44 EST from octodon.social permalink
  3. Elly, nasty enby :heart_pan: (elizafox@mst3k.interlinked.me)'s status on Wednesday, 07-Nov-2018 03:35:47 EST Elly, nasty enby :heart_pan: Elly, nasty enby :heart_pan:

    I mean on the one hand you can theoretically do whatever you want

    On the other hand, the need to eat and have a roof over your head takes away most of your freedom

    In conversation Wednesday, 07-Nov-2018 03:35:47 EST from mst3k.interlinked.me permalink Repeated by thorthenorseman
  4. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Wednesday, 07-Nov-2018 00:14:48 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account

    *meowing intensifies* https://octodon.social/media/Km3YHiLZBX5VtTOxFO0

    In conversation Wednesday, 07-Nov-2018 00:14:48 EST from octodon.social permalink
  5. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Tuesday, 06-Nov-2018 23:58:56 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account

    Idea for FLOSS project: Multi-key / bidirectional map implemented as a list of objects with searchable indexes and insert/delete events, with implementations for the most common languages. This type of data structure is one I've needed more times than I can count.

    It's less straight forward when storing non-primitive datatypes or references to external objects, but not impossible. You'd just have to make sure that the most basic usage scenario stays easy to configure.

    In conversation Tuesday, 06-Nov-2018 23:58:56 EST from octodon.social permalink
  6. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Tuesday, 06-Nov-2018 23:20:14 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account
    in reply to

    But here we reach another annoyance I've faced in pretty much every language I've used so far: There is never a multi-key map type or class in the standard library. In relational databases, you can add an index to any column you wish to search. In your average OOP language, you can only index one key... and you can't simultaneously treat that key as a value. A sort of in-memory database table is such a universally useful construct that it should really exist in every language.

    In conversation Tuesday, 06-Nov-2018 23:20:14 EST from octodon.social permalink
  7. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Tuesday, 06-Nov-2018 23:17:18 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account
    in reply to

    If you could somehow tell JavaScript that the inner array is sorted by the key you're searching for, and that you're going to be scanning most of the array for results, it could then compile that into a nested loop with two iterators, where the inner loop only performs a search if the elements don't line up.

    You could speed up such an algorithm by transforming your inner array into a hash map (associative array), of course...

    In conversation Tuesday, 06-Nov-2018 23:17:18 EST from octodon.social permalink
  8. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Tuesday, 06-Nov-2018 23:11:27 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account
    in reply to

    You'll often have a situation where what you're doing is essentially performing a JOIN on two arrays, and it runs slow as balls, because you're running a find() on one array inside of a map() on the other, and it's performing a linear search on the inner array for every entry in the outer array, and that's not necessary.

    In conversation Tuesday, 06-Nov-2018 23:11:27 EST from octodon.social permalink
  9. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Tuesday, 06-Nov-2018 23:07:36 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account

    One problem I've noticed with JavaScript functional style is that the most elegant construct doesn't offer the best performance. You'd think that, especially for synchronous stateless arrow functions with single-statement bodies nested within array methods like map, reduce or filter, some kind of analysis similar to that done by RDBMSes on SQL queries could be performed in order to produce the same result faster.

    In conversation Tuesday, 06-Nov-2018 23:07:36 EST from octodon.social permalink
  10. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Tuesday, 06-Nov-2018 22:59:03 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account

    object-oriented programming is where you forget your objective and lose your orientation.

    In conversation Tuesday, 06-Nov-2018 22:59:03 EST from octodon.social permalink
  11. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Tuesday, 06-Nov-2018 22:58:52 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account

    object-oriented programming is where you forget your objective and lose you orientation.

    In conversation Tuesday, 06-Nov-2018 22:58:52 EST from octodon.social permalink
  12. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Tuesday, 06-Nov-2018 22:56:07 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account

    basic programming: to develop basic things like Facebook or Candy Crush

    In conversation Tuesday, 06-Nov-2018 22:56:07 EST from octodon.social permalink
  13. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Tuesday, 06-Nov-2018 22:53:06 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account

    basic income: money you make on basic jobs like being a shop clerk or a taxi driver

    #misleadingdefinitions

    In conversation Tuesday, 06-Nov-2018 22:53:06 EST from octodon.social permalink
  14. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Tuesday, 06-Nov-2018 22:49:52 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account
    • :blobderpy:

    @seagazelle No need to concern yourself with blasphemers. Rest assured, the Messiah hasn't arrived yet. ๐Ÿ˜†

    Not that me, the non-believer, would know what the hell I'm talking about...

    In conversation Tuesday, 06-Nov-2018 22:49:52 EST from octodon.social permalink
  15. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Tuesday, 06-Nov-2018 22:45:19 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account

    One beautiful day, FLOSS apps aimed at consumers might actually get innovative instead of cloning proprietary apps...

    ...not likely, though.

    In conversation Tuesday, 06-Nov-2018 22:45:19 EST from octodon.social permalink
  16. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Tuesday, 06-Nov-2018 22:43:00 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account
    • nik

    @crushv XD

    In conversation Tuesday, 06-Nov-2018 22:43:00 EST from octodon.social permalink
  17. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Tuesday, 06-Nov-2018 22:38:30 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account
    • nik

    @crushv But you know who owns Instagram...

    In conversation Tuesday, 06-Nov-2018 22:38:30 EST from octodon.social permalink
  18. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Tuesday, 06-Nov-2018 22:37:50 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account
    • nik

    @crushv Why are you browsing Facebook? ๐Ÿคจ

    In conversation Tuesday, 06-Nov-2018 22:37:50 EST from octodon.social permalink
  19. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Tuesday, 06-Nov-2018 22:35:49 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account

    Not sure what opinion to form about laptops with many stickers on them...

    In conversation Tuesday, 06-Nov-2018 22:35:49 EST from octodon.social permalink
  20. ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account (thorthenorseman@octodon.social)'s status on Tuesday, 06-Nov-2018 21:40:58 EST 🇳🇴 Thor — backup account ๐Ÿ‡ณ๐Ÿ‡ด Thor โ€” backup account

    Ugh, I fell asleep around 8 o'clock this evening and woke up around midnight. It's 3 o'clock now and it feels like I have a mild hangover.

    In conversation Tuesday, 06-Nov-2018 21:40:58 EST from octodon.social 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.