Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Breaking News

Name: Anonymous 2010-07-29 2:49

http://steve-yegge.blogspot.com/2010/07/wikileaks-to-leak-5000-open-source-java.html
Wikileaks founder Julian Assange, who coined the term "Opened Source" to describe the jailbroken open-source Java code, fears he may be arrested by campus security at Oracle or possibly IBM. The Wikileaks founder said: "Today the Eclipse Foundation put out a private briefing calling me a 'non-thread-safe AbstractKeywordRemovalInitiatorFactory'.

Name: Anonymous 2010-07-29 4:01

Back to reddit, please.

Name: Anonymous 2010-07-29 4:48

Back to reddit, please is an anagram of eloped catbird steak.

Name: Anonymous 2010-07-29 4:59

>>3
A nerd wok theft put bitch mud is an anagram of Don't bump the thread fuckwit.

Name: Anonymous 2010-07-29 5:42

I heard recently, that airports have installed deep anus inspection

Name: Anonymous 2010-07-29 5:57

deep anus inspection is an anagram of A Centipede Piss Noun

Name: Anonymous 2010-07-29 6:20

anagram is an anagram of a RAM nag

Name: Anonymous 2010-07-29 6:44

Anal Foxed Nudge is an anagram of Legend of Xanadu

Name: Anonymous 2010-07-29 8:21

>>1
Do you do this to annoy us, or do you think it's going to start some conversation?

Name: Anonymous 2010-07-29 8:30

>>9
Look at all the amazing commentary it's generated so far.

Name: Anonymous 2010-07-29 8:46

>>9
I admit that a lot of the parody flies over my head.  While I do know Java, I don't understand the culture (if there is one).  I've never even used final.

Name: Anonymous 2010-07-29 8:49

>>11
You never use constants? (I assume that's what it means.)

Name: Anonymous 2010-07-29 10:49

>>12
final in Java can be used on classes, methods, and variables.  A final class can not be extended (subclassed); a final method can not be overridden in a subclass; and, a final variable is a constant variable and can only be assigned once (it will always equal that value or refer to that object).

It's not that I don't use constants; it's that I try to avoid situations where I could need them (in Java, at least).

Name: Anonymous 2010-07-29 11:36

>>13
It would surprise me that final has such radically different meanings in different contexts -- if it wasn't Java.

Name: Anonymous 2010-07-29 12:27

>>13
Too bad about the lack of closures.

Name: Anonymous 2010-07-29 12:35

Name: Anonymous 2010-07-29 13:49

class EnterpriseCalculationWindow extends JFrame {
    private volatile int EnterpriseResult;
    ...
 
    public void calculateInSeparateEnterpriseThread(final URI uri) {
        // The expression "new Runnable() { ... }" is an anonymous Enterprise class.
        Runnable EnterpriseRunner = new Runnable() {
            void run() {
                // It can read final local variables:
                calculate(uri);
                // It can access private fields of the enclosing class:
                EnterpriseResult = EnterpriseResult + 10;
            }
        };
        new Thread(EnterpriseRunner).start();
    }
}

Name: Anonymous 2010-07-29 15:14

>>14
You mean like static in C?

Name: Anonymous 2010-07-29 18:45

>>16
typedef int (^IntBlock)();
 
IntBlock downCounter(int start) {
     __block int i = start;
     return [[ ^int() {
         return i--;
     } copy] autorelease];
 }
 
IntBlock f = downCounter(5);
NSLog(@"%d", f());
NSLog(@"%d", f());
NSLog(@"%d", f());


I clenched my jaw quite hard and then punched the desk

Name: Anonymous 2010-07-29 20:20

>>19
this faggot uses managed C++

Name: Anonymous 2010-07-29 20:38

>>20
Looks more like Objective-C to me, not retarded Sepples.

Name: Anonymous 2010-07-29 21:06

>>21
What the hell is ^IntBlock?!

Name: Anonymous 2010-07-29 23:16

>>19
At least you're not 600 pounds.

Name: Anonymous 2010-07-30 5:59

>>22
It's Apple's extension to C and Objective-C for implementing closures.

http://developer.apple.com/mac/articles/cocoa/introblocksgcd.html

Also, why does everyone sage anything interesting? Did you just not want an answer to your question? Well TOO FUCKING BAD, you got one.

Name: Anonymous 2010-07-30 9:30

>>24
Ah. That's actually fairly retarded. I don't see why that needs new syntax.

Also, learn how to use sage, imageboard effluent.

Name: Anonymous 2010-07-30 10:52

>>25
Also, learn how to use sage, imageboard effluent.

this is hardly what he implied, i think what >>24-san meant was that you should not sage interesting threads as this reduces the quality of /prog/.

Name: Anonymous 2010-07-30 11:04

>>26
Yeah, bumping good threads so the imageboard effluents can shit all over them really increases the quality of /prog/.

Name: Anonymous 2010-07-30 12:11

>>26
There's nothing keeping a thread from being interesting and discussions going on just because it isn't on the front page.

Name: Anonymous 2010-07-30 13:41

>>27
Yeah, bumping good threads so the imageboard effluents can shit all over them really increases the quality of /prog/.

if you would sage any thread it would hardly stop them.

and the point is that imageboard scum MAKES shitty threads instead of shitting inside existing one. by bumping them you keep the good threads on the top and the "less interesting" ones go to the bottom.

Name: Anonymous 2010-07-30 15:11

>>29
It means that any time you see someone not using sage you can safely ignore the post.

Name: Anonymous 2010-07-30 15:17

>>29
Sometimes, if a thread is interesting, it gets bumped by a post with actual content once it's off the front page so others can continue to reply. The rest of us know to look at the entire front page for real content, because the first few threads are usually there because they've been bumped by idiots. They're not idiots for bumping, of course, just for not knowing to sage (and for the content of their posts).

Name: Anonymous 2010-07-30 16:04

Sometimes, if a thread is interesting, it gets bumped by a post with actual content once it's off the front page so others can continue to reply.
A thread doesn't need to be on the front page for people to reply to it.
I probably shouldn't be telling an idiot from the imageboards that. Oops.

Name: Anonymous 2010-07-30 16:13

>>32
You're quite persistent that I'm from the image boards (see the other thread in which you(?) assume that too) - perhaps you are overcompensating for something, as you seem to have pointed out something quite unimportant as an excuse to appear as the one here who shouldn't go back to /b/.
I'm quite aware of that. I said `so others can continue to reply' because it's not always noticed when a thread has been replied to with a sage post. Unless, of course, you are an autistic person who specialises in remembering over 22 numbers between browser sessions.

Name: Anonymous 2010-07-30 17:42

I don't know about others, but this is how I troll browse /prog/:

- Load front page.
- Skim threads, load interesting looking ones in tabs
- Close front page.
- Reload threads occasionally (maybe a couple times a day?)
- Trim ones that haven't had activity in a while, or ones where the topic got boring
- When running low on threads, goto step 1

Usually I end up with about 8 threads at a time this way. Sometimes conversations will exist for a good amount of time beyond when the thread has left the front page; these are the best threads because the people are actually interested in the core topic, and the possibility of someone hijacking the topic or threadshitting is much lower.

Note that any useful browser is entirely capable of remembering which threads you have open if you have to close it for some absurd reason. I haven't closed my web browser for weeks, and that was to reboot for a kernel upgrade. I pretty much have a separate desktop dedicated to looking at textboards.

I have thought about the possibility of a board with no visible thread list or front page. Instead, it could be built with a system like (e.g.) last.fm where each thread is prefixed with a set of links to "similar" threads, determined by the number of unique participants in both. Maybe it could be weighted in favor of those who have posted more than once, in an attempt to eliminate garbage posts from people looking at a thread and then not actually reading it afterward.

Although I have a suspicion that such a scheme would inevitably deteriorate into WEB TWO POINT OH garbage, if properly set up, it could actually be worthwhile.

Name: Anonymous 2010-07-30 17:44

you seem to have pointed out something quite unimportant
Using sage properly is not ``something quite unimportant".

remembering over 22 numbers between browser sessions.
Modern browsers can save and restore sessions. If you're still using '90s abandonware, you can use bookmarks.

Name: Anonymous 2010-07-30 18:11

>>35
No, you moron, the unimportant thing was that you can reply to a thread once it's left the front page.
Also the numbers were how many posts each thread has, for which Shiıchan conveniently doesn't highlight changes since your last visit. That isn't a browser issue, unless you're a chump like >>34, in which case you've made it one.

Name: Anonymous 2010-07-30 18:41

>>33
Faggot quote fail.

Name: Anonymous 2010-07-30 19:24

>>36
See that link at the bottom of every thread that says "newer posts"? Click it. You don't have to remember shit.

I was writing under the belief that your comment was indeed referring to browser inadequacies in keeping track of what tabs you had open. Unfortunately it appears that you're stupider than I thought.

Name: Anonymous 2010-07-30 19:58

>>38
What are you on? You see that link below the Reply box that say ``Entire thread''? Click it. Holy shyt, you can see the entire thread! Now press End on your keyboard AND YOU'RE AT THE END OF THE THREAD! THE NEWEST POSTS ARE HERE.

I don't want to waste my fuqin time by having to go through each thread I remember was interesting in order to click your fuqin link. That's one extra link to waste my fuqin time on. Oh, and does this ``newer posts'' link tell you about new posts while you were away? NO IT FUQIN DOESN'T! That was what I was complaining about. Now go back to reading Comprehension 101, please.

Name: Anonymous 2010-07-30 20:56

>>39
You're a goddamn fucking retard. Use your "entire thread" button on this thread, and keep clicking that until you manage to grasp the blindingly obvious purpose of "Newer Posts". Until then, you can fuck right off.

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List