Skip to content

Instantly share code, notes, and snippets.

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

Danish Aziz Satkut danishsatkut

🏠
Working from home
View GitHub Profile
import java.util.ArrayList;
interface IArray {
public void add(Object element);
public void addAll(Object elements[]);
}
class Array implements IArray {
private ArrayList<Object> a = new ArrayList<Object>();
interface PoweredDevice {
public void start();
}
class ScanOperation {
public void perform() {
// Performing scan operation
}
}
interface IShape {
public void draw();
}
class Rectangle implements IShape {
public void draw() {
System.out.println("RECTANGLE");
}
}
class Employee {
private String name;
private String position;
public Employee(String name, String position) {
this.name = name;
this.position = position;
}
public Employee changeName(String name) {
@danishsatkut
danishsatkut / dabblet.css
Last active November 5, 2015 09:57
Album design for Supersonic
/**
* Album design for Supersonic
*
* Designed by: Danish Satkut (@Agent47DarkSoul)
*/
body {
margin: 25px;
background-color: #DDD;
}
@danishsatkut
danishsatkut / dabblet.css
Created October 29, 2015 10:04
Circular profile picture
/**
* Circular profile picture
*/
.image-container {
display: inline;
margin: auto 10px;
}
img {
@danishsatkut
danishsatkut / dabblet.css
Created October 29, 2015 10:04
Circular profile picture
/**
* Circular profile picture
*/
.image-container {
display: inline;
margin: auto 10px;
}
img {
@danishsatkut
danishsatkut / dabblet.css
Created October 28, 2015 15:38
Artist Page design for Supersonic
/*
* Artist Page design for Supersonic
*/
artist_listing .artist_social { float: right; padding: 0; }
.artist_listing_name { color: #1398bb; font-size: 16px;}
.artist_listing_details { padding: 20px 10px; }
.artist_listing_details a { text-decoration: none; }
#artist_listing { display: inline-block; width: 100%; }
#artist_listing .artist_social { float: right; padding: 0; }
.artist_listing_name { color: #1398bb; font-size: 16px;}
.artist_listing_details { padding: 20px 10px; }
.artist_listing_details a { text-decoration: none; }
#artist_listing_cover .page-title { position: absolute; width: 100%; top: 35%; color: #fff; text-align: center; }
#artist_listing_cover .sub_title { color: #FFF; font-size: 20px; }
#artist_listing .profile_wrap { height: 365px;overflow: hidden; }
#artist_listing { display: inline-block; width: 100%; }
#artist_listing .artist_social { float: right; padding: 0; }
.artist_listing_name { color: #1398bb; font-size: 16px;}
.artist_listing_details { padding: 20px 10px; }
.artist_listing_details a { text-decoration: none; }
#artist_listing_cover .page-title { position: absolute; width: 100%; top: 35%; color: #fff; text-align: center; }
#artist_listing_cover .sub_title { color: #FFF; font-size: 20px; }
#artist_listing .profile_wrap { height: 365px;overflow: hidden; }