Galdin Raphael

Results 10 comments of Galdin Raphael

One improvement would be to show draft posts + the first x posts. Or better still, feature a toggle to hide drafts from the list. The reason is the same...

Create a custom prompt: ```bash git_prompt_make_custom_theme Single_line_Ubuntu # You may use any existing theme name as the base theme ``` Then change the line in `~/.git-prompt-colors.sh`: ```bash GIT_PROMPT_START_USER="_LAST_COMMAND_INDICATOR_ ${White}${Time12a}${ResetColor} ${Cyan}${PathShort}${ResetColor}"...

You only need to reference the `environment.ts` file. Angular takes care of using the right file. [Here's a related post](https://alligator.io/angular/environment-variables/).

Here's a full working csx example: ```csharp #!/usr/bin/env dotnet-script #r "nuget: SubtitlesParser, 1.4.8" #load "serilog.csx" using Serilog; using SubtitlesParser.Classes.Parsers; var parser = new VttParser(); using (var fileStream = File.OpenRead("captions.vtt")){ var...

Here's the file as a text document: [captions.vtt.txt](https://github.com/AlexPoint/SubtitlesParser/files/3180779/captions.vtt.txt) Also, it'd be nice if the `VttParser` could default to a UTF8 encoding, since UTF8 would be in conformance to the WebVTT...

Just ran into this. ```dockerfile > [base 2/5] RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates libc6 libgcc1 libgssapi-krb5-2 libicu63 libssl1.1 libstdc++6 zlib1g && rm -rf /var/lib/apt/lists/*: #0 0.528...

This is currently possible. For example, the following will show kubernetes information on all paths that contain `clusters`: ```ini [kubernetes] disabled = false detect_folders = [ 'clusters' ] ``` Documentation:...

Debugging tips for anyone else seeing this: ``` # check controller logs kubectl logs akv2k8s-controller-xxxxxxxxxx-xxxxx -n akv2k8s ``` Look for a line like: ``` Failed to process key namespacename/secretname. Reason:...

Similar issue here. I had an old version of [PowerShell](https://github.com/PowerShell/PowerShell) installed through GitHub releases. Every time a new update was released, it required me to manually download PowerShell from GitHub...

For anyone looking for another example on how to use the alpha package: https://github.com/GameBased/mystery-island/pull/20