How to create a simple Blogger template
Techie Programmer
by Karthikeyan Moorthy
4y ago
In this article I shared my own blogger template which currently using in this blog and I used Bootstrap for blog layout design and its fully customize, please change this template as per your blog design. [Download Source code] simple-blogger-template.xml 1 <?xml version='1.0' encoding='UTF-8' ?> 2 <!DOCTYPE html> 3 <html expr:dir='data:blog.languageDirection' lang='en-US' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'> 4 <head> 5 < ..read more
Visit website
How to write triangle program in C language
Techie Programmer
by Karthikeyan Moorthy
4y ago
Hi friends, today I write a simple C program to create triangle pattern structure and its very easy and fun also. [Download Source code] triangle.c 1 #include<stdio.h> 2 int main() { 3 int triangleHeight = 0; 4 int triangleWidth = 0; 5 6 int middlePoint = 0; 7 int startPoint = 0; 8 int endPoint = 0; 9 10 int outerLoop = 0; 11 int innerLoop = 0; 12 13 printf("Please enter the triangle Height:"); 14 scanf("%d",&triangleHeight); 15 if(triangleHeight >= 2) { 16 17 triangleWidth = triangleHeight * 2; 18 if(triangleWidth%2 == 1) 19 { triangleWidth++; } 20 21 middlePoint = triangleWid ..read more
Visit website
How to develop a Source code syntax highlighter using php
Techie Programmer
by Karthikeyan Moorthy
4y ago
Syntax highlighter is used to show the source code program is colorful, so the reader can easily read/understand your code after integration. In this program, I added various elements (reserve words, parenthesis, comment, and quotes etc..) for highlighting. You can add/modify this code based on your Web Application/Programming Blog. [Download Source code] This syntax highlighter code is independent to any language, so you add integration with any programming language. Note: I use this script in this blog also, please customize the code based on your requirement. index.php 1 <link href ..read more
Visit website
How to Create a Bubble sort in Java
Techie Programmer
by Karthikeyan Moorthy
4y ago
Bubble sort is a simple sorting algorithm that repeatedly steps through the list should be sorted, compares each pair of adjacent items and swaps them if they are in the wrong order. The pass through the list is repeated until no swaps are needed, which indicates that the list is sorted. Do you know why its called as Bubble sort because The smaller value bubbles up to the top of the list, while the larger value sinks to the bottom. [Download Source code] BubbleSort.java 1 package com.techieprogrammer; 2 3 import java.util.ArrayList; 4 import java.util.Arrays; 5 import java.util.Iterator; 6 ..read more
Visit website
How to trace file creation and modification date using C++ Programming
Techie Programmer
by Karthikeyan Moorthy
4y ago
This script is used to collect files creation and modification date information from your system drive, we can search any date to know the results and all output will be stored in a flat file, so its easier to view the log. Before running this program, please confirm the read/write permission for the output flat file (FileList.txt). [Download Source code] It helps to know what all files are created/update on those given search date. Most malware programs try to inject/affect the files, so it helps to debug those affected files. I wrote this script using Borland C++ 5.5 Version under Windows ..read more
Visit website
How to show hidden files and folders using C++
Techie Programmer
by Karthikeyan Moorthy
4y ago
This program is used to show all hidden files and folder in your system drive and it can run well even system has affected by virus and worms, usually, some kinds of the virus change your files and folders in a hidden state, this script will help you to view your files and folders again. The main feature is without installation it can play. [Download Source code] I wrote this script using Borland C++ 5.5 Version under Windows Platform. You can modify or reuse the codes as per your requirement, its Free to use. unhidden.cpp 1 #include<iostream> 2 #include<conio.h> 3 #include< ..read more
Visit website
Create a Binary Search Tree in Java
Techie Programmer
by Karthikeyan Moorthy
4y ago
A binary search tree is a node-based data structure, the whole idea of a binary search tree is to keep the data in sorted order so we can search the data in a little faster.There are three kinds of nodes are playing key role in this tree (Parent Node,Left Child Node & Right Child Node).The value of the left child node is always lesser than the value of the parent node, the same as the value of the right child node is always greater than the value of the parent node. Each parent node can have a link to one or two child nodes but not more than two child nodes. [Download Source code] Binar ..read more
Visit website
How to develop a PHP Minifier
Techie Programmer
by Karthikeyan Moorthy
4y ago
PHP Minifier is the process of removing all unnecessary characters from source code without changing their functionality. Unnecessary characters usually include tab (/t) space characters, new line characters, single (//,#) and multiple lines (/* ..... */) comments.It reduces the size of the source code, so its transmission the output over the internet as more efficient. [Download Source code] index.php 1 <?php 2 include_once("PHPMinifier.php"); 3 $obj = new PHPMinifier(); 4 $obj->apply("page.php"); 5 ?> PHPMinifier.php 1 <?php 2 class PHPMinifier { 3 4 private $fileName; 5 6 p ..read more
Visit website
How to Make Antivirus Using C++ Programming Language
Techie Programmer
by Karthikeyan Moorthy
4y ago
This project is developed based on the console user interface (CUI). It has own scanning algorithm for finding malicious code in each file during the scan. The core idea is to search/match the virus signatures in all scan files or directory. Usually, 90% of viruses/worm having own signature (Some repeat text founded in all affected binary files or archive files) and remain 10% Viruses are identified based on execution behavior. [Download Source code] Here I wrote code for signature-based scan algorithm, so I stored Virus signatures in separate databases and it organizes in file flat system f ..read more
Visit website
Linked List Program in Java
Techie Programmer
by Karthikeyan Moorthy
4y ago
A Linked list is a linked data structure, it built like set of nodes and each node contain two portions (Data portion & Node Reference portion).Data is always stored in Data portion (Maybe primitive data types eg Int, Float .etc or we can store user-defined data type also eg. Object reference) and similiarly Node Reference portion may connected to another node if it really had neighbor node or otherwise Reference portion marked as NULL. [Download Source code] LinkedList.java 1 package com.techieprogrammer; 2 3 import java.util.ArrayList; 4 import java.util.Arrays; 5 import java.util.Ite ..read more
Visit website

Follow Techie Programmer on FeedSpot

Continue with Google
Continue with Apple
OR