- Switch off headphone by pressing power button
- Switch on the headphone and keep pressing the power button for 3 second.
Avoid back pain from Bike
- Tyre pressure
- Speed (70+) – Less time of impact
- Suspension
- potholes size
- Seating Position
Get IMEI number for Google find my device
- Click on settings


Kong Functions (Pre-Plugins)
lets you dynamically run Lua code from Kong, before other plugins in each phase.
for eg. removing the header if it is blank.
local k_request = kong.request.get_header("Content-Type")
if k_request and (k_request == "application/json") then
local check_head = kong.request.get_raw_body()
if (not check_head) or (check_head == "") then
kong.service.request.clear_header("Content-Type")
end
end
TP-link ER605 OpenVPN with Local network
Local netowork(LAN1): 192.168.0.1

OpenVPN setting:
Local Network: 192.168.0.0/24
IP pool : 192.168.3.0/24

I can now SSH from OpenVPN client to 192.168.0.183
openvpn --config VPN_Default_2024-11-17-11-19-59.ovpn
kill stuck Jenkins job from script console
Get full jenkins job name :
Jenkins.instance.getAllItems(AbstractItem.class).each {
println(it.fullName)
};
Kill: Jenkins job which is stuck
Jenkins.instance
.getItemByFullName(“Tenerity-Platform/BizOps/apg-chargeback”)
.getBranch(“develop”)
.getBuildByNumber(716)
.finish(hudson.model.Result.ABORTED, new java.io.IOException(“Aborting build”));
Get CPU request graph k8 by namespace level prometheus
namespace level metrics
CPU:
sum by (namespace) (container_cpu_allocation)
Memory:
sum by (namespace) (container_memory_allocation_bytes/1024/1024)
kubectl custom query for CPU Memory Request Limit
kubectl custom query to get cpu , memory request and limit
kubectl get deploy -A -o=custom-columns='Namespace:.metadata.namespace,Name:.metadata.name,Request_CPU:.spec.template.spec.containers[0].resources.requests.cpu,Limit_CPU:.spec.template.spec.containers[0].resources.limits.cpu,Request_Memory:.spec.template.spec.containers[0].resources.requests.memory,Limit_Memory:.spec.template.spec.containers[0].resources.limits.memory' | sed 1d | tr -s '[:blank:]' ','
kubect replace variabe
deployments=$(kubectl get deploy | awk '{print $1}' | sed 1d)
for deploy in $deployments
do
deploy_raw_yml=$(kubectl get deploy $deploy -o yaml)
kubectl get deploy $deploy -o yaml > _tmp_store.yml
value_to_be_replaced=$(kubectl get deploy $deploy -o yaml | grep -A 1 'NEW_RELIC_APP_NAME' | grep value | awk -F 'value: ' '{print $2}')
echo "value_to_be_replaced: $value_to_be_replaced"
if [[ $value_to_be_replaced == "" ]]; then
echo "=====================$deploy no change =========================="
else
replaced_value=$(echo $value_to_be_replaced | sed 's/stage/perf/g')
echo "replaced_value: $replaced_value"
cat _tmp_store.yml| sed "s/$value_to_be_replaced/$replaced_value/g" | kubectl apply -f -
echo "=====================$deploy done =========================="
fi
done
PGP key GUI tool – Kleopatra
Halim seed Benefits
- Halim seeds are rich in iron, which can assist in managing iron-deficiency anemia.
- They contain phytoestrogen, resembling estrogen hormone, which regulates menstruation, potentially aiding in managing menstrual issues.
- High fiber content in Halim seeds may alleviate constipation.
- The presence of vitamins, minerals, and antioxidants in Halim seeds may benefit skin health.
- Arachidonic and linoleic acids found in Halim seeds may enhance brain function.
