77%
20.06.2022
a Flask app and set the OpenID connect config params
06 app = Flask(__name__)
07 app.secret_key = 'hu5t82LXfYKtr3XFcPeAYaCBWFK8DcI1'
08 app.config['OIDC_CLIENT_SECRETS'] = 'oidc-config.json'
09 app
77%
17.06.2017
04 real :: var2
05 integer :: int1
06 end type other_struct
07
08 type my_struct ! Declaration of a Derived Type
09 integer :: i
10 real :: r
11 real*8 :: r8
12 real, dimension(100
77%
21.01.2014
a search function. The following function launches the smallest Amazon instance on offer using the ami-df9b8bab
image:
conn.run_instances('ami-df9b8bab', instance_type='m1.small')
If you take a look
77%
09.01.2013
.run_instances('ami-df9b8bab', instance_type='m1.small')
05 instance = reservation.instances[0]
06
07 raw_input("Press ENTER to stop instance")
08
09 instance.terminate()
For better orientation with a large number
76%
04.12.2024
"],
08 "serviceHistory": [
09 {
10 "date": "2023-01-15",
11 "serviceType": "Oil change",
12 "dealer": "BMW Service Center"
13 },
14 {
15 "date": "2023-06-20",
16
76%
06.10.2019
://tools.ietf.org/html/rfc7816
DoH in Firefox: https://blog.mozilla.org/futurereleases/2018/09/13/dns-over-https-doh-testing-on-beta/
Public DoH endpoints: https://github.com
76%
18.07.2013
where I left off, I'll try find out everything that my laptop knows about its internal drive (Figure 1).
Figure 1: Intel SA2M080G2GC, an Intel 320 second
76%
16.03.2021
identified the following physical drives that I will be using in my examples:
$ cat /proc/partitions |grep -e sd[c,d] -e nvm
259 0 244198584 nvme0n1
259 2 244197543 nvme0n1p1
8 32
76%
30.11.2020
: Katacoda has a learning scenario in which you can enter commands. Source: katacoda.com [8].
In the left pane, the note under Task
explains that you need to restart the CRI-O runtime to fix a bug
76%
29.09.2020
FROM node:8-alpine
02
03 LABEL maintainer="Liran Tal com>"
04 LABEL contributor="Eitan Schichmanter com>"
05
06 RUN apk add docker && rm -rf /var/apk/cache/*
07
08 COPY