A simple sign up form design doesn't include any validation code.
A Pen by Asif Ahmed on CodePen.
/** | |
* Author: Asif Ahmed | |
* Site: https://quickgrid.blogspot.com | |
* Problem: Parse a text file and show details of hierarchial relation between the lines. | |
* Technique: It show the parent child relation of html tags ( or anything else on space based hierarchy ) | |
*/ | |
#include<iostream> | |
#include<string> | |
#include<cstdio> |
#!/bin/bash | |
# Mainly a demonstration of various ways to do the same thing. | |
# Using passed in argument or read from terminal. | |
# Factorial calculation by reading data a file by another program | |
# and use the output from that program as a input of this program. | |
calculateFactorial(){ | |
#check if any command line arguments were passed otherwise read input. |
#!/bin/bash | |
# Read from file and send data to another script to calculate. | |
readAndCalculateData(){ | |
while read input | |
do | |
echo "sending $input to Calculate:" | |
bash factorial.sh $input | |
done < "$1" |
#!/bin/bash | |
# Generate numbers and save / append in the specified file. | |
generateNumbers(){ | |
for (( c=1; c<=$1; c++ )) | |
do | |
echo $c >> numbers.txt | |
done | |
} |
#!/bin/bash | |
# Delete all the data in the passed argument file. | |
echo "" > "$1" |
/** | |
* Author: Asif Ahmed | |
* Problem: UVA 417 - word index | |
* Technique: Very Slow and worst possible solution. | |
* 5 (five) dimensioanl vector integer array. 1, 2 | |
* 3, 4 (four) dimensional integer array. | |
*/ | |
#include <vector> | |
#include <iostream> |
99 | |
[ () ( []()((())() ( [[ ] [ [ [( ([]) ) ] ] [] ] ] ))()) ] | |
[ () ( []()((())() ( [[ ] [ [ [( ([]) ) ] ] [] ] ] ))()) [] ] | |
[ () ( []()((())() ( [[ ] [ [ [( ([]) ) ] ] [] ] ] ))()) ] | |
[ () ( []()((())() ( [[ ] [ [ [( ([]) ) ] ] [] ] ] ))()) ] | |
[ () ( []()((())() ( [[ ] [ [ [( ([]) ) ] ] [] ] ] ))()) ] | |
[ () ( []()((())() ( [[ ] [ [ [( ([]) ) ] ] [] ] ] ))()) [] ] | |
[ () ( []()((())() ( [[ ] [ [ [( ([]) ) ] ] [] ] ] ))()) ] | |
[ () ( []()((())() ( [[ ] [ [ [( ([]) ) ] ] [] ] ] ))()) [] ] |
A simple sign up form design doesn't include any validation code.
A Pen by Asif Ahmed on CodePen.