Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

Notices by bitey cat bite bite bite bite (cybermeow@cybre.space), page 39

  1. yatmark (yatmark@friends.nico)'s status on Friday, 01-Dec-2017 21:22:22 EST yatmark yatmark

    ふにぃ、

    In conversation Friday, 01-Dec-2017 21:22:22 EST from friends.nico permalink Repeated by cybermeow
  2. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Friday, 01-Dec-2017 22:09:25 EST bitey cat bite bite bite bite bitey cat bite bite bite bite
    • ♡ rye ♡

    @rye if I share a picture of the wings I am ordering will it make you feel included

    In conversation Friday, 01-Dec-2017 22:09:25 EST from cybre.space permalink
  3. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Friday, 01-Dec-2017 22:07:31 EST bitey cat bite bite bite bite bitey cat bite bite bite bite
    • ♡ rye ♡

    @rye IM TELLING

    In conversation Friday, 01-Dec-2017 22:07:31 EST from cybre.space permalink
  4. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Friday, 01-Dec-2017 22:06:59 EST bitey cat bite bite bite bite bitey cat bite bite bite bite
    • uranther

    @uranther

    Pros:
    Federate with ALL THE SERVERS
    Make a thing for your friends
    Have a silly domain
    Have a serious domain
    You control the theme and moderation
    Probly more I dunno

    Cons:
    Docker
    You control the moderation (or maybe not if you wanna delegate)
    Hosting or securing your home internet

    In conversation Friday, 01-Dec-2017 22:06:59 EST from cybre.space permalink
  5. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Friday, 01-Dec-2017 22:01:41 EST bitey cat bite bite bite bite bitey cat bite bite bite bite

    Time for some GOSH DARN HAWT WINGS

    In conversation Friday, 01-Dec-2017 22:01:41 EST from cybre.space permalink
  6. Snake Girl Ellie (noelle@elekk.xyz)'s status on Friday, 01-Dec-2017 16:16:28 EST Snake Girl Ellie Snake Girl Ellie

    Two children have just completed a task. Both are praised for completing it.

    Child 1 hears: "You're so smart, good job!"

    Child 2 hears: "You did such good work, good job!"

    They feel roughly the same, but there's a substantial difference. Consider the implications:

    Child 1 hears: "You have an innate ability that allowed you to complete this task."

    Child 2 hears: "You did a lot of work that allowed you to complete this task."

    Now do you see the difference?

    In conversation Friday, 01-Dec-2017 16:16:28 EST from elekk.xyz permalink Repeated by cybermeow
  7. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Friday, 01-Dec-2017 18:30:37 EST bitey cat bite bite bite bite bitey cat bite bite bite bite
    • Haelwenn /ɛlwən/ 🖳

    @lanodan_tmp you could make a vm or try to run it in chroot

    In conversation Friday, 01-Dec-2017 18:30:37 EST from cybre.space permalink
  8. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Friday, 01-Dec-2017 18:04:29 EST bitey cat bite bite bite bite bitey cat bite bite bite bite
    • クルド語の学生

    @Concerned_Catgirl "anarchists need to know their place, good anarchists work to prune the system of in needed parts and then recreate it"

    --actual trot

    In conversation Friday, 01-Dec-2017 18:04:29 EST from cybre.space permalink
  9. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Friday, 01-Dec-2017 17:55:58 EST bitey cat bite bite bite bite bitey cat bite bite bite bite
    • クルド語の学生

    @Concerned_Catgirl trots are worse then the average tankie

    In conversation Friday, 01-Dec-2017 17:55:58 EST from cybre.space permalink
  10. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Friday, 01-Dec-2017 16:16:53 EST bitey cat bite bite bite bite bitey cat bite bite bite bite

    Apperantly japan isn't too queer friendly, oh well , theres always germany

    In conversation Friday, 01-Dec-2017 16:16:53 EST from cybre.space permalink
  11. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Friday, 01-Dec-2017 01:26:52 EST bitey cat bite bite bite bite bitey cat bite bite bite bite
    in reply to
    • rad

    @radtabby would it help if I sent you a working implementation?

    In conversation Friday, 01-Dec-2017 01:26:52 EST from cybre.space permalink
  12. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Friday, 01-Dec-2017 01:25:22 EST bitey cat bite bite bite bite bitey cat bite bite bite bite
    in reply to
    • rad

    @radtabby its like a search except instead of returning a value it instead instantiates a value.

    In conversation Friday, 01-Dec-2017 01:25:22 EST from cybre.space permalink
  13. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Friday, 01-Dec-2017 01:24:11 EST bitey cat bite bite bite bite bitey cat bite bite bite bite
    • rad

    @radtabby

    void insert(int i, Tree h){
    if(h->data > i ){
    //either call this function on the left tree ormake a new tree there if its null
    }

    //handle duplicate data here

    if(h->data < i){
    //either call this function on the right tree or make a new tree there if its null.
    }

    }

    In conversation Friday, 01-Dec-2017 01:24:11 EST from cybre.space permalink
  14. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Friday, 01-Dec-2017 01:22:07 EST bitey cat bite bite bite bite bitey cat bite bite bite bite
    in reply to
    • kɜ:ʳ :dragnmlem:
    • rad

    @chr @radtabby this is called an in order traversal

    In conversation Friday, 01-Dec-2017 01:22:07 EST from cybre.space permalink
  15. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Friday, 01-Dec-2017 01:20:33 EST bitey cat bite bite bite bite bitey cat bite bite bite bite
    • kɜ:ʳ :dragnmlem:
    • rad

    @radtabby @chr the idea is that because the left node is smaller and the right node is larger, if you go through the tree with a function that looks at the left nod efirst, then the current node, then the right node, it will visit all nodes in order of smallest value to larger value no matter the depth of the tree.

    In conversation Friday, 01-Dec-2017 01:20:33 EST from cybre.space permalink
  16. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Friday, 01-Dec-2017 01:18:05 EST bitey cat bite bite bite bite bitey cat bite bite bite bite
    • kɜ:ʳ :dragnmlem:

    @chr (another quick side note, you should use c++ and classes, because they are garbage collected automatically as the stack unwinds.) (look up reference types vs value types)

    In conversation Friday, 01-Dec-2017 01:18:05 EST from cybre.space permalink
  17. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Friday, 01-Dec-2017 01:16:58 EST bitey cat bite bite bite bite bitey cat bite bite bite bite
    in reply to
    • rad

    @radtabby http://www.zentut.com/c-tutorial/c-binary-search-tree/

    In conversation Friday, 01-Dec-2017 01:16:58 EST from cybre.space permalink

    Attachments

    1. Invalid filename.
      C Binary Search Tree
      from ZenTut
      This tutorial introduces you to binary search tree data structure and how to implement it in C
  18. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Friday, 01-Dec-2017 01:16:10 EST bitey cat bite bite bite bite bitey cat bite bite bite bite
    • rad

    @radtabby you want to BST in C?

    make a struct. in the struct are two pointers to instances of the same struct.

    The idea is that one pointer is left and the other one is right. the left pointer holds smaller values and the right pointer holds larger values.

    In conversation Friday, 01-Dec-2017 01:16:10 EST from cybre.space permalink
  19. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Thursday, 30-Nov-2017 15:07:19 EST bitey cat bite bite bite bite bitey cat bite bite bite bite
    • David DiPaola
    • liffy 💜

    @lifning @dvddpl it depends, has stdlib caused a segfualt yet?

    In conversation Thursday, 30-Nov-2017 15:07:19 EST from cybre.space permalink
  20. bitey cat bite bite bite bite (cybermeow@cybre.space)'s status on Wednesday, 29-Nov-2017 22:49:39 EST bitey cat bite bite bite bite bitey cat bite bite bite bite
    • have a holly jolly venko

    @venko inspited: multitrack dfiting while your copilot is multiwindow editing.

    In conversation Wednesday, 29-Nov-2017 22:49:39 EST from cybre.space 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.