Skip to content

Instantly share code, notes, and snippets.

View alfaben12's full-sized avatar
🇮🇩
Working from anywhere

Thariq Alfa alfaben12

🇮🇩
Working from anywhere
View GitHub Profile
@kumar-aakash86
kumar-aakash86 / main.dart
Last active September 10, 2020 04:18
Single Finger Widget Resize
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
debugShowCheckedModeBanner: false,
@kevinswiber
kevinswiber / backends.js
Last active February 6, 2024 18:56
Express Gateway Example with Multiple Services
const express = require('express');
const forum = express();
forum
.get('/healthz', (req, res, next) => {
res.send({ name: 'forum', status: 'healthy' });
next();
})
.get('/d/:id', (req, res, next) => {