Skip to content

Instantly share code, notes, and snippets.

View inaseem's full-sized avatar
🎯
Learning

Naseem Ali inaseem

🎯
Learning
View GitHub Profile
<?php
define("DATABASE", "ats_db");
define("HOST", "localhost");
define("USER", "username");
define("PASSWORD", "password");
error_reporting(E_ERROR | E_PARSE);
$ticketNumber = filter_input(INPUT_POST, 'ticketNumber');
$recipientEmail = filter_input(INPUT_POST, 'toemail');
@inaseem
inaseem / index.html
Created December 18, 2018 18:45
Steve Jobs Tribue Page
<div id="main">
<div id="title">
<h1>Steve Jobs Tribute Page</h1>
</div>
<div class="top-grid">
<div id="img-div">
<img id="image" src="http://pngimg.com/uploads/steve_jobs/steve_jobs_PNG33439.png" alt="">
</div>
<div class="about" id="img-caption">
<h1>Steve Jobs</h1>
@inaseem
inaseem / strings.xml
Created June 14, 2018 08:41
strings.xml file containing all the items we got from the PlayerList.java
<resources>
<string name="app_name">Keeper</string>
<string-array name="team_csk">
<item name="Ambati_Rayudu">Ambati Rayudu # https://www.mykhel.com/thumb/240x100x225/cricket/players/0/4620.1521698291.jpg</item>
<item name="Chaitanya_Bishnoi">Chaitanya Bishnoi # https://www.mykhel.com/thumb/240x100x225/cricket/players/5/6685.1522931148.jpg</item>
<item name="David_Willey">David Willey # https://www.mykhel.com/thumb/240x100x225/cricket/players/5/4475.1521114368.jpg</item>
<item name="Deepak_Chahar">Deepak Chahar # https://www.mykhel.com/thumb/240x100x225/cricket/players/9/5059.1521698486.jpg</item>
<item name="Dhruv_Shorey">Dhruv Shorey # https://www.mykhel.com/thumb/240x100x225/cricket/players/3/6023.1521698938.jpg</item>
<item name="Dwayne_Bravo">Dwayne Bravo # https://www.mykhel.com/thumb/240x100x225/cricket/players/6/3166.1521699402.jpg</item>
<item name="Faf_du_Plessis">Faf du Plessis # https://www.mykhel.com/thumb/240x100x225/cricket/players
@inaseem
inaseem / PlayerList.java
Last active June 14, 2018 08:37
Repo For Codes That I Use For Android Basics Nanodegree Progarm
import java.util.Locale;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
/**
*
* @author Naseem
*/