Michael's home timeline

Notices

  1. !coderponies I started my computer math class today, yaaaaaaaaaaay.

    Tuesday, 02-Sep-14 21:05:56 UTC from web
  2. OK !coderponies - I believe I've made my feelings for Microsoft Excel well-known, but my employer has a raging hate-on for logical processes and quality software, and I want to know: is it possible to use Excel to make a web-accessible multi-user database? We're currently replicating work three, sometimes more times over because we won't move away from spreadsheets into databases. Like going to war with Nerf and Super-Soakers; good for their intended purposes, similar to the real deal, and completely godforsakenly inadequate to the task at hand. -_- tl:dr FML.

    Tuesday, 19-Aug-14 19:25:56 UTC from MuSTArDroid
    • RDN's Lucifer likes this.
    • @scribus The only thing I can do is to express my deepest and most sincere condolences over your work. Using spreadsheets as a form of database is a crime against humanity and the current state of technology.

      Tuesday, 19-Aug-14 19:33:23 UTC in context
    • @broniebrown I've told them repeatedly. I've even outlined the wonderful system that would automate hundreds of work-hours a week by making what someone else is already doing count towards the result they want. The only thing keeping me from going ahead and cussing doing it is that I know it would be a waste of time & I'm not getting paid for it anyway.

      Tuesday, 19-Aug-14 19:36:29 UTC in context
  3. "Got something to say? Need to say it? Unfulfilled?"

    Sunday, 10-Aug-14 22:33:50 UTC from web
  4. !coderponies Niklaus Wirth, creator of the Pascal, Modula, and Oberon programming languages, has a book on writing compilers that is available for free online. It is 'Compiler Construction', and it is linked on his Wikipedia page.

    Thursday, 31-Jul-14 17:56:12 UTC from bti
  5. convert - -depth 8 rgba:- > rawrgba.bin

    Wednesday, 30-Jul-14 22:27:40 UTC from web
  6. !coderponies The newest versions of GCC have Go and C11 support. C11 is the newest version of C, which I have heard includes a standard non-pthread threading interface and anonymous structs and unions.

    Tuesday, 29-Jul-14 18:59:01 UTC from web
  7. Some of you guys might be interested in a video I just recorded of a game I was working on at one point. I oughta work on it more some time. https://www.youtube.com/watch?v=0xuQANzQgfc

    Tuesday, 29-Jul-14 01:40:30 UTC from web
  8. !coderponies Does anypony know how to permanently let Python know about modules installed in odd directories, like /usr/local? Do I just set PYTHONPATH?

    Sunday, 27-Jul-14 21:13:32 UTC from bti
    • !coderponies GNU Stow has proved to be an amazing program! I have installed several packages from source now, and they can all be easily uninstalled with a single command.

      Sunday, 27-Jul-14 06:14:58 UTC from bti
    • Hello, is this an anime channel?

      How do I patch KDE2 under FreeBSD?

      Friday, 25-Jul-14 20:12:01 UTC from web
    • !coderponies # UNIX tip: To search man pages by name and description, use "man -k keyword" or "apropos keyword", which function exactly the same. To see all of the man pages in a certain man section, try "man -s sectionname -k '.*'" . This works because man -k and apropos take a regular expression as the keyword, and .* makes it match everything.

      Thursday, 24-Jul-14 22:13:27 UTC from web
    • !coderponies # To generate JPEGs of the pages in a PDF, so that you can view them with a framebuffer image viewer or other non-PDF-compatible viewer, you can use this command: gs -dBATCH -dNOPAUSE -sDEVICE=jpeg -sOutputFile=%d.jpg filename.pdf

      Wednesday, 23-Jul-14 03:08:42 UTC from bti
    • !coderponies GNU Stow 2.1.3 released. I haven't used this project yet, but it seems like it would solve a lot of problems with installing packages from source in UNIX-like systems. It manages symlinks in a common directory which point to files from packages that are really separately installed: https://lists.gnu.org/archive/html/info-stow/2012-01/msg00000.html

      Sunday, 20-Jul-14 09:08:15 UTC from web
      • !coderponies This CC-licensed tileset might interest you game-programming horses: http://opengameart.org/content/simple-nes-like-platformer-tiles

        Thursday, 17-Jul-14 19:40:59 UTC from web
        • http://imgs.xkcd.com/comics/academia_vs_business.png !coderponies

          Thursday, 17-Jul-14 03:16:01 UTC from web
          • [15:49:25] <@furyhunter> we live in a very strange world
            [15:49:39] <@furyhunter> a python interpreter written in python runs the same python code faster than a python interpreter
            [15:50:41] <@furyhunter> in fact
            [15:51:05] <@furyhunter> a python interpreter written in python runs some example tests written in python faster than native C programs compiled with gcc -O3

            Wednesday, 16-Jul-14 21:28:53 UTC from web
            • # RDN "butts"

              Wednesday, 16-Jul-14 21:01:07 UTC from web
            • Writing a Scheme script to split a file of ABC-notation music into separate lilypond files with abc2ly, then render them with lilypond itself. Then I'll have some jigs to play: http://abc.sourceforge.net/NMD/

              Monday, 14-Jul-14 21:37:35 UTC from web
              • CC-licensed, venerable MIT textbook for programming in Scheme. It is an excellent introduction for beginners. As one who hasn't had formal programming education, this also opened my eyes to the benefits of recursion and variable mutation in functional languages. http://mitpress.mit.edu/sicp/

                Monday, 14-Jul-14 08:03:12 UTC from web
              • Anyone used the programming language Go? http://golang.org/

                Monday, 14-Jul-14 06:43:12 UTC from web
              • Do robots even have genders?

                Tuesday, 24-Jun-14 12:11:33 UTC from web
              • @admin ahaha.

                Tuesday, 24-Jun-14 12:07:15 UTC from web
                • !coderponies

                  analogmove = (!netgame
                  && ((player == &players[consoleplayer] && cv_analog.value)
                  || (player == &players[secondarydisplayplayer] && cv_analog2.value))
                  && thiscam->chase);

                  cmd = &player->cmd;
                  if ((twodlevel || (actor->target->flags2 & MF2_TWOD)))
                  movepushangle = ANGLE_90;
                  else if (analogmove)
                  movepushangle = thiscam->angle;
                  else
                  movepushangle = actor->angle;

                  # GLIDEMOVEFACTOR 600
                  P_Thrust(actor, movepushangle, cmd->forwardmove*GLIDEMOVEFACTOR);
                  P_Thrust(actor, movepushangle-ANGLE_90, cmd->sidemove*GLIDEMOVEFACTOR);

                  Sunday, 22-Jun-14 05:59:14 UTC from web
                • Hell, I can write a program to convince someone it's a 13 year old boy. 10 PRINT "boobs pls" 20 GOTO 10. Take THAT, Turing's ghost! !coderponies

                  Wednesday, 11-Jun-14 16:41:48 UTC from MuSTArDroid
                • Anybody here know snakes from kiwis about 6502 assembly language? !vgp !coderponies

                  Monday, 09-Jun-14 21:47:25 UTC from MuSTArDroid
                • UPDATE Essay
                  SET [Due Date] = ‘4/10/14’
                  WHERE [Due Date] = ‘4/8/14’;
                  !nolife

                  Tuesday, 08-Apr-14 02:10:21 UTC from web
                  • Presenting the newest game from Jalapeño Billy Productions... Diamond Quest!

                    Play as Diamond, in his quest to reach the right side of each screen! Experience intense action in three screens of monotonous, unfair platforming! Experience unending joy at the MIDIs ripped straight from vgmusic.com's Banjo-Kazooie: Grunty's Revenge section! Feel the emotion as you vow to hunt me down and kill me!

                    Unfortunately, due to the risk of a C&D from Habsro, we cannot include any actual ponies in this game. However, since diamonds are Rarity's cutie mark, it's still technically pony-related, so expect a post about it on EqG in the morning!

                    This is what I did instead of an actual humorous AFD joke this year. Sorry guys.

                    Tuesday, 01-Apr-14 04:39:35 UTC from web
                  • !Coderponies A programmer is going out for a stroll one evening. His wife asks him to swing by the store and pick up a gallon of milk, and if they had eggs, to get a dozen. He returned with twelve gallons of milk and said “They had eggs.”

                    Friday, 28-Mar-14 05:36:37 UTC from web
                  • !steam http://outsetinitiative.deviantart.com/art/Air-A-Skin-for-Steam-410288247 What a beautiful skin

                    Monday, 17-Mar-14 07:22:36 UTC from web
                    • http://pastebin.com/XyU1z1Bf !coderpony WIP. Managed to kludge together a basic lookalike theme for the RDN blog. It looks terrible.

                      Monday, 03-Mar-14 01:09:27 UTC from web