User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 160
  6. 161
  7. 162
  8. 163
  9. 164
  10. 165
  11. ...
  12. 638
  13. 639
  14. 640
  15. 641

Posts by gadzooks

  1. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Error 420: out of weed.
  2. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    It depends entirely on the particular stimuli you're trying to familiarise yourself with.

    There are also two fundamentally different kinds:

    1. Gradual exposure, where you just take simple baby steps until you make your way out to the deep end.

    2. Direct immersion exposure, where you just dive straight into the deep end.

    Both have shown effective results in different people and situations.

    Phobias are overcome with pretty good success rates using exposure therapies.
  3. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by gadzooks Might as well correct the retraction as well…

    That should probably be contraction.

    > tfw when I'm commenting on someone's English and I fail to use it perfectly myself.
  4. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by CandyRein Why, because she’s not typing in Kings English on Niggas in Space ?

    I'm just fucking with her. I'm sure she knows.

    But, if typo frequency were a contest, she'd win.

    Also, there's a difference between typing informally and misspelling the majority of words one uses.
  5. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by DontTellEm Pretty sure I take my daughter to school every morning.

    You should join in on one or two of her English classes.

    It couldn't hurt.
  6. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by aldra don't they already do that with nitro racing tanks

    That might be it.

    Wait, is that the same chemical?

    I guess it might be, but they don't produce it as "pharmacy grade."
  7. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Wait a sec...

    It's scheduled isn't it?
  8. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    I have a store literally a block away that sells huge (gas storage) tanks.

    A neighbor once said that he knew a dude that bought one filled with nitrous directly from there.

    I'm so skeptical, though, that I haven't even considered inquiring further about it.

    I have, however, thought of buying one of their tanks and chemically synthesizing N2O myself. It's a pretty simply molecule. It can't be that hard, can it?
  9. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    "Don't tell him"...



    Might as well correct the retraction as well...

    "Do not tell him."

    Or even better...

    "Refrain from informing others."

    From now on, she's RefrainFromInformingOthers.
  10. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    I would feel the same way without my precious devil's nectar.

    The devil's lettuce seems to have the same degree of importance in many people's lives.

    What's a nigga to do?

    I have no idea.

    Wait, why did you quit the lettuce?

    Most stoners see literally zero downsides to it.
  11. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by WellHung enhancement

    Not even flltered.

    Everytime I see that word, I assume it was flltered.
  12. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Y'all motherfuckers need Jesus.
  13. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by Ghost Has anyone seen that lost seinfeld episode? Someone dug it up from archives and put it on youtube a few years ago.


    I knew before I clicked it it was the "you want me to apologize to the monkey???" one.

    Lol.
  14. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Honestly, I like the show.

    It's not like morally flawed main characters in a sitcom is some kind of rarity.

    In fact, I'm pretty sure it's a fairly common staple in comedy-oriented TV shows.

    Also, it's not like they're trying to disguise it as wholesome behavior.

    The series finale was clearly explicitly meant to show how nihilistic and apathetic they are.
  15. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    ON PARSING:

    I'll post some actual code (python) later, but for now, I'll kinda walk through the general process.

    First, what is parsing?

    To parse something has multiple meanings, depending on context, but it ultimately always comes down to one simple thing: Taking a sequence of arbitrary data, and extracting meaningful data from it.

    HTML is an excellent example, especially because it follows a rather simple pattern (especially compared to parsing full Turing-complete programming languages).

    HTML is actually a subtype of XML (eXtensible Markup Language).

    XML uses "<" and ">" symbols to indicate significant "stopping points" (for lack of a better term).

    For example (in HTML in particular), a paragraph is denoted as follows:


    <p>Hello world. I am a paragraph. I consist of multiple sentences of text.</p>


    An HTML parser extracts everything contained between the "starting p" and the "ending p."

    Often, though, each element/tag will have attributes:


    <p class="post">Hello world. I am a paragraph. I consist of multiple sentences of text.</p>
    <p>Hello world. I am a paragraph. I consist of multiple sentences of text. BUT I AM NOT A POST.</p>
    <p class="post">Hello world. I am a paragraph. I consist of multiple sentences of text.</p>


    So, using an XML/HTML parser, and assuming that one wants to extract all the paragraphs that fall into the class of "post", one would do the following (represented as pseudocode):


    all_paragraphs = find_all_elements_wrapped_between_p(source_text)

    all_posts = find_all_elements_with_specified_class("post")


    The placeholder of "all_posts" now holds all of the items labelled as posts.

    Okay, I have to take a break here because trying to explain it using as little technical terminology as possible is actually quite a cognitive exercise (but useful, even for me, because, as Einstein once said: "If you can't explain it simply, you don't understand it well enough.", or something like that at least).
  16. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by aldra lol, nude niggers

    I know, right?

    That's exactly why I chose finny.

    I'm planning to do a bunch more once ALL post data is parsed and cleaned/processed...

    But, unless someone specifically requests one, I generally pick them based on how entertaining the cloud will be.

    It's actually generally the most obnoxious posters that make for the best result.
  17. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    An ELI5 (using as little technical terminology as possible):

    So a word cloud basically involves:
    1. Take a large collection of words (forget for a second that they actually compose meaningful sentences... think of, for example, an entire NiS member's post history, as a big bag of random english words).
    2. Literally just count how often each word in that bag of words comes up. The amount of data (i.e. number of words) can be quite large, but computers are able to perform such calculations pretty quickly.
    3. Filter based on certain conditions.
    4. Display words as an image.

    For example (oversimplified, but informative):

    LIST_OF_RANDOM_WORDS = [
    hi, what, hello, homie, fuck, really, why, i, dunno, hi, again, fuck, again, fuck, fuck, fuck
    ]

    Let's say we're looking for the top 3 most used words...

    First, the program counts the occurrence of each word (it's a prerequisite for filtering out the top X number of words requested):
    hi: 2.
    what: 1.
    hello: 1.
    homie: 1.
    fuck: 5.
    really: 1.
    why: 1.
    i: 1.
    dunno: 1.
    again: 2.

    The program then sorts this list by the number of each occurrence:
    fuck: 5.
    again: 2.
    hi: 2.
    what: 1.
    hello: 1.
    homie: 1.
    really: 1.
    why: 1.
    i: 1.
    dunno: 1.

    It then filters out all but the top three:
    fuck: 5.
    again: 2.
    hi: 2.

    And then you have:
    FUCK, AGAIN, HI.

    The word cloud generator assigns a font size relative to each word's number of occurrences:
    FUCK (font-size = 12 * 5).
    AGAIN (font-size = 12 * 2).
    HI (font-size = 12 * 2).

    Note that the number 12 is simply a constant value used to compute a variable font size.
  18. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by gadzooks It could very, VERY, easily be abused, if anyone with ill intent towards this site were to adapt it to nefarious purposes (*cough* infinityshock *cough*).

    Actually, I was thinking mainly of my "NiS bot" code here...

    Archiving each page as a plain old HTML file doesn't involve establishing sessions or making requests (other than "GET"), so I could probably include that.

    The problem is that, like I said, my code is dirty and disorganized as is... I literally have files called things like "nisSORT.py" that are just filled with completely unrelated NiS stuff.
  19. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by WellHung Gadzooks I didn't understand any of your computer jargon .. in layman's terms what did you achieve?

    Good question.

    I'm a huge fan of the ELI5 subreddit for explanations of things outside my own realm(s) of expertise, so I will try to come up with something similar here.

    Just gimme a sec to think it through.
  20. gadzooks Dark Matter [keratinize my mild-tasting blossoming]
    Originally posted by Sophie That's pretty dope Gadzooks. Also, post your source.

    I will do this at some point... Maybe as a GitHub gist, or even a full repository...

    The only part I'm kinda hesitant about posting is the code I came up with for crawling the site.

    It could very, VERY, easily be abused, if anyone with ill intent towards this site were to adapt it to nefarious purposes (*cough* infinityshock *cough*).

    But the code I use to analyze I'll post in this thread after I've cleaned it up just a little bit (I write really dirty code the first time through, and am self-conscious about others seeing it in that state, lol).
  1. 1
  2. 2
  3. 3
  4. ...
  5. 160
  6. 161
  7. 162
  8. 163
  9. 164
  10. 165
  11. ...
  12. 638
  13. 639
  14. 640
  15. 641
Jump to Top