Kinky Solutions Now Carries Saucy Content (Saucy)

Posted March 15, 2007 at 8:35 AM by Ben Nadel

I know that some times I write things or present graphics that offend people. I am sorry about that, but I can't really change the stuff that makes my life fun and lets me enjoy blogging. However, I can make it easier for you NOT to get fired at work while reading my blog. Going forward, anytime I have content that you wouldn't want you Boss to see when he walks behind your desk, I am going to put:

(Saucy)

... in the blog title. For example, this blog entry has (Saucy) in the title because it displays the following images (scroll down):

..

..

..

..

..

..

..

..

..

..

..

..

..

..

..

..

..

..

..

..

..

..

..

..

..

..

..

..


 
 
 

 
 Saucy Content - Girls 1  
 
 
 

 
 
 

 
 Saucy Content - Girls 2  
 
 
 

I don't know why, but suddenly, I want to go to the beach.... It's probably the warm weather.

So anyway, I hope that this is a good compromise. I can keep my content... you can keep your job :)




Reader Comments

Ed
Mar 15, 2007 at 9:28 AM // reply »
18 Comments

Ben, dude! Stop apologising!!!! Who cares if you offend a few people, it's your blog and your soapbox so say whatever you like and let the thought-controllers and fascist censorship monkies say whatever they want, just ignore 'em. If people are offended by what you write then tough bananas for them! Not once have I read anything on this blog that could be deemed offensive by any rational standard. Some people just like to find things to complain about. This is your blog and you have the perfect right so say any-effing-thing you like :-) Besides some cute booty always brightens up my day - almost as much as your CSV import function!!!


Mar 15, 2007 at 9:31 AM // reply »
10,640 Comments

@Ed,

I appreciate the support (and that you like my CSV import stuff)... I figure this compromise takes so little effort that I can keep my content and still make a few more people happy.

... The booty ain't going nowhere ;)


Mar 15, 2007 at 9:36 AM // reply »
3 Comments

The only problem i can see from this is that i am now going to be looking for the entries that are "Saucy" rather than the technical ones. I cant help it, boobies help me learn!


Ed
Mar 15, 2007 at 9:38 AM // reply »
18 Comments

Arf arf. I couldn't agree more Simon!! :-)


Mar 15, 2007 at 10:17 AM // reply »
56 Comments

little suggestion.

put (Saucy) at the beginning of the title. When using the live bookmarks in firefox (Saucy) gets cut off.


Mar 15, 2007 at 10:18 AM // reply »
10,640 Comments

This I can do.


Mar 15, 2007 at 12:07 PM // reply »
8 Comments

Ben,

Could you make a list of all your previous saucy entries - so that I know which ones to avoid :P


Mar 15, 2007 at 12:08 PM // reply »
10,640 Comments

Ha ha ha ha :)


Ed
Mar 15, 2007 at 12:23 PM // reply »
18 Comments

On another subject, Ben do you know an easy way to convert all those annoying smart quotes into normal HTML? I've tried various things but can't seem to get the chr() values correct. Some say is 145-148 some say it's 8212 and 8211. If you've got any ideas I'd be grateful cuz I'm stuck :-(


Mar 15, 2007 at 12:27 PM // reply »
10,640 Comments

I think i usually just go the 8212 and 8211 route. Let me check my Form scrubber.... (a bit of my UDF):

for (LOCAL.Key in FORM){

// Trim the field value.
ARGUMENTS.Form[ LOCAL.Key ] = Trim(ARGUMENTS.Form[ LOCAL.Key ]);

// Since we want to store regular quotes in the database, lets make
// sure we don't have any escaped quotes in the submitted values.
ARGUMENTS.Form[ LOCAL.Key ] = Replace(ARGUMENTS.Form[ LOCAL.Key ], """, Chr(34), "ALL");

// We don't want to store lame-ass Micorosoft characters since they
// never display correctly on the screen cross-browser. Replace the
// special characters that Microsoft uses.
ARGUMENTS.Form[ LOCAL.Key ] = Replace(ARGUMENTS.Form[ LOCAL.Key ], Chr(8217), Chr(39), "ALL");
ARGUMENTS.Form[ LOCAL.Key ] = Replace(ARGUMENTS.Form[ LOCAL.Key ], Chr(8216), Chr(39), "ALL");
ARGUMENTS.Form[ LOCAL.Key ] = Replace(ARGUMENTS.Form[ LOCAL.Key ], Chr(8220), Chr(34), "ALL");
ARGUMENTS.Form[ LOCAL.Key ] = Replace(ARGUMENTS.Form[ LOCAL.Key ], Chr(8221), Chr(34), "ALL");
ARGUMENTS.Form[ LOCAL.Key ] = Replace(ARGUMENTS.Form[ LOCAL.Key ], Chr(8211), "-", "ALL");
ARGUMENTS.Form[ LOCAL.Key ] = Replace(ARGUMENTS.Form[ LOCAL.Key ], Chr(8212), "-", "ALL");

}

... Yeah, I just use those extended characters. I guess you just have to attach each "instance" individually and figure out what the actual character is and what is should be.


Mar 15, 2007 at 9:30 PM // reply »
1 Comments

see...from boobs came code...genius


Mar 16, 2007 at 12:07 PM // reply »
1 Comments

What's wrong with the standard .. NSFW ... saucy ... come ON.


Mar 16, 2007 at 12:12 PM // reply »
10,640 Comments

Cause I didn't know what NSFW meant. Are you trying to insult my intelligence? You know, what's not safe for work???? That kind of attitude!

Just messing with you. But seriously, not sure where that standard came from. Never heard of it before someone started yelling at me about my stuff.


Mar 16, 2007 at 12:22 PM // reply »
2 Comments

haha, sorry Ben, NOW YOU KNOW. Replace Saucy with NSFW, Not Safe For Work ... a little background ...

http://en.wikipedia.org/wiki/NSFW


Mar 16, 2007 at 12:42 PM // reply »
10,640 Comments

But NSFW makes me make assumptions about "your" work place. "Saucy" makes a judgment about the content, not the environment from which it will be viewed. Subtle difference.


Nov 18, 2007 at 3:54 AM // reply »
1 Comments

I just wish I could be one of the girls in your dreams.

Gwen



Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
InVision App - Prototyping Made Beautiful With Prototyping Tools Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
Feb 12, 2012 at 3:37 AM
Learning ColdFusion 8: CFImage Part III - Watermarks And Transparency
Hi Ben, Just to ask currently it is placed bottom right corner, if i need to replace the same rendered image on the bottom left side or in the bottom center, how that can be calculated. bottom ce ... read »
Feb 11, 2012 at 9:29 PM
Use jQuery's SlideDown() With Fixed-Width Elements To Prevent Jumping
I can't say how glad I am that I found your post. Thank you very much. ... read »
Feb 10, 2012 at 7:21 PM
jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements
Update! Instead of $(eval(options.insertAfter)).after(data['insertData']); I now use: var ajaxNode = document.createElement('span'); var parent = $(eval(options.insertAfter))[0].parentNode; ... read »
Feb 10, 2012 at 6:18 PM
jQuery AJAX Strips Script Tags And Inserts Them After Parent-Most Elements
encountered this same, what I consider, jQuery bug last week. I'm building a site in which I load some content via AJAX. This content contains Linkedin share button placeholders which Linkedin API ne ... read »
Feb 10, 2012 at 11:30 AM
Cross-Origin Resource Sharing (CORS) AJAX Requests Between jQuery And Node.js
After you understand the concepts here, this is an awesome cheatsheet for enabling CORS in just about anything http://enable-cors.org/ ... read »
JM
Feb 10, 2012 at 9:10 AM
My Safari Browser SQLite Database Hello World Example
@Amy, Here is a very good tutorial on how to use JOIN: http://www.sqltutorial.org/sqljoin-innerjoin.aspx ... read »
Feb 10, 2012 at 4:42 AM
Building A Twitter-Inspired RESTful API Architecture In ColdFusion
This is great, very useful Ben. I spotted a small typo in the api.cgm listing: <cfthrow type="Unauthroized" /> Cheers Stefan ... read »
Feb 9, 2012 at 10:35 PM
CFDirectory Filtering Uses Pipe Character For Multiple Filters (Thanks Steve Withington)
I was wondering if there would be a filter you could apply so that you got everything but what you included in the filter. As in show me all docs that are not a .pdf. ... read »