One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| /* this is too pull from github repo update | |
| * and get it from repo | |
| */ | |
| git fetch --all | |
| git reset --hard origin/master | |
| *** clear git cache, .gitignore fix *** | |
| git rm -r --cached . | |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| Practice work |
| <?php | |
| $con = mysqli_connect("localhost","username","password","databaseName"); | |
| if (mysqli_connect_errno()) | |
| { | |
| echo "Failed to connect to MySQL: " . mysqli_connect_error(); | |
| }else{ | |
| mysqli_set_charset($con,"utf8"); | |
| if (isset($_POST['fb_id']) && $_POST['fb_id'] != '') { | |
| $fb_id = $_POST['fb_id']; |
| #include<stdio.h> | |
| #include<string.h> | |
| #include<ctype.h> | |
| void main() | |
| { | |
| char expr[100], operators[20]; //Arrays for storing expression and operator | |
| char variables[20][20]; // 2d array for storing variable or identifier | |
| int constants[20], ascii[100]={0}; //for storing constants, ascii values of expression |
| Having a fun time here doing Codefight Challenge :p |
| Here all of mine code is from my course. | |
| To help my classmate and to store my shell program to use from anywhere | |
| i'm using this GIST. |
| /* | |
| Name: Md. Nabid Imteaj | |
| Prob: | |
| Algo: | |
| */ | |
| #pragma comment( linker, "/STACK:16777216" ) | |
| #pragma warning( disable:4786 ) | |
| #include <cmath> |
| /* | |
| 5 100 | |
| 55 25 | |
| 5 15 | |
| 32 28 | |
| 27 20 | |
| 15 20 | |
| */ | |
| #include<iostream> | |
| #include<cstring> |