- Automatically bump SemVer
- Update a personal homebrew tap
- Keep that pesky version in the Cargo.toml up to date
- (From dependabot) Get new versions out as soon as possible
- You don't want a changelog
| import androidx.compose.foundation.Box | |
| import androidx.compose.foundation.layout.* | |
| import androidx.compose.runtime.Composable | |
| import androidx.compose.runtime.key | |
| import androidx.compose.ui.Modifier | |
| import androidx.compose.ui.unit.Dp | |
| import androidx.compose.ui.unit.dp | |
| @Composable | |
| fun <T>Grid( |
| ## CRONTAB HINTS AND TIPS | |
| ## | |
| ## | |
| ## Entry Description Equivalent To | |
| ## @yearly (or @annually) Run once a year at midnight in the morning of January 1 0 0 1 1 * | |
| ## @monthly Run once a month at midnight in the morning of the first of the month 0 0 1 * * | |
| ## @weekly Run once a week at midnight in the morning of Sunday 0 0 * * 0 | |
| ## @daily Run once a day at midnight 0 0 * * * | |
| ## @hourly Run once an hour at the beginning of the hour 0 * * * * | |
| ## @reboot Run at startup @reboot |
| package main | |
| import ( | |
| "bufio" | |
| "errors" | |
| "fmt" | |
| "io" | |
| "log" | |
| "net/http" | |
| "net/http/cookiejar" |
| const addContext = (report, screenshots, videoUrl) => { | |
| const getTests = t => t.tests | |
| const getSuites = t => t.suites | |
| const addSuiteContext = (suite, previousTitles = []) => { | |
| const titles = suite.title ? previousTitles.concat(suite.title) : previousTitles | |
| getTests(suite).forEach(test => { | |
| test.timedOut = false // for some reason this is dropped | |
| const context = [ | |
| { |
| #!/usr/bin/env php | |
| <?php | |
| if (isset($argv[1]) && ($argv[1] == '--help' || $argv[1] == '-h')) { | |
| echo sprintf( | |
| "Usage: \n [igbinary-serialized data] | %s\n", | |
| basename(__FILE__) | |
| ); | |
| exit(); | |
| } |
| #!/bin/sh | |
| # | |
| # Run the hook command. | |
| # Note: this will be replaced by the real command during copy. | |
| # | |
| CONTAINER="php" | |
| ROOT_DIR="/var/www/app" | |
| GIT_USER=$(git config user.name) | |
| GIT_EMAIL=$(git config user.email) |