» sudo systemctl daemon-reload
System has not been booted with systemd as init system (PID 1). Can't operate. Failed to connect to bus: Host is down
==============================================
Edit*
- Open
/etc/wsl.confwith any editor:
» sudo systemctl daemon-reload
System has not been booted with systemd as init system (PID 1). Can't operate. Failed to connect to bus: Host is down
==============================================
Edit*
/etc/wsl.conf with any editor:| cd() { | |
| # Check if no arguments to make just typing cd<Enter> work | |
| # Also check if the first argument starts with a - and let cd handle it | |
| if [ $# -eq 0 ] || [[ $1 == -* ]] | |
| then | |
| builtin cd $@ | |
| return | |
| fi | |
| # If path exists, just cd into it | |
| # (also, using $* and not $@ makes it so you don't have to escape spaces any more) |
| #!/bin/bash | |
| # License for this script is GNU 2 | |
| # A small bash script to download, compile and install latest wgrib2 from source. | |
| # I have written this script so that I can automate the proceedure whenever I change Linux OS | |
| # Make it executable before running the script using'chmod +x ./wgrib2_auto_compile_script.sh' | |
| # Ensure to run the script with sudo (sudo ./wgrib2_auto_compile_script.sh) or under root environment |
| pipeline { | |
| agent { | |
| kubernetes { | |
| label 'dind' | |
| defaultContainer 'docker' | |
| yaml """ | |
| --- | |
| apiVersion: v1 | |
| kind: Pod | |
| metadata: |
| """Provide high-level UDP endpoints for asyncio. | |
| Example: | |
| async def main(): | |
| # Create a local UDP enpoint | |
| local = await open_local_endpoint('localhost', 8888) | |
| # Create a remote UDP enpoint, pointing to the first one |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| # | |
| # (OS X) | |
| # | |
| # What is this? | |
| # | |
| # It's a shell script to create all the icon files from one source icon. | |
| # | |
| # With your source icon 'my-hires-icon.png' , trigger it from Terminal. | |
| # |
| # Android | |
| platforms/android/assets/www | |
| platforms/android/bin/ | |
| platforms/android/gen/ | |
| platforms/android/res/xml/config.xml | |
| # iOS | |
| platforms/ios/build/ | |
| platforms/ios/CordovaLib/build/ | |
| platforms/ios/www |