blog.songs-inside.com
iOS - Page 1 - ヒビノログ
http://blog.songs-inside.com/category/ios
Potatotips #29 で BITRISE の話をしてきた. May 27, 2016. ネイティブアプリに特化した CI サービス、 BITRISE. Paas の CI サービスとしては CircleCI. が有名ですが、Bitbucket のプライベートリポジトリと連携できる iOS, Android アプリの CI サービスという条件で探していたところ、 Greenhouse CI. 今回は iOS の枠での LT だったので触れませんでしたが、Android アプリのビルドもできます Gradle でビルドができることが条件なのと、iOS アプリの設定よりも少し手間がかかりますが. May 21, 2016. 5月13日 金 に スマホアプリの審査事例を共有する会 #1 を開催しました。 スマホアプリの審査事例を共有する会 #1 - connpass. スマホアプリ、特に iOS は Store に公開する前に Apple の審査を受ける必要があります。 Apr 12, 2015. Oct 03, 2014. Page 1 of 1.
startupday.ee
PITCHING CONTEST — STARTUP DAY 2016
https://www.startupday.ee/pitching
Find out about the TOP 20 startups in Estonia! Applications are closed for sTARTUp Day 2016. See results below.). About the Pitching Competition. The pitching competition will be an exciting finale to sTARTUp Day 2016. It’s an opportunity for Estonia’s top early-stage startups to pitch their idea and ‘prove their stuff’ in front of an international crowd of investors, media, and tech enthusiasts. Top 20 Startups 2016. One stop shop for health and fitness services for companies but also for all of us.
cloudsmallbusinessservice.com
Best Automated Testing Software For Small Business | 2017
https://cloudsmallbusinessservice.com/small-business/best-automated-testing-software.html
Small Business Software Reviews, Services Insight and Resources. Software Reviews, Services a steady flow of information, insight and inspiration for small business owners and operators. Best Automated Testing Software For Small Business 2017. Votes, average: 5.00. Is the integration of testing tools into the test environment in such a manner that the test execution and comparison of results are done with little human intervention. Use these top tips to ensure that your Automated Testing Software. Docume...
fijiaaron.wordpress.com
fijiaaron | Fijiaaron
https://fijiaaron.wordpress.com/author/fijiaaron
August 24, 2016. Testing mobile apps in the cloud. There are several services available for testing mobile apps in the cloud on real devices:. Sauce Labs is the veteran and was co-founded by Jason Huggins, the original creator of Selenium. Sauce Labs also works on development of Appium. BrowserStack is an economical choice for testing in the cloud, but while the offer “Live” mobile devices (manual testing only), it does not appear that they offer devices for test automation. Keynote Mobile Testing used t...
fijiaaron.wordpress.com
New Baby | Fijiaaron
https://fijiaaron.wordpress.com/2015/04/14/new-baby
April 14, 2015. I had a new son delivered on April 3, 2015. Mikey is healthy. More details coming soon. Click to share on Twitter (Opens in new window). Share on Facebook (Opens in new window). Click to share on Google (Opens in new window). Click to share on Reddit (Opens in new window). Click to share on LinkedIn (Opens in new window). Click to email (Opens in new window). This entry was posted in Uncategorized. Using pyenv with virtualenv and pip cheat sheet. Leave a Reply Cancel reply. Is my software...
fijiaaron.wordpress.com
Testing REST web services with Python | Fijiaaron
https://fijiaaron.wordpress.com/2011/09/15/testing-rest-web-services-with-python
September 15, 2011. Testing REST web services with Python. I’m messing around with using python for testing REST web services. I quickly found that Python 2 has a messy tangle of URL and HTTP libraries. There are several low-level libraries:. See this post on stackoverflow.com about urllib vs urllib2. Here’s an example GET request for JSON with Basic Auth over HTTPS using urllib2:. Here’s an example using httplib:. Import httplib import urlparse domain = urlparse.urlparse(url).netloc connection =...Impor...
fijiaaron.wordpress.com
Using pyenv with virtualenv and pip cheat sheet | Fijiaaron
https://fijiaaron.wordpress.com/2015/06/18/using-pyenv-with-virtualenv-and-pip-cheat-sheet
June 18, 2015. Using pyenv with virtualenv and pip cheat sheet. I made some notes on how to use a specific python version with pyenv and using virtualenv to manage packages. Git clone https:/ github.com/yyuu/pyenv.git. Export PYENV ROOT="$HOME/.pyenv". Eval "$(pyenv init -)". Source /.pyenv/completions/pyenv.bash. Cp /usr/local/Cellar/pyenv/20150601/completions/pyenv.bash /.pyenv/completions/pyenv.bash. Use pyenv to install python versions. Pyenv install 2.7.10. Pyenv install 3.4.3. Cd /pyenv; git pull.
fijiaaron.wordpress.com
Refactoring for Testability | Fijiaaron
https://fijiaaron.wordpress.com/2012/08/21/refactoring-for-testability
August 21, 2012. Or how I learned to stop worrying and love failing tests). Link to slides: PPTX. I’d like to talk about refactoring. Specifically, refactoring to improve testability. So we can write better tests and have more confidence when we refactor code (and add new features) that we don’t break existing functionality — except when we really want to. First a few definitions:. That’s from Martin Fowler. He literally wrote the book on refactoring. Nice theory, right? So what do I mean by testability?