This utility allows the programmer to table often used code snippets. When the code snippet is needed bring up this application. Select the Code Snippet tab. Right click the mouse so the popup appears. Select the Copy To Clipboard option and that code snippet in now available on the clipboard for subsequent pasting where ever the programmer desires.
No need to search for that code. Place in this repository and just use it when you need it.
There is also a handy report so you can quickly review code snippets.
The SQL for the database can be utilized below.
[codesyntax lang=”sql”]
-- phpMyAdmin SQL Dump -- version 4.3.7 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Jun 12, 2015 at 09:13 PM -- Server version: 5.6.17 -- PHP Version: 5.5.12 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `code_snips` -- -- -------------------------------------------------------- -- -- Table structure for table `cst` -- CREATE TABLE IF NOT EXISTS `cst` ( `id` int(11) NOT NULL, `cat` varchar(255) NOT NULL, `cs` mediumtext NOT NULL ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; -- -- Indexes for dumped tables -- -- -- Indexes for table `cst` -- ALTER TABLE `cst` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `cst` -- ALTER TABLE `cst` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
[/codesyntax]
The component documentation can be reviewed by clicking here.
The source code can be retrieved by clicking here.
Mr. Arch Brooks, Software Engineer, Brooks Computing Systems, LLC authored this article.