Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| import 'package:provider/provider.dart'; | |
| late var counter; | |
| datainit() async { | |
| await Future.delayed(Duration(seconds: 5), () { | |
| print('5 seconds passed'); | |
| counter = 0; | |
| }); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MaterialApp( | |
| home: MyApp(), | |
| )); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return Scaffold( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 엑셀 xlstart | |
| C:\Users\bong\AppData\Roaming\Microsoft\Excel\XLSTART\ | |
| MOGRT 윈도우10 경로 - 디폴트 경로 | |
| C:\Users\mcjoi\AppData\Roaming\Adobe\Common\Motion Graphics Templates | |
| 윈도우10 안드로이드 sdk경로 | |
| C:\Users\mcjoi\AppData\Local\Android\Sdk | |
| 파워포인트 테마파일 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub pal() | |
| Dim mySlideMaster As Master | |
| Dim left As Integer | |
| Dim top As Integer | |
| Dim size As Integer | |
| Dim colarrRed(8) As Integer | |
| Dim colarrGreen(8) As Integer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="vid"><video id="my-player" class="video-js vjs-default-skin vjs-big-play-centered" poster="//vjs.zencdn.net/v/oceans.png" preload="auto" controls="controls" width="820," data-setup="{}"> | |
| <source src="//vjs.zencdn.net/v/oceans.webm" type="video/webm" /> | |
| </video></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub tt() | |
| Dim shp As Shape | |
| Dim activeshape As Shape | |
| '현재 선택된 SHAPE | |
| 'Determine Which Shape is Active | |
| If ActiveWindow.Selection.Type = ppSelectionShapes Then | |
| 'Loop in case multiples shapes selected | |
| For Each shp In ActiveWindow.Selection.ShapeRange |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ignore_for_file: prefer_const_constructors | |
| // ignore: prefer_const_constructors |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// | |
| /// ##string 값을 class 이름으로 사용하기## | |
| /// ClassBuilder Package 사용 | |
| /// | |
| /// class 이름을 list<string> 으로 선언 | |
| /// 초기화 할때, class builder 사용 | |
| /// ClassBuilder.fromString으로 사용 | |
| /// | |
| import 'package:class_builder/class_builder.dart'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub makeFolderMoveFileToFolderByExt() | |
| Dim sht As Worksheet | |
| Dim strDir As String | |
| Dim strFile As String | |
| Dim fso | |
| Dim myFile | |
| Dim ext As String | |
| Dim extList() As String | |
| ' 생성을 원하는 폴더리스트를 만들어줌 ==> 요거만 수정해주면 됨 |
NewerOlder