48%
28.11.2023
Ripgrep gives you by default, set the -C <n> option, where <n> denotes the number of lines before and after the location you want to view. To check a certain number of lines exclusively before the find
48%
12.05.2014
The revelation of wide-spread government snooping has sparked a renewed interest in data storage security via encryption. In this article, we review some options for encrypting files, directories ... ]$ cd ~/encrypted
[laytonjb@test1 encrypted]$ ls -l
total 8
lrwxrwxrwx 1 laytonjb laytonjb 24 Sep 4 15:12 acS5u3K9TJ,9FWTDUq0yWqx6 -> XuD50Mah2kp2vukDeo04cOv,
-rw-rw-r-- 1 laytonjb laytonjb 18 Sep 4 15:12 WvPjlWtCaq5g9hE1 ...
The revelation of wide-spread government snooping has sparked a renewed interest in data storage security via encryption. In this article, we review some options for encrypting files, directories
48%
25.09.2023
3.0 (OTG and flash support)
Video
Micro-HDMI
Power
5V, USB or 2.1mm barrel connector
Other
2 CSIs, 1 DSI
I2C, UART, SPI, ADC, PWM, GPIO
48%
30.01.2020
Conversion
$ sudo lvs -a vg-cache -o devices,segtype,lvattr,name,vgname,origin
Devices Type Attr LV VG Origin
/dev/nvme0n1(0) linear Cwi-aoC--- [fast
48%
01.06.2024
is considered "embarrassingly parallel" [3] where no design effort is required to partition the problem into completely separate parts. If no data dependency exists between the problem sub-parts, no communication
48%
28.11.2023
for statpingng_stack.yml
6c6
< image: adamboutcher/statping-ng:${SPNGTAG:-latest}
---
> image: mystatpingng:${SPNGTAG:-latest}
8a9,36
> volumes:
> - ./config:/app
> environment
48%
23.03.2022
13 2020 iozone3_490
31888630 -rw-rw-r--. 1 laytonjb laytonjb 4136960 Dec 9 2020 iozone3_490.tar
31984747 drwxrwxr-x 21 laytonjb laytonjb 4096 Nov 20 2020 Lmod-8.4.15
31863444 -rw-rw-r-- 1
48%
19.11.2019
that the conversion took effect:
$ sudo lvs -a vg-cache -o devices,segtype,lvattr,name,vgname,origin
Devices Type Attr LV VG Origin
/dev/nvme0n1(0) linear Cwi-aoC
48%
03.01.2013
data on the Device (GPU)
dA = gpuSetData(A);
dC = gpuSetData(C);
d1 = gpuMult(A,B);
d2 = gpuMult(dA,dC);
d3 = gpuMult(d1,d2);
result = gpuGetData(d3); // Get result on host
// Free device memory
dA
48%
16.05.2013
,1000);
06
07 // Set host data on the Device (GPU)
08 dA = gpuSetData(A);
09 dC = gpuSetData(C);
10
11 d1 = gpuMult(A,B);
12 d2 = gpuMult(dA,dC);
13 d3 = gpuMult(d1,d2);
14 result = gpuGetData(d3); // Get