<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>blog.biernacki.ca</title> <atom:link href="http://blog.biernacki.ca/feed/" rel="self" type="application/rss+xml" /><link>http://blog.biernacki.ca</link> <description>Jakub&#039;s rants and raves on Life</description> <lastBuildDate>Tue, 10 Jan 2012 21:39:14 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>CodeIgniter URI routing issue with controller folders</title><link>http://blog.biernacki.ca/2011/12/codeigniter-uri-routing-issue-with-controller-folders/</link> <comments>http://blog.biernacki.ca/2011/12/codeigniter-uri-routing-issue-with-controller-folders/#comments</comments> <pubDate>Thu, 08 Dec 2011 20:38:05 +0000</pubDate> <dc:creator>Jakub</dc:creator> <category><![CDATA[How To]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[codeigniter]]></category> <category><![CDATA[routes]]></category> <category><![CDATA[routing]]></category> <guid
isPermaLink="false">http://blog.biernacki.ca/?p=590</guid> <description><![CDATA[I&#8217;ve seen a lot of people requesting help on figuring out routing issues on CodeIgniter (2.1.0 as of this entry). A few of them have problems creating a route to a controller folder structure (/application/controllers/folder/controller), but really it is the same as creating a custom route to a non &#8216;folder&#8217;ed&#8217; controller, you just have to [...]]]></description> <content:encoded><![CDATA[<p>I&#8217;ve seen a lot of people requesting help on figuring out routing issues on CodeIgniter (2.1.0 as of this entry).</p><p>A few of them have problems creating a route to a controller folder structure <em>(/application/controllers/folder/controller)</em>, but really it is the same as creating a custom route to a non &#8216;folder&#8217;ed&#8217; controller, you just have to define the variable in the routing path.</p><p>Here is our scenario, I have a URL of <strong>http://example.com/account/manage/4123245/jakub</strong></p><p>So if we analyze our URI, we have:<br
/> <strong>account</strong> &#8211; folder<br
/> <strong>manage</strong> &#8211; controller <em>(with only an index class)</em><br
/> <strong>4123245</strong> &#8211; a numeric value <em>(input)</em><br
/> <strong>jakub</strong> &#8211; a string slug value <em>(just extra input)</em></p><p>From that we need to make sure that codeigniter understands our URI (and it will not by default!).<br
/> so we edit our <strong>/application/config/routes.php</strong></p><pre class="brush: php; light: true; title: ; notranslate">
$route['account/manage/(:num)/(:any)'] 	= &quot;account/manage/index/$1/$2&quot;;
</pre><p>Index is the key here, as we need to route to the class (which is the index), the values $1, $2 are just input (1st, 2nd respectively) to show it goes to the index class.</p><p>There you have it, no more route issues with folders in your controller structure.</p><p>Happy Code Igniting!</p> ]]></content:encoded> <wfw:commentRss>http://blog.biernacki.ca/2011/12/codeigniter-uri-routing-issue-with-controller-folders/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Enabling CSRF Protection in CodeIgniter for AJAX calls</title><link>http://blog.biernacki.ca/2011/12/enabling-csrf-protection-in-codeigniter-for-ajax-calls/</link> <comments>http://blog.biernacki.ca/2011/12/enabling-csrf-protection-in-codeigniter-for-ajax-calls/#comments</comments> <pubDate>Wed, 07 Dec 2011 04:36:05 +0000</pubDate> <dc:creator>Jakub</dc:creator> <category><![CDATA[How To]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[AJAX]]></category> <category><![CDATA[CI]]></category> <category><![CDATA[code]]></category> <category><![CDATA[codeigniter]]></category> <category><![CDATA[CSRF]]></category> <category><![CDATA[protection]]></category> <category><![CDATA[security]]></category> <guid
isPermaLink="false">http://blog.biernacki.ca/?p=579</guid> <description><![CDATA[If you use CodeIgniter (CI) like me, you&#8217;ve probably read/heard about the CSRF protection that comes built into this great framework.  I typically kept ajax functionality (form submissions in this case) to a minimum as I wanted to focus more on development and finishing a project than prettying it up with &#8216;Web 2.0&#8242; stuff. Well [...]]]></description> <content:encoded><![CDATA[<p>If you use CodeIgniter (CI) like me, you&#8217;ve probably read/heard about the CSRF protection that comes built into this great framework.  I typically kept ajax functionality (form submissions in this case) to a minimum as I wanted to focus more on development and finishing a project than prettying it up with &#8216;Web 2.0&#8242; stuff.</p><p>Well in a couple of my last projects I&#8217;ve ran smack into CSRF protection and how it impacts AJAX (as well as many other things like Paypal payment gateway responses, etc).</p><p>If you found this page when searching for Codeigniter CSRF Ajax, then you&#8217;re in luck, as here is the easiest way to add CSRF protection to your ajax calls:</p><pre class="brush: php; light: true; title: ; notranslate">
$.ajax({
	type: 'POST',
	url: '/action/fetch_more_blog_posts',
	data: {
		type: 'news', limit: limit, offset: offset,
		&lt;?php echo $this-&gt;security-&gt;get_csrf_token_name(); ?&gt;: '&lt;?php echo $this-&gt;security-&gt;get_csrf_hash(); ?&gt;' },
	success: function(data) {
		$(data).appendTo('#more-entries');
		$('#older-posts').slideDown();
		offset += limit;
	}
});
</pre><p>The magic really here is the following entry in the data I am sending back to my controller:</p><pre class="brush: php; light: true; title: ; notranslate">&lt;?php echo $this-&gt;security-&gt;get_csrf_token_name(); ?&gt;: '&lt;?php echo $this-&gt;security-&gt;get_csrf_hash(); ?&gt;'</pre><p>The `get_csrf_token_name()` gets you your token name from the security class (first set in your config), and the `get_csrf_hash();` simply outputs the secure hash from the security class. Simple enough.</p><p>If you have timeout issues (say your ajax page sits too long, you may increase the token a bit, test for best fit).</p> ]]></content:encoded> <wfw:commentRss>http://blog.biernacki.ca/2011/12/enabling-csrf-protection-in-codeigniter-for-ajax-calls/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Youtube being throttled on AT&amp;T 6Mbit profiles? Seems like it to me&#8230;</title><link>http://blog.biernacki.ca/2011/12/youtube-being-throttled-on-att-6mbit-profiles-seems-like-it-to-me/</link> <comments>http://blog.biernacki.ca/2011/12/youtube-being-throttled-on-att-6mbit-profiles-seems-like-it-to-me/#comments</comments> <pubDate>Mon, 05 Dec 2011 01:22:22 +0000</pubDate> <dc:creator>Jakub</dc:creator> <category><![CDATA[In the News]]></category> <category><![CDATA[Thoughts & Rants]]></category> <category><![CDATA[adsl]]></category> <category><![CDATA[att]]></category> <category><![CDATA[dsl]]></category> <category><![CDATA[slow speeds]]></category> <category><![CDATA[slow youtube]]></category> <category><![CDATA[throttling]]></category> <category><![CDATA[traffic shaping]]></category> <category><![CDATA[youtube]]></category> <guid
isPermaLink="false">http://blog.biernacki.ca/?p=573</guid> <description><![CDATA[I have been conistantly having buffering issues with Youtube using my standard home ADSL connection (6Mbit from ATT &#8211; ADSL). Not a single video running 480p or higher will pre-load without me getting a buffering icon in the center of the screen. I have a &#8216;Network meter&#8217; widget on my Windows 7 desktop, (for giggles) [...]]]></description> <content:encoded><![CDATA[<p>I have been conistantly having buffering issues with Youtube using my standard home ADSL connection (6Mbit from ATT &#8211; ADSL).</p><p>Not a single video running 480p or higher will pre-load without me getting a buffering icon in the center of the screen. I have a &#8216;Network meter&#8217; widget on my Windows 7 desktop, (for giggles) and I watch the traffic sputter up and down, I am able to right click on a youtube video and view the information, and see that transfer speeds are constantly bouncing 0 -&gt; 2500Mbits, up and down, up and down.. sputter sputter sputter&#8230;</p><p>Ok so right about now you&#8217;re thinking, you didn&#8217;t configure your modem, your profile isn&#8217;t @ 6Mbit, or any other factors that would discount my idea that ATT is throttling Youtube (probly to push a 6Mbit user to U-Verse is my idea &#8212; 6Mbit is listed as unsatisfactory for `HD` video&#8230; ha!).</p><h2>Here is what I discovered</h2><p>I setup a proxy server on my 100Mbit dedicated server (caveat here is it is in a professional hosting center, in New Jersey). I setup my proxy connection in firefox to use my server. The beauty here is, that I saturate my 6Mbit pipe right away! I can view a 1080p video as soon as the page loads, I get no delay, I have YET to run into a buffer pause. I have good non throttled (guaranteed) bandwidth allocation at my hosting facility, so I&#8217;m just thinking of routing all my house traffic over VPN to my server.</p><p>I want to try this as I am really suspicious that I am having media throttled by ATT.</p><p>Has anyone else done these types of tests? What were your outcomes? I am very curious to know, as my experience is NIGHT and DAY!</p><p>I max out my youtube experience when I view via my proxy, but it is barely watchable without my proxy (traffic shaping from ATT?).</p><p>I will most likely make a video of the comparison if people are interested, I just wasn&#8217;t sure if digging more into this is worth my time.</p><p>Thanks for reading, curious on your feedback.</p><blockquote><p>I posted this also on dslreports.com:<br
/> <a
href="http://www.dslreports.com/forum/r26619828-Speed-Problem-Youtube-being-throttled-on-ATT-6Mbit-profiles-">http://www.dslreports.com/forum/r26619828-Speed-Problem-Youtube-being-throttled-on-ATT-6Mbit-profiles-</a></p></blockquote> ]]></content:encoded> <wfw:commentRss>http://blog.biernacki.ca/2011/12/youtube-being-throttled-on-att-6mbit-profiles-seems-like-it-to-me/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>No such thing as a &#8220;bandwidth&#8221; hog, finally proof!</title><link>http://blog.biernacki.ca/2011/12/no-such-thing-as-a-bandwidth-hog-finally-proof/</link> <comments>http://blog.biernacki.ca/2011/12/no-such-thing-as-a-bandwidth-hog-finally-proof/#comments</comments> <pubDate>Mon, 05 Dec 2011 00:20:00 +0000</pubDate> <dc:creator>Jakub</dc:creator> <category><![CDATA[In the News]]></category> <category><![CDATA[Thoughts & Rants]]></category> <category><![CDATA[bandwidth]]></category> <category><![CDATA[isp]]></category> <category><![CDATA[net neutrality]]></category> <guid
isPermaLink="false">http://blog.biernacki.ca/?p=571</guid> <description><![CDATA[Since the advent of broadband speed internet that was available to the consumer, we&#8217;ve all heard of the term &#8216;bandwidth hog&#8217;. The term always was used by your ISP to describe &#8216;evil&#8217; consumers that &#8216;hogged&#8217; wayyyy too much bandwidth for themselves, and thereby choking or reducing the speeds of everyone around them. I was always [...]]]></description> <content:encoded><![CDATA[<p>Since the advent of broadband speed internet that was available to the consumer, we&#8217;ve all heard of the term &#8216;bandwidth hog&#8217;. The term always was used by your ISP to describe &#8216;evil&#8217; consumers that &#8216;hogged&#8217; wayyyy too much bandwidth for themselves, and thereby choking or reducing the speeds of everyone around them.</p><p>I was always overly anal with these accusations (being an IT person and having some understanding of the underlying infrastructure), I would point out to friends and anyone that brought up the issue that in fact is was just an advertising / business tactic, that the business that supplied ADSL would say, Cable was slow due to &#8216;hogs&#8217;. While Cable would dispute the ADSL company by saying it wasn&#8217;t true, and that in fact the hogs were just as bad on the ADSL lines (which they attributed to &#8216;old telephone wires&#8217; not having the support).</p><p>Anyway, jump forward many years and finally someone has written a great article about this &#8216;bandwidth hog&#8217; myth:</p><blockquote><p>You might recall that back in 2009, we mentioned a piece claiming that the &#8220;bandwidth hog,&#8221; a term used ceaselessly by industry executives to justify rate hikes, net neutrality infractions, and pretty much everything else &#8212; was a myth. The piece was penned by Yankee analyst Benoit Felten and Herman Wagter, who knows a little something about consumption &#8212; as he&#8217;s the man largely responsible for Amsterdam&#8217;s FTTH efforts. The problem wasn&#8217;t bandwidth hogs, argued Wagter, the problem was poorly designed networks built by people more interested in cutting corners than offering quality product.</p></blockquote><p><a
title="http://www.dslreports.com/shownews/The-Bandwidth-Hog-is-a-Myth-117230" href="http://www.dslreports.com/shownews/The-Bandwidth-Hog-is-a-Myth-117230" target="_blank">http://www.dslreports.com/shownews/The-Bandwidth-Hog-is-a-Myth-117230</a></p><p>Enjoy, and leave a comment how you&#8217;ve encountered the bandwidth hog in your internet usage. Have you been hit with rate hikes due to &#8216;bandwidth hogs&#8217;?</p> ]]></content:encoded> <wfw:commentRss>http://blog.biernacki.ca/2011/12/no-such-thing-as-a-bandwidth-hog-finally-proof/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>VW Jetta MkIV Automatic lock issue</title><link>http://blog.biernacki.ca/2011/11/vw-jetta-mkiv-automatic-lock-issue/</link> <comments>http://blog.biernacki.ca/2011/11/vw-jetta-mkiv-automatic-lock-issue/#comments</comments> <pubDate>Sun, 27 Nov 2011 15:41:03 +0000</pubDate> <dc:creator>Jakub</dc:creator> <category><![CDATA[How To]]></category> <category><![CDATA[1.8T]]></category> <category><![CDATA[2003 jetta]]></category> <category><![CDATA[auto]]></category> <category><![CDATA[car dongle issue]]></category> <category><![CDATA[electrical problem]]></category> <category><![CDATA[jump start car]]></category> <category><![CDATA[mkiv]]></category> <category><![CDATA[volkswagen jetta]]></category> <guid
isPermaLink="false">http://blog.biernacki.ca/?p=552</guid> <description><![CDATA[If you are a Volkswagen Jetta owner like me, you might eventually be faced with having to jump start your car. In my case it happened after I left my lights on at work (for some reason, the 2003 Jetta does NOT beep when the lights are on, so it is very easy to forget [...]]]></description> <content:encoded><![CDATA[<p><img
class="alignright size-full wp-image-563" style="border: 1px solid #000; margin-left: 15px; padding: 5px;" title="2003_jetta_profile" src="http://blog.biernacki.ca/wp-content/uploads/2011/11/2003_jetta_profile.jpg" alt="" width="400" height="229" />If you are a Volkswagen Jetta owner like me, you might eventually be faced with having to jump start your car. In my case it happened after I left my lights on at work (for some reason, the 2003 Jetta does NOT beep when the lights are on, so it is very easy to forget them on). Also in my case, I had to jump my car after work to get it running properly again. Little did I know that this caused a problem with my locking mechanism on the Jetta passenger doors (what is know as a double click open process, on the car dongle). This double click no longer worked, only the single click unlock worked for the drivers door. You would have to open the car door and click unlock inside the door for all the others to open.</p><p>I&#8217;ve jumped a few cars (not many, but certainly over 10 separate occasions), and I&#8217;ve never run into this problem. Basically my key dongle (unlock / lock / pop trunk) stopped responding for unlocking all the car doors. I was unable to double click and unlock the car doors on my 2003 Jetta. It was strange, my first instinct was that something got fried / damaged in the jump (later I learned while speaking with a VW tech, that I should never jump my Jetta, simply because I could fry all the electronics &#8212; I&#8217;m still not sure if that&#8217;s really true or not as my local VW dealership techs just want to make money off me for diagnostic hookups).</p><p><img
class="alignright size-full wp-image-553" style="border-image: initial; border-width: 1px; border-color: #000000; border-style: solid; padding: 5px; margin-left: 15px;" title="volkswagen_jetta_mkiv_door_handle" src="http://blog.biernacki.ca/wp-content/uploads/2011/11/volkswagen_jetta_mkiv_door_handle.jpg" alt="" width="371" height="186" />So I drove around with this problem for a few weeks, and my carpooling friend kept getting annoyed that I would need to open the car from the inside (auto unlock from inside rather). So I did some searching, and found some vague forum posts where people had the same problem. There was one person that fixed it tho, he solved it by getting in the car, then leaning over and LOCKING / UNLOCKING from the passenger panel (see photo).</p><p><img
class="alignleft size-full wp-image-556" style="border: 1px solid #000; margin-right: 15px; padding: 5px;" title="volkswagen_key_dongle" src="http://blog.biernacki.ca/wp-content/uploads/2011/11/volkswagen_key_dongle.jpg" alt="" width="101" height="150" /></p><p>This caused some kind of &#8216;passenger / rear door&#8217; locking system reset, as it worked beautifully for me. So if you find yourself with a Jetta (or any other car that exhibits this problem), just get in the car, lean over and lock/unlock the door. What actually happened when I did it was the system made this &#8216;double click&#8217; lock sound and then I found that the VW Jetta dongle was working as normal (locking / unlock / pop trunk).</p><p>Good luck, hope it helps someone avoid that VW Diagnostic $100 charge that they want to always get you in for.</p> ]]></content:encoded> <wfw:commentRss>http://blog.biernacki.ca/2011/11/vw-jetta-mkiv-automatic-lock-issue/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Putty strange &#8216;Access Denied&#8217; following username entry</title><link>http://blog.biernacki.ca/2011/10/putty-strange-access-denied-following-username-entry/</link> <comments>http://blog.biernacki.ca/2011/10/putty-strange-access-denied-following-username-entry/#comments</comments> <pubDate>Mon, 31 Oct 2011 13:16:44 +0000</pubDate> <dc:creator>Jakub</dc:creator> <category><![CDATA[How To]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[SysAdmin]]></category> <category><![CDATA[access denied]]></category> <category><![CDATA[error]]></category> <category><![CDATA[putty]]></category> <category><![CDATA[update]]></category> <guid
isPermaLink="false">http://blog.biernacki.ca/?p=546</guid> <description><![CDATA[I don&#8217;t know about you, but I kept getting this since upgrading putty to 0.61, as 0.60 didn&#8217;t do so before. It would be an error of &#8216;Access Denied&#8217; right after username entry, and all else would proceed as planned. Well I searched about it a bit and found the answer on superuser.com. PuTTY tries [...]]]></description> <content:encoded><![CDATA[<p>I don&#8217;t know about you, but I kept getting this since upgrading putty to 0.61, as 0.60 didn&#8217;t do so before.</p><p><img
src="http://blog.biernacki.ca/wp-content/uploads/2011/10/putty-access-denied-error.jpg" alt="" title="putty-access-denied-error" width="627" height="312" class="aligncenter size-full wp-image-547" /></p><p>It would be an error of &#8216;Access Denied&#8217; right after username entry, and all else would proceed as planned.  Well I searched about it a bit and found the answer on superuser.com.</p><blockquote><p> PuTTY tries several authentication methods in a row, which might cause these messages:</p><ul><li>GSSAPI (only if your system and the server have it enabled)</li><li>Public key (only if you have a key loaded)</li><li>Password</li></ul><p>After receiving the &#8220;Access denied&#8221; message, hold Ctrl and right-click on the PuTTY window, then select Event log. At the bottom you will see what exactly caused the failure.</p></blockquote><p><a
href="http://superuser.com/questions/312197/putty-0-61-why-do-i-see-access-denied-message-after-i-enter-my-login-id">http://superuser.com/questions/312197/putty-0-61-why-do-i-see-access-denied-message-after-i-enter-my-login-id</a></p> ]]></content:encoded> <wfw:commentRss>http://blog.biernacki.ca/2011/10/putty-strange-access-denied-following-username-entry/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Updating XBMC on Apple TV 2, its easy, if you know how&#8230;</title><link>http://blog.biernacki.ca/2011/10/updating-xbmc-on-apple-tv-2-its-easy-if-you-know-how/</link> <comments>http://blog.biernacki.ca/2011/10/updating-xbmc-on-apple-tv-2-its-easy-if-you-know-how/#comments</comments> <pubDate>Mon, 31 Oct 2011 01:33:12 +0000</pubDate> <dc:creator>Jakub</dc:creator> <category><![CDATA[Apple]]></category> <category><![CDATA[How To]]></category> <category><![CDATA[apple tv 2]]></category> <category><![CDATA[nightly-build]]></category> <category><![CDATA[update]]></category> <category><![CDATA[xbmc]]></category> <guid
isPermaLink="false">http://blog.biernacki.ca/?p=543</guid> <description><![CDATA[If you're like me and you didn't really look into this much, you proably were left scratching your head, or just overwhelmed with the XBMC forums trying to find something that applied to you.
]]></description> <content:encoded><![CDATA[<p>If you&#8217;re like me and you didn&#8217;t really look into this much, you proably were left scratching your head, or just overwhelmed with the XBMC forums trying to find something that applied to you.</p><p>What I&#8217;ve had were some issues with XBMC (v 10.0-9), some crashing as well as a constant nagging scrapper issue.<br
/> So I decided to find a solution to update to a nightly build (for better or for worse).</p><p>Luckily after not too much searching, I found the proper section:<br
/> <a
href="http://wiki.xbmc.org/index.php?title=HOW-TO:Install_XBMC_on_Apple_TV_2" title="Update to nightly build (XBMC)">http://wiki.xbmc.org/index.php?title=HOW-TO:Install_XBMC_on_Apple_TV_2</a></p><p><em>(Remember you need to have a jailbroken Apple TV2! And XBMC installed with Cydia prior to doing this).</em></p><p>Enjoy!</p> ]]></content:encoded> <wfw:commentRss>http://blog.biernacki.ca/2011/10/updating-xbmc-on-apple-tv-2-its-easy-if-you-know-how/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>iPhone 4s adding a PAUSE into a dialstring, making Skype calls easier for your mobile.</title><link>http://blog.biernacki.ca/2011/10/iphone-4s-adding-a-pause-into-a-dialstring/</link> <comments>http://blog.biernacki.ca/2011/10/iphone-4s-adding-a-pause-into-a-dialstring/#comments</comments> <pubDate>Fri, 21 Oct 2011 04:07:50 +0000</pubDate> <dc:creator>Jakub</dc:creator> <category><![CDATA[Apple]]></category> <category><![CDATA[How To]]></category> <category><![CDATA[Reviews]]></category> <category><![CDATA[Thoughts & Rants]]></category> <category><![CDATA[4s]]></category> <category><![CDATA[ios5]]></category> <category><![CDATA[iphone]]></category> <category><![CDATA[siri]]></category> <category><![CDATA[skype]]></category> <guid
isPermaLink="false">http://blog.biernacki.ca/?p=540</guid> <description><![CDATA[If you are like me and you might have some friends who have extension numbers, or simply use something like Skype local calling (a local number, that you can dial to call international using your skype account), you want to make sure that your cell phone supports complex dial strings. I keep all my contacts [...]]]></description> <content:encoded><![CDATA[<p>If you are like me and you might have some friends who have extension numbers, or simply use something like Skype local calling (a local number, that you can dial to call international using your skype account), you want to make sure that your cell phone supports complex dial strings.</p><p>I keep all my contacts organized on &#8216;Google Contacts&#8217; and then I&#8217;m able to synchronize my iOS devices with my contact list. Its easy to do and just requires some dedicated time to enter everything in.</p><p>As I live in the US, I still have many friends (as well as family) in Canada, and that requires me to call &#8216;international&#8217; (at least what AT&#038;T calls Canada calling&#8230;).  My skype local setup is quick and easy, and SIRI makes it fun.</p><p>I simply setup a phone number for a contact like so:</p><ol><li>Create new phone entry, call it Skype</li><li>Enter my skype number (ex: 734-000-1234)</li><li>I follow that number with a PAUSE character `,` (comma) + a 2 (skype&#8217;s 2 means, call a custom number)</li><li>After that 2, I simply enter a Canadian number (ex: 1519-555-1234)</li></ol><p>The final solution looks like:</p><p><strong>Skype: 734-000-1234,21519-555-1234</strong></p><p>And then once my contact is sync&#8217;d to the phone, I say &#8220;SIRI call [persons name] on Skype&#8221;, and obediently SIRI completes the call, and I don&#8217;t have to punch in any long strings of numbers.</p><p>Enjoy!</p> ]]></content:encoded> <wfw:commentRss>http://blog.biernacki.ca/2011/10/iphone-4s-adding-a-pause-into-a-dialstring/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>iPhone 4s battery problem.  Possible quick solution to extend it?</title><link>http://blog.biernacki.ca/2011/10/iphone-4s-battery-problem-possible-quick-solution-to-extend-it/</link> <comments>http://blog.biernacki.ca/2011/10/iphone-4s-battery-problem-possible-quick-solution-to-extend-it/#comments</comments> <pubDate>Thu, 20 Oct 2011 04:58:15 +0000</pubDate> <dc:creator>Jakub</dc:creator> <category><![CDATA[Apple]]></category> <category><![CDATA[Hardware]]></category> <category><![CDATA[How To]]></category> <category><![CDATA[In the News]]></category> <category><![CDATA[gps]]></category> <category><![CDATA[ios5]]></category> <category><![CDATA[iphone]]></category> <category><![CDATA[poor battery life]]></category> <category><![CDATA[reminders]]></category> <category><![CDATA[siri]]></category> <guid
isPermaLink="false">http://blog.biernacki.ca/?p=532</guid> <description><![CDATA[I have been trying different settings, back and forth since I got the phone, and I really got good results by disabling the Location Services for the Reminders.]]></description> <content:encoded><![CDATA[<p><img
src="http://blog.biernacki.ca/wp-content/uploads/2011/10/ios5-location-services-disable-reminders.jpg" alt="" title="ios5-location-services-disable-reminders" width="320" height="480" class="alignright size-full wp-image-533" />Since I got my iPhone 4s, I&#8217;ve been scratching my head (as well as many of you) trying to figure out why the stupid phone eats the battery like nobody&#8217;s business.  The iPhone 4s battery sucks, at least that&#8217;s what what everyone is complaining about. I left my iPhone4s overnight after charging it to 100%, and when I woke up it was sitting at 56% after about 6 hours of sitting idle next to my bed.</p><p>I don&#8217;t know about you but isn&#8217;t standby mode advertised `up to` 200 hours? Maybe that `up to` really needs quotations as it might require shutting the phones capabilities off completely (airplane mode?).  I can&#8217;t imagine why anyone would want a smart phone only to disable data, gps, wifi, etc; to get it to run for min 1-2 days without a recharge.</p><h3>How to get your iPhone 4s working</h3><p>Anyway, cutting the rant short, I have been trying different settings, back and forth since I got the phone, and I really got good results by disabling the <strong>Location Services for the Reminders</strong> (as I imagined they ping quite frequently to get the GPS bearing, as the reminders are location specific now).  Recall that SIRI is capable of setting a reminded for &#8220;when I get home&#8221; or &#8220;when I get into the office&#8221;.  Those are features, that one would imagine require constant GPS checking (after all checking every 15/20 minutes doesn&#8217;t make sense.. I could get home in under that time and then what? Later reminder.</p><p>Give it a try, see how it goes.  I know I have my Apple &#8216;fast lane&#8217; support call scheduled, as I can&#8217;t stomach a phone that only has battery life for ~6hrs or so with full features.</p> ]]></content:encoded> <wfw:commentRss>http://blog.biernacki.ca/2011/10/iphone-4s-battery-problem-possible-quick-solution-to-extend-it/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Confused about iOS5 iMessage? Yeah, a lot of people are&#8230;</title><link>http://blog.biernacki.ca/2011/10/confused-about-ios5-imessage-yeah-a-lot-of-people-are/</link> <comments>http://blog.biernacki.ca/2011/10/confused-about-ios5-imessage-yeah-a-lot-of-people-are/#comments</comments> <pubDate>Thu, 20 Oct 2011 00:32:38 +0000</pubDate> <dc:creator>Jakub</dc:creator> <category><![CDATA[Apple]]></category> <category><![CDATA[Thoughts & Rants]]></category> <category><![CDATA[confusion]]></category> <category><![CDATA[imessage]]></category> <category><![CDATA[iphone]]></category> <guid
isPermaLink="false">http://blog.biernacki.ca/?p=522</guid> <description><![CDATA[What I want to clear up today, is the confusion (at least for me and a few folks I know) regarding iMessage.  iOS5 brings to it a new feature, the ability to give the carriers a 'BIG F-YOU!' when it comes to gauging users on 'per-text-message' options.  Personally I don't want to pay more than $5 bucks for texting, and I don't think I should have to pay $20 per month for 160 characters each.  My $5 is a 200 message plan, which is more than enough for me.]]></description> <content:encoded><![CDATA[<p><img
src="http://blog.biernacki.ca/wp-content/uploads/2011/10/imessage_icon.jpg" alt="" title="iMessage Icon" width="62" height="62" class="alignright size-full wp-image-524" />Even tho I have always been anti-smart phone, I jumped for the iPhone 4s, not because I thought it was earth shattering, or that it was the &#8216;true&#8217; iPhone 5.  I just wanted a step forward, to get rid of my clunky Sony Ericsson, and get something that allowed me to manage my email, contacts and apps (but I&#8217;ll save that for another rant&#8230;)</p><p>What I want to clear up today, is the confusion (at least for me and a few folks I know) regarding iMessage.  iOS5 brings to it a new feature, the ability to give the carriers a &#8216;BIG F-YOU!&#8217; when it comes to gauging users on &#8216;per-text-message&#8217; options.  Personally I don&#8217;t want to pay more than $5 bucks for texting, and I don&#8217;t think I should have to pay $20 per month for 160 characters each.  My $5 is a 200 message plan, which is more than enough for me.</p><p>But ever since I got my iPhone, I have been unsure of what the hell I was doing when sending a message, I would click on the green &#8216;message&#8217; button, and then I tried selecting a co-worker, but I couldn&#8217;t select their apple id email address, it would just show me their home/mobile numbers.  However, one friend of mine told me &#8220;Its the colors! Look at the send button colors&#8221;&#8230;</p><p><img
src="http://blog.biernacki.ca/wp-content/uploads/2011/10/text-or-imessage-send.jpg" alt="" title="text-or-imessage-send" width="193" height="56" class="alignright size-full wp-image-528" />At that point, the realization came, when you <em>SELECT A CONTACT</em>, the send button will turn one of 2 colors:</p><ul><li>GREEN = Text message</li><li>BLUE = iMessage available</li></ul><p>So that&#8217;s it, don&#8217;t worry about SMS vs iMessage, just remember, blue is good, green is not (if you are not on the unlimited plan at least!).</p><p>Hope that helps some of you to clear up the confusion regarding wether you are sending an actual iMessage or just a plain text message. Oh and in case you didn&#8217;t notice, the input box, also says &#8220;text message&#8221; vs &#8220;imessage&#8221; just to be sure, but still its confusing, especially judging by people&#8217;s forum posts around the net.</p><p>Enjoy!</p> ]]></content:encoded> <wfw:commentRss>http://blog.biernacki.ca/2011/10/confused-about-ios5-imessage-yeah-a-lot-of-people-are/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
