Skip to content

Instantly share code, notes, and snippets.

View apgapg's full-sized avatar
😉
Still not born...

Ayush P Gupta apgapg

😉
Still not born...
View GitHub Profile
@apgapg
apgapg / deploy.yml
Last active October 7, 2023 16:23
Github Workflow for Building, Releasing Flutter web app to Github Pages and Firebase Hosting
# This is a basic workflow to help you get started with Actions
name: Build, Release app to Github Pages and Firebase Hosting
# name: Test, Build and Release apk
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches:
- master
@apgapg
apgapg / scrap.dart
Created July 19, 2020 07:25
Scrap data from website
void initChaptersTitleScrap() async {
final rawUrl =
'https://unacademy.com/course/gravitation-for-iit-jee/D5A8YSAJ';
final webScraper = WebScraper('https://unacademy.com');
final endpoint = rawUrl.replaceAll(r'https://unacademy.com', '');
if (await webScraper.loadWebPage(endpoint)) {
final titleElements = webScraper.getElement(
'div.Week__Wrapper-sc-1qeje5a-2 > a.Link__StyledAnchor-sc-1n9f3wx-0 '
'> div.ItemCard__ItemInfo-xrh60s-1 '
'> h6.H6-sc-1gn2suh-0',
@apgapg
apgapg / ReadFileStream.dart
Created August 20, 2020 13:05
Read file as Stream in dart
void readFileStream() {
Stream<List<int>> stream = new File('./assets/user.json').openRead();
StringBuffer buffer = new StringBuffer();
stream
.transform(utf8.decoder)
.listen((data) {
buffer.write(data);
},
onDone: () => print(buffer.toString()),
onError: (e) => print(e));
@apgapg
apgapg / jsconfig.json
Created September 14, 2020 05:36
Adding path alias in vs code to resolve @ (for src/) in imports
{
"include": [
"./src/**/*"
],
"compilerOptions": {
"baseUrl": "src",
"paths": {
"@/*": [
"./*"
]
@apgapg
apgapg / property_value_notifier.dart
Created October 12, 2020 09:40
Call notifyListeners which otherwise is protected in ValueNotifier
import 'package:flutter/material.dart';
class PropertyValueNotifier<T> extends ValueNotifier<T> {
PropertyValueNotifier(T value) : super(value);
@override
void notifyListeners() {
super.notifyListeners();
}
}
@xsahil03x
xsahil03x / event_emitter.dart
Last active March 15, 2021 12:14
Dart Event Emitter
import 'dart:async';
import 'dart:collection';
import 'package:meta/meta.dart';
/// A listener that can be added to a [EventEmitter] using
/// [EventEmitter.on] or [EventEmitter.addListener].
///
/// This callback gets invoked once we call [EventEmitter.emit].
typedef Listener<T> = void Function(T data);
@apgapg
apgapg / submodules.sh
Created December 19, 2023 16:22
Replace url with PAT in github root and nested submodules
#!/bin/bash
# Root project having .gitmodules
PROJECT[0]="."
# Another project inside root project having .gitmodules
PROJECT[1]="project1"
for i in "${PROJECT[@]}"
do
cd $i