Skip to content

Instantly share code, notes, and snippets.

View jsdaniell's full-sized avatar
💭
Good Insights!

José Daniel jsdaniell

💭
Good Insights!
View GitHub Profile
@slightfoot
slightfoot / squircle.dart
Last active June 12, 2025 23:19
Flutter Squircle Shape
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Squircle',
home: new Scaffold(
@tdegrunt
tdegrunt / walk.go
Created September 29, 2014 11:53
Replace some text in a bunch of files with golang
package main
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
)