This file contains 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
#!/usr/bin/env bats | |
date_based_version=$(date +%y%m%d) | |
# $args1 equals to LATEST_BUILD_NUMBER | |
# $args2 equals to DATE_BASED_BUILD_NUMBER | |
get_build_number() { | |
latest_build_number=$1 | |
build_number_len="${#latest_build_number}" | |
if [[ $build_number_len -gt 8 ]]; then |
This file contains 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 'dart:math'; | |
void main() { | |
/// init 1d array | |
List<int> dice1D = List.filled(6, 0); | |
/// set dice position | |
/// (0,0) [(0,1)] (0,2) (0,3) | |
/// [(1,0)] [(1,1)] [(1,2)] [(1,3)] | |
/// (2,0) [(2,1)] (2,2) (2,3) |
This file contains 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'; | |
const Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override |
This file contains 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
class Node { | |
Node? leftChild; | |
Node? rightChild; | |
late int value; | |
Node(int data) { | |
value = data; | |
} | |
} |
This file contains 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
⭐ Total Stars: 8 | |
➕ Total Commits: 2,763 | |
🔀 Total PRs: 275 | |
🚩 Total Issues: 9 | |
📦 Contributed to: 14 |
This file contains 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
Dart 37 mins █████████████▉░░░░░░░ 66.6% | |
Other 14 mins █████▏░░░░░░░░░░░░░░░ 25.0% | |
JSON 2 mins ▉░░░░░░░░░░░░░░░░░░░░ 4.6% | |
YAML 2 mins ▊░░░░░░░░░░░░░░░░░░░░ 3.8% |