List of of all the pull requests I have made so far in Cosmos:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
steps: | |
- name: 'eu.gcr.io/king-container-registry-shared/custom-cloud-builders/helm:latest' | |
dir: <where-the-chart-is> | |
id: package-push | |
script: > | |
helm dependency build ; | |
NAME=`helm package . | awk -F "/" '{print $NF}' -`; | |
helm push $NAME oci://eu.gcr.io/<artifcat-registry-name>/<reposity-name>/ | |
options: | |
workerPool: <worker-pool-user> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: external | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: tinyproxy | |
namespace: external |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# the node doesn't exist | |
k get nodes | grep ip-10-111-38-8.ap-south-1.compute.internal | |
<blank> | |
calico-kube-controllers log: | |
022-10-26 17:06:56.985 [INFO][1] ipam.go 1174: Calico Node referenced in IPAM data does not exist error=resource does not exist: Node(<node-name>) with error: nodes "<node-name>" not found | |
... | |
... | |
│ 2022-10-26 17:09:13.843 [INFO][1] ipam_block_reader_writer.go 334: Block must be empty but is not empty, refusing to remove affinity. host="<node-name>" subnet="subnet/cidr" │ | |
│ 2022-10-26 17:09:13.882 [ERROR][1] ipam.go 1101: Failed to release block affinities for node calicoNode="<node-anme>" error=block 'subnet/cidr' is not empty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from __future__ import (absolute_import, division, print_function, | |
unicode_literals) | |
import json | |
import socket | |
import subprocess | |
import paramiko | |
import sys | |
import os |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
D/ULANISTOPAUDIO: play: | |
V/RTag: CMediaManager.playermanager.play: | |
D/PLS: trackNarration: 52 | |
I/ASR: Update Words Spoken: tamu | | |
D/ULANISTOPAUDIO: incWord: numWordsCurPage = 6 | |
D/CQn_ViewManagerASB: setHighLight: | |
I/ASR: RIGHT | |
D/ULANISTOPAUDIO: postDelayedTracker: sana 187 83 | |
D/PLS: trackNarration: 52 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo docker run -d -p 80:80 geeksid/allennlp allennlp serve --port 80 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
#include <xmmintrin.h> | |
#include <stdio.h> | |
#include <sys/time.h> | |
// gcc -DCLS=$(getconf LEVEL1_DCACHE_LINESIZE) -fopenmp idk_matrix.c | |
// the nxn matrix you want | |
#define N 1024 | |
// CLS is Cache Line Size |
NewerOlder