Skip to content

Instantly share code, notes, and snippets.

View spearkkk's full-sized avatar
🤓

ChangKwon Jeong spearkkk

🤓
View GitHub Profile
@spearkkk
spearkkk / usage_jenv_in_fish.md
Last active February 15, 2022 02:47
Usage `jenv` #fish #jenv

jEnv

jEnv is a command line tool to help you forget how to set JAVA_HOME environment variable.

Link

It sounds great! However, there is no usage for fish shell.

But I found this usage: https://github.com/jenv/jenv#1-getting-started
And there is usage for fish shell, but is not tested.

@spearkkk
spearkkk / main.dart
Created April 11, 2023 13:32
ui-clone
import 'package:flutter/material.dart';
void main() {
runApp(const App());
}
class App extends StatelessWidget {
const App({super.key});
// This widget is the root of your application.