A simple sign up form design doesn't include any validation code.
A Pen by Asif Ahmed on CodePen.
A simple sign up form design doesn't include any validation code.
A Pen by Asif Ahmed on CodePen.
| 99 | |
| [ () ( []()((())() ( [[ ] [ [ [( ([]) ) ] ] [] ] ] ))()) ] | |
| [ () ( []()((())() ( [[ ] [ [ [( ([]) ) ] ] [] ] ] ))()) [] ] | |
| [ () ( []()((())() ( [[ ] [ [ [( ([]) ) ] ] [] ] ] ))()) ] | |
| [ () ( []()((())() ( [[ ] [ [ [( ([]) ) ] ] [] ] ] ))()) ] | |
| [ () ( []()((())() ( [[ ] [ [ [( ([]) ) ] ] [] ] ] ))()) ] | |
| [ () ( []()((())() ( [[ ] [ [ [( ([]) ) ] ] [] ] ] ))()) [] ] | |
| [ () ( []()((())() ( [[ ] [ [ [( ([]) ) ] ] [] ] ] ))()) ] | |
| [ () ( []()((())() ( [[ ] [ [ [( ([]) ) ] ] [] ] ] ))()) [] ] |
| /** | |
| * 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> |
| #!/bin/bash | |
| # Delete all the data in the passed argument file. | |
| echo "" > "$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 | |
| # 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 | |
| # 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. |
| /** | |
| * 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> |
| #include<stdio.h> | |
| #include<stdlib.h> | |
| #include<sys/types.h> | |
| #include<sys/wait.h> | |
| #include<unistd.h> | |
| int main(int argc, char *argv[]){ | |
| printf("1.Process PID: %d\n", (int)getpid()); |
| ;Author:quickgrid | |
| ;Site: http://quickgrid.blogspot.com | |
| ;Code: Even odd check 8086 assembly code | |
| ;predefined macro for speed coding | |
| ;define any code here that is reduandant | |
| newline macro | |