50%
19.08.2014
characters or a diversified character set. "An automated tool can crack a completely random eight-character password including four character types such as "N^a&$1nG" much faster than a 28-character passphrase
50%
07.03.2019
; you should collapse two or more loops.
Table 4: Collapsing Loops
Fortran
C
!$acc parallel loop collapse(2)
do i=1,n
...
do j=1,m
...
enddo
50%
06.10.2022
in this article [4] supports upgrades from CentOS 8, and another script called migrate2rocky9.sh supports RHEL 9-based distributions. If you are still using CentOS 7, the recommended solution is to set up a new ... CentOS users need to find a replacement soon. If you use CentOS 8 and you're looking for safer ground, the migrate2rocky script will automatically migrate your system to Rocky Linux – an enterprise ... migrate2rocky ... Migrating CentOS to Rocky Linux with migrate2rocky
50%
02.08.2021
%[=============================================================================================>] 1.77M 8.85MB/s in 0.2s
2021-03-21 15:40:30 (8.85 MB/s) - 'perf-5.9.0.tar.xz' saved [1857268/1857268]
Extract the file into a local working directory
$ tar xJf perf-5.9.0.tar.xz
and change
50%
05.09.2011
can see how the arp cache poisoning works:
$ sudo nemesis arp -v -r -d eth0 -S 192.168.1.2 \
-D 192.168.1.133 -h 00:22:6E:71:04:BB -m 00:0C:29:B2:78:9E \
-H 00:22:6E:71:04:BB -M 00:0C:29:B2:78:9E
50%
05.12.2014
[<-] 220 mx.google.com ESMTP t2fjm4427fd213ply.2523 - gsmtp
[->] EHLO smtp.box.tld
[<-] 250 SMTPUTF8
[->] STARTTLS
[<-] 220 2.0.0 Ready to start TLS
[->] EHLO smtp.box.tld
[<-] 250 SMTPUTF8
[->] AUTH LOGIN
50%
01.06.2024
Running hunger-check 0 56218b2e56fa8 hunger-check-deployment-96b6764f9-7zsbk
cbdd56829a054 0ff4eace8cd5b 2 months ago Running metadata
50%
03.02.2022
command, except it lists all of the cores at once.
Listing 4
Real or SMT? Method 2
$ cat $(find /sys/devices/system/cpu -regex ".*cpu[0-9]+/topology/thread_siblings_list") | sort -n | uniq
0
50%
17.09.2013
of an uncorrectable error by factors of 9–400.
Uncorrectable errors following a correctable error are still small at 0.1%–2.3% per year.
The incidence of correctable errors increases with age
50%
05.02.2019
if z(i) depends on a previous value, as in the following:
do i = 2,n
z(i) = z(i-1)*2
enddo
As written, you can't generally parallelize the loop because of data dependency [4]. This dependency