69%
01.08.2019
if line:
13 if "UDP" in line or "TCP" in line:
14 for words in line.split():
15 if "SRC" in words:
16 srcIP=words.split('=')[1]
17 if "DPT" in words:
18 d
69%
15.08.2016
/b/kevinholman/archive/2013/10/18/orchestrator-2012-r2-quickstart-deployment-guide.aspx
Integration packages for System Center 2012 Orchestrator: https://technet.microsoft.com/en-us/library/hh295851.aspx
System Center
69%
05.12.2016
widely used OSs between 18 and 24 months old.
Apple iOS
If you search for VPN clients in Apple's App Store, you are shown a long list. However, a closer look shows that almost all of them
69%
14.03.2018
_vpc_net:
17 name: "{{ netname }}-int"
18 cidr_block: "{{ cidr_master }}"
19 region: "{{ region }}"
20 tags: create_vpc_int
21 register: myvpcint
22
23 - name: Create Subnet INT
24 ec2
69%
21.08.2012
speeds from cached hostfile
* elrepo: mirror.symnds.com
* epel: www.gtlib.gatech.edu
* rpmforge: mirror.teklinks.com
* sl: ftp.scientificlinux.org
* sl-security: ftp.scientificlinux.org
Setting up
69%
09.10.2017
client = boto3.client('s3')
14 bucket = boto3.resource('s3').Bucket(bname)
15
16 pgnr = client.get_paginator('list_objects')
17 page_it = pgnr.paginate(Bucket=bname)
18
19 for page in page_it:
20
69%
25.03.2020
of laptops have been discovered to be vulnerable to attack. The security research group Eclypsium has discovered (https://eclypsium.com/2020/2/18/unsigned-peripheral-firmware/) that hardware made by Dell, HP
69%
05.08.2024
_CODENAME=noble
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com
69%
09.01.2013
the Amazon cloud is large [18] – five times larger than the next 14 cloud providers – cloud storage is growing rapidly with many providers.
Wouldn't it be nice to be able to use a different or several cloud ... 18
69%
02.06.2020
= sol.copy()
10
11 for j in range(0,ny-1):
12 sol[0,j] = 10.0
13 sol[nx-1,j] = 1.0
14 # end for
15
16 for i in range(0,nx-1):
17 sol[i,0] = 0.0
18 sol[i,ny-1] = 0.0
19 # end for
20
21 # Iterate
22