Help Guide For Software Engineer
Monday, June 30, 2025
Sync data from Informix to Oracle using Debezium/Kafka Connect/Kafka/JDBC Sink
›
Following commands and details will be helpful when configuring Debezium to sync data from Informix to Oracle database. 1. Docker compose t...
Thursday, February 20, 2025
Check certificate expiry using Python
›
Following python script can use to check HTTPS certifcate expiry. import ssl import socket import requests from datetime import datetime # ...
Thursday, July 25, 2024
Gemini Flash LLM use to process image
›
You can use following code to process images using Googel Gemini LLM. import streamlit as st import os import google.generativeai as genai ...
Gemini Pro AI Text Processing
›
You can use the following python code to process your text using Google Gemini GPT pro LLM model. To execute the code, you need to get API k...
Friday, August 25, 2023
Mongo Shell Commands
›
Following commands can be used in mongo db shell. show dbs list of all the databases use shops switch to a specific database or creates a d...
Wednesday, July 19, 2023
›
#!/bin/bash ps -ef |grep "java -jar" > /apps/appcheck x=$(cat /apps/appcheck |grep "TestApp.jar" |wc -l) echo $x ...
Tuesday, June 27, 2023
kubernetes pod sample files
›
simple nginx pod apiVersion : v1 kind : Pod metadata : name : nginx-pod labels : app : nginx tier : dev spec : c...
›
Home
View web version