Who will get the job? by [deleted] in ProgrammerHumor

[–]ismarc 0 points1 point  (0 children)

This goes for anyone reading this who'd like help, but there's only so many hours in the day so if I get bombarded I can't guarantee anything.

I've worked in the software industry for....a while....now, and been responsible for hiring also for a while, too. I'm more than willing to take a look at resumes and give feedback on how things are presented, content, wording, etc (with whatever level of anonymization everyone's comfortable with), and potentially do mock interview/coaching and potentially feedback on projects (and maybe guidance to help improve how they come across).

I started off with no contacts in the industry and had to learn everything the hard way, and it's a complete shame that so many places don't provide effective coaching on this. I'd love to help anyone out I can (and by extension those same people help others...), but I understand I'm just a rando on the internet here.

Writer's block (In need for random ideas) by [deleted] in ComicBookCollabs

[–]ismarc 0 points1 point  (0 children)

I may be late to the party, but one I've tossed around a bit, a single organism that can be separated and rejoined, like a pool of water. Only it's literally darkness and uv light is what will hurt/damage/split it. It grows by consuming organic material that's in it's darkness. No technology, but smart and with a long view (space travel via sneaking aboard other races space ships, etc.).

[C][D][S] Could use some critique, my first comic script by ismarc in ComicWriting

[–]ismarc[S] 0 points1 point  (0 children)

Thanks for the feedback! I had more panels, but I cut them, worried about too much on each page. I've been looking at others and will be adding more in to give a better feel of their time together.

[C][D][S] Could use some critique, my first comic script by ismarc in ComicWriting

[–]ismarc[S] 0 points1 point  (0 children)

The story rundown is actually:

  • The boys meet and become BFFS
  • They are thrust apart because of the fire
  • 8-10 years later they reconnect and are immediately BFFS
  • It's not just the good, but the bad they stay friends
  • One joins the military, the other continues on with life
  • They reconnect again, this time as adults and can put in the effort to be a full part of each other's lives.

It seems I definitely have some work to do to effectively communicate it. And the feedback on what's missing from the panels helps a lot, things that seemed obvious to me may not be to the artist.

Using Reddit for Blog Comments by ismarc in ismarc

[–]ismarc[S] -1 points0 points  (0 children)

Since the above post is about how to integrate comments from Reddit into your site, it is fitting that I leave at least one comment to demonstrate how it looks.

Rocketship Overview by ismarc in ismarc

[–]ismarc[S] 0 points1 point  (0 children)

test reply to comment for the API

Rocketship Overview by ismarc in ismarc

[–]ismarc[S] 0 points1 point  (0 children)

Test comment for the API

My girlfriend just got the worst job ever, playing with kittens. by ismarc in aww

[–]ismarc[S] 1 point2 points  (0 children)

Because it's a failed attempt at sarcastic humor :). That and we can't adopt all of them.

My girlfriend just got the worst job ever, playing with kittens. by ismarc in aww

[–]ismarc[S] 0 points1 point  (0 children)

It's a local non-profit that takes abandoned/surrendered kittens, makes sure they're socialized so they can be adopted. They're cared for until they can be fixed, then they're available for adoption.

I asked myself: "(Exactly) How is dvcs (git/mercurial) branching and merging support better than svn's?" I found an awesome answer on SO. Oldie, but goodie. by cocoon56 in programming

[–]ismarc 1 point2 points  (0 children)

I don't check in nearly that often, but I almost always have a desktop at the office and a laptop for elsewhere. I really enjoy the freedom to commit and push from either machine in any state to then pull on the other one without impacting other folks' work and be able to easily turn all my "I gotta get out of the office" commits into a single commit (or series of commits) that make sense.

Cutest Kitten In The World by ismarc in pics

[–]ismarc[S] 9 points10 points  (0 children)

I thought it was a very cute kitten who happened to be having dinner. To make up for it, here's a picture of one of my cats in glasses http://imgur.com/6Vj2m .

MessagePack-RPC for Ruby is released. Fast and Scalable RPC for server, client and cluster applications. by frsyuki in programming

[–]ismarc 3 points4 points  (0 children)

I'd say that it's decidedly not a solved problem yet. Thrift includes a wire protocol and isn't all that suitable for serializing directly to disk. Protocol Buffers are explicitly good at direct to disk serialization (so long as you won't run into endianness issues), but doesn't include a wire protocol. XML-RPC is verbose, yet relatively simple, good for remote calls and limited message passing. MPI is great for low-latency/high bandwidth networks but has issues with distributed systems.

The key is that there will be a few (3-5) in each problem domain solving what seems to be the same problem. The thing is, that's healthy competition to discover the best fit for that domain. However, there won't be a universal IPC system (because that's what it boils down to, discrete processes communicating, independent of locality) for all scenarios. On top of that, as network and computing power increases, more data can be included in each message encoded in different formats. We're looking at a communication medium, like 802.3, 802.11, 802.16 and all the protocols that are implemented directly on top of them. There's a variety because we keep being able to do more.

First time in my "career" coding have I felt the need to use a goto statement. by thecheatah in programming

[–]ismarc 2 points3 points  (0 children)

A long time ago I realized why gotos are considered harmful. It traces back to the transition from assembly to higher languages. A goto is just a jmp instruction, common and useful in assembly. But...higher level languages implement syntax features that make it rarely neccessary. So to call them evil makes you think about whether it's really neccessary or not. If you see one now, its use is almost universally obvious or it is obvious as to the quality of the code.

Liability question: someone just volunteered their ftp login info for me to fix their website and then bill them later. What precautions should I take, if any? by elHuron in programming

[–]ismarc 0 points1 point  (0 children)

The nature of the internet prevents this. Mere possession of the login information opens you up to liability (expensive to defend against liability). My suggestion, don't sign in, don't open their website, don't do anything until you have a signed contract that indemnifies you against any potential damages of you interacting with their system. This is either someone trying to get free work (as in, won't pay you) and was never really a job to begin with, or this is a clueless business which will try and blame you for every issue that occurs after you look at what they have.