Blog

New Ticketing and Knowledgebase System for Cronless

March 24, 2013 | By | Add a Comment

We released a new update for Cronless that will hopefully ease asking for support and help us keep up with the growing number of tickets. We’ve integrated with Zendesk to provide a ticketing system, knowledgebase and a section for submitting and voting for ideas and suggestions. To access any of these new feature simply click [...]

Continue Reading

Shortcut Keys for Bash

August 7, 2012 | By | Add a Comment

A list of 30 Bash shortcut keys that will save you time. Bash is the default shell in most Linux distributions and the most popular. The shortcuts are divided into 3 sections (navigation, editing and cutting and pasting) for easy reference.

Continue Reading

A Simple Port Scanner in PHP

July 17, 2012 | By | 2 Comments

Here is a simple port scanner written in PHP. It checks if a port is accessible by trying to connect to it using PHP’s fsockopen function.

Continue Reading

Managing Application Settings in PHP

March 27, 2012 | By | 2 Comments

There are multiple ways to save application settings/configurations in PHP. You can save them in INI, XML or PHP files as well as a database table. I prefer a combination of the latter two; saving the database connection details in a PHP file and the rest in a database table.

Continue Reading

SnipsManager Version 2.3 Released

February 6, 2012 | By | 5 Comments

The new version of SnipsManager is available for download. We fixed some bugs and added a few more features: Fixed the text wrapping bug in snippets containing long strings of text without spaces. Improved snippet submission summary page, parse.php.

Continue Reading

Cronless Now Supports 30 Second Cron Jobs

Cronless Now Supports 30 Second Cron Jobs

August 10, 2011 | By | Add a Comment

Today we released a new Cronless update that allows premium members to schedule cron jobs to run every 30 seconds (twice per minute).

Continue Reading

Download And Search Multiple Pages Using PHP

August 2, 2011 | By | Add a Comment

Here is a simple way to loop through a list of URLs, download the page and search the contents for a string. The script starts by checking if the post variable $_POST['urls'] is set. If it is, its content is split by line breaks into the array $urls to easily read one URL at a [...]

Continue Reading

Minor Interface Tweaks to Cronless

July 20, 2011 | By | Add a Comment

We did some minor interface and settings tweaks this week to Cronless:

Continue Reading

The Google +1

The Google +1

May 19, 2011 | By | Add a Comment

Google’s latest major feature, the +1 button, is Google’s attempt at rivaling, and potentially improving upon, the Facebook “like” button. Its functionality is extremely similar to Facebook’s “like” option in that it allows users to “+1″ links and ads that come up through Google’s search engine. Google will also soon be enabling the +1 button [...]

Continue Reading

Backup MySQL Databases to Amazon S3 Using PHP

May 16, 2011 | By | Add a Comment

With a few lines of PHP code and S3tool’s s3cmd command-line tool you can backup your MySQL databases automatically to Amazon’s S3. To use this script you’ll need SSH access to your server. First download s3cmd and upload it to your server. Installation is straight forward. The PHP code is simple:

Continue Reading