Remove the AutoImport Feature for Namespaces in PHPStorm
Most of the time it is really fine like it is configured in PHPStorm, but sometimes, or in some types of projects, you don’t want to import the namespace with a “use” statement, instead you want to have the full qualified class identifier in your code. The default configuration of PHPStorm is to replace the […]
Using the TwitterApi 1.1 with TYPO3.Flow
Using Gists for Sourcecode examples in WordPress
What I really don’t like that much in WordPress is, that there is no really perfect way to display source code. Today I stumbled over the idea to use gists for displaying source code in WordPress. The advantage is, you can use for exampe PHPStorm for creating your source code, create a gist right out […]
Listening to Podcasts with Pocket Casts
Since about a year I really love listening to podcasts. I used Podkicker Pro for almost a year now and it is a really great app for that. Some time ago I switched to Pocket Casts, which is, in my opinion, a little bit better. Some things I really love about Pocket Casts are: Automatic […]
Using Jenkins to generate your documentation
SymfonyLive 2013 in Berlin
Finally after a great conference I am sitting in the train back home. I thought it might be a nice idea using the time to make a small review on the conference and on some of the talks. First of all, the conference was very good organized. I liked the idea putting the session plan […]
Remember the Milk meets Alfred
I started using Remember the Milk a long time ago. It is the best app for managing task and it helps me a lot to do my daily work. Also I love Alfred. It is the Mac thing and can be compared to Launchy. Helps a lot in your daily work and it is easy […]
PHPStorm – Uploading external changes
During the TYPO3Flow Usergroup Rhein-Main yesterday someone showed me a nice feature in PHPStorm that I missed until now. Now that I know that this feature exists, I want to share it. Until a short time ago I did all my git-stuff directly on the server, in my case on my vagrant box. I had […]
Use the file watch function from PHPStorm on Mac OS X
This is a short tutorial how you can use the compass watch function that is new in PHPStorm, beginning with creating a gemset for compass and using this for PHPStorm. Create a new gemset using rvm [1] and install compass [2]
1 2 3 4 5 6 7 8 |
# create a new gemset and select it, using the short syntax from rvm rvm use ruby-1.9.3-p374@compass --create # validate that you use the correct gemset rvm gemset list # install compass gem install compass |
Open PHPStorm and select a scss file Now PHPStorm will ask if you […]