2009-01-06 22:33:38
On your slice;
Install git.
sudo apt-get install git-core
Create an empty directory for your repository
mkdir myrepo.git && cd myrepo.git
Initialize git
git init
On your local machine
Create an empty directory for your repository
> mkdir myrepo.git && cd myrepo.git
Initialize git
git init
Add the remote repository as the origin
git remote add origin ssh://server-domain/repo
for my server the above command is
git remote add origin ssh://bulkan-evcimen.com/home/bulkan/src/repo.git
Create a ignore file for the first push
touch .gitignore
Add, commit
git add .gitignore
git commit -m "initial git commit"
Push your repo to the origin on slicehost
git push origin master
That's it. Happy gitting.
2008-10-18 23:59:58
So, this is my new blog written by me using Django and a free template from Rambling Soul. The other day i went live by changing DNS settings by pointing http://blog.bulkan-evcimen.com to the IP address of my VPS. Two days later some posts had comment spam! Im working on adding a new field to comment form to find out if you are human or not.
EDIT: So no more comment spam. how did i fix it ? Easy, i just removed the code inside of the individual Post handling view function which checked for POST requests and the comment form fields and then created a new comment.
2008-07-03 16:52:59
I had volunteered long time ago to give a talk at
Melbourne CocoaHeads as i was talking to Gareth about when the next meeting was going to happen he told me that someone (
Marcus Crafter) was going to give a talk on RubyCocoa, so jokingly i suggested, well i can do a talk on PyObjC (even though my knowledge is near zero) then it became serious and i said i can give a talk on py2app. So im giving a talk on py2app.
I should start creating my slides and organizing my code.