IWETHEY v. 0.3.0 | TODO
1,095 registered users | 0 active users | 0 LpH | Statistics
Login | Create New User
IWETHEY Banner

Welcome to IWETHEY!

New Reader responds to Verity's VB critique:
[link|http://www.ddj.com/documents/ddj0001vs/|The Critique]

[link|http://www.theregister.co.uk/content/35/27484.html|The Response]
Regards,

-scott anderson

"Welcome to Rivendell, Mr. Anderson..."
New That clarifies it
1. "Procedure and function call." No, you can't write FuncName(Param1, Param2) on its own like that. You'll get "Compile error: Expected = ".

However, if you write FuncName Param1, Param2 you DO get to discard the return value, AND Param1 and Param2 operate as reference parameters. I confirmed that using the following function:

Function FuncName(Param1, Param2)
Param1 = "Fred"
Param2 = "Wilma"
End Function

When I call the above with
Dim Param1, Param2
FuncName Param1, Param2

then Debug.Print Param1 gives me "Fred" and Debug.Print Param2 gives me "Wilma".

However, if I call it with
FuncName (Param1), (Param2)

As I'm expected to do if I want to stipulate transient value parameters, then Debug.Print returns "Empty" for both parameters, indicating the expected behaviour of VB, which Verity seems unaware of.

Even if I do supply the Call keyword, which requires the function parentheses, I can still optionally place a parameter in its own parentheses and thereby force it to act temporarily as a value parameter, e.g.

Call FuncName (Param1, (Param2))

All this illustrates the amazing flexibility of Visual Basic. Maybe coming from the C oriented background of EXE, Verity expects obfuscation where there is none.
He's right, that's perfectly clear.
===
Microsoft offers them the one thing most business people will pay any price for - the ability to say "we had no choice - everyone's doing it that way." -- [link|http://z.iwethey.org/forums/render/content/show?contentid=38978|Andrew Grygus]
New "Amazing flexibility" means...
... the ability to turn around and screw yourself in your own ass, apparently.
Regards,

-scott anderson

"Welcome to Rivendell, Mr. Anderson..."
New Not quote ROFL, but wiping the tears away
Someone who has a VB6 box should scan it and PhotoChop that in as the slogan.
===
Microsoft offers them the one thing most business people will pay any price for - the ability to say "we had no choice - everyone's doing it that way." -- [link|http://z.iwethey.org/forums/render/content/show?contentid=38978|Andrew Grygus]
New Okay, now this is WEIRD.
I decided, WTF, why not?

Guess what appears to disable all screenshot capability until AFTER it's done launching?

Now I want to find the resource bitmap and screw with it...
End of world rescheduled for day after tomorrow. Something should probably be done. Please advise.
New Bwahahaha.
Regards,

-scott anderson

"Welcome to Rivendell, Mr. Anderson..."
New Devious, is what that is
I wonder if all Microsoft apps do that. It'd be trivial, and unlikely anyone would ever notice and pin it down. Of course now that I'm curious ...
===
Microsoft offers them the one thing most business people will pay any price for - the ability to say "we had no choice - everyone's doing it that way." -- [link|http://z.iwethey.org/forums/render/content/show?contentid=38978|Andrew Grygus]
New Not to spread stereotypes...
But I am strongly reminded of [link|http://z.iwethey.org/forums/render/user?userid=145|broomberg]'s [link|http://z.iwethey.org/forums/render/content/show?contentid=19224|comment] about VB programmers who LOVE to code, They can't be any good, because if they were, they'd be smart enough to use a different language.

Cheers,
Ben
"Career politicians are inherently untrustworthy; if it spends its life buzzing around the outhouse, it\ufffds probably a fly."
- [link|http://www.nationalinterest.org/issues/58/Mead.html|Walter Mead]
Expand Edited by ben_tilly Oct. 8, 2002, 06:18:13 PM EDT
New Ding ding ding!
And Ben wins the "First zIWT user to link to another user's profile in a post" award!
Regards,

-scott anderson

"Welcome to Rivendell, Mr. Anderson..."
New Speaking of which ...
You know what would be really cool? If you could link to a user with their username. Like instead of [link|http://z.iwethey.org/forums/render/content/new/showUser?userid=1|this] if we could use [link|http://z.iwethey.org/forums/render/content/new/showUser?username=admin|this]. If a user isn't currently active, you have to find one of their posts to look up their userid. (Okay, you don't, but the rest of us do.)
===
Microsoft offers them the one thing most business people will pay any price for - the ability to say "we had no choice - everyone's doing it that way." -- [link|http://z.iwethey.org/forums/render/content/show?contentid=38978|Andrew Grygus]
New Easiest way to do it right now
Click on posting statistics. Search for the user.

Being able to reorder the posting statistics then jump to a particular alphabetical range would be more than good enough for me.

(Of course at some point linking conventions would be nice, but that would require modifications to the database structure - one for the raw text entered by the user and one for the munged output.)

Cheers,
Ben
"Career politicians are inherently untrustworthy; if it spends its life buzzing around the outhouse, it\ufffds probably a fly."
- [link|http://www.nationalinterest.org/issues/58/Mead.html|Walter Mead]
New That *is* handy
Hadn't thought of that. Although the reason I first thought of this was that I went looking for someone who was way down in the posting statistics. Alphabetical sort would indeed simplify that.

However ... I disagree that linking by username would take major database changes. Just change WHERE userID = '$userid' to WHERE userNick = '$usernick' in the query. Assuming the first part of the user profile page is to just look up the user info and the posting history is a second query. Otherwise this would take an additional query to look up the userID before doing the rest of the page.
===
Microsoft offers them the one thing most business people will pay any price for - the ability to say "we had no choice - everyone's doing it that way." -- [link|http://z.iwethey.org/forums/render/content/show?contentid=38978|Andrew Grygus]
New Erm, linking ne linking conventions
What I mean by [link|http://z.iwethey.org/forums/render/content/show?contentid=939|linking conventions] is that my fingers still expect [drewk] to come off as [link|http://z.iwethey.org/forums/render/user?username=drewk|drewk].

This is one of several kinds of markup which the HTML validation code could easily enough be modified to do and be controlled per user in your options (detecting URLs and making them into links is another), but that requires either slowing down rendering substantially or else the database change that I discussed.

See [link|http://z.iwethey.org/forums/render/content/show?contentid=51735|previous discussion] on this topic.

Cheers,
Ben

PS Yes, when I [link|http://z.iwethey.org/forums/render/content/show?contentid=55169|ask] for a feature, I will use it! :-)
"Career politicians are inherently untrustworthy; if it spends its life buzzing around the outhouse, it\ufffds probably a fly."
- [link|http://www.nationalinterest.org/issues/58/Mead.html|Walter Mead]
New Very effective request for a feature.
Linking protocols may very well get done soon after that tour de force.
Regards,

-scott anderson

"Welcome to Rivendell, Mr. Anderson..."
New That would be very nice
Features are easier to think up and ask for when I have used them elsewhere and therefore know how I will react to them. :-)

Cheers,
Ben
"Career politicians are inherently untrustworthy; if it spends its life buzzing around the outhouse, it\ufffds probably a fly."
- [link|http://www.nationalinterest.org/issues/58/Mead.html|Walter Mead]
New Er... that works already.
Except it looks more like [link|http://z.iwethey.org/forums/render/user?username=admin|this].
Regards,

-scott anderson

"Welcome to Rivendell, Mr. Anderson..."
New Okay, so which flavor of brilliance was that
Was that the "anticipate the requests before they happen and implement them" one, or was that the "make the change so fast it's in place before the poor sod sees the page again" one?
===
Microsoft offers them the one thing most business people will pay any price for - the ability to say "we had no choice - everyone's doing it that way." -- [link|http://z.iwethey.org/forums/render/content/show?contentid=38978|Andrew Grygus]
New More accurately:
[link|http://z.iwethey.org/forums/render/content/show?contentid=55195|The Ben Tilly Theory of "Retrograde Implementation"]

;-)

Good idea though, so I Made It So.
Regards,

-scott anderson

"Welcome to Rivendell, Mr. Anderson..."
New A theory, I might add...
that was based on [link|http://z.iwethey.org/forums/render/content/show?contentid=33181|observation].

Cheers,
Ben
"Career politicians are inherently untrustworthy; if it spends its life buzzing around the outhouse, it\ufffds probably a fly."
- [link|http://www.nationalinterest.org/issues/58/Mead.html|Walter Mead]
New Very interesting...
I've done that twice, and both times Drew was the brunt of the joke... ;-)
Regards,

-scott anderson

"Welcome to Rivendell, Mr. Anderson..."
New Hey, well...
He is a Marine. He can take it. :-)

Cheers,
Ben
"Career politicians are inherently untrustworthy; if it spends its life buzzing around the outhouse, it\ufffds probably a fly."
- [link|http://www.nationalinterest.org/issues/58/Mead.html|Walter Mead]
Expand Edited by ben_tilly Oct. 8, 2002, 10:04:15 PM EDT
Expand Edited by ben_tilly Oct. 9, 2002, 08:26:03 AM EDT
New Correction: Once a marine, always a marine. :)
Alex

The sun will set without thy assistance. -- The Talmud
Expand Edited by a6l6e6x Oct. 8, 2002, 09:51:34 PM EDT
New not a marine one of Uncle Sams Misguided Children
and a force which I heartily respect as every member is a warrior fist class and then a cook or truck driver.
thanx,
bill
will work for cash and other incentives [link|http://home.tampabay.rr.com/boxley/resume/Resume.html|skill set]

"Therefore, by objective standards, the leading managers of the U.S. economy...are collectively, clinically insane."
Lyndon LaRouche
New And we usually capitalize it ... "marine" is an adjective
Since we're making corrections here.

And as for being the brunt of that one both times, I'll just take that to mean I suggested things that were not only clearly good ideas, but also fell within Scott's five minute threshhold. So there.
===
Microsoft offers them the one thing most business people will pay any price for - the ability to say "we had no choice - everyone's doing it that way." -- [link|http://z.iwethey.org/forums/render/content/show?contentid=38978|Andrew Grygus]
New Yep.
Regards,

-scott anderson

"Welcome to Rivendell, Mr. Anderson..."
New At ease, Marine! :)
Alex

The sun will set without thy assistance. -- The Talmud
     Cruft - (admin) - (33)
         Danger Will Robinson - (admin) - (1)
             Great googly moogly... - (Yendor)
         RORLMHO -NT - (deSitter)
         I'm almost willing to be it's Michael Swaine. - (static)
         I'm almost willing to be it's Michael Swaine. - (static)
         Oh, you didn't know of that before? Sorry, I thought... - (CRConrad)
         Oh gawd very crufty - (wharris2)
         Reader responds to Verity's VB critique: - (admin) - (25)
             That clarifies it - (drewk) - (5)
                 "Amazing flexibility" means... - (admin) - (4)
                     Not quote ROFL, but wiping the tears away - (drewk) - (3)
                         Okay, now this is WEIRD. - (inthane-chan) - (2)
                             Bwahahaha. -NT - (admin)
                             Devious, is what that is - (drewk)
             Not to spread stereotypes... - (ben_tilly) - (18)
                 Ding ding ding! - (admin) - (17)
                     Speaking of which ... - (drewk) - (16)
                         Easiest way to do it right now - (ben_tilly) - (4)
                             That *is* handy - (drewk) - (3)
                                 Erm, linking ne linking conventions - (ben_tilly) - (2)
                                     Very effective request for a feature. - (admin) - (1)
                                         That would be very nice - (ben_tilly)
                         Er... that works already. - (admin) - (10)
                             Okay, so which flavor of brilliance was that - (drewk) - (9)
                                 More accurately: - (admin) - (8)
                                     A theory, I might add... - (ben_tilly) - (7)
                                         Very interesting... - (admin) - (6)
                                             Hey, well... - (ben_tilly) - (5)
                                                 Correction: Once a marine, always a marine. :) -NT - (a6l6e6x) - (4)
                                                     not a marine one of Uncle Sams Misguided Children - (boxley)
                                                     And we usually capitalize it ... "marine" is an adjective - (drewk) - (2)
                                                         Yep. -NT - (admin)
                                                         At ease, Marine! :) -NT - (a6l6e6x)

LRPD in a coma, I know, I know... it's serious.
208 ms