Skip to content

Instantly share code, notes, and snippets.

View VintageAppMaker's full-sized avatar
🏠
Working from home

Vintage AppMaker VintageAppMaker

🏠
Working from home
View GitHub Profile
@VintageAppMaker
VintageAppMaker / -_quick_start.ipynb
Created March 19, 2024 22:53
공공데이터_quick_start.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@VintageAppMaker
VintageAppMaker / python-pandas.ipynb
Created March 19, 2024 10:56
python-pandas.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@VintageAppMaker
VintageAppMaker / gist:0c304341d2c843b23bbd1a8f0d92438d
Created November 10, 2023 02:11
DOS 배치파일 - txt 파일에서 특정문자열이 있으면 지우기
@echo off
echo "월수익1000만"이 포함된 파일 삭제 시작
for %%i in (*.txt) do (
find /i "월수익1000만" "%%i" > nul
if %errorlevel% equ 0 (
echo "%%i" 파일에서 "월수익1000만"을 찾았습니다. 파일을 삭제합니다.
del "%%i"
)
)
@VintageAppMaker
VintageAppMaker / prompt.ipynb
Created July 3, 2023 13:33
prompt로배우는파이썬기초.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
@VintageAppMaker
VintageAppMaker / ChildStatefulWithKey.dart
Created October 14, 2022 10:32
ChildStatefulWithKey.dart
import "package:flutter/material.dart";
void main() {
runApp(StateFulTest());
}
class StateFulTest extends StatefulWidget {
@override
_StateFulTestState createState() {
return _StateFulTestState();
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,
import "package:flutter/material.dart";
import "package:flutter/widgets.dart";
import "package:provider/provider.dart";
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
void main(List<String> arguments) {
ifElseExample(3);
fnTableExample(80);
fnTableExample2(100);
print('종료');
}
// 참조: https://stackoverflow.com/questions/52148319/what-is-darts-equivalent-to-kotlins-let
void main() {
Map? item = null;
// 1.Map 테스트
item = {"name" : "snake"};
var tmp1 = item?.let((t){return t["name"];});
print ("${tmp1}");