100%
04.12.2024
Rubén Llorente ... "webservice" {
21 listen on 192.168.3.30 port 80
22 protocol "http"
23 forward to port 80 mode loadbalance \
24 check http "/index.html" code 200
25 }
26
61%
03.12.2024
to check the version installed:
$ python3
>>> import tensorflow as tf
>>> print(tf.__version__)
It doesn’t make too much difference, but if you are curious, I used TensorFlow 2.9.2 and Keras 2.9
60%
31.10.2025
.nmap.org (64.13.134.52):
Not shown: 994 filtered ports
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 4.3 (protocol 2.0)
25/tcp closed smtp
59%
07.10.2025
experimenting with the keyboard-integrated computer format so popular back in the age of Commodore's Amiga and C64 machines, launching the Pi 400 [3] and its recent upgrade, the Pi 500 [4], soon after the launch
59%
31.10.2025
seconds, for example:
# nc -p 16000 -w 30 examplehost.tld 22
If firewalling is in place and you need to originate your connection from a specific IP address to open a port, then you can enter:
# nc -s 1.2.3
56%
31.10.2025
\Process\:
%d (pid %p)\n\User\:%u\n\Host\: %c\n\Date\: $(date)\n\" |
/usr/bin/mail -s "Connection to %d blocked" chrisbinnie@email.com) &
The SPAWN command has lots of other uses, including communicating
56%
31.10.2025
.1_release_notes
oVirt Installation Guide: http://www.ovirt.org/w/images/a/a9/OVirt-3.0-Installation_Guide-en-US.pdf
... Version 3.1 of the oVirt management platform for virtual infrastructures has recently become available. On Fedora 17, the new release is easy to install and deploy. ... oVirt 3.1 ... Managing virtual infrastructures with oVirt 3.1
54%
04.12.2024
applications from creating child processes
No
d4f940ab-401b-4efc-aadc-ad5f3c50688a
Blocks credential theft from the local security authority subsystem (lsass.exe)
Yes
9e6c4e1f
52%
26.01.2025
's universe
https://pluton.lee-phillips.org/sliders/epicycles.html
Introduction to computational thinking. A. Edelman, D.P. Sanders, and C.E. Leiserson, lecturers. MIT
https
51%
28.07.2025
[i] + b[i];
}
When the number of cycles is known at compile time, a loop can be fully unrolled:
c[0] = a[0] + b[0];
c[1] = a[1] + b[1];
c[2] = a[2] + b[2];
c[3] = a[3] + b[3];
However, it remains