Skip to content

Instantly share code, notes, and snippets.

View jonasermert's full-sized avatar
:octocat:

Jonas jonasermert

:octocat:
  • Germany, Thüringen, Erfurt
View GitHub Profile
xcode-select --install
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update
brew cask install iterm2
# update iterm2 settings -> colors, keep directory open new shell, keyboard shortcuts
brew install bash # latest version of bash
# set brew bash as default shell
brew install fortune
brew install cowsay
brew install git
@jonasermert
jonasermert / humpday_2024-09-11_1.dart
Created September 12, 2024 13:24 — forked from slightfoot/humpday_2024-09-11_1.dart
Max Cross Axis Wrap Example - by Simon Lightfoot - Humpday Q&A :: 11th September 2024 #Flutter #Dart - https://www.youtube.com/watch?v=LbpboHb49PM
import 'package:flutter/material.dart';
void main() {
runApp(const WrapApp());
}
class WrapApp extends StatelessWidget {
const WrapApp({super.key});
@override