[02-09-2014]
And Now for Something Completely Different – Footprints
If you like Jazz, make sure to check this one. http://footprints-jazz.blogspot.com 18, great remixes of various Jazz sources. Really worth checking.
If you like Jazz, make sure to check this one. http://footprints-jazz.blogspot.com 18, great remixes of various Jazz sources. Really worth checking.
Summary: Python on Her Majesty ‘the Algorithm’ service This video series is good for you if: – you switch from other language to Python, – you already know at least basics of Python (sorry, there is no Python introduction here), – you are familiar with Python environment (installation, using idle), – you already have some […]
Two weeks ago I have posted contest with Cocos 2D 3.0 by Kirill Muzykov in the center of it. Response and blog comments haven’t flooded the blog, but still there were five people who wanted to get the copy. And now, the moment that you all have been waiting for, the winners are: xStoryTeller, Richard […]
If you work with OS X 10.9 and want to have swift at your console, just specify new SDK location as parameter. // this is test.swift println(“Hello”) /Applications/Xcode6-Beta6.app/Contents/Developer/\ Toolchains/XcodeDefault.xctoolchain/usr/bin/swift \ -target x86_64-apple-macosx10.9 -sdk \ /Applications/Xcode6-Beta6.app/Contents/Developer/\ Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk test.swift
Packt offered me a three copies of their recently published e-book: “Learning iPhone Game Development with Cocos2D 3.0” If you want to enter the competition, read on. You can get one digital copy out of three, but there is a catch :) You have to be a lucky winner. If you want to try to […]
I have just found really useful settings for tchs that make life easier: alias dirs ‘dirs -vl’ set dunique set pushdsilent set pushdtohome alias cd ‘pushd \!*’ source: http://thrysoee.dk/pushd/
Summary: Gives a small handful of advices on how to communicate This is one of these books where you get good advice on how to perform well when communicating things. I fully agree with Frank on how much important is the message. I fully agree on choosing right tools, right way of approaching the audience, […]
2:51 – that look. Is it bassist or chorus?
Summary: Whether you need it depends on your tasks Python Network Cookbook provides you with the samples related to the range of networking topics. Whether you will benefit from it depends heavily on your tasks. The point here is that the range of samples is really huge. Starting with data manipulation required for network based […]
If you want to prevent people from accidentally changing PATH variable try this one: set PATH=”$PATH:\0″ set PATH=”$PATH:some_additional_path” echo $PATH
If you experience really strange behaviour of your Java app, and you want to play with settings try using _JAVA_OPTIONS You can set any settings as you would while calling java. If you are looking for more JNI samples take a look here: http://jnicookbook.owsiak.org
If you just want to play with Swift’s basics try following: Inside Sublime Text 3 choose Tools -> Build System -> New Build System and replace default entry with (NOTE! make sure everything is a single line) { "shell_cmd": "/Applications/Xcode6- Beta.app/Contents/Developer/Toolchains/ XcodeDefault.xctoolchain/usr/bin/swift \"${file}\" -o \"${file_path}/${file_base_name}\" && \"${file_path}/${file_base_name}\"" } Then, type in simple Swift code and […]
Summary: Academic style If you like academic approach to the topic, that’s something you are looking for – definitely. The book is a collection of articles from various authors. This is slightly misleading, because you don’t expect that by cover. The point here is that book itself will not provide you with some solid, single […]
So far, so good. I was able to get OS X 10.10 working with VM Fusion. So, I can at least try some new stuff. The same goes for Xcode 6. I had no time to check it’s features, yet, but at least it installs :) Just one remark – be prepared for “snail mode” […]
So, you are going through all these posts at different blogs that tell you how to tweak USB installation disk in order to install OS X Maverics inside Parallels 9. Instead, just take a look directly at the source: http://kb.parallels.com/en/118806
I am not sure whether this is just me or whether anybody else experience the same issue – CRC failed for xcode_6_beta.dmg. If this is the case for you, try this one: defaults write com.apple.frameworks.diskimages skip-verify true hdiutil xcode_6_beta.dmg And simply drag and drop Xcode6-Beta from /Volumes/Xcode into /Applications. That’s it.
Summary: Must have if you want to do any serious debugging This book is a great companion to Accelerated Mac OS X Core Dump Analysis: GDB Exercises In here, we are jumping into new debugging environment in OS X. GDB was replaced with LLDB when it comes to default debugging environment. Samples in the book […]