100%
30.01.2024
Rubén Llorente ... all the components you need for a small system (Figure 5; Table 2).
Figure 3: The steps to installing iRedMail on Rocky Linux 9 by the downloadable
99%
02.06.2020
Rubén Llorente ... shell (SSH). The primary function of BBSs, however, has not changed.
The original Citadel was written in 1981 and has a convoluted story [2]. The implementation discussed in this article, technically
99%
25.09.2023
Rubén Llorente ... is nothing but Linux firmware designed for router duty. Its main drawback is that, unlike common Linux distributions, it is not redistributable because it comes with proprietary features [2]. Additionally
99%
01.06.2024
Rubén Llorente ... _host
02 known_hosts_file: /home/sake/.ssh/known_hosts2
03
04 # Every server is labeled with the "devuan" tag
05 servers:
06 horse:
07 user: root
08 host: horse.operationalsecurity.es
09 tags
99%
03.02.2022
Rubén Llorente ... encryption, hard disk encryption, and SSH access. Whether this is true, and whether a Nitrokey is worth the cost, is what I intend to determine in this article.
I am reviewing Nitrokey Storage 2, the most
99%
04.12.2024
Rubén Llorente ... from a reputable source [9], because both OpenBSD's HTTP daemon and reverse proxy are extremely simple to set up.
2. Load your cloud-init configuration into your host provider, which should have
55%
02.02.2021
5221548db 58 seconds ago 5.67MB
80dc7d447a48 About a minute ago 167MB
alpine 3.9 78a2ce922f86 5 months ago 5.55MB
The command you really
54%
07.02.2019
/2),n
d(j) = c(j) - e(j)
end do
#pragma acc parallel loop copyin(a, b, e)
create(c) copyout(d)
{
for (int i=0; i < n; i++)
{
c[i] = a[i] * b[i]
}
for (int j=(n/2
53%
11.05.2021
, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192]
A = single( rand(N,N) );
B = single( rand(N,N) );
start = clock();
C = A*B;
elapsedTime = etime(clock(), start);
gFlops = 2*N*N*N / (elapsedTime * 1e+9);
disp(sprintf("N = %4d
53%
12.11.2020
f(x):
return x*x
# end def
def trapezoidal(a, b, n, h):
s = 0.0
s += h * f(a)
for i in range(1, n):
s += 2.0 * h * f(a + i*h)
# end for
s += h * f(b)
return (s/2.)
# end def
# Main