Welcome to FarmSoft Studios! Located in the rolling hills of Statesville, North Carolina, our goal as a company is to create quality web sites that are completely W3C standards-compliant, stunning graphics that make your company's identity stand out, and usability that will flex to users in all walks of life. We love paying attention to detail, while making products that our clients are completely satisfied with. Please Contact Us for more details on how we can serve your needs.

FarmSoft Studios Graphic Design & Web Design; Inspiration. Diligence. Excellence. The Art of Design.

We currently offer:
  • Custom web solutions
  • Templated web solutions
  • Custom graphic design
  • Custom logos, and branding work
  • Custom PHP/MySQL Web Applications
  • PSD to XHTML services -- (converting a Photoshop document into a website)
Thank you for your interest! Feel free to browse around, and take a look at my design portfolio. It is small right now, as I am just starting up, but check back soon, I'm always adding recently finished projects.
Have a great day!



Recent Blog Posts:

Adding A User In MySQL

Do you need to quickly add a specific user with access to only a certain table? Issue this command as a root or admin user:

GRANT ALL ON testdb.* TO 'testuser'@'localhost' IDENTIFIED BY 'pass1';

You can also limit user’s privileges to specific ip addresses or domains in case you need to access your databases from a different host.

GRANT ALL ON *.* TO 'testuser'@'remote.farmsoftstudios.com' IDENTIFIED BY 'pass1';

Posted By: FarmSoft Studios on November 20, 2008 @ 9:01 am — Comments (0)digg

Find The Version Of CentOS/RHEL Without Rebooting

Want to know if you have CentOS 4.5 or 5.0? Issue this command:
cat /etc/redhat-release
That file contains the needed version information.

[root@localhost ~]# cat /etc/redhat-release
CentOS release 5 (Final)
Posted By: FarmSoft Studios on November 17, 2008 @ 7:48 pm — Comments (0)digg

Mounting a Samba (SMB) Share in CentOS

Need to mount a samba share on your CentOS server from the command line?

Create a directory on the root:
mkdir /sharename

Then mount the share:

mount -t cifs //<servername>/<sharename> /sharename

if you type df -h you should see that your share is now mounted on the mountpoint that you created earlier.

Posted By: FarmSoft Studios on October 10, 2008 @ 1:45 pm — Comments (0)digg

Connecting to the Remote Windows Console with Mac’s RDP Client

Ever needed to connect to the remote console of the machine rather than running through a terminal services session so that you could install certain software, or reset stuck terminal services sessions from a remote location? All you have to do is type /console behind the host in the window.

Remote Desktop Connecting to Console

Posted By: FarmSoft Studios on October 3, 2008 @ 10:41 am — Comments (0)digg

Pandora Music Application

I wrote a little application that allows you to play music from Pandora right from your dock. It does not take up a tab in your web browser, and it supports playing while minimized, which Safari does not. You can get it here: http://www.farmsoftstudios.com/pandora/

Posted By: FarmSoft Studios on October 1, 2008 @ 2:15 pm — Comments (0)digg