Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Pir Shukarullah Shah

Pir Shukarullah Shah

Pir Shukarullah Shah has asked 3 questions and find answers to 32 problems.

Stats

950
EtPoint
328
Vote count
3
questions
32
answers

About

Software Engineer.

/**
* Created by Shukarullah on 9/18/2015.
*/
public class ShukarullahShah {

 String occupation () { return "Software Engineer"; }

 String company () { return "http://www.shukarullah.com/"; }

 String facebook () { return "https://www.facebook.com/Shukerullah"; }

 String twitter () { return "https://twitter.com/shukerullah"; }

 String github () { return "https://github.com/shukerullah"; }

 String stackoverflow () { return "http://stackoverflow.com/users/5315786/shukarullah"; }

 String[] interests () {
    String[] interests = {"Unity", "Android", "Swift", "React Native", "Node.js", "Wordpress"};
    return interests;
 }
}