Skip to content

Instantly share code, notes, and snippets.

View ZaeemSattar's full-sized avatar
🏠
Working from home

Zaeem Sattar ZaeemSattar

🏠
Working from home
  • Synavos
  • Lahore, Pakistan
View GitHub Profile
// dependency
compile 'com.android.support:design:23.0.1'
<android.support.design.widget.TextInputLayout
android:id="@+id/input_layout_password"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
Creational patterns: how you create objects.
Structural patterns: how you compose objects.
Behavioral patterns: how you coordinate object interactions.
Creational:
Builder
Dependency Injection
Singleton
Asynchronous HTTP Requests in Android Using Volley
Volley is the new Swiss Army Knife of Android Developers, it provides some nice utilities which makes the networking for Android apps easier and faster. The good thing about Volley is that it abstracts away the low level details of what HTTP client library is being used under the hood and helps you focus on writing nice and clean RESTful HTTP requests. Additionally all requests in Volley are executed asynchronously on a different thread without blocking yourmain thread”.
What are the features that Volley provides?
Important features of the Volley library:
A high level API to make asynchronous RESTful HTTP requests
An elegant and robust Request queue
@ZaeemSattar
ZaeemSattar / BinarySearchClass.java
Created December 21, 2016 18:00
Simplest example of Binary Search in java
package dorid;
public class BinarySearchClass {
private static int[] numAarray;
private static final int numberToSearch = 89;
public static void main(String[] args) {
// TODO Auto-generated method stub
// array must be sorted
@ZaeemSattar
ZaeemSattar / LinearSearchClass.java
Last active December 21, 2016 18:03
Simplest example of Linear Search in java
package dorid;
import java.awt.LinearGradientPaint;
public class LinearSearchClass {
static int [] numAarray;
public static void main(String[] args) {
// TODO Auto-generated method stub
numAarray=new int[]{3,2,4,5,6,6,7,8,9,9,0,9};
<?php
$conn = new mysqli("localhost", "example", "password", "yourDB");
// Check connection
<?php
$conn = new mysqli("localhost", "example", "password", "yourDB");
// Check connection
<?php
$conn = new mysqli("localhost", "example", "password", "yourDB");
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
@ZaeemSattar
ZaeemSattar / MySimpleApi.php
Created November 2, 2016 17:20
Simplest understandable API example in PHP
<?php
$name=$_POST['name'];
echo $name
?>
public class Insta extends Fragment {
WebView webView;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View root = inflater.inflate(R.layout.activity_my_insta, container,
false);
webView=(WebView)root.findViewById(R.id.webView);
WebSettings webSettings=webView.getSettings();