Skip to content
View shreyas-a-s's full-sized avatar

Highlights

  • Pro

Organizations

@Bharat-Genome-Database-BGDB

Block or report shreyas-a-s

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
shreyas-a-s/README.md

Hi, I'm Shreyas πŸ‘‹

class MyInfo {
  String name;
  int age;
  List<String> interests;
  List<String> skills;

  MyInfo({
    required this.name,
    required this.age,
    required this.interests,
    required this.skills,
  });

  @override
  String toString() {
    return "πŸ‘‹ Hey, I'm $name!\n\nI'm $age years old and passionate about ${interests.join(', ')}.\n\nπŸ’» My skills include ${skills.join(', ')}.\n\nLet's connect and build something amazing together!";
  }
}

void main() {
  var myInfo = MyInfo(
    name: "Shreyas",
    age: 22,
    interests: ["coding", "reading", "learning", "linux", "tweaking the dev environment"],
    skills: ["Linux Administration", "Bash", "Python", "Web dev", "Low Code", "Thunkable", "Mobile Development", "React", "Dart", "JavaScript", "C"],
  );
  print(myInfo);
}

Languages

Languages

Technologies & Frameworks

Technologies & Frameworks

Tools

Tools

IDE

IDE

OS

OS

Pinned Loading

  1. oneclick-website-deployer oneclick-website-deployer Public

    Bash script to install and setup a basic working drupal website with tripal module installed and activated.

    Shell 1 1

  2. linux-tweaks linux-tweaks Public

    A curated list of customisations that will make your Linux experience more enjoyable

    Shell 6

  3. dotfiles dotfiles Public

    A collection of my dotfiles

    Shell

  4. code-needs-to-go code-needs-to-go Public

    A place to store some of the good code that I remove from my projects

    Shell

  5. linux-qemu linux-qemu Public

    Shell script to install and setup qemu & a VM manager on Linux

    Shell

  6. pipepipe-to-newpipe pipepipe-to-newpipe Public

    Convert PipePipe database to work with NewPipe

    Python 3