17%
09.10.2017
0890843 06.07 1
15 Ga No00021288 Sort Code20020000 2 | Thu, 15.Aug 2013 | -100.0 | 18.07/09.57hours Rathau
16 Your flower delivery | Fri, 16.Aug 2013 | -24.99 | Inv. 2312, 2/12/2013
The figo API
17%
22.12.2017
Control.Applicative
11 import Yesod.Form
12 - set the web server port Warp to 3000
13 main :: IO ()
14 main = warp 3000 FormApp
15 data FormApp = FormApp
16 instance Yesod FormApp
17 instance Render
17%
01.08.2019
. The takeaway is the -j LOG option (line 12), which logs port scanning behavior to a logfile with the iptables:
prefix.
Listing 1
iptable Rules
01 *filter
02 *filter
03 :INPUT ACCEPT [0:0]
04
17%
04.08.2020
by timeit in Python: Extract timespec.c, stats.c, and stats.h from the book's source tarball, and compile it with:
cc timespec.c stats.c -o timespec -lm
You will want to read Chapter 15 in the book
17%
26.02.2014
name;
print (" Bytes-sent: %15s (total) %15s (Per-Sec)" %
(bytes2human(stats_after.bytes_sent),
bytes2human(stats_after.bytes_sent -
stats
17%
26.11.2013
" }
11 };
12 function signature(text) {
13 var arr = str2bin(text);
14 polycrypt.generateKey(sigKeyAlg).oncomplete = function(e) {
15 var key = e.target.result;
16 polycrypt.sign(sigAlg, key
17%
14.09.2021
$(find /sys/devices/system/cpu -regex ".*cpu[0-9]+/topology/thread_siblings_list") | sort -n | uniq
0,32
1,33
2,34
3,35
4,36
5,37
6,38
7,39
8,40
9,41
10,42
11,43
12,44
13,45
14,46
15,47
16,48
17,49
18,50
19,51
20,52
21,53
22,54
23,55
24,56
25
17%
03.02.2022
,32
1,33
2,34
3,35
4,36
5,37
6,38
7,39
8,40
9,41
10,42
11,43
12,44
13,45
14,46
15,47
16,48
17,49
18,50
19,51
20,52
21,53
22,54
23,55
24,56
25,57
26,58
27,59
28,60
29,61
30,62
31,63
The lstopo tool
17%
17.02.2015
that deploys and scales 12-factor apps as Docker containers across a cluster of CoreOS machines" (see also the box titled "Twelve Factors").
Twelve Factors
Heroku and several other PaaS providers
17%
07.11.2011
#pragma omp parallel for shared (sum) private (i)
12 for ( i=0; i < 1000000; i++) {
13 #pragma omp critical (sum_total)
14 sum = sum + a[i];
15 }
16 printf("sum=%lf\n",sum);
17