Nicholas Head

Filter by APML

Song Used on HTC “You” Commercials

by Nicholas Head 6. December 2009 08:25

In case you’re wondering, it’s a remix of Nina Simone – Sinnerman, found on the Verve Remixed, Vol 2 album. I picked up the album (actually the first three Verve Remixed albums) and they’re all excellent. Especially “Speak Low (Bent Remix)” by Billie Holiday found on Vol 3.

Tags: ,

advertising | music

Iron Man 2 Teaser Poster

by Nicholas Head 30. November 2009 22:58

Revealing the backside of War Machine.. looks sweet!

4918_1594708762

Tags:

movies

Apple vs. PC Needs to End

by Nicholas Head 18. November 2009 20:00

I think this comment over at Engadget says it best:

We don't hate on Macs, we hate on the stupid arguments that are put forth by the Apple faithful, and their derision of anything non-Apple.

We hate the arguments that somehow Apple gives you better quality hardware for the higher prices, when the hardware is the same as any Windows computer.

We hate the arguments that Microsoft is evil for some reason, but when Apple does the same, it is perfectly fine (e.g. activation of Windows vs. activation of an iPhone, or how Intel had unique identifiers in their chips accessible by software, but when they do the same in the iPhone - not a problem).

We hate the arguments that Microsoft is evil when 10 year old hardware is not supported (such as when Vista was released), but when Apple cuts suppoprt for 3 year old printers in Leopard, it is the user's fault for not owning the latest hardware.

We hate the arguments that problems with 3rd party hardware drivers it is the fault of Microsoft, but when Apple has problems with 3rd party hardware drivers, it is the hardware manufacturer's fault.

We hate the arguments that Apple never has any problems, but when a problem appears (such as not being able to activate a phone for hours), the user is at fault for not knowing the proper way of using a Mac, just plain stupid, or hate.

We hate the arguments when Microsoft services go down for an hour or two (such as Zune last week), it is said Microsoft provides horrible service and it is a Engadget front page mockery of Microsoft. But when iTunes goes down (http://www.tuaw.com/2009/07/07/itunes-store-and-app-store-problems/) nothing is said, and it really is not a problem.

We hate the argument that before the iPhone, the number of applications available for a platform does not make a difference, it is the quality of the software. After the iPhone is released, all that matters is the number of applications available.

We hate the argument that somehow Apple hardware will last forever, but other computers last only a year or two (this argument is used in this very article). I am typing on a 5 year old Dell laptop, how long does an iPod last?

We hate the argument that somehow Microsoft limits user choioce, when many people use non-Microsoft products. But when Apple limits choice (such as installing alternative browsers on an iPhone), it is in the user's best interest.

We hate the arguments that Microsoft keeps control over their products, but you need to jump through hoops just to develop for the iPhone.

We hate the arguments that Microsoft releases poor products that do not work and you need to wait for SP2 for it to be useful, is MobileMe working yet?

We hate the arguments that Microsoft does not deliver what was promised, Apple is just now delivering push notification - a year after it was promised.

We hate how some say everything was invented, created, designed, or innovated by Apple first, and everybody creates cheap knock-offs of Apple, when there is proof of it being done years before by other companies.

We hate the arguments that products such as Tablets, Netbooks, etc. are useless crap, but rumored products such as the Apple Tablet, or Netbook will be the savior of man.

We hate the argument that somehow opening a store, something that has existed for 1000s of years since somebody found they could trade a basket of vegetables for a chicken, is an Apple creation, and from now on no other company is permitted to open stores.

And, among the many others (but the last I will list), we hate the argument that somehow Apple is allowed to air commercials that lie about Microsoft and Apple's own products, but when Microsoft airs commercials that are true (a Windows computer is lower priced than an Apple computer), somehow Microsoft is evil and must stop now.

So no, we do not hate Apple - I have a Mac, an iPod, and iPhone. We just get sick of the pathetic fanboys who attack anybody who do not drink the kool-aid and do not give glowing reviews of anything Apple.

Tags: ,

Apple

Reason #19586 why Chase is not as good as Wamu

by Nicholas Head 18. November 2009 07:44

mint_screenshot If you use the online financial service Mint, and you also have a Chase account, you may (or may not) have noticed that for the past 5-6 days Mint cannot pull in your Chase account data.

Mint has posted information in their forums regarding the issue:

Chase was down this weekend and Checking/Savings and Chase Loan are now working again. However, we do have a problem with Chase Credit and our data provider is actively working to resolve this. Sorry for the frustration this is causing.

They say the Checking/Savings stuff should be back up, but at least for me it’s not. I have no idea what is going on, but it’s just giving me another reason to ditch Chase. First reason being my paychecks “pending” for days in my account. We’ll see what happens, but I’m guessing within the next few weeks, my wife and I will be migrating to a different bank.

Tags: ,

personal

Alice in Wonderland Poster(s)

by Nicholas Head 16. November 2009 18:15

Disney has finally released all three posters for Tim Burton’s new “Alice in Wonderland” adaptation. If you place them all side by side they make one large poster, so I’ve provided both formats below. Enjoy!

Update: Fixed the links to the full-size images. Sorry!

 

Alice_In_Wonderland_Full_Poster 

4094892817_277e4c3aee_b 4110059895_470a915cb9_b 4089669981_f0b679933b_b

Tags: ,

disney | movies

Admin Shares and Windows Vista / Windows 7

by Nicholas Head 7. September 2009 08:56

computer_frustration Have you ever tired to access the administrative (C$, D$, etc) shares on a Vista or Windows 7 machine, and even though you’re using an account that has access, it won’t let you in? Usually says, “Access Denied”. Well, this post is for you.

I run into the problem myself sometimes, forgetting that by default, if UAC (User Account Control) is enabled under Windows Vista/Windows 7, it doesn’t allow access to the admin shares. You have to add a registry key then reboot to enable them (basically making them work like they did before).

To manually add this registry key, visit the following path using REGEDIT:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System

In that folder, create a new DWORD item with a value of “1”, and name it “LocalAccountTokenFilterPolicy”. Reboot your computer and you should now be able to access administrative shares remotely.

If you’d rather just double-click on a .REG file and import it into your registry, I’ve provided that below. Hope this helps out at least one other person!

Download EnableAdminShares.zip

Tags: , ,

windows vista | windows 7 | quirk

Making jQuery UI’s Dialog Work With ASP.Net

by Nicholas Head 25. June 2009 22:06

You might have come across this problem in your travels, I know I have. Basically if you’re using jQuery UI’s Dialog and have a <form runat=”server”> inside of that dialog, your postback is not going to work. What’s going on?

jQuery UI is taking the dialog DIV content and moving it outside of the <form runat=”server”> tag. This makes your postback no longer function as expected.

Luckily we can fix this fairly easily with jQuery itself.

var dlg = $('#divMyDialog').dialog({
                    autoOpen: false,
                    modal: true,
                    width: 400,
                    resizable: false,
                    overlay: {
                        background: "black",
                        opacity: 0.5    
                    }
                });
dlg.parent().appendTo(jQuery('form:first'));

The special logic lies in the last line—using the reference to our created dialog, we get the parent container and move it back to the first <form> on the page. After that, all is well.

Tags: ,

asp.net | jQuery

Video Review: Kensington LiquidAUX Deluxe for iPhone/iPod

by Nicholas Head 19. April 2009 00:33

I forgot to point out that it comes with a little remote for your steering wheel that worked great. Enjoy my first video review.

Tags: , , , , ,

reviews | iPhone

ASP.Net Trick: Getting rid of viewstate on DropDownLists

by Nicholas Head 22. February 2009 22:11

If you’ve used ASP.Net for any amount of time, you quickly realize how much it loves to dump into the viewstate. Now, I’m not claiming I’m a saint in this area, but I have been learning as I go to recognize what operations will fill the viewstate and work to prevent them.

One trick I learned recently is to re-bind your DropDownList on every postback, inside of the DropDownList’s Init event handler. You can also pull in the postback value from the Request.Form collection and set the DropDownList’s SelectedValue to what it should be. Observe the following example:

   1: Protected Sub ddlMyDropDownList_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles ddlMyDropDownList.Init
   2:     Dim db = New MyDataContext()
   3:  
   4:     Dim q = From s In db.States _
   5:             Order By s.StateName _
   6:             Select New ListItem(s.StateName, s.StateAbbrev)
   7:  
   8:     ddlMyDropDownList.Items.AddRange(q.ToArray())
   9:  
  10:     Dim r = Request(ddlMyDropDownList.UniqueID)
  11:     If r IsNot Nothing Then ddlMyDropDownList.SelectedValue = r
  12: End Sub

Don’t forget to set “EnableViewState=False” on your DropDownList.

Tags:

asp.net | programming

Help: My XBox 360 won’t stay connected to XBox Live!

by Nicholas Head 22. February 2009 22:02
xbox_360_live

In the entire time I’ve had my XBox 360, I kept getting disconnected from the XBox Live service after 30 minutes or so, no matter what. I could be downloading or playing a multiplayer game, it didn’t matter. I thought at first that it was my wireless setup (I am using a Netgear wireless router as a “client” and going straight into the XBox 360) but it turns out I was wrong.

The XBox Live service has a “heartbeat” and if it can’t connect to specific ports after specific times, it assumes your connection is garbage and disconnects you. If you’ve got a UPNP (Universal Plug-n-Play) router, this doesn’t really affect you, since your XBox 360 tells your router to forward those ports and everyone’s happy. But I do not have UPNP compatible router; in fact I have the semi-expensive business-class Cisco PIX 501 firewall. Therefore these ports needed to be routed manually.

According to this Microsoft KB article, you need to open/forward the following ports:

TCP 80
UDP 88
UDP 3074
TCP 3074
UDP 53 TCP 53

My problem is now solved. I hope this can help someone else out there.

Tags:

xbox 360 | internet | Microsoft


Log in

Powered by BlogEngine.NET 1.5.0.7