krangsquared.blogspot.com
The Wrath of Krang: June 2013
http://krangsquared.blogspot.com/2013_06_01_archive.html
The Wrath of Krang. Wednesday, 19 June 2013. Workaround for Ubuntu 12 bug with Chrome - can't rearrange tabs. I have started using OneTab plugin to do this, where I would collapse. All tabs into a OneTab page, then rearrange them, but this would also. Https:/ bugs.launchpad.net/ubuntu/ source/unity-2d/ bug/935713/comments/11. Two workarounds for this:. To move tabs left or right in a single window you can use. Ctrl Shift PgUp and Ctrl Shift PgDown. Inserted in the destination window, as expected. That su...
krangsquared.blogspot.com
The Wrath of Krang: March 2014
http://krangsquared.blogspot.com/2014_03_01_archive.html
The Wrath of Krang. Friday, 14 March 2014. Prevent Googlebot from crawling some links, but still have them useable by the user. Prevent Googlebot from crawling some links, so that other more. Important links on our page are given priority and indexed faster. 1 remove the link, replace with # so its still a valid HREF. 2 Put the value as data attribute, ie, data-goto. 3 Reverse the value because if we had data-goto=/productlist.html,. Googlebot would still crawl it. HREF values in there.
krangsquared.blogspot.com
The Wrath of Krang: February 2014
http://krangsquared.blogspot.com/2014_02_01_archive.html
The Wrath of Krang. Wednesday, 26 February 2014. How to change extension of multiple files in Linux? When files are in same folder:. Rename s/.abc$/.edefg/ *.abc. Also requires GNU or BSD find(1). Recursively change all *.foo files to *.bar. Find -type f -name *.foo -print0 while IFS= read -r -d f; do. Mv - $f ${f%.foo}.bar. Http:/ mywiki.wooledge.org/BashFAQ/030. Wednesday, 12 February 2014. RetryOnFailure annotation using Aspect from JCABI library. Knows about the URLs it is verifying. Url(data:image/p...
krangsquared.blogspot.com
The Wrath of Krang: July 2013
http://krangsquared.blogspot.com/2013_07_01_archive.html
The Wrath of Krang. Thursday, 4 July 2013. Building strings in javascript. Instead of StringBuilder, we use an array and just append to the end of array. Http:/ trephine.org/t/index.php? Title=Efficient JavaScript string building. Http:/ dev.opera.com/articles/view/efficient-javascript/? Constructs an html string from any number of lists of data items. Function buildList( /* list1, list2, . */ ) {. Var buf = [ ul n ];. For (var i=0; i arguments.length; i ) {. Var list = arguments[i];.
krangsquared.blogspot.com
The Wrath of Krang: February 2015
http://krangsquared.blogspot.com/2015_02_01_archive.html
The Wrath of Krang. Monday, 23 February 2015. My favourite moment in "Halt and Catch Fire". S01E09, at around 22:45. Gordon: . You hit an overhang, and you cant climb up, and its too steep to climb down. You realise what the word jump really means. And if I held your hand and counted to three. I wasnt sure youd come with me. Donna: Were married, Gordon. We already jumped. That line just hit me. Hard. Subscribe to: Posts (Atom). I'm never gonna know you now. But I'm gonna love you anyhow.
krangsquared.blogspot.com
The Wrath of Krang: My favourite moment in "Halt and Catch Fire"
http://krangsquared.blogspot.com/2015/02/my-favourite-moment-in-halt-and-catch.html
The Wrath of Krang. Monday, 23 February 2015. My favourite moment in "Halt and Catch Fire". S01E09, at around 22:45. Gordon: . You hit an overhang, and you cant climb up, and its too steep to climb down. You realise what the word jump really means. And if I held your hand and counted to three. I wasnt sure youd come with me. Donna: Were married, Gordon. We already jumped. That line just hit me. Hard. Subscribe to: Post Comments (Atom). I'm never gonna know you now. But I'm gonna love you anyhow.
krangsquared.blogspot.com
The Wrath of Krang: January 2014
http://krangsquared.blogspot.com/2014_01_01_archive.html
The Wrath of Krang. Friday, 31 January 2014. Doubleclick for Publishers reference material. From: https:/ productforums.google.com/forum/#! DFP Premium Help Center. Https:/ support.google.com/dfp premium/. Please remember that are two main ways to contact DFP. There is a. Contact Us link on all DFP Premium support page (near the upper right. Hand part of the page). There is also a Report a Bug link in your DFP. Account (also in the upper right hand corner of your page). Http:/ www.youtube.com/dfp. Javasc...
krangsquared.blogspot.com
The Wrath of Krang: Reading in a file when directory names have spaces in them
http://krangsquared.blogspot.com/2015/07/reading-in-file-when-directory-names.html
The Wrath of Krang. Friday, 31 July 2015. Reading in a file when directory names have spaces in them. We were running some errors in our Jenkins build of some code, even though the code works on our computers. . Javaio.FileNotFoundException: File /var/lib/jenkins/workspace/Email%20Project%20Release/target/test-classes/com/company/mailFolder/sample email.txt does not exist. I sshd to the Jenkins box and tried to ls on the directory name:. No such file or directory. Doing an ls this directory worked:.
krangsquared.blogspot.com
The Wrath of Krang: April 2014
http://krangsquared.blogspot.com/2014_04_01_archive.html
The Wrath of Krang. Tuesday, 1 April 2014. Mockito - don't use @InjectMocks if your constructor will be calling methods on your injected mocks. Public void setup() {. When(mockMessageSource.getMessage(eq("first.key"), (Object[]) eq(null), anyString(),eq(Locale.getDefault() ) .thenReturn("This is a default message");. When(mockMessageSource.getMessage(eq("second.key"), (Object[]) eq(null), anyString(),eq(Locale.getDefault() ) .thenReturn("second Value");. I was using @InjectMocks and once the line. When(m...