ipmitool -I lanplus -H <iDRAC-IP> -U <iDRAC-USER> -P <iDRAC-PASSWORD> sensor reading "Ambient Temp" "FAN 1 RPM" "FAN 2 RPM" "FAN 3 RPM"
// i added in DebugConfiguration.cpp | |
#ifdef USE_SEGGER | |
// largest string it can process | |
const int BUFFER_SIZE = 512; | |
/********************************************************************* | |
* | |
* cx_SEGGER_RTT_vprintf |
version: '2.1' | |
services: | |
grafana: | |
container_name: grafana | |
image: proxx/grafana-armv7 | |
user: "1000" | |
ports: | |
- 3000:3000 | |
volumes: | |
- /opt/grafana:/etc/grafana:rw |
function Out-HtmlTable { | |
[CmdletBinding()] | |
param( | |
[Parameter(ValueFromPipeline)] | |
$InputObject | |
) | |
begin { | |
$Buffer = [System.Collections.ArrayList]::new() | |
if($InputObject) { |
Raspberry Pi is costeffect linux computer very commonly used for IoT home automation projects.
Here are the 3 problems with conventional databases for IoT data store applications:
Penetrating Testing/Assessment Workflow & other fun infosec stuff
https://github.com/jivoi/pentest
My feeble attempt to organize (in a somewhat logical fashion) the vast amount of information, tools, resources, tip and tricks surrounding penetration testing, vulnerability assessment, and information security as a whole*
/** | |
* USB HID Keyboard scan codes as per USB spec 1.11 | |
* plus some additional codes | |
* | |
* Created by MightyPork, 2016 | |
* Public domain | |
* | |
* Adapted from: | |
* https://source.android.com/devices/input/keyboard-devices.html | |
*/ |
var gulp = require('gulp'), | |
msbuild = require('gulp-msbuild'), | |
githubRelease = require('gulp-github-release'), | |
zip = require('gulp-zip'), | |
series = require('run-sequence'), | |
fs = require('fs'); | |
gulp.task('build', function () { | |
return gulp.src('./SOLUTION_NAME.sln') | |
.pipe(msbuild({ |