Some Myths about Introverts

Saw this on Google+ and had to share my insights on it.

Myth #1 – Introverts don’t like to talk.
This is not true. Introverts just don’t talk unless they have something to say. They hate small talk. Get an introvert talking about something they are interested in, and they won’t shut up for days.

[I am very much like that. Very true. I also have difficulty listening to people who take seemingly forever just to get to the point of their story. Spit it out already!]

Myth #2 – Introverts are shy.
Shyness has nothing to do with being an Introvert. Introverts are not necessarily afraid of people. What they need is a reason to interact. They don’t interact for the sake of interacting. If you want to talk to an Introvert, just start talking. Don’t worry about being polite.

[I think shyness does play a small part in it, but mostly it's mainly an excuse to stand back and investigate the situation.]

Myth #3 – Introverts are rude.
Introverts often don’t see a reason for beating around the bush with social pleasantries. They want everyone to just be real and honest. Unfortunately, this is not acceptable in most settings, so Introverts can feel a lot of pressure to fit in, which they find exhausting.

[Most people don't realize how difficult it is to resist the urge to speak our mind at all times. It can quickly make a social interaction intense.]

Myth #4 – Introverts don’t like people.
On the contrary, Introverts intensely value the few friends they have. They can count their close friends on one hand. If you are lucky enough for an introvert to consider you a friend, you probably have a loyal ally for life. Once you have earned their respect as being a person of substance, you’re in.

[Couldn't have said it better myself. I'm big with the social media. I have a G+ and a Facebook profile, plus a LinkedIn and probably much more than I can remember. I tend to "trim the fat" and remove those people who I have no desire or need to interact with, so that only those who have earned and deserve my attention receive it. It's also a good reason why I keep those profiles mostly private.]

Myth #5 – Introverts don’t like to go out in public.
Nonsense. Introverts just don’t like to go out in public FOR AS LONG. They also like to avoid the complications that are involved in public activities. They take in data and experiences very quickly, and as a result, don’t need to be there for long to “get it.” They’re ready to go home, recharge, and process it all. In fact, recharging is absolutely crucial for Introverts.

[Also very true. I prefer being at home, or being at a friends house. Being out in public tends to just slowly eat away at my patience. If I have to endure big crowds, I quickly become intensely focused on getting out of them, and getting to a 'safe' place.]

Myth #6 – Introverts always want to be alone.
Introverts are perfectly comfortable with their own thoughts. They think a lot. They daydream. They like to have problems to work on, puzzles to solve. But they can also get incredibly lonely if they don’t have anyone to share their discoveries with. They crave an authentic and sincere connection with ONE PERSON at a time.

[Agreed. It's actually quite difficult not to daydream whilst others are talking to me. Mental gymnastics. Not being able to share my thoughts and 'discoveries' with someone who gets me, who understands why I think the way I do, tends to make me slightly more nuts crazy insane. It's definitely a problem that goes down straight to the core of an introvert's personality.]

Myth #7 – Introverts are weird.
Introverts are often individualists. They don’t follow the crowd. They’d prefer to be valued for their novel ways of living. They think for themselves and because of that, they often challenge the norm. They don’t make most decisions based on what is popular or trendy.

[I think, therefore I am. And I definitely think I'm strange. But since I tend to surround myself with people that understand me, I guess I become the relative norm!]

Myth #8 – Introverts are aloof nerds.
Introverts are people who primarily look inward, paying close attention to their thoughts and emotions. It’s not that they are incapable of paying attention to what is going on around them, it’s just that their inner world is much more stimulating and rewarding to them.

[True. Most of the time the stories I create in my own head are much more fantastic than those of others. And unfortunately, when I find a story that captivates me, it's a difficult job to pay attention to other, less interesting conversations.]

Myth #9 – Introverts don’t know how to relax and have fun.
Introverts typically relax at home or in nature, not in busy public places. Introverts are not thrill seekers and adrenaline junkies. If there is too much talking and noise going on, they shut down. Their brains are too sensitive to the neurotransmitter called Dopamine. Introverts and Extroverts have different dominant neuro-pathways. Just look it up.

[Reading the Wikipedia entry on that particular topic leads me to believe that this response is backwards; that extroverts are more sensitive to dopamine levels, which is they they seek out stimulation instead of being content. Otherwise, yes, we prefer to stay at home to relax.]

Myth #10 – Introverts can fix themselves and become Extroverts.
A world without Introverts would be a world with few scientists, musicians, artists, poets, filmmakers, doctors, mathematicians, writers, and philosophers. That being said, there are still plenty of techniques an Extrovert can learn in order to interact with Introverts. (Yes, I reversed these two terms on purpose to show you how biased our society is.) Introverts cannot “fix themselves” and deserve respect for their natural temperament and contributions to the human race. In fact, one study (Silverman, 1986) showed that the percentage of Introverts increases with IQ.

[I don't know why other people would see introversion as a bad thing. Introverts tend to be smarter and better adjusted to the world around them, especially since we choose with such care where and with whom we spend our time with.]

Folders, files and poorly described exceptions

You know, sometimes exceptions returned in C# are so irritatingly vague or indirect that it takes longer than I’d like to solve the problem.

For example, I’ve been attempting to loop through a large set of directories on a network share, for a list of users in Active Directory. I have both an File/Folder indexing library, and an Active Directory library to help speed up development.

foreach (User Account in Accounts) {
    if (!Directory.Exists(Account.HomeDirectory)) continue;

    List<DirectoryInfo> folders = new List<DirectoryInfo>();
    List<FileInfo> files = new List<FileInfo>();

    Folders.Index(
        new DirectoryInfo(Account.HomeDirectory),
        ref folders,
        ref files);

    files.Reverse();
    folders.Reverse();

    foreach (FileInfo fi in files) {
        if (fi.Exists) fi.Delete();
    }

    foreach (DirectoryInfo di in folders) {
        if (di.Exists) di.Delete(true);
    }
}

Irritatingly, it kept returning a “Access is denied” error on the first folder that it attempted to delete. I, of course, have had not nearly enough sleep to deal with this sort of obscure issue, but I plowed on. I ran the code under a domain admin account; that didn’t fix it. I added the existence checks and a bit of debugging output to find where it was failing exactly.

Unable to force the issue, I checked the folder that it was failing on, and the folder was “root\My Videos”. Properties showed “Read-only for files in this folder”.

*facepalm*

Here’s the fixed code. Essentially it sets the FileAttributes of the files and folders it attempts to delete to FileAttributes.Normal, thereby bypassing the “Access is Denied” error (which IMHO should be a “Unable to delete – folder is read-only”!) and allowing the deletion.

foreach (User Account in Accounts) {
    if (!Directory.Exists(Account.HomeDirectory)) continue;

    List<DirectoryInfo> folders = new List<DirectoryInfo>();
    List<FileInfo> files = new List<FileInfo>();

    Folders.Index(
        new DirectoryInfo(Account.HomeDirectory),
        ref folders,
        ref files);

    files.Reverse();
    folders.Reverse();

    foreach (FileInfo fi in files) {
        fi.Attributes = FileAttributes.Normal;
        if (fi.Exists) fi.Delete();
    }

    foreach (DirectoryInfo di in folders) {
        di.Attributes = FileAttributes.Normal;
        if (di.Exists) di.Delete(true);
    }
}

I’m guessing that if I still have issues, I’ll probably have to take ownership of the files/folders to delete them. Not a great start to the day.

Update 1:

I found what looks to be a “Privilege Enabling” library. This is definitely something I shall be adding to my toolkit.

public static void TakeOwnership(DirectoryInfo di) {
    Process p = Process.GetCurrentProcess();

    using (new ProcessPrivileges.PrivilegeEnabler(p, Privilege.TakeOwnership)) {
        DirectorySecurity ds = di.GetAccessControl();
        ds.SetOwner(WindowsIdentity.GetCurrent().User);
        di.SetAccessControl(ds);
    }
}

Update 2:

Wow. After trying to take ownership as above, I still had difficulties with certain “RECYCLER” files/folders, and taking ownership apparently wasn’t enough. Here’s the full-on, brute-force, take-control method:

public static void TakeOwnership(ref DirectoryInfo di) {
    Process p = Process.GetCurrentProcess();
    SecurityIdentifier si = WindowsIdentity.GetCurrent().User;

    // Raise the process' access privileges.
    using (new ProcessPrivileges.PrivilegeEnabler(p, Privilege.TakeOwnership, Privilege.Security)) {
        // Get access rules.
        DirectorySecurity ds = di.GetAccessControl();

        // Take "full control" of everything.        
        FileSystemAccessRule fsaRule = new FileSystemAccessRule(
            si,
            FileSystemRights.Delete | FileSystemRights.Modify,
            InheritanceFlags.ContainerInherit | InheritanceFlags.ObjectInherit,
            PropagationFlags.None,
            AccessControlType.Allow);

        // Remove previous access rules.
        ds.PurgeAccessRules(si);

        // Add the new access rules.
        ds.AddAccessRule(fsaRule);

        // Take ownership
        ds.SetOwner(si);

        // Set the access rules to the object.
        di.SetAccessControl(ds);
    }
}

Revisionist History

I’ve been going through all the old posts and attempting to update them to match both the category list and the styles. It’ll take a bit of time, but until then, here’s my Harry Potter and the Deathly Hallows Part 2 review. Yes, there will be tonnes of spoilers. You’ve been warned. Also, why don’t you know the story yet, anyway? You should already know how this movie ends!

I am both underwhelmed and overwhelmed. Does that just make me whelmed? Is that even a thing? Do the horrible changes they make verses the beautifully told stories cancel each other out?

I am overwhelmed simply because it is the last movie and we’re pretty much leaving this world behind now. The CG, practical and special effects were all appropriately awesome. The acting has gotten better and better over the years.You really get a good feel of how far they’ve all come on their journey this last decade.

However, I am underwhelmed by all of the changes they made. Much of what made the story so great in the book was gutted, and while this can’t be avoided when the book is that long, some of their edits made absolutely no sense.

For example, the scene in which Harry and Voldemort fight for the last time is completely and utterly pointless and anti-climatic. In the book, this scene takes place in front of the whole (or what’s left of the) school. The real feeling of accomplishment and the weight of the victory can be felt. In the movie, the character split up so much that nothing important happens between more than three people. Harry Potter and Voldy fight by themselves in a stretched out mano-a-snako wand-lightning battle and flying around randomly in smoke. Neville doesn’t get to chop off Nagini‘s head until the dynamic duo Hermione Granger and Ron Weasley battle it on some stairs and get to cower appropriately. The “NOT MY DAUGHTER YOU BITCH” scene in the book becomes an almost whispered line (relative to all the other sounds happening around them) and the emotion of the fight between Molly Weasley and Bellatrix fails completely. There were so many times that I thought the audience in the theatre was going to cheer, but then it seemed like everyone was embarrassed because the movie didn’t really hit the emotional beats it deserved.

The changes they made baffles me, because they would have been so much better literally just cribbed straight from the books. Why the script writer (and/or the actress) changed the feel of the Molly/Bellatrix fight astounds me. Why they felt Harry needed to fight Voldy alone, where no one could see and/or verify his victory over the greatest evil wizard ever is completely bonkers! The extra scenes add literally nothing but extra time wasted to the story, and it degrades the source material.

Other baffling changes arrive in the story of Dumbledore‘s family. I get why they didn’t have time, but why would you bring it up at all if you weren’t going to explain it even a little?. A name is dropped, an accusation flung, but we have no idea why these things are there. And the elves, obviously minus Dobby, show up nowhere in the movie, where they are a major part of the book’s big fight. In the opposite of the last, it would have made sense to add at least a passing reference to them, considering that they made so much a point of them in several movies, because otherwise it is as if Dobby’s death and Treacher’s change from villian to servant to savior completely worthless now.

Now, it’s not as if this is a complete waste of a movie – on the contrary, in every other respect it excelled my expectations. Maggie Smith‘s acting is supurb, knowing that the whole time she was battling cancer during production, and especially the line where she says, in a very girl-ish way, “I’ve always wanted to say that spell!”. Alan Rickman‘s Snape is probably the highlight of the whole movie, as you see every single bit of him shattered in the pensive sequence. Also, his death scene was respectably brutal and hidden tactfully behind frosted glass, but the full weight of it is completely felt. The epilogue scene, while short and not truly important is any way, was wonderfully done, especially the almost lack of makeup and body modifications needed to make it seem legitimate. (I only wish they’d mentioned “Prof. Longbottom”, even if in passing) I guess it helps that the actors themselves have grown enough for it.

If I had to rate the movie, I’d say definitely a 3 out of 5, it was both awesome and infuriating in it’s execution. I only wish they’d consulted the book a little more for ideas instead of padding or trimming things out improperly.