This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Process: eclipse [6146] | |
Path: /Applications/FDT 5.app/Contents/MacOS/eclipse | |
Identifier: org.eclipse.eclipse | |
Version: 3.7 (3.7) | |
Code Type: X86-64 (Native) | |
Parent Process: launchd [304] | |
Date/Time: 2011-12-02 00:53:16.031 +0100 | |
OS Version: Mac OS X 10.7.2 (11C26) | |
Report Version: 9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Processus\Abstracts\JsonRpc | |
{ | |
/** | |
* | |
*/ | |
abstract class AbstractJsonRpcServer | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_id": "4092e0d25355275f595a731a1d022ce2", | |
"_rev": "1-ace8e9bf29cb22416b6db93754195af9", | |
"created": 1316913041, | |
"data": { | |
"class": "Lib_Db_Xdb_Exception", | |
"message": "GetRow failed!", | |
"method": null, | |
"methodLine": null, | |
"file": "/Users/francis/www/meetidaaa_newbackend/src/application/Lib/Db/Xdb/Client.php", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerName home.local.de | |
DocumentRoot /Users/francis/www | |
<Directory "/Users/francis/www/"> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride None | |
Order allow,deny | |
allow from all | |
</Directory> | |
</VirtualHost> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# This is the main Apache HTTP server configuration file. It contains the | |
# configuration directives that give the server its instructions. | |
# See <URL:http://httpd.apache.org/docs/2.2> for detailed information. | |
# In particular, see | |
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html> | |
# for a discussion of each configuration directive. | |
# | |
# Do NOT simply read the instructions in here without understanding | |
# what they do. They're here only as hints or reminders. If you are unsure |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerAdmin webmaster@localhost | |
ServerName localhost | |
DocumentRoot /home/francis/www | |
<Directory /home/francis/www> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride None | |
Order allow,deny | |
allow from all | |
</Directory> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Passwordless SSH Login | |
========================= | |
On the client | |
* generate a RSA keypair | |
* copy the *.pub part to the server, add it to ~/.ssh/authorized_keys | |
* modify your /etc/ssh_config for keepalive (30 sec. is very short - only if you get "broken pipe" errors): | |
ServerAliveInterval 30 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#----------------------------------------------------------- | |
# | |
# Purpose: Just run this script to install the required | |
# ubuntu/pear packages for php development. | |
# | |
# Tested on Ubuntu 10.04 | |
#----------------------------------------------------------- | |
echo "Installing basic packages for development." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rsync -ruzptv --archive spaces/ /Volumes/Stuff/Backup\ New\ MBP/Backup/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SET @rownum =0; | |
SET @rank =0; | |
SET @prev_val=0; | |
SELECT @rownum := @rownum + 1 AS row | |
, @rank := IF(@prev_val!=uxp,@rownum,@rank) AS rank | |
, @prev_val := uxp AS uxp, | |
userId | |
FROM | |
( |