prolificprogrammer.com
The Prolific Programmer -- on the web....: How to Resolve Zipcodes to Timezones
http://www.prolificprogrammer.com/2015/05/how-to-resolve-zipcodes-to-timezones.html
The Prolific Programmer - on the web. May 21, 2015. How to Resolve Zipcodes to Timezones. A friend emailed me in the middle of the night asking me if I knew of any simple method to resolve postal codes to timezones in the United States. Enter python. There may very well be a clever way to refactor the if statement, but this does work, so I can't be bothered. Subscribe to: Post Comments (Atom).
blog.tafkas.net
Chris | Tafkas' Blog
http://blog.tafkas.net/author/wp_admin
Monitoring a Synology Diskstation with Munin. SolarPi – A Flask powered photovoltaic monitor. PikoPy: A python package for working with a Piko Inverter from Kostal. Determine your Fitbit stride length using a GPS watch. A Raspberry Pi photovoltaic monitoring solution. Monitoring a Synology Diskstation with Munin. As Munin node. An easier way is to use the Simple Network Management Protocol (SNMP). Just activate the SNMP service in the control panel of the Diskstation, give it a community name and...The c...
journal.code4lib.org
The Code4Lib Journal – A Web Service for File-Level Access to Disk Images
http://journal.code4lib.org/articles/9773
Issue 33, 2016-07-19. Issue 32, 2016-04-25. Issue 31, 2016-01-28. Issue 30, 2015-10-15. Issue 29, 2015-07-15. Issue 25, 2014-07-21. A Web Service for File-Level Access to Disk Images. By Sunitha Misra, Christopher A. Lee and Kam Woods. Technical challenges in curating born-digital materials have given rise to several initiatives incorporating digital forensic techniques to assist with curation. BitCurator[ 1. The BitCurator environment includes open source software including. Applying these concepts to p...
ianluddy.com
Ian
http://www.ianluddy.com/index.html
Welcome to my page, I'm a full-stack Python developer from Galway. I studied Software Development at GMIT. In Galway and was awarded a 1:1 Honours Degree in 2011. I also received the Student of the Year Award for achieving the highest overall grade in the class. Since graduating I've been working primarily as a full-stack Python developer in London and more recently Dublin. This is where I'll be exhibiting my latest work. There are links above for getting in touch, including my Github. Valcoholic is an a...
lukepeters.me
About | Luke Peters - Boston Freelance Web Developer
http://lukepeters.me/about
My name is Luke Peters. I'm a 28-year-old full-stack web developer living in Boston, MA. I left my last full-time job in October of 2013 with the intention of building a small web design and development studio. Which is now three people strong. In addition to serving my own clients, I wanted more time and freedom to work on building products of my own. In essence, I just want to create things. Things that are of value to other people, that solve problems and that are a joy to use. 13 years went by. I rea...
aaroniles.net
Predictably Random
http://www.aaroniles.net/index2.html
Begins 0.7.1 released. Posted on Fri 04 October 2013 by Aaron Iles. I released version 0.7 and 0.7.1 of Begins. This week. 0.7.1 was a bug fix release for an issue discovered shortly after releasing 0.7. A number of significant features were delivered in 0.7, including:. These new features enable writing a simple Flask. Begins both ensures that the correct, expected, types are passed to the main function as well as presenting. This is the actual development server. My only advice to soon to be fathers.
blog.t-lab.cs.teu.ac.jp
田胡・柴田研究室ブログ: 12月 2012
http://blog.t-lab.cs.teu.ac.jp/2012_12_01_archive.html
東京工科大学 田胡・柴田研究室のブログです。技術的なものから日常的なものまであげられたらいいなと思います。 に名前を付けたから、参考にしてね!」. で、Singletonパターンは「インスタンスを一つしか生成したくない!」という問題を解決する. Class Singleton{ private static Singleton instance = new Singleton(); private Singleton(){} public static Singleton getInstance(){ return instance; } / この後に使いたいメソッドやフィールドを追加していく }. コンストラクタとinstanceがprivateなので、 getInstance()を使わないとアクセスできないため、. 12300;インスタンスを一つしか生成したくない!」ということを. と「このクラスを最初に使う場合だけ生成する」と書き換えました。 12300;このクラスはこういうことをさせたいんです!」という作った人の意図をスムーズに理解する. PHPでJsonを扱うには『json de...
nblock.org
Mocking open() in Python 3 unit tests | nblock ~
http://www.nblock.org/2015/04/19/mocking-open-in-python3-unit-tests
Mocking open() in Python 3 unit tests. Written on Sunday, April 19, 2015. Quite a lot for several projects and over the last months my primary goal was to improve the code coverage with unit tests. There, I came across several occasions where the builtin. Is used in a flask. View A file is opened, its content gets read and the results are passed on to a template. The following minimal example shows a typical usage:. To easily mock calls to. The usual code snippets out there mock calls to.