I created a gist to easy install composer deps. Can be found here: https://gist.github.com/naxmefy/a31832574cf56a3841c452ab60489b4d
just execute
# shell| @off echo | |
| docker run --rm -v %cd%:/app composer/composer install |
I created a gist to easy install composer deps. Can be found here: https://gist.github.com/naxmefy/a31832574cf56a3841c452ab60489b4d
just execute
# shell| <div class="pure-accordion"> | |
| <div class="half"> | |
| <p>Open <strong>multiple</strong></p> | |
| <div class="tab"> | |
| <input id="tab-one" type="checkbox" name="tabs"> | |
| <label for="tab-one">Label One</label> | |
| <div class="tab-content"> | |
| <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tenetur, architecto, explicabo perferendis nostrum, maxime impedit atque odit sunt pariatur illo obcaecati soluta molestias iure facere dolorum adipisci eum? Saepe, itaque.</p> | |
| </div> | |
| </div> |
| private Dictionary<string, Object[]> atlanten = new Dictionary<string, Object[]>(); | |
| function Start() { | |
| atlanten.Add("Leather", AssetDatabase.loadAll...); | |
| } | |
| function Update() { | |
| string type = ... | |
| if (!atlanten.ContainsKey(type)) |
Following requires major and minor and patch
^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$
Following requires major and minor only see https://regex101.com/r/P0vQnX/1 (check unit test too)
| public class Rotate { | |
| public static int[][] rotateImage(int[][] a) { | |
| final int len = a.length; | |
| println("LEN: " + len / 2); | |
| println("========"); | |
| for (int s = 0; s < len / 2; s++) { | |
| println("S: " + s); | |
| for (int i = 0; i < len - 2 * s - 1; i++) { |
| # small fix for use in latest docker under windows... | |
| COMPOSE_CONVERT_WINDOWS_PATHS=1 |
| ######################### | |
| # CMD: | |
| # $ svn propset svn:ignore -F .svnignore . | |
| ######################### | |
| ######################### | |
| # vscode | |
| ######################### | |
| .vscode |
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| title: 'Flutter Demo', | |
| theme: ThemeData( |
| import Foundation | |
| func load<T:Decodable>(_ filename:String, as type:T.Type = T.self) -> T { | |
| let data:Data | |
| guard let file = Bundle.main.url(forResource: filename, withExtension: nil) | |
| else { | |
| fatalError("Couldn't find \(filename) in main bundle.") | |
| } | |
| do { |