Minecraft Windows 7 mehr RAM

Minecraft Windows 7 mehr RAM

May 6, 2013
Geht auf Start, SystemsteuerungIn der Systemsteuerung auf System, Erweiterte SystemeinstellungenUnter Erweitert unten rechts auf UmgebungsvariablenIn der obersten Zeile, bei Benutzervariablen auf NeuNun könnt ihr die gewünschten Arbeitspeichereinstellungen für Java setzen. Für den Namen der Variable geht ihr folgendes ein _JAVA_OPTIONS (Wichtig: muss genau so geschrieben sein). Für den Wert g [...]
Get YouTube video title with PHP

Get YouTube video title with PHP

April 29, 2013
Today I'm gonna show you the best way to get the title of a YouTube video with PHP. You can reuse this code for your website or blog, backlinks to this post are really appreciated.[c]title; echo $title; ?>[/c]I hope you like this tutorial :) [...]
Git push without branch name

Git push without branch name

April 28, 2013
Today I'm going to show you a way to deploy faster with git. You can configure git to push automatically to your default remote branch. Use this command:[c]git config --global push.default current[/c] Now you can push with [c]git push //instead of git push BRANCH master[/c] [...]
Open Finder from Terminal

Open Finder from Terminal

April 27, 2013
Sometimes when I use the OSX Terminal I want to open Finder at the current directory. How can you achieve this? It is simpler than I thought. There is the command open. Example:[c]open . //opens the current directory in Finder open /private/etc //opens the directory /private/etc[/c] [...]
Cro - Easy SublimeVideo HTML5 player HD mp4

Cro - Easy SublimeVideo HTML5 player HD mp4

April 21, 2013
[...]
Redirect 301 php

Redirect 301 php

March 27, 2013
In this post I want to explain you how to use redirects in PHP. The redirects are sent as HTTP header.[c][/c]This script would redirect all connections to ph3nx.com. [...]
Hackintosh

Hackintosh

March 27, 2013
Since Apple released OSX 10.8.3 I decided to make a fresh installation based on the new version of mountain lion. I'm using the Gigabyte GA-Z77-DS3H rev. 1.0 motherboard with BIOS version F9. In the UEFI / BIOS configuration I selected "Optimized Defaults" and set the SATA mode to AHCI. Then I booted with the flag npci=0x3000 using an UniBeast prepared bootstick with the latest Mountain Lion. I fo [...]
Link to app in the AppStore

Link to app in the AppStore

March 25, 2013
Maybe you know these "download app buttons" from other websites. They're only shown on iDevices and simplify the installation process of an app a lot. All you need to do is insert a meta tag. You need to know the app-id of the app you want to link.[c][/c]try it with your own application. :) [...]
How to use mailto links in HTML

How to use mailto links in HTML

March 20, 2013
This short post explains you how to use mailto links in HTML. There isn't a special tag for this. You use the anchor tag like for any other link. You need to type "mailto" followed by the email adress. If you want you can add a subject and some content for the body of the email. Keep in mind that the user who follows your link is able to edit these values. Here is a sample code for you:[c]Click he [...]
How to update all Ubuntu Server packages

How to update all Ubuntu Server packages

March 6, 2013
In this post I will show you how to update all software on your Ubuntu Server. The programs on Linux are available in form of packages on repositories. There are three commands you need to run. This will update all packages (except the core). You need admin permissions to run these commands thats why I put sudo in front of them.[c]sudo apt-get update sudo apt-get upgrade sudo apt-get dist-upgra [...]
Setting charset in htaccess or vHost configuration

Setting charset in htaccess or vHost configuration

March 6, 2013
I created a .txt file containing special characters like ü and ä and saved it with UTF-8 encoding. On the computer (locally) the symbols were shown correctly. However in the web browser they did not appear correctly. So I searched a method to set the encoding for plain text files. There is no way to set it inside the file like charset=UTF-8 or anything like that. I found the following solution: [...]
PHP convert Object to multidimensional Array

PHP convert Object to multidimensional Array

March 1, 2013
Have you ever wondered how to get an array out of an object in PHP? This simple function will convert any object in a multidimensional array. If you want you can include it in your projects.[c]function ota($d) { if (is_object($d)) { $d = get_object_vars($d); } if (is_array($d)) { return array_map(__FUNCTION__, $d); } else { return $d; } }[/c] [...]
Please share: Google+ | Facebook | Twitter
5 stars - based on 39 reviews
comments powered by Disqus