Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×
User Journal

Journal Journal: Thanks 5

Thanks to whoever burned five.

User Journal

Journal Journal: You get that many mod points 6

Wow, you get so many mod points, you feel the need to blast all 10 at me? I'm no longer the most prolific poster on slashdot, why do you bother?

User Journal

Journal Journal: Huh 14

Limited to 25 posts/day? When did that happen. Lame.

User Journal

Journal Journal: Slashdot takes a page from the users 2

It seems that slashdot is learning from the users. If ever there was a Troll Tuesday for the front page, it is today. Let's see, we've got a story taking advantage of gender divides, a story taking advantage of Middle East division, several Apple stories, climate change/evolution, and a game console story. Still a few hours to go, so perhaps there is still time for a coding language story, a text editor story, and a distro/desktop story.

User Journal

Journal Journal: risible 2

risible
adjective

  • causing or capable of causing laughter; laughable; ludicrous.
  • having the ability, disposition, or readiness to laugh.
  • pertaining to or connected with laughing.
User Journal

Journal Journal: The best thing about trolling APK? 62

The best thing about trolling APK? Sometimes I want to read an article a few days later when more discussion has occurred. If I put a reply in it, APK will helpfully respond to it. Next time I login, there is a convenient reminder in my message list.

Thanks Alex!

User Journal

Journal Journal: Thanks Dr. Bob 11

Thanks go out to Dr. Bob. Usually when I'm bored with mod points, I'll go and split them between marking Barbie 'Troll' and 'Insightful'. Or I'll go dump fifteen on pudge. But tonight, Dr. Bob gets five points of mod bombing. If only all quackopractors were modbombed out of business.

Slashback

Journal Journal: My experience with the new interface 12

Well, it was easy to find the 'write in journal' link. Or is that from my slashbox? I dunno. I don't care. Second, it works better for me on IE 8.0 than it does on FF 3.6.

No FF compatibility, less readability than 2.0, inability to save preferences? Lame.

No wonder the number of comments to articles is down. Substantially by my seat of the pants estimation. Eighteen comments on a Android vs. Symbian troll article after 35 minutes? Anti-Apple troll article has 67 comments after three hours?!

They either wanted to drive down page views, will roll this back, or Netcraft will soon confirm it.

User Journal

Journal Journal: An Update 2

so i said in my last je in a response to shadow that i'd drop a quick update, so here it is.

life has been ridiculously hectic and incredibly busy. so i'm still working at the same company, but we have a new name. i'm tech leading a large project for one of the major device makers (think batwings) it's the biggest thing i've ever worked on. it's a huge project just finishing its first year. i don't get to do much coding, in fact i figure i've written less than 1% of the actual code. oh well, i still try to keep my hands dirty with whatever i can find, but managing is really a full time gig.

what else?

2 years ago i decided to pursue my masters degree (computer science) so i'm going to harvard and am about a year and a half away from finishing the degree. this semester (i only do one class per semester, which is more than enough, the sheer amount of work on top of the weekly lectures is enough exhaust most people) i'm taking mobile application development (android and ios.) it's pretty cool thought. never thought i'd actually enjoy going back to school, but alas, i do enjoy it. it's also very much a cultural thing here in boston. everyone you know takes classes, and well with my company paying 100% of my tuition it would be silly not to take advantage of that.

oh yeah, still in boston. still love it. i actually moved into a part of boston called the navy yard. right on the water, across the charles river from the north end of boston. absolutely love my neighborhood. i hang out with solemndragon once a week, and we still get in the odd game of warcraft here and there.

the music thing has been keeping me very busy. earlier in 2010 i had my first placement in an independent film soundtrack. this year will see my second (a documentary) the filmmaker producing the documentary has produced a couple behind the scenes shorts that include 2 cuts from the latest record. i'm trying to raise some money to get the new record pressed on vinyl. and i'm also going back to the studio to record 2 new songs at the end of february (one of them is for a compilation called "singularity" put out by glidescope records). yeah i love the studio, and my friend who owns the studio i use is awesome. the place is very very nice. i am also writing another record that i hope to have out before the end of this year. i've been debating shopping this future record to labels. that's still a long way away. also probably going to be working on a big secret project for the studio, which could be very interesting. i'd like to get another one or two film deals cooking this year.

i also have been getting back into design work. a couple weeks ago i won a design competition put on by mylene sheath records to design the test pressing cover art for one of their bands. i also just finished doing the cover art for an LP for this other label. what's cool is, both covers are hand silk screened. so doing the designs had to be executed with that in mind, very cool stuff.

let's see, other stuff. about a year and a half ago my lactose intolerance has become a full blown dairy allergy so i'm 100% vegan now. it's not bad at all actually. what else? i'm not dating, i enjoy being by myself, i enjoy living like a monk (as a friend actually observed not long ago) actually, and i do. i keep very busy, i do get to see friends here and there (like i said, hang out with solemndragon once a week, and other friends every couple weeks or so.) i get home from work and i get to work on writing music, producing demos for the songs i'm working on, work on other web development projects (keep my skills sharp) school, the day job. yeah there are very few actual idle hours during the week.

so yeah things are not horrible.

Music

Journal Journal: Nearly Two Years? 10

yikes. so yeah not dead.

just wanted to drop a quick update for folks who never made the "migration" that i've been pretty busy with the music stuff. spent the last year and a half writing and recording (in a proper studio) a record that was just released earlier this month.

it's nothing earth shatteringly new, more instrumental post-rock, but i got more ambient with it (which is really where i'm going musically)

yeah just more output, another contribution to the noisy attention-whoring part of the internets.

release info: http://skyflyingbymusic.org/
plans: http://skyflyingby.tumblr.com/post/2652663461/plans-and-aspirations

yeah i'm going to try to not neglect this place for as long.

oh for the love of all that is holy... who puts the "write in journal" link at the _bottom_ of the screen? i see /. is sucking as much if not more than usual.

User Journal

Journal Journal: Circular dependencies in three languages 1

Here are six files for ya, showing a problem in 3 different scripting languages. What will they do?
--------- test1.php:
<?php
require 'test2.php';

define('SOMECONSTANT','hello world');

function foo() {
                return SOMECONSTANT;
}

echo foo(); echo "\n";

--------- test2.php:
<?php
require_once 'test1.php';

echo foo(); echo "\n";
--------- test1.py:
#!/usr/bin/python
import test2

SOMECONSTANT='hello world'

def foo():
                return SOMECONSTANT

print foo()
--------- test2.py:
#!/usr/bin/python
import test1

print test1.foo()
--------- test1.rb:
#!/usr/bin/ruby
require 'test2.rb'

SOMECONSTANT='hello world'

def foo
                SOMECONSTANT
end

puts foo()
--------- test2.rb:
#!/usr/bin/ruby
require 'test1.rb'

puts foo()
---------
Ok, scriptfiends, predict the output of these three commands:
php -q -f test1.php
python test1.py
ruby test1.rb

and then do some pasting and try it out. Match your predictions?

The PHP one bit me pretty hard today.

User Journal

Journal Journal: One Too Many 2

I have a password written on a post-it note underneath my keyboard. Decades went by without this ever having happened, but now I have one of these. [rationalize]And I'm keeping the post-it, because it'll probably be months or years before I ever need that password again, so there's just no chance I'll be able to remember it (it's actually a pretty well-made password).[/rationalize] OTOH, I suppose I could just throw it away and then the next time I need it, ask someone for it again. [truth]But no, it amuses me that I've entered the ranks of people with passwords on post-its at their desks, so I'm keeping it, for that reason if nothing else.[/truth]

User Journal

Journal Journal: Yo, Tom Hudson 3

Yo, Tom Hudson, I'm real happy for you and I'ma let you finish, but Breitbart is the greatest troll of all TIME!

User Journal

Journal Journal: I'll never empty my freaks list 5

I'll never empty my list of freaks. First of all because Pudge is on there, and for him to un-freak me would require him to change his mind.

But of far more interest than that is my former brother-in-law. I hadn't forgotten that he showed up here when his crazy assed sister left me. Hadn't thought about him in a while. Was looking around some pages and saw his name on my freaks list. Then I remembered he was 'an hero'. And I laughed. I hope it hurt. It probably did, because for it to have been painless it would require him to do something right for once in his miserable life.

Cowardly chickenshit.

Slashdot Top Deals

I've noticed several design suggestions in your code.

Working...