Do they belong to you? Claim these comments.
crash
Is this you? Claim Profile »
5 months ago
in Does Rolex make a Harley Davidson model? on Harley Accessories Blog
this is a serious answer.
wearing watches of any kind has definitely jumped the shark.
watches are sooo 1990's. wearing a watch on your wrist indicates that you punch a time clock & your time is not your own.
in fact your riding a Harley is more than a little passe.
I suggest you 86 the Harley & spend your time in traffic in something a little more in touch with the times such as a smart car or small electric vehicle, preferably in a stylish unobtrusive color like pavement grey ( very in right now) or urban camouflage color scheme.
no need to thank me I just hate to see a stylish young man such as yourself still riding a Harley.
References :
only your best interest at heart
wearing watches of any kind has definitely jumped the shark.
watches are sooo 1990's. wearing a watch on your wrist indicates that you punch a time clock & your time is not your own.
in fact your riding a Harley is more than a little passe.
I suggest you 86 the Harley & spend your time in traffic in something a little more in touch with the times such as a smart car or small electric vehicle, preferably in a stylish unobtrusive color like pavement grey ( very in right now) or urban camouflage color scheme.
no need to thank me I just hate to see a stylish young man such as yourself still riding a Harley.
References :
only your best interest at heart
1 year ago
in Do you buy all the crap Harley sells or do you get them as gifts? on Harley Accessories Blog
the older you get ,the more junk you end up with.
I used to give my kids & grand kids T shirts from ralleys like sturgis & such, now they give me harley shirts,hats & mugs from places I've never been like cancun.
I've got 2- 6 packs of harley beer, a snow globe that makes a noise like an old 45 going through the gears an old carton of harley cigarettes, towels,blankets etc. about the only thing I've got that doesnt say harley anywhere on it is the harley I ride.
this is despite the fact I stopped giving them T shirts years ago & started giving them money as gift's in the hope they would take the hint. but no luck so far,if I live long enough I expect I'll get a harley shirt from the moon some day or maybe a harley tombstone unless I forbid it in my will.
I know it must be hard to pick out something for an old dude.
but if your looking for ideas a stripper is always appropriate for any occasion & you dont have to find storage space for her when the celebration is over.
References :
I used to give my kids & grand kids T shirts from ralleys like sturgis & such, now they give me harley shirts,hats & mugs from places I've never been like cancun.
I've got 2- 6 packs of harley beer, a snow globe that makes a noise like an old 45 going through the gears an old carton of harley cigarettes, towels,blankets etc. about the only thing I've got that doesnt say harley anywhere on it is the harley I ride.
this is despite the fact I stopped giving them T shirts years ago & started giving them money as gift's in the hope they would take the hint. but no luck so far,if I live long enough I expect I'll get a harley shirt from the moon some day or maybe a harley tombstone unless I forbid it in my will.
I know it must be hard to pick out something for an old dude.
but if your looking for ideas a stripper is always appropriate for any occasion & you dont have to find storage space for her when the celebration is over.
References :
1 year ago
in How much does your Harley weigh? on Harley Accessories Blog
mine used to weigh 640lbs but since I filled the tires, gas tank,& fork tubes with hydrogen I have to put a brick on the seat to keep it from floating off when I park it.
References :
References :
4 years ago
in Post Levels plugin v0.2.1 on fortes.com
can someone elaborate please on what this single-post issue is?
the only problem i found was if i logged-out and manually tried to access a PL-ed post, i got a dirty 404, instead of a nice WP redirect.
the only problem i found was if i logged-out and manually tried to access a PL-ed post, i got a dirty 404, instead of a nice WP redirect.
4 years ago
in Post Levels plugin v0.2.1 on fortes.com
registered and logged-in user. if the visitor is not logged-in $user_level is left blank.
so, it's only natural to think that empty() will work. however, in php, if $var is equal to 0 (zero), empty($var) will return true.
i propose you change
to
and change is_post_level() function accordingly.
anyway, just thought i'd bring this to your attention. thanks for a quick 1.5.1 fix :)
~crash
so, it's only natural to think that empty() will work. however, in php, if $var is equal to 0 (zero), empty($var) will return true.
i propose you change
// Don't bother unless someone is logged in
if (!empty($user_level))
to
// Don't bother unless someone is logged in
if (isset($user_level))
and change is_post_level() function accordingly.
anyway, just thought i'd bring this to your attention. thanks for a quick 1.5.1 fix :)
~crash
4 years ago
in Post Levels plugin v0.2 on fortes.com
the problem is that get_currentuserinfo() is now part of "plugga ble functions," which "/* These functions can be replaced via plugins. They are loaded after plugins are loaded. */"
since the function is loaded AFTER the plugin, it's not defined at the time of plugin execution
since the function is loaded AFTER the plugin, it's not defined at the time of plugin execution
4 years ago
in Post Levels plugin v0.2 on fortes.com
the problem is that get_currentuserinfo() is now part of "plugga ble functions," which "/* These functions can be replaced via plugins. They are loaded after plugins are loaded. */"
since the function is loaded AFTER the plugin, it's not defined at the time of plugin execution
since the function is loaded AFTER the plugin, it's not defined at the time of plugin execution
4 years ago
in Post Levels plugin v0.2 on fortes.com
hello all
i've made an enhancer plugin for Post Levels. if anyone is interested, it is here -> http://idlemind.org/journal/projects/post-level...
i've made an enhancer plugin for Post Levels. if anyone is interested, it is here -> http://idlemind.org/journal/projects/post-level...
4 years ago
in Post Levels plugin v0.2 on fortes.com
hello all
i've made an enhancer plugin for Post Levels. if anyone is interested, it is here -> http://idlemind.org/journal/projects/post-level...
i've made an enhancer plugin for Post Levels. if anyone is interested, it is here -> http://idlemind.org/journal/projects/post-level...
4 years ago
in Introducing the Post Levels plugin on fortes.com
hi fil. i'm glad someone is working on the "private-posts" front.
quick question: from a glance, it seems that the minimum "private" level for a post is 1. is there a way to make it 0, without breaking everything?
i want the least private of the private posts to be readable by registered users (user_level 0), without having to give them posting access (user_level 1+).
quick question: from a glance, it seems that the minimum "private" level for a post is 1. is there a way to make it 0, without breaking everything?
i want the least private of the private posts to be readable by registered users (user_level 0), without having to give them posting access (user_level 1+).
4 years ago
in Introducing the Post Levels plugin on fortes.com
hi fil. i'm glad someone is working on the "private-posts" front.
quick question: from a glance, it seems that the minimum "private" level for a post is 1. is there a way to make it 0, without breaking everything?
i want the least private of the private posts to be readable by registered users (user_level 0), without having to give them posting access (user_level 1+).
quick question: from a glance, it seems that the minimum "private" level for a post is 1. is there a way to make it 0, without breaking everything?
i want the least private of the private posts to be readable by registered users (user_level 0), without having to give them posting access (user_level 1+).
7 years ago
in carlo.log → Jun 30th 2002, 18:16 GMT on carlo.comments
I agree with FanBoy. Well put!