<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>The SDSA</title>
    <link>http://thesdsa.com/</link>
    <description>The Super Dooper Student Association!</description>
    <lastBuildDate>Fri, 30 Jul 2010 03:24:14 -0500</lastBuildDate>
    <docs>http://backend.userland.com/rss/</docs>
    <generator>weBLog</generator>
    <category>weBLog</category>
    <managingEditor></managingEditor>
    <webMaster></webMaster>
    <language>en</language>
        <image>
      <title>The SDSA</title>
      <url>http://beta.thesdsa.com/images/sdsalogo.jpg</url>
      <link>http://thesdsa.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
            <item>
      <title>new phone</title>
      <link>http://thesdsa.com/modules/weblog/details.php?blog_id=53</link>
      <description>So I just got a new blackberry pearlOMG it friggin rocksi have zelda on it!!!!! and regular NES (although i have yet to activate it and try out what games there are, apparently there are 23)how cool is thatand its got a camera, mp3 player and applications to download!! yay!!!</description>
      <pubDate>Wed, 22 Nov 2006 11:47:26 -0500</pubDate>
      <guid>http://thesdsa.com/modules/weblog/details.php?blog_id=53</guid>
    </item>
        <item>
      <title>Geography game - the Linux way!</title>
      <link>http://thesdsa.com/modules/weblog/details.php?blog_id=52</link>
      <description>So I noticed you guys playing the Geography game on the forum... and decided to cheat.  So I&#039;m a cheating bastard like that, so bite me! Yeah, yeah, yeah, you cheat too, probably with Google or Wikipedia, but my way is much cooler.  Well, OK, it&#039;s definitely much geekier. Interested? Read on!WARNING! Toxic amounts of computer geekiness ahead. And it gets even worse: it&#039;s Linux geeky. The good news: it won&#039;t make your head explode.OK, so what do I need in order to cheat at this game? A list of all the countries in the world! That&#039;s easy. OK, now that I got my list, what do I do with it? The lame assed way to do it would be to search that page for a particular letter. Eventually, we&#039;ll hit a country that begins with the letter we need. Heck, we can even scroll down (after all, the list is alphabetically sorted) and just pick one once we hit the right letter. But that&#039;s just lame, and you actually have to search. Sheesh!  Since I&#039;m such a lazy ass, I just want to be able to type a letter on my computer screen, and get all the answers I need. So, how do I do that?Step 1: Get the countries in text format. Naked. Your first reaction is probably to copy paste the list into Notepad or Wordpad, or just bookmark the Wikipedia page for future reference. LAAAAAME!!!  Here&#039;s what a true smart-ass  Linux geek would do... First, try to find a &quot;cleaner&quot; list of countries, that is preferably already in text format. Of course, finding exactly what you need isn&#039;t always easy, but hey, with Linux I bet we can make all sorts of crap work.After a bit of Googling, I found this nice list. So let&#039;s grab it on Linux (stuff that I typed is in bold and italicized type):
curl --silent http://schmidt.devlib.org/data/countries.txt
1;Afghanistan;AF;AFG;004;1;1;NULL;af;
248;&amp;#65533;and;AX;ALA;248;0;1;66;NULL;
2;Albania;AL;ALB;008;1;1;
....SNIP....
216;Yemen;YE;YEM;887;1;1;NULL;ye;
218;Yugoslavia;YU;YUG;890;1;0;NULL;yu;
220;Zambia;ZM;ZMB;894;1;1;NULL;zm;
221;Zimbabwe;ZW;ZWE;716;1;1;NULL;zw;
Well, that was easy. Note that we didn&#039;t actually download the file. We ran the special curl (pronouced &quot;see URL&quot; rather than &quot;curl&quot; as in &quot;curl up in a ball&quot;; i.e. literally take a look at a web address), which basically downloads any webpage (or file off the web) and spits it out on your screen. If you try this on a webpage, you will see its HTML code, because curl won&#039;t bother trying to render it for you; it&#039;s not a friggin web browser, mmkay?  You can try it with other webpages yourself, but let&#039;s keep focused!OK, so we got a list of countries, but there&#039;s a whole bunch of bonus crap that we don&#039;t need. How do we get rid of it? Well, if you take a look at the data closely, you will notice that it has a specific pattern:
some number;country name;two-letter country code;crap;crap;crap;more crap;even more crap
And what do we need? Basically, the second column... and our friend awk can help us with just that.So what we need to do, is tell curl to send the raw country list it just grabbed to awk, and in turn we need to tell awk to spit out only the entries in the second column. Easy as pie! By the way, the --silent option tells curl to just spit out what it downloaded and hold the progress bar. To see curl&#039;s normal behaviour, try it without the --silent option.
curl --silent http://schmidt.devlib.org/data/countries.txt | awk -F&amp;#039;;&amp;#039; &amp;#039;{print $2}&amp;#039;
Cool! Now we&#039;re getting closer. We&#039;re still seeing some crap (hey, this list is far from perfect, but it will do for our little game), but at least not too much of it. OK, if you&#039;re half the geek I am, you&#039;re probably asking yourself: how the heck does this work? What does it do exactly? Well, I&#039;m gonna tell ya!The little aptly named &quot;pipe&quot; character (vertical line: |) literally hooks up two commands. The output of one command, to the input of another one. I know, very, very sexy and perhaps even somewhat erotic. I can&#039;t believe I just said that.  Anyhoo... moving along. So basically, I handed off that crappy messed up list of countries to the awk command, which is, among other things, like a command-line version of Excel.  And Excel is pretty good with columns... of stuff. The first option to awk tells it that the columns in the data it&#039;s receiving from curl are separated by semicolons (we know that, but awk doesn&#039;t, so we need to keep it in the loop). That I accomplished with the -F&#039;;&#039; option. We need to put things in single quotes to prevent Linux from trying to do something too smart with the commands we type; in other words, semicolons can mean something else, and quotes tell Linux that this particular semicolon is just a... semicolon. The second option to awk basically tells it to print column number two (&#039;{print $2}&#039;). Commands to awk need to be placed in curly brackets. We all have odd eating habits and awk likes its curly braces OK? Don&#039;t look at me, it&#039;s not like it was my idea! So to summarize, we told curl to download (let us &quot;see&quot; that &quot;URL&quot;) that raw list and pass it on to awk. Then we told awk that the list we passed on to it has columns, and that they are separated by seimcolons (yes, just plain vanilla semicolons) and that we want awk to print the second column for us.Step 2: Start searching.This is the easy part. Now we have a nice, naked, plaintext, sexy  country list. But... what&#039;s the friggin point? Ah, but the point is, that now we can search it really easily using the grep command! Check it out:
curl --silent http://schmidt.devlib.org/data/countries.txt | awk -F&amp;#039;;&amp;#039; &amp;#039;{print $2}&amp;#039; | grep &amp;#039;ing&amp;#039;
Cocos (Keeling) Island
Singapore
United Kingdom
US Minor Outlying Islands
Sweet! We just got a list of countries that contain &quot;ing&quot;. Oh the awesome power!!!  That&#039;s pretty cool and maybe kinda useful, but... it&#039;s not exactly what we need. What I really need to become an effective cheater and pwn n00bs  on the forums at geography is to be able to search for countries starting with a specific letter. And if I really want to pwn  people, I could search for countries that start with a specific letter and at the same time end with the same or some other letter. Imagine that! Why imagine, when you can actually do it. Yeah, just do it, dammit! Let&#039;s start with searching for &quot;begins with,&quot; for example, &quot;begins with a&quot;. The &quot;begins with&quot; phrase here is symbolized by the little hat thingie ^ (Shift + 6 on the keyboard). As usual, don&#039;t forget your single quotes:
curl --silent http://schmidt.devlib.org/data/countries.txt | awk -F&amp;#039;;&amp;#039; &amp;#039;{print $2}&amp;#039; | grep &amp;#039;^a&amp;#039;
Hmmm... Nothing. I wonder why... Oh, that&#039;s because proper names must be capitalized, silly! Let&#039;s try capital A:
curl --silent http://schmidt.devlib.org/data/countries.txt | awk -F&amp;#039;;&amp;#039; &amp;#039;{print $2}&amp;#039; | grep &amp;#039;^A&amp;#039;
Afghanistan
Albania
Algeria
American Samoa
Andorra
Angola
Anguilla
Antarctica
Antigua and Barbuda
Argentina
Armenia
Aruba
Ascension Island
Australia
Austria
Azerbaijan
Allllrriiiiighhhht!  Now let&#039;s move in for the kill, that is, begin with &quot;A&quot; and end with &quot;a&quot; (or any other letters for that matter). Now, we need to be a bit more straightforward (computers are after all incredibly dumb and need everything to be explained in excruciating detail), so we need to say &quot;starts with A, don&#039;t care what&#039;s in the middle, ends with a&quot;. The &quot;ends with a&quot; part is easy, that&#039;s just a$ (a followed by the dollar sign, Shift + 4). If we try &quot;ends with... ummm... say q&quot; (to pick an odd letter) we&#039;ll get this:
curl --silent http://schmidt.devlib.org/data/countries.txt | awk -F&amp;#039;;&amp;#039; &amp;#039;{print $2}&amp;#039; | grep &amp;#039;q$&amp;#039;
Iraq
Hmm, Iraq, eh? Cool. So it&#039;s the only country that ends in a q. None other like it! Can you think of another country that ends in a q? No? HAH! Because there is no other country that ends in a q!!! PWNED!!!!!   OK, moving on... The &quot;don&#039;t care what&#039;s in the middle&quot; will be a bit trickier. We need to break it down further. Any SINGLE letter, symbol or digit is represented by a period (no, not that kind of period, ya dummy  ). But we don&#039;t want just a single character (letter, number or symbol), we can have more than one! And that&#039;s exactly what the asterisk * (Shift +  means, more than one. So together .*, they literally mean &quot;one or more of anything,&quot; in other words, &quot;don&#039;t care what&quot;. So all that&#039;s left is to stick the &quot;don&#039;t care what&quot; in &quot;the middle&quot; to get &quot;don&#039;t care what is in the middle&quot;! Let&#039;s try all countries starting with B and ending with s (I can think of Bahamas and nothing else, but with my new tool here)...
curl --silent http://schmidt.devlib.org/data/countries.txt | awk -F&amp;#039;;&amp;#039; &amp;#039;{print $2}&amp;#039; | grep &amp;#039;^B.*s$&amp;#039;
Bahamas
Barbados
Belarus
British Virgin Islands
Paydirt!!  Now I can start really kicking ass!!! Move over n00bs!P.S. If you haven&#039;t figured it out by now, this isn&#039;t an actual tutorial. In fact, this is completely useless crap (as far as practicality goes), but it does illustrate what is possible with command-line on a Linux system! So go, explore! Try stuff!P.P.S. You can certainly try this on fissure, but keep in mind that curl is not installed in the &quot;usual&quot; place, so you can&#039;t just run it by typing &quot;curl&quot;. Instead, you have to indicate the full path to the curl executable file, which is /usr/local/curl/bin/curl on fissure. So in all the above examples, simply replace &quot;curl&quot; with &quot;/usr/local/curl/bin/curl&quot;, or just run the following before running all the other commands:
fissure[1]:~&amp;gt; alias curl /usr/local/curl/bin/curl
to tell fissure that when you type &quot;curl&quot; you really mean &quot;/usr/local/curl/bin/curl&quot; but you&#039;re just too lazy to type it all out by hand.Well, that&#039;s all folks, go on, I know you&#039;re itching to try this out... yeah right! </description>
      <pubDate>Tue, 21 Nov 2006 23:58:55 -0500</pubDate>
      <guid>http://thesdsa.com/modules/weblog/details.php?blog_id=52</guid>
    </item>
        <item>
      <title>Long time no log entry... tracking server load</title>
      <link>http://thesdsa.com/modules/weblog/details.php?blog_id=51</link>
      <description>Yeah, long time no post! What can I say in my defense? Nothing much other than I&amp;#039;ve been crazy busy...   And to add insult to injury, this post is somewhat technical, so if you&amp;#039;re interested in the techie geekspeak type stuff (not too much of it), read on...You may have experienced minor outages of the website here and there. I&amp;#039;ve experienced them too, and quite frankly I&amp;#039;m not too pleased about them. Every time I see them happen I notice one thing: some other user&amp;#039;s PHP scripts keep hogging the CPU on the server. Now since I don&amp;#039;t have full control over the server, the best I can do is log CPU usage whenever a spike happens to establish patterns as well as present a viable argument (documented with cold hard evidence), rather than just bitch at the techs for not watching the server load closely.I whipped up a little bash script, which will run as a scheduled task on the sdsa webserver, and it will record the top 50 CPU hogs (other users on the same server) whenever the server gets too busy. The cron (scheduled task) is set up to run every 5 minutes, but it will only dump a log if the load average is greater than or equal to 5 (i.e. five active processes asking CPU for attention, which is a lot). Hopefully I will be able to see a trend and make a case to the admins of the server. If they jerk me around too much, I&amp;#039;ll just switch webhosts... that&amp;#039;s my last resort, though, since I rather like this webhost.P.S. My initial rant on this was posted here.</description>
      <pubDate>Thu, 07 Sep 2006 01:31:26 -0500</pubDate>
      <guid>http://thesdsa.com/modules/weblog/details.php?blog_id=51</guid>
    </item>
        <item>
      <title>Mood:  apathetic</title>
      <link>http://thesdsa.com/modules/weblog/details.php?blog_id=50</link>
      <description>Dear log,My life is like an abyss.  Sitting in my room all day is boring knowing I can&amp;#039;t access that website I like to go to, I was banned for no good reason... and it couldn&amp;#039;t turn me any more on!  The thought of her grabbing that mouse and thrusting it around the mousepad so in-control like a beautiful dream.  And then her jabbing with her index finger the &amp;#039;right button&amp;#039; to finish the deed and forevermore forbid me is so taboo I want to jizz all over the monitor.I tried to go to confront her (at work) but when I tried to go on the elevator it attacked me.  Those harsh metallic doors swooshing in on both sides of me, closing in on it&amp;#039;s prey is so taboo I want to jizz all over the monitor.I&amp;#039;m tired I&amp;#039;m off to bed.</description>
      <pubDate>Wed, 16 Aug 2006 22:53:04 -0500</pubDate>
      <guid>http://thesdsa.com/modules/weblog/details.php?blog_id=50</guid>
    </item>
        <item>
      <title>The machines are attacking!</title>
      <link>http://thesdsa.com/modules/weblog/details.php?blog_id=49</link>
      <description>Beware. A few days ago an elevator attacked some poor kid. Today, my computer took extra long to reboot. I think they&amp;#039;ve become self aware and will attempt to take over the world! The prophecy will be fulfilled and the death rates on campus will rise!!</description>
      <pubDate>Tue, 08 Aug 2006 03:11:23 -0500</pubDate>
      <guid>http://thesdsa.com/modules/weblog/details.php?blog_id=49</guid>
    </item>
        <item>
      <title>Virtualization Workaround Virtualization</title>
      <link>http://thesdsa.com/modules/weblog/details.php?blog_id=47</link>
      <description>I was trying to install the new FC5 Linux onto the V-PC of one of my relatively new PC.  To my surprise, the V-CD/DVD driver of my V-PC cannot accept any ISO image exceeding 2.1G!  (It&amp;#039;s the 31-bit limitation .)  I googled for a workaround for the virtualization limitation and interestingly found a virtual workaround!  All I have to do is to mount the FC5-ISO onto my host machine as a V-CD/DVD drive, fake it as host&amp;#039;s CD/DVD drive, connect that fake drive back into the V-PC as a V-CD/DVD drive.</description>
      <pubDate>Wed, 26 Jul 2006 03:14:51 -0500</pubDate>
      <guid>http://thesdsa.com/modules/weblog/details.php?blog_id=47</guid>
    </item>
        <item>
      <title>Wiki 4 &#039;Blog</title>
      <link>http://thesdsa.com/modules/weblog/details.php?blog_id=46</link>
      <description>I&amp;#039;m trying to see whether I can setup a WikiEngine for weBLogging.It&amp;#039;s at http://www.scar.utoronto.ca/~01chanwk/blog .There&amp;#039;s still some minor issues to iron out.  If it works, I might move my blogging there.By using the RecentChanges page as the default main page, it&amp;#039;s providing a reverse chronological order in some way.(Maybe I&amp;#039;m just too lazy to learn another software.)On another note, I decided to setup virtual domain at fissure.http://www.utsc.utoronto.ca/~01chanwk andhttp://www.scar.utoronto.ca/~01chanwk now display different sites.</description>
      <pubDate>Thu, 20 Jul 2006 04:13:30 -0500</pubDate>
      <guid>http://thesdsa.com/modules/weblog/details.php?blog_id=46</guid>
    </item>
        <item>
      <title>Wiki Up - UseMod WikiEngine</title>
      <link>http://thesdsa.com/modules/weblog/details.php?blog_id=45</link>
      <description>The wiki is now back up.I changed the WikiEngine to UseModWiki from PhpWiki.I started a new database.Sorry to all for the lost of old data.http://www.utsc.utoronto.ca/~01chanwk/wiki/</description>
      <pubDate>Sat, 15 Jul 2006 20:21:47 -0500</pubDate>
      <guid>http://thesdsa.com/modules/weblog/details.php?blog_id=45</guid>
    </item>
        <item>
      <title>The Cookie Lady&#039;s Sex Ed Helpdesk #4 - Special Double Sexy Affair Issue</title>
      <link>http://thesdsa.com/modules/weblog/details.php?blog_id=44</link>
      <description>Welcome to Issue #4, the Special Double Sexy Affair Issue of The Cookie Lady&amp;#039;s Sex Ed Helpdesk. Thanks to Lou for the title! As a result of one last-minute (well, really, past the deadline but I took it anyway) submission,  it is a true double issue - engorged and swollen with the answers to SIX questions instead of the usual three!Inside, you&amp;#039;ll find answers and discussions on these topics:#1: Shaving And Weird Sensations That Are A Turn-On;#2: Sex Toys;#3: Casual Sex And Saucy Individuals;#4: Effects Of The Pill On Pregnancies;#5: Really Stupid Ways To Try Not To Get Pregnant; and#6: Making Out (Or Not) With Rock Stars.Read on!#1: I shave, myself, and I&amp;#039;ve noticed in my travels that I tend to turn on myself much easier shaven then when I&amp;#039;ve grown in a little bit, even when not stimulated in any way (i.e.: walking down the street). Is it a brain thing, or sensation thing, or why is that?To be quite honest, I have absolutely no idea. Maybe it&amp;#039;s both. Maybe it feels a little different and something in your head (either one) really, really likes it. That&amp;#039;s my theory, anyway. If you&amp;#039;re really curious about it, try keeping track of times you notice it and see if there&amp;#039;s a pattern. Then let me know, &amp;#039;cause that&amp;#039;s kinda neat.#2: What&amp;#039;s your take on sex toys (i.e. vibrators, dildos, as well as some of the less vanilla ones, handcuffs - fuzzy or standard - blindfolds, desserts like whip cream and chocolate syrup, etc.) used in conjunction with sex? Do they add to the experience or take something away?Sex toys are fun! They can definitely add to the experience. What you choose to use is really up to you and your partner (if you have one). You can use vibrators on yourself, or have a partner use them on you or use one on them. Same for dildos. &amp;quot;Less vanilla&amp;quot; toys like restraints and blindfolds can be kind of cool too, as it means one partner is giving up control to the other one, which some people are turned on by. For example, not being able to see what your partner is doing might be pretty hot. And desserts, they&amp;#039;re just plain fun, really, and usually imply a lot of licking. Make sure you learn how to use toys and how to play safely. So yes, I think sex toys can definitely add to the experience of sex.However, like everything, it&amp;#039;s not universal. Some people just aren&amp;#039;t cool with certain kinds of toys or styles of play. This is an occasion where using toys might take something away from sex. It&amp;#039;s important to think carefully about what you yourself like and dislike, and to discuss with your partner the kinds of toys or play you&amp;#039;d like to introduce, in particular things people might consider &amp;quot;kinky&amp;quot; and things that involve an element of control or submission. If your partner&amp;#039;s not into it, you shouldn&amp;#039;t try to coerce them into doing something, but suggest exploring this area of your relationship together. A very good, Toronto-based resource on sex toys and different forms of play is Good For Her. You can check out their website or head over to their store on Harbord Street downtown and check them out. They&amp;#039;re intentionally women-friendly, including women/trans-only hours at their store, but also very welcoming to men. They sell different products, are willing to answer a variety of questions (there are FAQ and Toy Guide sections on their site), and also run workshops and seminars. The UTSC Women&amp;#039;s Centre had them in twice last year, once for &amp;quot;Discovering Your Erotic Sensual Self&amp;quot; and then again during GRRLFest! with &amp;quot;Maps of the Clitoris.&amp;quot; The facilitators and staff from GFH are all very knowledgeable and friendly. Babeland is also a good resource on toys. They have articles, an advice column, a &amp;quot;Men&amp;#039;s Room,&amp;quot; and they also sell toys and can help recommend some.#3: What are some of the dangers for Montreal girls to have sex with unidentified, saucy individuals?Ah, casual sex. Definitely an issue with opinions as diverse as the people who think about it. Personally, I don&amp;#039;t like it, but I&amp;#039;ve got nothing against people who do. I still admonish them to take good care of themselves, though, and that applies to everyone, not just women from Montreal. Something to consider - for some people, sex isn&amp;#039;t just a physical act, it&amp;#039;s an emotional and psychological one as well. You might be one of those people, the unidentified, saucy individual might be. At some point it should be made clear exactly what the nature of this arrangement is - whether it&amp;#039;s a one-time deal, or a friends with benefits arrangement, or something that could become a little more serious. Otherwise, signals and intentions could get crossed or lost and someone might get hurt. Learning their name might help, so at the least they&amp;#039;re not unidentified. Sauciness is a little more difficult to change, I think.Secondly, an obvious risk is that unidentified, saucy individuals may also carry unidentified, saucy diseases. Therefore, one must always insist on properly using condoms and dental dams when having sex (any kind of sex, including oral). This should be standard practice for any and all sexual relationships but I especially stress it for unidentified, saucy individuals, since it&amp;#039;s probably unlikely that you&amp;#039;ll get a copy of their STI tests. Of course, this is not to mention the saucy liquid explosions one might have to deal with. That&amp;#039;s another story.#4: If by whatever tiny chance I were to get pregnant while taking the pill, would the pills I would have taken between getting pregnant and finding out, harm the fetus?No, they shouldn&amp;#039;t. According to the little leaflet that came with my pills (Ortho Tri-Cyclen), continuing the Pill if you find out you&amp;#039;re pregnant won&amp;#039;t stop the pregnancy (so there&amp;#039;s no need to keep taking it), and there isn&amp;#039;t any evidence that it will harm the developing fetus. Other readings have backed this up.However, if you&amp;#039;re taking a progestin-only oral contraceptive (a &amp;quot;mini pill&amp;quot, continuing your pack while pregnant increases the risk of an ectopic pregnancy. This is when the fertilised egg starts to develop somewhere outside the uterus, usually in the fallopian tubes. This is very dangerous, and can be life-threatening. (source: Go Ask Alice!) You can find out more about ectopic pregnancies at Our Bodies, Ourselves.#5: Is it ok to have unprotected sex for a very short while to get some sensation, but then put a condom that has spermicide, and continue penetration to kill the sperm that&amp;#039;s gotten inside?  Thus, only precum will enter and be killed off by spermicide and the condom catches the rest so pregnancy chances are nil?No. Abso-fucking-lutely not. Not on your life. Never. No. Non. Nada. Ne.  It is this kind of ridiculous non-logic that gets 13-year-old-girls whose only sex &amp;quot;education&amp;quot; is the ludicrous myths and misinformation spread by their peers, and Cosmo, pregnant by their 13-year-old boyfriends whose only sex &amp;quot;education&amp;quot; is locker room shenanigans and their dads&amp;#039; old pornos. This kind of ridiculous non-logic gets a lot of other people pregnant too, I&amp;#039;m going to extremes with the 13-year-olds just to show exactly how ridiculous it is. Pulling out absolutely puts you at a pregnancy risk, absolutely puts you at an STI risk, and no amount of spermicide you use after the fact will change that.I personally don&amp;#039;t even recommend spermicide, as nonoxynol-9, the most common spermicide around, has a number of disadvantages, including:-Increased risk of HIV transmission (due to causing irritation and damage in tissues that allows viruses into the body&amp;#039;s system)-May irritate the vulva or vagina and increase the risk of UTIs-It has to be applied BEFORE penetration (hence why the scenario in this question won&amp;#039;t work) and it can be messy-Can interrupt spontaneity and make oral sex rather unpleasant (because it sure as hell won&amp;#039;t taste good)Furthermore, according to recommendations that the World Health Organisation made in 2001, condoms with nonoxynol-9 don&amp;#039;t provide any more protection than regular lubricated condoms. Hence, unless the barrier method you choose is a diaphragm or cervical cap (which generally require spermicide to be effective), there&amp;#039;s really no reason to use N-9. It doesn&amp;#039;t protect against STIs, either. And NEVER use N-9 products for anal sex, because the tissues in the rectum (I damn near killed him, Lou), are much more fragile than the ones in the vagina, and as stated, damaged tissues increase the risk of STI transmission, including HIV. (source: Our Bodies, Ourselves online companion)FINALLY, unprotected vaginal sex at any time can put you at risk for pregnancy. Period. Or lack thereof should you get pregnant. It will also put you at risk of STIs. Safer sex or no sex, people! *sigh* I could probably spend an entire issue debunking myths and illogical ideas about sex if you really wanted me to.#6: Hey Sexlady, is it true you made out with Treestar sexpot guitarist, Louis Stamos?- Wondering in New YorkHe wishes. Unfortunately it was merely one kiss that he owed me for even going to the show in the first place (those MySpace bulletins are binding contracts, don&amp;#039;tcha know), and then I had to convince him to actually come over to my table and deliver. Can you believe the guy actually wanted ME to go over THERE? To the STAGE? After I went all the way downtown from Scarborough to see him? Honestly. In the middle of the show and everything. It wasn&amp;#039;t even long enough for me to tell if he&amp;#039;s a good kisser or not. Sexpot my ass. If he is one, he certainly didn&amp;#039;t show it there.  Treestar did put on a very good show, though. I won&amp;#039;t hold Lou&amp;#039;s stingy kisses against them.   Aaaaaaand that&amp;#039;s it for the Special Double Sexy Affair Issue #4 of the Helpdesk. I hope reading it was a pleasurable experience with a satisfying climax. Expect Issue #5 sometime towards the end of August, since exams will take over most of the month. In the meantime, submit your questions to the Helpdesk link at the right, and as they say at Scarleteen be safe, sound and sexy!Love,The Cookie Lady</description>
      <pubDate>Thu, 13 Jul 2006 21:52:35 -0500</pubDate>
      <guid>http://thesdsa.com/modules/weblog/details.php?blog_id=44</guid>
    </item>
        <item>
      <title>Wiki Down</title>
      <link>http://thesdsa.com/modules/weblog/details.php?blog_id=43</link>
      <description>Trying to resolve the minor problem.May have lost the database.Should be considering a newer version of engine.</description>
      <pubDate>Tue, 11 Jul 2006 22:42:55 -0500</pubDate>
      <guid>http://thesdsa.com/modules/weblog/details.php?blog_id=43</guid>
    </item>
      </channel>
</rss>