Skip to content

Instantly share code, notes, and snippets.

View anantanandgupta's full-sized avatar
👋

Anant Anand Gputa anantanandgupta

👋
View GitHub Profile
anantanandgupta@ubuntu:~$ mkdir projects
anantanandgupta@ubuntu:~$ cd projects
anantanandgupta@ubuntu:~/projects$ git clone https://github.com/ukarlsson/eos-clion-example.git
Cloning into 'eos-clion-example'...
remote: Counting objects: 72, done.
remote: Compressing objects: 100% (47/47), done.
remote: Total 72 (delta 27), reused 56 (delta 15), pack-reused 0
Unpacking objects: 100% (72/72), done.
Checking connectivity... done.
anantanandgupta@ubuntu:~/projects$ cd eos-clion-example/
@anantanandgupta
anantanandgupta / An EOS Dawn 3.0 Setup Guide.md
Last active April 20, 2018 22:46
EOS Dawn 3.0 Setup Instructions for Developers - A Beginning to Dawn

Before You Start

This Guide I am preparing while learning EOS. I will keep it updating and correcting, if and when there is anything I find or learn new around it. EOS Dawn 3.0 has been released released recently and I have found it really interesting. Follow this guide if you, like me are the one who is intrigued and want to learn a new technology. Let me tell you that if you are new to the programming this is not for you. Also, this guide assumes that you are aware of linux operating system and know how to use the command lines for work.

This guide will also include the code for the sample contracts I will be preparing for my learning or may be executing the once which I will copy from the other Authors. (Please excuse me, if that code you see over here matches your code ... it may actually be. I will try to put credit here when and where possible.) You can reach me at catchmeagain at outlook.com.

Environment (VM)

  1. Ubuntu 16.04
  2. 4GB RAM
  3. 40GB HDD
  4. 2 Core CPU
abstract class Person {
FirstName: string;
LastName: string;
}
abstract class Employee extends Person{
readonly Designation: string;
constructor(designation: string) {
super();
this.Designation = designation;
abstract class Employee {
FirstName: string;
LastName: string;
readonly Designation: string;
constructor(designation: string) {
this.Designation = designation;
}
}
class Manager extends Employee {
let manager = new Employee();
employee.FirstName = "John";
employee.LastName = "Doe";
employee.Designation = "Manager";
class Employee {
FirstName: string;
LastName: string;
Designation: string;
}
@anantanandgupta
anantanandgupta / commit_hash_parent.txt
Last active January 7, 2017 20:43
Commit Hash Info
24940c8653df48b3e95dafb3d961a701d52070a4 261a8b54a3ca14e1b89b391fc32f52c5a460dd02 39849f203b3807e283f4c7cdfaaa569f15c968e5
261a8b54a3ca14e1b89b391fc32f52c5a460dd02 74f40f9af814ce29d666573bab244519c1ebb680 647da5a70bd5045d31953e040c2a73918b9678a7
647da5a70bd5045d31953e040c2a73918b9678a7 011bdf21d264678976b79cce723c7aa9394fa994
74f40f9af814ce29d666573bab244519c1ebb680 011bdf21d264678976b79cce723c7aa9394fa994
011bdf21d264678976b79cce723c7aa9394fa994 dee08e43fbf9ef6b8dd2b69c691d8b452dbd408b 050b00221d569fca917f7927f0368467f365d57f
050b00221d569fca917f7927f0368467f365d57f cd21748deb76483ef0d5eb11945568eb3c7eb66a
dee08e43fbf9ef6b8dd2b69c691d8b452dbd408b 486d6aabe005cb566cb90ab09ddad21fd3d54ac2
486d6aabe005cb566cb90ab09ddad21fd3d54ac2 647d6943bcdd216c6a1ff4018db2e5dcbf441921 cd21748deb76483ef0d5eb11945568eb3c7eb66a
647d6943bcdd216c6a1ff4018db2e5dcbf441921 dc2807f0cdfd236279b2f85d35e992e7a85e3340 f3155376be0d313e630550e4c6080be6f6c8012e
cd21748deb76483ef0d5eb11945568eb3c7eb66a dc2807f0cdfd236279b2f85d35e992e7a85e3340
@anantanandgupta
anantanandgupta / _JavaScript Functions.md
Last active September 17, 2016 14:00
These are a few function which I have written during my learning and application development.

JavaScript Function

These are a few function which I have written during my learning and application development.

  • canvas_image_in_circle.js.js (draws and returns the canvas containing the given image in a circle 100px diameter)
@anantanandgupta
anantanandgupta / Android_Utility_Classes.md
Last active March 29, 2019 06:44
Android Utility Classes

Android Utility Classes

Here are a few classes, I have created during my learning of android application development.

  • DownloadManager.java
  • StreamManager.java