19%
26.01.2025
.add(layers.BatchNormalization())
model.add(layers.Conv2D(32, (3,3), padding='same', activation='relu'))
model.add(layers.BatchNormalization())
model.add(layers.MaxPooling2D(pool_size=(2,2)))
model.add(layers.Dropout(0.3))
The next
19%
30.11.2025
the virtual machine consoles in your browser with phpVirtualBox.
Free or Not Free?
Up to version 4.0 of VirtualBox, both a commercial and an open source edition (OSE) existed. The OSE often was available
19%
30.11.2025
is MySQL or SQLite. 128MB disk space and 256MB RAM are the available hardware resources in a shared-hosting environment.
If you need more, you have to upgrade to the Flex level, which means having
19%
30.11.2025
) with 12 Serial ATA disks, a 320 UW SCSI controller for the host connection, and 512MB cache.
I configured various disk groups and logical volumes on this powerful hardware and exported them to the backup
19%
30.11.2025
OS*)
15 PING="ping"
16 PING2=""
17 ;;
18 esac
19 ...
20
21 for i in server1 server2 server3 workstation1 workstation2
22 do
23 $PING $i $PING2 > /dev/null
24 if [ "$?" != "0
19%
30.11.2025
is not accessible! ****************" >> dba.log
15 /usr/local/etc/rc.d/002pgsql.sh start
16 sleep 15
17 psql -U monitor -d monitor -c "select * from watch;"
18
19 if [ $? -eq 0 ];
20
21 then
22
19%
30.11.2025
(number, label):
07 for i in xrange(number):
08 print ' ' + str(i) + ' ' + label
09 sleep((number - 15)/10.0)
10
11 if '__main__' == __name__:
12
13 p1 = Process(target = count, args = (20
18%
26.01.2025
Windows versions from NT 4.0 and the current versions come with the msinfo32 command-line program, which reports a first look of the machine hardware. The program offers a good overview of the available
18%
30.11.2025
/openvpn/keys/CA.crt
08 cert /etc/openvpn/keys/server.crt
09 key /etc/openvpn/keys/server.key
10 tls-auth /etc/openvpn/keys/tls-auth.key
11
12 server 192.168.1.0 255.255.255.0
13
14 keepalive 10 60
15 comp-lzo
16
17
18%
30.11.2025
clear
03 while true
04 do
05 echo "New record"
06 maxrecord=`ls -1 *.dat | sort | tail -1 | cut -d. -f 1`
07 newrecord=$(echo $maxrecord + 1 | bc )
08 width=`echo $newrecord | wc -c`
09
10 ...
11
12