Koala Yeung

Results 36 issues of Koala Yeung

It would be great if I can just start the process with like this: ```bash moggio -file-source="/home/user/Music/" ```

Support customized asset label (optional). Allow user to have a human readable asset name other than the filename itself. Maps to the optional `label` parameter of the API: https://docs.github.com/en/rest/reference/repos#upload-a-release-asset If...

Output of `restic version` -------------------------- `restic 0.9.4 compiled with go1.11.4 on linux/amd64` What should restic do differently? Which functionality do you think we should add? ---------------------------------------------------------------------------------- `restic` should accept tilde...

category: user interface
type: feature suggestion

[<details>](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details) and [<summary>](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/summary) are tags introduced in HTML5 as a way to enclose collapsible / expandable widgets. Both [Github](https://gist.github.com/ericclemmons/b146fe5da72ca1f706b2ef72a20ac39d) and [Gitlab](https://docs.gitlab.com/ee/user/markdown.html#details-and-summary) support using them as inline HTML. And they are...

enhancement
gfm
consistency

* Use class instead of inline-style for distraction free mode. * Resolve #158.

Text Box is shown as "display: grid" by default: https://github.com/Monogatari/Monogatari/blob/1e26a7b07dc14ab6184400740507b11c9bec2bb5/src/components/text-box/index.js#L13 But after applying distraction free then recover, the display mode would become "display: block" because it is simply calling ".show()"....

### Why this PR is needed? #### To reproduce my issue 1. Create a script with scene and background together, for example: ```javascript monogatari.script ({ // The game starts here....

### Problem/Motivation As per the [documentation stated](https://drupalconsole.com/docs/en/getting/launcher) ([page source](https://github.com/hechoendrupal/drupalconsole.com/blob/129e0aa739283ddbcb946fdec1061d3ebf5d22e2/content/docs/en/getting/launcher.md)), this is the command to install the console launcher: ``` curl https://drupalconsole.com/installer -L -o drupal.phar mv drupal.phar /usr/local/bin/drupal chmod +x /usr/local/bin/drupal...

### Problem/Motivation Running `drupal database:client` will run into this error: > Error: Class "Symfony\Component\Process\ProcessBuilder" not found in Drupal\Console\Command\Database\ClientCommand->execute() (line 66 of /home/foobar/public_html/vendor/drupal/console/src/Command/Database/ClientCommand.php). This is because the [ProcessBuilder](https://api.drupal.org/api/drupal/vendor%21symfony%21process%21ProcessBuilder.php/class/ProcessBuilder/8.9.x) was deprecated in...

* ProcessBuilder was deprecated in Symfony 3.4 and was removed in Symfony 4.0. Instead, Process should be used directly. * Since Drupal 9 depends on Symfony 4, this rewrite is...