| Name | Description |
|---|---|
aws-gate |
Better AWS SSM Session manager CLI client |
aws-ssm-tools |
Handy tools for AWS Systems Manager - ssm-session, ecs-session, ssm-ssh and ssm-tunnel |
gossm |
💻Interactive CLI tool that you can connect to ec2 using commands same as start-session, ssh in AWS SSM Session Manager |
quick_ssm |
Quickly connect to AWS servers from the cli. No GUI or ssh needed. |
ssm-helpers |
Help manage AWS systems manager with helpers |
The TrueNAS installer doesn't have a way to use anything less than the full device. This is usually a waste of resources when installing to a modern NVMe which is usually several hundred of GB. TrueNAS SCALE will use only a few GB for its system files so installing to a 16GB partition would be helpful.
The easiest way to solve this is to modify the installer script before starting the installation process.
This will configure QEMU to expose a tmp105 temperature sensor on the i2c-0 bus on x86_64. The temterature sensor can have its temperature set from the host OS, and the temperature can be read from the Linux client OS using the lm75 kernel module.
For convenience, we will be emulating an x86 system. The x86 configuations which QEMU ships with do not contain the tmp105 sensor we will be using, so first we need to enable it.
Assuming you have the qemu sources in the qemu directory:
# cd qemu
Render some Markdown file to HTML and show it in your browser.
This is useful when you want to check a Markdown file before pushing it onto GitHub/GitLab/etc or if you want to simply print a nice looking Markdown file. Just print it from your browser.
The look is broadly similar to that on GitHub but stripped down to the bare minimum. It can also be changed easily. Just have a look at the
I have a pet project I work on, every now and then. CNoEvil.
The concept is simple enough.
What if, for a moment, we forgot all the rules we know. That we ignore every good idea, and accept all the terrible ones. That nothing is off limits. Can we turn C into a new language? Can we do what Lisp and Forth let the over-eager programmer do, but in C?
| /* | |
| * This file is an MPU6050 demonstration. | |
| * https://openest.io/en/2020/01/21/mpu6050-accelerometer-on-raspberry-pi/ | |
| * Copyright (c) 2020 Julien Grossholtz - https://openest.io. | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, version 3. | |
| * | |
| * This program is distributed in the hope that it will be useful, but |
- All pools' status:
zpool status - specific pools status:
zpool status pdata1
| import datetime | |
| from telethon import TelegramClient | |
| api_id = 123456789 | |
| api_hash = 'abcdef123456789' | |
| client = TelegramClient('session_name', api_id, api_hash) | |
| client.session.report_errors = True | |
| client.start() |