Domain: webhop.net
Stories and comments across the archive that link to webhop.net.
Comments · 58
-
What about software using these cores?
The problem with thousand of cores is not hardware related. Yes, Intel can build thousands of core by continued innovation in the hardware. However, the software community is still struggling to understand how to use even 8 cores. The concurrency issues are enormous. For example look at the following post: http://kashi.webhop.net/blog/Technology/index.php/archives/22 Till we solve the concurrency issues the increased number of core will not achieve any higher performance. The C++ is just starting to deal with concurrency. C++0x adds threads support however, that is just the starting point.
-
Re:Vista is dying you say?
Download Xp Service Pack 3 and Vista Service Pack 1 at ftp://cobalt.webhop.net/
-
Re:Fedora?
...sets up the databases for MySQL...set up all your channels...XML TV feed I set up MythTV last weekend on Ubuntu 7.04. This article is a bit dated but helped with everything you mention. Although, in Australia we have limited support for XMLTV (that I can find). -
Their approach doesn't work against Mythtv!
They are extending the same exact image across the entire 30 second commercial so that TIVO Viewers will be forced to view at least one frame.
Fortunately, this does not work against Mythtv - you can skip the entire ad's with one press: -All you see is the start of the show after the ads! The ad detection algorithm just got an overhaul with Googles-Summer-of-Code (they wrote another version), but i've always found the current one pretty good.
(I know your all gearing up to whine about how hard mythtv is to install,... then you probably havent tried Knoppmyth, or the Hyams Fantastic How-to ) -
Re:mmmm monopolies...
"If you go to Google' all of their defaults are Google services. You don't even get the option to change those links to say Yahoo or the like.
Yes you can. -
How to remove?
Viewpoint Media Player is a program that is installed during the installation of AOL Instant Messenger that is a plugin for displaying graphical content in the software's own proprietary format. According to the software's end user license agreement, Viewpoint Media Player collects usage information and forwards it to Viewpoint servers. Each installation of Viewpoint Media Player contains a unique alphanumeric identification number that can be used to uniquely identify an installation of the software.
A successful attempt to remove Viewpoint Media Player while AOL Instant Messenger is still installed will cause AOL Instant Messenger to reinstall Viewpoint Media Player the next time AOL Instant Messenger is run. This advertising can be completely removed however with third-party hacks.
To remove ad's from AIM: http://aimadhack.webhop.net/
NOTE: I don't use AIM so I would not know if the fix really works or not...
(Thx wikipedia for the info) -
On the subject on making computers smaller.
A few months ago I overheared someone saying that Intel would be focusing technology on laptops (Maybe even the PDA market). This is assumed because corperate technology is rocketing and that the majority of this market is mobile. I hope Intel makes a good decision but does not neglect the need of new technology overall.
- Jeremiah O'Neal
http://www.we6jbo.webhop.net/
Rev: 0x -
Re:On the other hand...
I just (literally, last night) finished setting up my MythTV box. I don't recommend it if you just want to record a few shows and timeshift tv -- get a TIVO -- but if you want a fun project with almost infinite flexibility, go for it! I'm using Ubuntu, and my major difficulties were:
1) Getting the right size PCI cards (I'm using a half-size case)
2) Getting the sound working (Ubuntu rocks, but it needs a bit of work here).
3) Figuring out the proper order to configure things after all the software was installed.
I HIGHLY recommend this guide to get started, and for more extensive details, try this one.
Alternatively, try KnoppMyth...supposedly it works out of the box, but I can't vouch for that. -
Here's the best solution
This fellow pointed a web cam at all his keychains. Problem solved: http://fob.webhop.net/
-
I haven't seen this
Nobody has actually said what these two bots are called
Possible reasons why I don't know what everyone is talking about
1. I use AIM Ad Hack
2. I hate that "AIM Today" and have it disabled
3*. My buddy list is set only to allow users already on it
*The AIM bot that notifies you when you're logged on in more than one location seems to ignore this setting & appears anyway -
Re:URL? URN? URI? Email? Username? Login? Identity
Which would you prefer to be?
http://thinkinginbinary.webhop.net/
or
MooseGuy529
The problem with user@host is that it resembles an email address. OpenID asserts a URL, not a user, which is an important distinction.
That URL does not have to be http. It could well be mailto: or data: or gopher: or whatever. -
Slashdot this
Please attack my CD to MP3 guide site with all the vehemence you can muster. Thanks.
-
CDex guide gets 42% IE, 37% Firefox
A CD ripping guide for CDex I wrote gets its major share of hits from Firefox, Mozilla and Opera.
This may be because IE cannot display the page -- XHTML 1.1 should be served as "application/xml+xhtml" , which IE barfs at. Could I be arsed to write a browser detection script? Could I, punk? :-) -
Re:Displaying XHTML
About layout scaling: The reason your pages do not scale with font size is probably that you are still thinking in the "old" table way of layout and giving things pixel sizes. Using ems, instead of pixels, as this article from A List Apart (a great website for web designers, and probably the best place to learn how to properly put new standards, like XHTML and CSS, into place without sacrificing flexibility) explains, has a benefit:
...you can use ems to define the dimensions of your entire layout, which will then scale in proportion to the text.This makes it much easier to lay out pages. Take a look at my blog, where I use this technique.
Oh yeah, when you say "So much for accessibility!", you are slightly missing the point. The point of accessibility is that your content be accessible (not necessarily pretty) without problems. Tables used for layout, for example, present a problem, because screen readers do not know whether to ignore them and just follow the page in order or whether to treat them as an actual listing of information and denote the rows and columns. Look at my blog, change the font. Nothing breaks.
About overlapping text: Have you seen this or many of the other articles explaining how to use margins and floats to keep stuff from running over it. And the way to tell the browser not to run over stuff is this: if you have a sidebar, say "float: left;" (or right) in the CSS style for it. Then it will stay on the left, and the other stuff after it will wrap around it.
If you want to see an example of a page where a sidebar (on the right in this case) floats without covering up the content, visit my blog. If you email me I will give you a copy of the template, which is beautiful--it is absolutely, completely separate content and formatting.
About "will this revision be more precise about display?": No. XHTML does not specify how text is displayed. HTML is the Hyper-Text Markup Language--it is used for 'marking up' (not 'laying out' or 'beautifying') 'hyper-text' (not graphics). The point of HTML, from which it strayed and, with XHTML, is returning to, is to show the structure of text. The <p></p> tag only means "the text inside this element is a paragraph". It does not mean "the text inside this element should be displayed as a wrapped, block-level element with a margin above and below." It simply suggests to the user agent or renderer that the enclosed text should be considered, semantically, a paragraph.
Don't worry--with time, the "ripping apart" of pages into content and formatting becomes natural. The best way, in my opinion, and the one that produces the results most true to the separation of content and formatting, albeit being a bit of a challenge, is to do this: write your entire page using only XHTML--no CSS. What you will end up with is a 1990's-esque HTML page with no formatting. Create all your pages, using common classes of divs and spans everywhere. Then, create a CSS stylesheet that converts this purely semantic set of pages into a beautiful layout. The best tools for this are Firefox (although you should test in IE if you care about idiots) with the EditCSS sidebar. With these, you can load your bare-bones page and edit a stylesheet in real time, watching how styles affect the page. If you are uploading to a remote server as you develop (rather than running Apache somewhere on your LAN) it is much faster to just edit a stylesheet with this.
Just my two cents. (Actually more like a
-
Re:Displaying XHTML
About layout scaling: The reason your pages do not scale with font size is probably that you are still thinking in the "old" table way of layout and giving things pixel sizes. Using ems, instead of pixels, as this article from A List Apart (a great website for web designers, and probably the best place to learn how to properly put new standards, like XHTML and CSS, into place without sacrificing flexibility) explains, has a benefit:
...you can use ems to define the dimensions of your entire layout, which will then scale in proportion to the text.This makes it much easier to lay out pages. Take a look at my blog, where I use this technique.
Oh yeah, when you say "So much for accessibility!", you are slightly missing the point. The point of accessibility is that your content be accessible (not necessarily pretty) without problems. Tables used for layout, for example, present a problem, because screen readers do not know whether to ignore them and just follow the page in order or whether to treat them as an actual listing of information and denote the rows and columns. Look at my blog, change the font. Nothing breaks.
About overlapping text: Have you seen this or many of the other articles explaining how to use margins and floats to keep stuff from running over it. And the way to tell the browser not to run over stuff is this: if you have a sidebar, say "float: left;" (or right) in the CSS style for it. Then it will stay on the left, and the other stuff after it will wrap around it.
If you want to see an example of a page where a sidebar (on the right in this case) floats without covering up the content, visit my blog. If you email me I will give you a copy of the template, which is beautiful--it is absolutely, completely separate content and formatting.
About "will this revision be more precise about display?": No. XHTML does not specify how text is displayed. HTML is the Hyper-Text Markup Language--it is used for 'marking up' (not 'laying out' or 'beautifying') 'hyper-text' (not graphics). The point of HTML, from which it strayed and, with XHTML, is returning to, is to show the structure of text. The <p></p> tag only means "the text inside this element is a paragraph". It does not mean "the text inside this element should be displayed as a wrapped, block-level element with a margin above and below." It simply suggests to the user agent or renderer that the enclosed text should be considered, semantically, a paragraph.
Don't worry--with time, the "ripping apart" of pages into content and formatting becomes natural. The best way, in my opinion, and the one that produces the results most true to the separation of content and formatting, albeit being a bit of a challenge, is to do this: write your entire page using only XHTML--no CSS. What you will end up with is a 1990's-esque HTML page with no formatting. Create all your pages, using common classes of divs and spans everywhere. Then, create a CSS stylesheet that converts this purely semantic set of pages into a beautiful layout. The best tools for this are Firefox (although you should test in IE if you care about idiots) with the EditCSS sidebar. With these, you can load your bare-bones page and edit a stylesheet in real time, watching how styles affect the page. If you are uploading to a remote server as you develop (rather than running Apache somewhere on your LAN) it is much faster to just edit a stylesheet with this.
Just my two cents. (Actually more like a
-
Re:Yes, i've seen it
Hah, all I got was this.
-
My favorite alternative
I've tried a few CMS and read about many. Obviously some are more suitable than others for certain situations. Drupal has been perfect for running my two sites. One has a book and news stories while the other is purely a blog. Drupal's online documentation is very good and the community is very very helpful with users. I highly recommend it.
-
Re:Large text and contrasting colors
You have given some kick-ass advice in aboout 1/10 the space most people use! I actually have a page, Thinking in Binary, which I have written entirely from scratch in XHTML (using Template Toolkit's ttree to insert nav bars and such). Feel free to take a look and criticize--nobody reads it yet anyway.
> -
Re:and another thing for newbies to learnOkay, this is exactly the kind of thing that I would consider constructive criticism. Thank you.
- Mesh editing is cumbersome and utterly counter-intuitive. This is caused mostly by the focus on hotkeys rather than menus, and also by the lack of a manipulator of any kind. Once you learn the hotkeys, it's STILL a chore to model because the way that most of the tools work is so far from the way they work in nearly every other package.
This is probably one of those things I don't find confusing mostly because I've never worked with the 'other pacakage's. What impovements do you think could be made? Any specific criticism of the tools?
- I, like a lot of people, prefer to model in one large window as opposed to several smaller ones
This one, I'm not too sure about. I like the ability to split windows, and arrange them in almost any conceivable fashion. The other packages I've seen, have a much more static view. I can't imagine how this might be improved.
- No real undo
There is an undo. It works, and its real.- What the hell is that stupid bullseye thing? It is completely useless/Why aren't object created at either the origin or where I click and drag, like every other package ever made ever? Just to be different?
That would be your cursor, I believe. You can pivot around it, it sets the insertion point for new objects. LMB does other things besides set the 3D-Cursor position, its probably the keyboard shortcuts again that you're not familiar with. Again, I'm not familiar with the other packages, but are you complaining here that you can actually choose where new objects are created?- why the hell would I want to create an obect that's aligned with the screen? I don't want to have to change my damn screen position every time I need a new object
I'm not sure what else you would align it to initially. You could always just create the object then align it however you like. Personally, I usually have 3 windows on my screen, besides the large one that I do most of my editing in, and I create the object on the one with the alignment I want. Like this It works very well.
As for the rest of it, you seem pretty preocupied with making Blender like the other software. I don't think that is a good motive for UI redesign, but I see your point that it definetly adds to the learning curve for people transitioning from them. I came across an excellent document with proposals for UI enhancements, perhaps some of its suggestions would placate you? Anything you'd like to expand, or expound?
The blender documentation addresses everything you've said here. I suppose I could be mistaken, but it seems pretty clear you haven't even skimmed it, lead alone read the thing. -
VOTE ROLLOFFLE IN 2004
GNAA pwnage! CmdrTaco sucks a bellend!
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspThis grand message brought to you by Jarnes Jayce Media!
78489752 -
VOTE ROLLOFFLE IN 2004
GNAA pwnage! CmdrTaco sucks a bellend!
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspThis grand message brought to you by Jarnes Jayce Media!
21082934 -
VOTE ROLLOFFLE IN 2004
GNAA pwnage! CmdrTaco sucks a bellend!
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspThis grand message brought to you by Jarnes Jayce Media!
32443268 -
VOTE ROLLOFFLE IN 2004
GNAA pwnage! CmdrTaco sucks a bellend!
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspThis grand message brought to you by Jarnes Jayce Media!
37237522 -
VOTE ROLLOFFLE IN 2004
GNAA pwnage! CmdrTaco sucks a bellend!
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspThis grand message brought to you by Jarnes Jayce Media!
62411861 -
VOTE ROLLOFFLE IN 2004
GNAA pwnage! CmdrTaco sucks a bellend!
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspThis grand message brought to you by Jarnes Jayce Media!
76888094 -
VOTE ROLLOFFLE IN 2004
GNAA pwnage! CmdrTaco sucks a bellend!
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspThis grand message brought to you by Jarnes Jayce Media!
85993085 -
VOTE ROLLOFFLE IN 2004
GNAA pwnage! CmdrTaco sucks a bellend!
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspThis grand message brought to you by Jarnes Jayce Media!
31413755 -
VOTE ROLLOFFLE IN 2004
GNAA pwnage! CmdrTaco sucks a bellend!
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspThis grand message brought to you by Jarnes Jayce Media!
42247949 -
VOTE ROLLOFFLE IN 2004
GNAA pwnage! CmdrTaco sucks a bellend!
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspThis grand message brought to you by Jarnes Jayce Media!
79112768 -
VOTE ROLLOFFLE IN 2004
GNAA pwnage! CmdrTaco sucks a bellend!
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspThis grand message brought to you by Jarnes Jayce Media!
48510681 -
VOTE ROLLOFFLE IN 2004
GNAA pwnage! CmdrTaco sucks a bellend!
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspThis grand message brought to you by Jarnes Jayce Media!
55056273 -
GNAA FP! LORF!!!
-
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspA seasoned witch could call you from the depths of your disgrace, and rearrange your liver to the solid mental grace, achieve it all with music that came quickly from afar, and taste the fruit of man recalling losing all against the how-arr....
23046 -
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspA seasoned witch could call you from the depths of your disgrace, and rearrange your liver to the solid mental grace, achieve it all with music that came quickly from afar, and taste the fruit of man recalling losing all against the how-arr....
10907 -
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspA seasoned witch could call you from the depths of your disgrace, and rearrange your liver to the solid mental grace, achieve it all with music that came quickly from afar, and taste the fruit of man recalling losing all against the how-arr....
18817 -
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspA seasoned witch could call you from the depths of your disgrace, and rearrange your liver to the solid mental grace, achieve it all with music that came quickly from afar, and taste the fruit of man recalling losing all against the how-arr....
6839 -
Starmanta Raymond Nothnagel (513)556-7920This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!This post proudly brought you by GNAA member: Lysol!
Name, Address Phone
Nothnagel, Raymond L. DAAP 07
Daniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219 r.nothnagel@fuse.net (513)556-7920________________________________________________
| ______________________________________._a,____ |
| _______a_._______a_______aj#0s_____aWY!400.___ |
| __ad#7!!*P____a.d#0a____#!-_#0i___.#!__W#0#___ |
| _j#'_.00#,___4#dP_"#,__j#,__0#Wi___*00P!_"#L,_ |
| _"#ga#9!01___"#01__40,_"4Lj#!_4#g_________"01_ |
| ________"#,___*@`__-N#____`___-!^_____________ |
| _________#1__________?________________________ |
| _________j1___________________________________ |
| ____a,___jk_GAY_NIGGER_ASSOCIATION_OF_AMERICA_ |
| ____!4yaa#l___________________________________ |
| ______-"!^____________________________________ |
` _______________________________________________'
-
Phone StarManta and tell him he's a fag!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: rolloffleDaniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219
r.nothnagel@fuse.net
95130556-7920
(513)556-7920
courtesy of
http://ucdirectory.uc.edu/students.aspA seasoned witch could call you from the depths of your disgrace, and rearrange your liver to the solid mental grace, achieve it all with music that came quickly from afar, and taste the fruit of man recalling losing all against the how-arr....
11261 -
GNAA Displays Pwntage Conferencing
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!
This post proudly brought you by GNAA member: JesuitX -
GNAA Presents STARFAG!This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!This post proudly brought you by GNAA member: Lysol!
Name, Address Phone
Nothnagel, Raymond L. DAAP 07
Daniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219 r.nothnagel@fuse.net (513)556-7920________________________________________________
| ______________________________________._a,____ |
| _______a_._______a_______aj#0s_____aWY!400.___ |
| __ad#7!!*P____a.d#0a____#!-_#0i___.#!__W#0#___ |
| _j#'_.00#,___4#dP_"#,__j#,__0#Wi___*00P!_"#L,_ |
| _"#ga#9!01___"#01__40,_"4Lj#!_4#g_________"01_ |
| ________"#,___*@`__-N#____`___-!^_____________ |
| _________#1__________?________________________ |
| _________j1___________________________________ |
| ____a,___jk_GAY_NIGGER_ASSOCIATION_OF_AMERICA_ |
| ____!4yaa#l___________________________________ |
| ______-"!^____________________________________ |
` _______________________________________________'
dfgjdg dg dfgdfge6yklsr6jykl4jkle45 -
UNHOLY GNAA EARLY POST!!This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!Name, Address Phone
Nothnagel, Raymond L. DAAP 07
Daniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219 r.nothnagel@fuse.net (513)556-7920This post proudly brought you by GNAA member: JesuitX
________________________________________________
| ______________________________________._a,____ |
| _______a_._______a_______aj#0s_____aWY!400.___ |
| __ad#7!!*P____a.d#0a____#!-_#0i___.#!__W#0#___ |
| _j#'_.00#,___4#dP_"#,__j#,__0#Wi___*00P!_"#L,_ |
| _"#ga#9!01___"#01__40,_"4Lj#!_4#g_________"01_ |
| ________"#,___*@`__-N#____`___-!^_____________ |
| _________#1__________?________________________ |
| _________j1___________________________________ |
| ____a,___jk_GAY_NIGGER_ASSOCIATION_OF_AMERICA_ |
| ____!4yaa#l___________________________________ |
| ______-"!^____________________________________ |
` _______________________________________________'
> -
LOL!!!This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!Name, Address Phone
Nothnagel, Raymond L. DAAP 07
Daniels Hall, ROOM 0217 2720 SCIOTO ST CINCINNATI OH 45219 r.nothnagel@fuse.net (513)556-7920This post proudly brought you by GNAA member: JesuitX
________________________________________________
| ______________________________________._a,____ |
| _______a_._______a_______aj#0s_____aWY!400.___ |
| __ad#7!!*P____a.d#0a____#!-_#0i___.#!__W#0#___ |
| _j#'_.00#,___4#dP_"#,__j#,__0#Wi___*00P!_"#L,_ |
| _"#ga#9!01___"#01__40,_"4Lj#!_4#g_________"01_ |
| ________"#,___*@`__-N#____`___-!^_____________ |
| _________#1__________?________________________ |
| _________j1___________________________________ |
| ____a,___jk_GAY_NIGGER_ASSOCIATION_OF_AMERICA_ |
| ____!4yaa#l___________________________________ |
| ______-"!^____________________________________ |
` _______________________________________________'
> -
StarManta PWND BY GNAA
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here!!
GNAA member Penisbird brought you this fine post -
LOL GNAA FP!!!
This just in, GNAA has officially pwnt Slashfag StarManta!
Proof of concept here! -
StarManta pwnt by GNAA!
This just in, GNAA has officially pwnt Slashfag StarManta!.
Proof of concept here! -
STARMANTA - A PHOTOESSAY
http://wolfse.webhop.net/starmanta.png
What a loser. Looks like he gets buttsex from all his whitey Mac lusers. -
good move - their whole patch system is whacked
I've been trying to figure out how to get this fullscreen patch for Cygwin/X into the dist, but the xfree86 dev list tells me to submit to bugzilla. So what, I'm supposed to invent a bug and then solve it? Its a new feature and it would be nice to have a real place to discuss and enhance it (the xfree86 dev list is very aloof and hasn't been kind to me at all as a newbie x developer). I think it's a good move for Cygwin...
-
I don't mind working hard....
As long as it's either intellectually or monitarily fulfilling. I just wrote a long story about an all-hours project here, and despite some pain, I have nothing but positive things to say about the whole experience. One thing I didn't note in the article is that later that year my salary made a HUGE jump... the hard work paid off.
-
Re:FAT? COW?
Gee, thanks.
I wonder if you were serious about "my heart belongs to the sea".. because, incidentally, I love to sail. I used to be a Sea Scout, and I'm now a leader. I miss sailing this baby on Lake Ontario with the scouts. -
zaurus with GPS
good/simple GPS project with zaurus 5500/5600 and WAAS (3-meter accuracy) garmin GPS here: zaurus gps project