
blog.markfeeney.com
Mark FeeneyRemember: you chose to read this
http://blog.markfeeney.com/
Remember: you chose to read this
http://blog.markfeeney.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Thursday
LOAD TIME
3.2 seconds
PAGES IN
THIS WEBSITE
19
SSL
EXTERNAL LINKS
15
SITE IP
172.217.6.83
LOAD TIME
3.229 sec
SCORE
6.2
Mark Feeney | blog.markfeeney.com Reviews
https://blog.markfeeney.com
Remember: you chose to read this
Mark Feeney: Image Manipulation in Ubuntu with ImageMagick Tools
http://blog.markfeeney.com/2011/08/image-manipulation-with-imagemagick.html
Remember: you chose to read this. Sunday, August 7, 2011. Image Manipulation in Ubuntu with ImageMagick Tools. Can't believe I haven't come across. Before now. Much time could have been saved in the past. I used Ubuntu 10.04 Lucid for this, but I doubt it matters much as long as you have a recent Linux distribution. Sudo apt-get install imagemagick. Example: resize an image to fit in a 100x100 pixel box, and place it in the centre of a 100x100 pixel box:. Lots more good documentation.
Mark Feeney: Ubuntu Lucid 10.04 at EC2: cloudimg-rootfs does not exist
http://blog.markfeeney.com/2012/02/ubuntu-lucid-1004-at-ec2-cloudimg.html
Remember: you chose to read this. Friday, February 10, 2012. Ubuntu Lucid 10.04 at EC2: cloudimg-rootfs does not exist. I've been having a seemingly intermittent problem where I can't boot a custom AMI built from one of Ubuntu's default AMIs. Start with stock 10.04 LTS, instance-store, 64-bit, us-east-1 image: ami-35de095c. Fire it up: works. Install a bunch of stuff I need: no prob. Create a new AMI for next time with. Upload it, register it. The error message, available from. Supporting this theory....
Mark Feeney: March 2011
http://blog.markfeeney.com/2011_03_01_archive.html
Remember: you chose to read this. Friday, March 25, 2011. Scala's built-in XML support is perhaps flawed. But still offers very convenient syntax for simple XML manipulation. Even ignoring performance concerns and concurrency issues, there are still weird gotchas that the average user may need to deal with. Scala val xml = xml test! CDATA[a b] /test /xml xml: scala.xml.Elem = xml test a < b /test /xml - WTF? Same when loading from a String:. Scala val xml = XML.loadString(" xml test! CDATA[a b] /test /xml.
Mark Feeney: April 2013
http://blog.markfeeney.com/2013_04_01_archive.html
Remember: you chose to read this. Tuesday, April 30, 2013. After many years, the DevHouse Waterloo web page has moved from the old aiderss.com domain. The old page is apparently inaccessible for edits, so it'll linger. This quick post is mostly to help teach Google where the new DevHouse Waterloo. Page is. Hopefully the hugely powerful PageRank of my site will help. Subscribe to: Posts (Atom). View my complete profile. Meager Stack Overflow Profile. Cool Links Cool Links. Subscribe in a reader.
Mark Feeney: December 2013
http://blog.markfeeney.com/2013_12_01_archive.html
Remember: you chose to read this. Thursday, December 5, 2013. New blog has RSS now. Amazingly, there are people reading this blog, and some have actually requested an RSS feed of the new blog, Proof By Example. That's now done, via the I-can't-believe-it's-still-alive Feedburner service. Direct link to the feed. Wednesday, December 4, 2013. I've started a new blog for programming. And computer stuff. Just wanted to leave a pointer since this blog is pretty desolate these days. Subscribe to: Posts (Atom).
TOTAL PAGES IN THIS WEBSITE
19
Nested if-let in Clojure - Proof by Example
http://www.proofbyexample.com/nested-if-let-in-clojure.html
Programming blog by Mark Feeney. Nested if-let in Clojure. At work today some code turned up that looked like this:. Sum a, b, c, d if they're all defined, otherwise report which one is not ; defined. This is not easy to read, even in in the vastly simplifed form shown above. The. Expressions are far away form their corresponding. I couldn’t find a good built-in or idiom for doing this in Clojure. For reference, here’s what I looked at:. Better way to nest if-let in clojure. Symbols only in bindings".
Combining Option and Either in Scala - Proof by Example
http://www.proofbyexample.com/combining-option-and-either-in-scala.html
Programming blog by Mark Feeney. Combining Option and Either in Scala. My last post on nested if-let in Clojure. Exists in part because I have worked with Scala for many years, and in Scala it’s there’s a very handy syntax for the only act when a bunch of optional things are defined situation. Are defined. This is a common idiom in Scala, and a nice one, IMO. But what if, like in the other post, we want to know which of the optional things is undefined when something goes wrong? Error, msg was '%s'".
sneakyThrow(): Checked Exceptions as Unchecked - Proof by Example
http://www.proofbyexample.com/sneakythrow-avoid-checked-exceptions.html
Programming blog by Mark Feeney. SneakyThrow(): Checked Exceptions as Unchecked. I recently came across some suspicious code in Square’s Okio. Throws {@code t}, even if the declared throws clause doesn't permit it. * This is a terrible but terribly convenient hack that makes it easy to * catch and rethrow exceptions after cleanup. See Java Puzzlers #43. */. Their comment admits it’s nuts, and points to Java Puzzlers. I had two questions: 1) how does this work (! And 2) why would you ever do this? At this...
Clojure Laziness Review - Proof by Example
http://www.proofbyexample.com/clojure-laziness-review.html
Programming blog by Mark Feeney. Quick notes on Clojure lazy sequences since I have confused myself on this a few times over the years, and just did so again. The working example will be a hack implementation of. Will blow stack.". Range-so 10000) ; StackOverflowError clojure.lang.Numbers$LongOps.inc (Numbers.java:529). Is the naive recursive implementation that consumes stack and is not useful for ranges with more than a few thousand entries. It’s also eager, so. Take 2 (range-so 1000). Won't blow the s...
Print and read in Clojure - Proof by Example
http://www.proofbyexample.com/print-and-read-in-clojure.html
Programming blog by Mark Feeney. Print and read in Clojure. I recently had a situation where I needed a very light-weight cache for some data that took forever to come back from a slow external API. My requirements:. Cached data must outlive current process, i.e. be written to disk. Cache must throw at write time if the thing being written won’t be readable when we need it. It’s ok to let. Evaluate code (i.e. trust values from the disk cache). No databases, bloated dependencies, just quick and dirty.
URL Encoding, Percent-Encoding and Query Strings in Java - Proof by Example
http://www.proofbyexample.com/url-and-uri-encoding-in-java.html
Programming blog by Mark Feeney. URL Encoding, Percent-Encoding and Query Strings in Java. I’ve been lost in the details of URL encoding a number of times. Each time I figure it out, move on, then promptly forget everything about it. This article is nowhere near a complete reference, it exists mainly to jog my memory. For the rest of the article I’m going to say URI. Instead of URL, but I’m really thinking about URLs http and https schemes in particular. The majority of this info comes from RFC3986.
User overthink - Stack Overflow
http://stackoverflow.com/users/69689/overthink
To customize your list. More stack exchange communities. Tour Start here for a quick overview of the site. Help Center Detailed answers to any questions you might have. Meta Discuss the workings and policies of this site. About Us Learn more about Stack Overflow the company. Business Learn more about hiring developers or posting ads with us. Software person trying to make things that don't completely suck. New: http:/ proofbyexample.com. Old: http:/ blog.markfeeney.com. Member for 7 years, 6 months.
TOTAL LINKS TO THIS WEBSITE
15
Marketwired Blog for PR Professionals | Marketwired
Hot Off the Wire. E-Books / Tip Sheets. Become a Media Partner. Become a Channel Partner. Where would you like to sign in? Hot Off the Wire. News Dashboard 2.0. Register for a Marketwired Account. By Karen Geier] Television used to be divided into two basic types of programming: recurring (sitcoms dramas that ran … Read More. August 13, 2015. 38 Tips for an Amazing Media Interview. August 11, 2015. Press Release Distribution Tips for Reaching Influencers. August 10, 2015. August 7, 2015. August 5, 2015.
صفحه اصلی - مارکت بلاگ
مارکت بلاگ وبلاگی برای فعالان مارکت وردپرس. دعوت از فروشندگان برای مشارکت در سومین فروش گروهی. تیر ۲۲, ۱۳۹۴. سلام به همه دوستان مخصوصا فروشندگان مارکت وردپرس به مناسبت عید سعید فطر تصمیم گرفتیم که سومین فروش گروهی مارکت وردپرس را راه اندازی نماییم. فروش گروهی ها بر طبق قبل به این صورت است که فروشندگان با قبول شرایط به صورت داوطلبانه در این فروش محصولاتشان را شرکت میدهند . متن کامل را بخوانید ». ایجاد فرم ثبت نام سفارشی با فیلدهای دلخواه. تیر ۱۲, ۱۳۹۴. متن کامل را بخوانید ». نوروز ۹۴ مبارک باد! سلام به تم...
Mark on Rails
A little bit of life, a lot of code. Outlining my journey to learn Ruby on Rails and start my career as a software developer. Page 1 of 2. Older Posts →. How to add Disqus to your Ghost blog. I just recently added Disqus to my blog and I had a bit of trouble finding a guide on how to do just that. Then I ». I'm on the job hunt! And boy is it fun. I've been dedicating almost all of my free time to a mixture of furthering my education and applying to more jobs. ». App Academy Application Process.
Markex 2016
Sandton Convention Centre, Johannesburg, South Africa. Markex 2015: covering the marketing mix. The first week of June saw the industry’s hottest marketing, promotions and events expo, Markex 2015, take over the Sandton Convention Centre, with more than 8,500 marketers, event managers, advertising and public relations experts and promoters from Africa, Europe and Asia travelling to the expo to explore both Markex exhibition halls. The Sky is not the Limit. Mobile Marketing Association ; South Africa.
Иван Маркеев
Подводные грабли web, django, python. 25 июл. 2016 г. Разыскивается веб-разработчик Python/Django [100% удаленка, можно совмещать с основным местом работы]. Друзья, хорошему проекту нужны разработчики любого уровня крутости на длительное время. Плюсом будет умение верстать и JSить. Разработка через тесты, автоматизирована в GitLab (CI и CD). Git-flow. Задачи в trello, обсуждения в Slack. Все по Agile. Чего ждем от работников:. Ежедневные коммиты (в рабочие дни). Не реже 2 раз в неделю стэндапы (по skype).
Mark Feeney
Remember: you chose to read this. Thursday, December 5, 2013. New blog has RSS now. Amazingly, there are people reading this blog, and some have actually requested an RSS feed of the new blog, Proof By Example. That's now done, via the I-can't-believe-it's-still-alive Feedburner service. Direct link to the feed. Wednesday, December 4, 2013. I've started a new blog for programming. And computer stuff. Just wanted to leave a pointer since this blog is pretty desolate these days. Tuesday, April 30, 2013.
MarkForged Blog - Print Stronger
Back to MarkForged.com. Back to MarkForged.com. June 24, 2015. The Economist: Industrial 3D printing takes off. On June 24, 2015. April 9, 2015. TC Makers: We Learn How MarkForged Prints Unbreakable Objects. On April 9, 2015. March 11, 2015. On March 11, 2015. January 16, 2015. Make: Mike Senese talks with Greg Mark @ CES. On January 16, 2015. January 13, 2015. TechCrunch CES 2015: 3D-Printed Parts That Even Fezzik Couldn’t Break. On January 13, 2015. January 12, 2015. On January 12, 2015.
Default Parallels Plesk Panel Page
Web Server's Default Page. This page is generated by Parallels Plesk Panel. The leading hosting automation software. You see this page because there is no Web site at this address. You can do the following:. Create domains and set up Web hosting using Parallels Plesk Panel. Parallels is a worldwide leader in virtualization and automation software that optimizes computing for consumers, businesses, and Cloud services providers across all major hardware, operating systems, and virtualization platforms.
An Emancipated Autist ::: Emancipated Autism Blog ::: Fighting Neurelitism, Neurological Elitism, through Unity | Fighting Neurelitism, Neurological Elitism, through Unity
An Emancipated Autist : : Emancipated Autism Blog : : Fighting Neurelitism, Neurological Elitism, through Unity. Fighting Neurelitism, Neurological Elitism, through Unity. Flash News Box Watch this Space for Notifications. This blog is associated with The Emancipated Autism Project. December 23, 2014. The problem is that the same level of outrage shown by the NYPD for the murder of two of its officers was not shown for the killing of Mr. Garner. That hypocrisy is not lost on minority communities. The fol...
mark gensheimer [dot] com
Mark gensheimer [dot] com. I'm getting tired of banning IP addresses to try and stop the spam in the comments section, so I'm disabling comments altogether. Also, I removed a couple of my previous posts for other reasons. ;-). 22/12: Missing the boro. I miss the boro. 25/08: Clocks (The Techno Remix). Here's a techno version of the song "Clocks" by coldplay. (I made this myself so don't laugh). Well, we got no choice. All the girls and boys. Makin' all that noise. Cause they found new toys. Here's anothe...
Opinions and Reviews - technology, services, culture
Opinions and Reviews - technology, services, culture. I've been kicking around the planet for quite a while. I will offer my opinions on things that impress or irritate me, and reviews of new toys or items. I pull no punches and cater to no special interests. Monday, March 9, 2009. The Ant and the Grasshopper. Once upon a time, in a beautiful peaceful field, there lived two very different creatures: an Ant, and a Grasshopper. It was Spring, the weather was warm, the times were pleasant, and life was good.