Skip to main content

Some teasers, some free cloud space - getting ready for next semester!

This blog post is more a personal note, to share with the readers, whoever you may be, from wherever you may live.

I have a few plans that I'd like to share with you. If you comment, you have the chance of steering it a bit. After all, what's blogging just for the sake of yourself.

Unity for Architectural Visualization

I'm about to finish the last revisions for the final chapters of my upcoming book Unity for Architectural Visualization. I do hope I live up to the expectations. It will be published by Packt and they have a pre-order page ready:

ArchiCAD Summer School

Next week, I'm heading off to Cardiff (Wales) for the ArchiCAD Summer School 2013. There will be a BIM Teacher gathering, the introduction of ArchiCAD 17 (which I'm already using) and Artlantis 5 (which I'm using less, since moving more to Cinema4D, but interesting nonetheless). I will be too late for the openBIM day, alas, as I'm driving with a few friends on thursday.

BIM and collaboration

After a successful start of our collaborative exercise with students from architecture and engineering, we plan to continue this work. Last year we introduced them to quite a lot: ArchiCAD, TeamWork, Solibri Model Checker, IFC Export from ArchiCAD, IFC Import in Revit... 

I'm presenting some of the results at eCAADe 2013 in Delft (The Netherlands), 18 till 20th September.

At the same conference, I'm co-organizing a workshop on "Custom Digital Workflows" (monday morning 16th of September) and we'll try to be ready to demonstrate the use of VisTrails, alongside some custom scripts.
There is also a BIM educators workshop on tuesday morning, which I will be attending as well.

Teaching

This semester, I'll repeat most of the exercises of last, but try to complete the series of video tutorials. At least, the introduction to Grasshopper (using Rhinoceros 5), some updates for ArchiCAD 17 (I don't have time anymore to re-record the whole ArchiCAD BIM Course - maybe next year) and a few updates for Unity, based on the experience from the book (e.g. some tips on character animation and camera-switching/material-switching).

They will be published on Youtube, for free as usual:

Cloud

I've created an account on two more Cloud Service providers. If you are not registered to any of these, you can use these links to get a small bonus when signing up (both for you and me). Competition is sometimes good for end users.
  • Dropbox is well-known, but you start with a very small 2Gb and need quite some referrals to pump that up: http://db.tt/dhFofiC to gain 16Gb at most. You can get 3Gb more by allowing mobile uploads (at least once) and by using the Mailbox app on iOS, for another 1Gb.
  • SugarSync has a nice option of syncing "any" folder you want. I sometimes use it for sharing particular folders, such as the Processing Sketch folder, so I can reuse my sketches when loading Windows or when at the iMac at home:  https://www.sugarsync.com/referral?rf=cwqkfed6rnyq7
  • Box had some offers in the past to get 50 Gb for life. Still quite a lot in 2013. Maybe not so in 2050... I don't have a referral link, but I can offer co-workers (using the same domain name) the same amount: http://www.box.com
The previous three are fairly similar: start free, use referrals to increase space, web-, desktop and mobile clients. You also have the offers from Microsoft, Google and Amazon, which anybody can access.

The following are probably less known, but they have a good offer:
  • Copy is comparable to Dropbox and the others, but you start with 15GB and get 5Gb per referral: https://copy.com?r=lxfYd4
  • Shared provides a quite extensive amount of cloud space for free: 100Gb! It's completely web-based, so you'd use it differently from other providers. Their referral program provides a share of paid subscriptions https://shared.com/sign-up?ref=54097

Future?

And finally, I've submitted my CV for a fixed position, but it's an open competition, so nothing is sure at the moment. Wish me luck!


Comments

Popular posts from this blog

Improve usage of BIM during early design phases

When I was collecting ideas for a book chapter on BIM (that seemed to never have emerged after that), I collected 10 ideas, which I believe still reflect good recommendations to improve the usage of BIM during the early design phases. These ideas are related to BIM software, but you can apply them in any flavor, as long as you can model with Building Elements, Spaces and have control over representation. Introduction This article gives an overview of several recommendations and tips, to better apply BIM applications and BIM methodologies, in the context of the early design phases. Many of these tips are applicable in any BIM application and they are based on experience gathered from teaching, researching and using BIM software. Sometimes they could help software developers to improve the workflow of their particular BIM implementation. Tip 1 : Gradually increase the amount of information In the early design phases, the architect makes assumptions and lays out the main design in...

Getting BIM data into Unity (Part 0 - Introduction)

This post reflects on work that I carried out, elaborated during my guidance of a few Master thesis students, to better integrate BIM models into Unity. This will be a multi-part post. This makes each article a bit shorter to read, but allows more in-depth information overall. Hope you like it. Please comment with feedback and further improvements. Basic methodology Unity can import geometry from FBX and Collada (DAE) files primarily. There are a few other formats, but these are the preferred ones. When integrating CAD or BIM files into a realtime environment, you have to convert the geometry. During my Unity teaching and the writing of the book Unity for Architectural Visualization ( buy from Packt ), I’ve come up with a basic diagram explaining geometry exchange between CAD and BIM software and Unity. Throughout these posts, we’ll go more into detail. We start with ArchiCAD, but will tackle Revit in a follow-up post. Promised!

PythonOCC : Open Source interactive CAD shell (and how to run it on OSX)

What is PythonOCC? PythonOCC is an Open Source (LGPL) Python-wrapper for OpenCASCADE. So what is OpenCASCADE (OCC)? This is an advanced Open Source (custom license) modeling kernel, comparable to commercial engines, such as ACIS or Parasolid, which are used in quite some commercial CAD programs. When you want to develop CAD software, you could use OCC and write programs in C++. And why using Python? With this wrapper, you can create CAD and geometry scripts in Python, which is an interpreted Object-oriented scripting language. You can write almost "on-the-fly" and seriously reduce the implementation effort, by skipping the compiling-phase. You can even interact with a running program in the Python interpreter. Want to read more about this? The OpenCASCADE official website  (currently Linux and Windows are officially supported) The PythonOCC website/blog  (beware that the core of the actions happen in the development repositories). So far so good. Now the nasty, techn...