Update
0 Comments

As of now, sites included in the Veetri network have not had a proper place for posting new updates, which is unfortunate considering all the new features that are added are often overlooked.

The Veetri network mainly includes Songr and ViewPure as of now, but smaller sites in the network such as VidFiber and Like Yah will receive updates as well. To stay up to date with the latest updates on these sites, keep an eye out for a future … show me the rest

Tips & Tricks
2 Comments

There are those times when you want to achieve an effect in your web design that is quite possible to do with Photoshop, but you just want to do with pure CSS. If that’s ever the case, then here’s a plethora of CSS snippets for you to use (if that’s not the case, you probably need to start coding more).

Other snippets that don’t substitute for Photoshop are just convenient and probably useful (to some extent).

1. Transparency for everybody… show me the rest

Tips & Tricks
2 Comments

Below are a few PHP tips and tricks I have found very useful, and hope to share it with you guys.

1. Code with error reporting

This will save you an insane amount of time, all by simply adding a two line snippet of code. Essentially, it’s just forcing the server to print PHP errors so that if anything does fail, you can identify the cause. Just throw the snippet below into the top of any file.

1
2
error_reporting

show me the rest