While working on some code, I needed to get something I could access much faster and much easier than my current methods. So after some testing, I’ve come across a solution. I started with my simple SSH session. This proves to not be so helpful when editing multiple files or needing to move around easier. …
Tag: Site
Pastebin rewrote
I have taken my original code I wrote for my SMF powered pastebin and rewrote this script. This was a massive rewrite from the original code and hopefully it works out well for anyone else who is looking into using it. I wrote it so it should be plugable with different databases, user information and …
SMF Package Manager Generator
Hello, Originally I had wrote my original SMF Package Manager Generator a few years ago. It was sloppy coding, poor JavaScript and relied heavily on the server. Not my absolute best work, but was something I was proud on at the time from my efforts to dive into JavaScripting. However, todays times are different. So …
Converting part of a svn repository to git
In moving my projects over to git, I stumbled across a troublesome issue. In one of my projects existed a folder along side trunk, tags and branches that had stuff I needed to be converted. However I wanted to convert these as individual git repositories. So, after reading “git –help svn clone” and finding nothing …
Postfix with ubuntu 11.10
In addition to my Dovecot issues, postfix as well had failed and I wasn’t able to send emails. However, getting them was more important at that point. After some trials, I found I needed to add this to my main.cf smtpd_sasl_type = dovecot smtpd_sasl_path = private/auth Which has resolved postfix from not working. Hopefully I …