Giter Site home page Giter Site logo

companion's Introduction

Hi ๐Ÿ‘‹, I'm Jayesh Sharma

twitter-follower github-sponsors img img

I build and manage the infrastructure for running machine learning pipelines, over at ZenML. I'm a keen cloud enthusiast and I love tinkering with new technologies and building challenging and novel projects. Sharing my knowledge through the medium of articles and tech talks is something I also thoroughly enjoy!

Top language used in my repos
Languages used in my public repos

Connect with me:

YouTube Twitter LinkedIn Instagram Medium



๐ŸŽฅ Latest YouTube Videos

Youtube

โ–ถ more videos...

๐Ÿ“‘ Latest Blog Posts

โ–ถ more blog posts...

Previously worked at:

Publicis Sapient, Software Engineer Intern

  • Building a POC for fault tolerance using AWS App Mesh

CoreDNS, CNCF Mentee for CommunityBridge program

Crio.Do

Preferred Stacks

Cloud Native

Terraform, Kubernetes, Helm, Go, AWS/Azure/GCP, MLOps tools

Repositories

  1. Production ML
  2. MLflow Tracking Server
  3. Dapr Distributed Calendar

companion's People

Contributors

wjayesh avatar

Watchers

 avatar

companion's Issues

AssertionError ('package:flutter/src/material/button_bar_theme.dart': Failed assertion: line 253 pos 16: 'data != null': is not true.)

When I'm trying to input text into the flutter app, I'm not able to move to the next screen and get this error. Following is the code for the buttonbartheme class that is throwing the error.

class ButtonBarTheme extends InheritedWidget {

/// Constructs a button bar theme that configures all descendent [ButtonBar]
/// widgets.
///
/// The [data] must not be null.

const ButtonBarTheme({
Key? key,
required this.data,
required Widget child,
}) : assert(data != null), <- ERROR
super(key: key, child: child);
final ButtonBarThemeData data;

/// Returns the configuration [data] from the closest [ButtonBarTheme]
/// ancestor. If there is no ancestor, it returns [ThemeData.buttonBarTheme].
/// Applications can assume that the returned value will not be null.
///
/// Typical usage is as follows:
///
/// dart /// ButtonBarThemeData theme = ButtonBarTheme.of(context); ///

static ButtonBarThemeData of(BuildContext context) {
final ButtonBarTheme? buttonBarTheme =
context.dependOnInheritedWidgetOfExactType();
return buttonBarTheme?.data ?? Theme.of(context).buttonBarTheme;
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.