This is a note to self on how to enable iTerm keep-alive or anti-idle option.
- Open iTerm. Go to Bookmarks → Manage Profiles… .
- In Profiles window, browse to Terminal Profiles and expand the menu by clicking the triangle. Choose and click on Default.
- Tick the “When idle, sends ASCII code” and set its value to 20 (ASCII for space).
- Exit the Profiles window.
I’ve been listening to Black Sabbath’s “Iron Man” song over and over again.
I got few self-hosted WordPress blog registered under my WordPress.com account in order to use WordPress.com Stats. Unfortunately, there are blogs that I accidentally added to this account and for that reason I would like to remove these blogs. The problem is how?
Deactivating WordPress.com Stats plugins from the blogs doesn’t help. Even with clearing the API key brings no luck. I guess doing it manually on your own won’t work. I’m trying to figure this one out without sending an email to the folks over at WordPress.com support.
Any ideas?
It’s almost been two week since I use Maxis Wireless Broadband using the supplied Huawei E220 USB modem. Until today I still not able to access iTunes Store. It seems fine if I’m connecting using Maxis 3G from my phone, but not if I’m connecting using Maxis Wireless Broadband (Maxis High-Speed 3G broadband).
My wild guess is: iTunes Store blocked because Maxis had their own Music Unlimited store. Who knows?
When I wake my iPhone this morning, I was greeted by a tiny green dot right in the middle of my iPhone screen. At first I thought it was a dead pixel but my iPhone was actually experiencing a stuck pixel.
After failing to fix this problem using Knox iPhone Stuck Pixel Fix app for about 30 minutes, I was about to start panicking. But then I had this silly idea after looking how that app work. So this is what I did to fix my iPhone stuck pixel problem:
- Launch NES (assume that you already jailbreak your iPhone and install iPhone NES emulator).
- Choose and Start New Game. In my case I choose to play Mario Bros. Well, it doesn’t matter what game you play.
- Play the game for few minutes or second and hopefully the stuck pixel starts to disappear.
If you already play a game using iPhone NES emulator before, you should probably know why. It work for me, maybe it will work for you. But do try the iPhone Stuck Pixel app first.
WordPress Comment Form Skip Link
Skip link (or Skip Navigation link) for comment form is really important when your entry has a lot of comments. But there’s no point in having one when your comment form is just few pixel away after the entry.
This is how you can show the skip link if the comment reach x number of comments. Example below will make the skip link appear if 1) comment status is open 2) comment count is more and equal to 4.
<?php if ($comments) : ?>(or anywhere you find suitable) paste these lines:<?php if ( ('open' == $post->comment_status) && ( 4 <= $post->comment_count) ) : ?> <a href="#respond">Skip to comment form</a> <?php endif; ?>Example:
<h3 id="comments"><?php comments_number('No Responses', 'One Response', '% Responses' );?> to “<?php the_title(); ?>”</h3> <?php if ( ('open' == $post->comment_status) && ( 4 <= $post->comment_count) ) : ?> <a href="#respond">Skip to comment form</a> <?php endif; ?>Don’t forget to style the codes to match your layout.
respondis added or assigned. For example:Preferably right before the comment form.
Using named anchor (
<a name="respond" id="respond"><a/>) is outdated but still possible.