wget https://docs.broadcom.com/docs-and-downloads/raid-controllers/raid-controllers-common-files/8-07-14_MegaCLI.zipor
curl -LO https://docs.broadcom.com/docs-and-downloads/raid-controllers/raid-controllers-common-files/8-07-14_MegaCLI.zipInformation can be put into dmi tables via some qemu-system hosts (x86_64 and aarch64). That information is exposed in Linux under /sys/class/dmi/id and can be read with dmidecode. The names are very annoyingly inconsistent. The point of this doc is to map them.
See qemu-system-x86_64 --help for the fields that qemu will accept.
qemu smbios flags vary with qemu version.
Example qemu cmdline:
qemu-system-x86_64 -smbios type=,field=value[,...]
| using namespace System.Management.Automation | |
| using namespace System.Management.Automation.Language | |
| if ($host.Name -eq 'ConsoleHost') | |
| { | |
| Import-Module PSReadLine | |
| } | |
| #Import-Module PSColors | |
| #Import-Module posh-git | |
| Import-Module -Name Terminal-Icons |
| { | |
| "final_space": true, | |
| "console_title": true, | |
| "console_title_style": "folder", | |
| "blocks": [ | |
| { | |
| "type": "prompt", | |
| "alignment": "left", | |
| "horizontal_offset": 0, | |
| "vertical_offset": 0, |
oc get pod -o jsonpath='{range .items[*]}{"SPEC: \n LIMITS : "}{.spec.containers[*].resources.limits}{"\n REQUESTS: "}{.spec.containers[*].resources.requests}{"\n"}{end}'
oc get pod -o jsonpath='{range .items[*]}{"NAME: "}{.metadata.name}{"\nSPEC: \n LIMITS : "}{.spec.containers[*].resources.limits}{"\n REQUESTS: "}{.spec.containers[*].resources.requests}{"\n\n"}{end}'
Programmers love to discuss programming languages. Besides debating their own merits, we integrate them into our identities and even infer things about others who use them. Some even defend a form of [Linguistic Determinism][6] that thinking is limited to what is typable.
Since we spend so much time using languages, an interest in making them better is justified. However, the character of these debates suggests that we think of them as something more. Perhaps we have forgotten their primary role. Programming languages are implementation tools, not thinking tools.
| import { Injectable } from '@angular/core'; | |
| import { environment } from '@environments/environment'; | |
| /** | |
| * Class of static methods to allow for consistent console logging. | |
| * @export | |
| */ | |
| @Injectable({ | |
| providedIn: 'root' |
| library(utils) | |
| b3_download_handler <- function(obj, data_ref, dest_dir) { | |
| function () { | |
| mapply(function(url_fname, fname) { | |
| b3_file_downloader(url_fname, fname, dest_dir, data_ref) | |
| }, obj$url_file, obj$filename) | |
| } | |
| } |
| bvbg_download_handler <- function(obj, data_ref, dest_dir) { | |
| function () { | |
| data <- as.Date(data_ref) | |
| # if (obj$jump_to_current) { | |
| # data <- today() | |
| # } | |
| data <- format(x=data, format="%y%m%d") | |
| url <- 'http://www.bmfbovespa.com.br/pesquisapregao/download?filelist=' | |
| url <- paste(url, obj$url_file, data, '.zip', sep="") |