Danbooru
Login Posts Comments Notes Artists Tags Pools Wiki Forum More » Listing Upload Hot Changes Help

Search

Blacklisted (help)

  • guro
  • scat
  • furry -rating:g
Disable all Re-enable all

Artist

  • ? kuroba rapid 321

Copyright

  • ? touhou 938k

Character

  • ? hecatia lapislazuli 5.1k

General

  • ? 1girl 6.6M
  • ? bare shoulders 1.1M
  • ? black hat 151k
  • ? black shirt 253k
  • ? clothes writing 47k
  • ? collar 212k
  • ? crop top 219k
  • ? cropped shirt 26k
  • ? english text 280k
  • ? hat 1.3M
  • ? long hair 4.8M
  • ? looking at viewer 3.7M
  • ? midriff 326k
  • ? multicolored skirt 6.3k
  • ? navel 1.3M
  • ? off-shoulder shirt 26k
  • ? off shoulder 266k
  • ? red eyes 1.4M
  • ? red hair 582k
  • ? shirt 2.1M
  • ? simple background 2.1M
  • ? skirt 1.7M
  • ? smile 3.2M
  • ? solo 5.5M
  • ? t-shirt 75k
  • ? upper body 878k
  • ? white background 1.7M

Meta

  • ? commentary 1.6M
  • ? reverse translation 623

Information

  • ID: 2283661
  • Uploader: rollingdice »
  • Date: over 9 years ago
  • Approver: MagicalAsparagus »
  • Size: 271 KB .png (600x800) »
  • Source: pixiv.net/artworks/55288817 »
  • Rating: Sensitive
  • Score: 22
  • Favorites: 38
  • Status: Active

Options

  • Resize to window
  • Find similar
  • Download

History

  • Tags
  • Pools
  • Notes
  • Moderation
  • Commentary
hecatia lapislazuli (touhou) drawn by kuroba_rapid

Artist's commentary

  • Original
  • |
  • Translated
  • プログラミングの女神

    Goddess of Programming

    From the artist's tweet.

    • ‹ prev Search: user:rollingdice next ›
  • Comments
  • Recommended
  • Loading...

    shujito
    over 9 years ago
    [hidden]

    Learning Programming with Hecatia?

  • 0
  • Reply
    • Copy ID
    • Copy Link
    rollingdice
    over 9 years ago
    [hidden]

    Don't. You'll get C at the end of semester.
    (Or C++ if you're lucky.)

  • 0
  • Reply
    • Copy ID
    • Copy Link
    shujito
    over 9 years ago
    [hidden]

    I never learned C++ at school, that makes me feel sad...

  • 0
  • Reply
    • Copy ID
    • Copy Link
    keonas
    over 9 years ago
    [hidden]

    At least this part ain't hard:

    #include <iostream.h>

    int main()
    {
    cout<<"Hello World!";
    }

  • 1
  • Reply
    • Copy ID
    • Copy Link
    wahahahaha
    over 9 years ago
    [hidden]

    keonas said:

    At least this part ain't hard:

    #include <iostream.h>

    int main()
    {
    cout<<"Hello World!";
    }

    I'm still learning C++ but this has one too many errors that I have to correct this.

    #include <iostream> //<iostream.h> is non-standard and is no longer supported on all platforms
    //using std::cout; if you want to use "cout" instead of std::cout

    int main()
    {
    std::cout << "Hello World!\n"; //spacing and \n just to make it beautiful to see
    return 0; //you need to return 0 for int main function
    }

    Updated by wahahahaha over 9 years ago

  • 0
  • Reply
    • Copy ID
    • Copy Link
    ddd666
    over 9 years ago
    [hidden]

    wahahahaha said:
    std::cout << "Hello World!\n"; //spacing and \n just to make it beautiful to see

    using endl would be better.

    int main()
    {
        std::cout << "Hello World!" << std::endl;
        return 0;
    }
  • 0
  • Reply
    • Copy ID
    • Copy Link
    Gollgagh
    over 9 years ago
    [hidden]

    ddd666 said:

    using endl would be better.

    Why would a flush would be useful in this case? You're not trying to synchronise anything.

  • 0
  • Reply
    • Copy ID
    • Copy Link
    keonas
    over 9 years ago
    [hidden]

    wahahahaha said:

    I'm still learning C++ but this has one too many errors that I have to correct this.

    #include <iostream> //<iostream.h> is non-standard and is no longer supported on all platforms
    //using std::cout; if you want to use "cout" instead of std::cout

    int main()
    {
    std::cout << "Hello World!\n"; //spacing and \n just to make it beautiful to see
    return 0; //you need to return 0 for int main function
    }

    Weird, guess I'm behind on C++ standards. I've never used :: in a program.
    This was perfectly fine back in middle school.

  • 0
  • Reply
    • Copy ID
    • Copy Link
    Gollgagh
    over 9 years ago
    [hidden]

    keonas said:

    Weird, guess I'm behind on C++ standards. I've never used :: in a program.
    This was perfectly fine back in middle school.

    It's because you didn't use a namespace in your snippet (i.e. using namespace std;). When you don't do that, you have to explicitly tell the compiler where something comes from; "std::" tells the compiler that the following identifier comes from the std namespace. You can also have to do this when there are conflicting identifiers coming from different namespaces.

  • 0
  • Reply
    • Copy ID
    • Copy Link
    ThunderBird
    over 9 years ago
    [hidden]

    I'm sure everyone knows the joke about C and the sexually transmitted diseases, so I'll aim for the one about the eyes.

    Q: Why do Java developers often wear glasses?
    A: Because they can't C#!

    Anyway, how many languages can we do a hello world! in? Personally, I count for three: Java, PHP, JS (both into DOM and console), discounting things like Bash and HTML. My C is very rusty and low-grade, though, even the namespacing was news for me.

  • 0
  • Reply
    • Copy ID
    • Copy Link
    rollingdice
    over 9 years ago
    [hidden]

    Gollgagh said:

    Why would a flush would be useful in this case? You're not trying to synchronise anything.

    Maybe not in a normal OS, but could be useful if you're progamming on an embedded system. For example, making sure the serial buffer all transmitted before moving to the next instruction.

  • 0
  • Reply
    • Copy ID
    • Copy Link
    shujito
    over 9 years ago
    [hidden]

    ThunderBird said:

    Q: Why do Java developers often wear glasses?
    A: Because they can't C#!

    Funny, I used to C# when I was at school, had to become Java when I began developing for Android, and I don't even wear glasses!

    ThunderBird said:

    Anyway, how many languages can we do a hello world! in?

    See here. Not sure if it is complete, but it is worth a look (:

  • 0
  • Reply
    • Copy ID
    • Copy Link
    laisy
    over 9 years ago
    [hidden]

    Seeing all the codes on here freaks me out, even though I'm a computer science student.

  • 1
  • Reply
    • Copy ID
    • Copy Link
    rollingdice
    over 9 years ago
    [hidden]

    shujito said:

    See here. Not sure if it is complete, but it is worth a look (:

    Awesome! Starred that on Github.

  • 1
  • Reply
    • Copy ID
    • Copy Link
    ThunderBird
    over 9 years ago
    [hidden]

    shujito said:
    See here. Not sure if it is complete, but it is worth a look (:

    I meant "we" as the community here, but hell, that is cool. I'm going to read my way through it if I ever get the time. Thanks!

  • 1
  • Reply
    • Copy ID
    • Copy Link
    shujito
    over 9 years ago
    [hidden]

    ThunderBird said:

    I meant "we" as the community here, but hell, that is cool.

    Yeah I tought you meant that, but I wanted to take the opportunity to show you guys that github repo.

  • 0
  • Reply
    • Copy ID
    • Copy Link
    ThunderBird
    over 9 years ago
    [hidden]

    shujito said:

    Yeah I tought you meant that, but I wanted to take the opportunity to show you guys that github repo.

    You managed to stop productivity at my company for a good half-hour until the guys went through the more interesting ones.
    Like the time I linked "Best comments in code" from StackOverflow in the dev chat.

    Congrats :)

  • 2
  • Reply
    • Copy ID
    • Copy Link
    shujito
    over 9 years ago
    [hidden]

    ThunderBird said:

    You managed to stop productivity at my company for a good half-hour until the guys went through the more interesting ones.
    Like the time I linked "Best comments in code" from StackOverflow in the dev chat.

    Congrats :)

    Thanks, but dang, what are you doing browsing danbooru at work? Not that I worry or really care (well I sort of do), but that's weird; sorry if that sounds rude.

    Updated by shujito over 9 years ago

  • 0
  • Reply
    • Copy ID
    • Copy Link
    ThunderBird
    over 9 years ago
    [hidden]

    shujito said:

    Thanks, but dang, what are you doing browsing danbooru at work? Not that I worry or really care (well I sort of do), but that's weird; sorry if that sounds rude.

    We have a very relaxed work environment, and I generally arrive one-two hours before anyone else so that I have some free time to use in any way I want. Generally, it boils own to polishing a few features on some of our internal apps, running a deployment, maybe writing up test cases, but that day, I happened to check if my comments received responses, saw yours, and started browsing. Then, I linked it in the developers' chat, as a bit of curio, aaand ... yeah.

    Plus, my screens happen to be angled so that it's very difficult to see them unless you try. And everyone knows I'm into anime and Touhou - in fact, almost all of our developers have an appreciation for anime. Which itself is a weird coincidence.

  • 3
  • Reply
    • Copy ID
    • Copy Link
    aceofspudz
    over 9 years ago
    [hidden]

    ThunderBird said:

    I'm sure everyone knows the joke about C and the sexually transmitted diseases, so I'll aim for the one about the eyes.

    Q: Why do Java developers often wear glasses?
    A: Because they can't C#!

    Anyway, how many languages can we do a hello world! in?

    Java, C#, R! Wouldn't call myself a programmer, though--just enough to sand the edges off of some tasks.

  • 0
  • Reply
    • Copy ID
    • Copy Link
    shujito
    over 9 years ago
    [hidden]

    ThunderBird said:

    We have a very relaxed work environment, and I generally arrive one-two hours before anyone else so that I have some free time to use in any way I want. (...)

    Thats nice

  • 0
  • Reply
    • Copy ID
    • Copy Link
    DeadW4nderer
    about 9 years ago
    [hidden]

    ThunderBird said:

    Anyway, how many languages can we do a hello world! in?

    ++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.
  • 1
  • Reply
    • Copy ID
    • Copy Link
    shujito
    about 9 years ago
    [hidden]

    DeadW@nderer said:

    ++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.

    brainfuck!

  • 0
  • Reply
    • Copy ID
    • Copy Link
    ハローワールド
    Terms / Privacy / Upgrade / Contact /