Skip to content

Instantly share code, notes, and snippets.

View DenisPalnitsky's full-sized avatar

Denis Palnitsky DenisPalnitsky

View GitHub Profile
function(ctx) {
id: ctx.identity.id,
email: ctx.identity.verifiable_addresses[0].value,
}
typedef struct
{
uint32_t hss_db_ue_id; //
* auth_vector_t auth_vector; // auth vector
* uint8_t op[16]; // Pre Shared Key. This is optional and configured in operator’s DB in Authentication center and USIM. https://www.3glteinfo.com/lte-security-architecture/
* uint8_t amf[2]; // Pre Shared Key. Configured in operator’s DB in Authentication center and USIM
uint64_t sqn; // Sequence number, It is the 4 Octet sequence no which should be refreshed each time NW tries to re authenticate the UE. It is generated as below. https://www.3glteinfo.com/lte-security-architecture/
* imsi_t imsi; // IMSI Sim ID (International mobile subscriber identity) https://www.netmanias.com/en/post/blog/5929/lte/lte-user-identifiers-imsi-and-guti
* uint8_t K[16]; // Key from the SIM
uint64_t ue_dl_ambr_bps; // User Equipment Aggregate Maximum Bit Rate downlink, parameter stored per APN in the HSS

Tennis Score System

Case 1

Player Scored Score
-- 0 : 0
1 15 : 0
1 30 : 0
2 30 : 15
{
"final_space": true,
"console_title": true,
"console_title_style": "folder",
"blocks": [
{
"type": "prompt",
"alignment": "left",
"horizontal_offset": 0,
"vertical_offset": 0,
---
AWSTemplateFormatVersion: '2010-09-09'
Parameters:
EKSClusterName:
Type: String
Description: The desired name of your AWS EKS Cluster.
EKSVersion:
Type: String
< HTTP/1.1 400 Bad Request
< Cache-Control: private, no-cache, no-store, must-revalidate
< Content-Type: application/json; charset=utf-8
< Vary: Origin
< Vary: Cookie
< Date: Fri, 23 Jul 2021 14:34:21 GMT
< Content-Length: 1437
<
{
"id": "3b222222-f317-41b0-961c-97c904443a7b",
apiVersion: tekton.dev/v1alpha1
kind: PipelineResource
metadata:
name: skaffold-git-output-pipelinerun
spec:
type: git
params:
- name: revision
value: v0.32.0
- name: url
import sys
import os
import xml.etree.ElementTree as ET
import logging
import re
from shutil import copyfile
from optparse import OptionParser
### This file came from the https://github.com/flow123d/flow123d repo they were nice enough to spend time to write this.
### It is copied here for other people to use on its own.