Skip to content

Instantly share code, notes, and snippets.

View ichux's full-sized avatar
🏠
Working from home

Chukwudi Nwachukwu ichux

🏠
Working from home
View GitHub Profile

Full Step-by-Step Example

Let's assume the temporary branch is backup.

  1. Change the default branch to backup on GitHub:

    • Go to "Settings" -> "Branches" -> change the default branch to backup.
  2. Delete the remote main branch:

Generative AI can be applied to banking data in several ways, primarily focused on improving processes, enhancing security, and generating synthetic data for testing and analysis. Here are some applications:

  1. Data Augmentation: Generative models can generate synthetic data that closely resembles real banking data. This synthetic data can be used to augment the existing dataset, increasing its size for better training of machine learning models without compromising customer privacy.

  2. Fraud Detection: Generative models can learn patterns from historical banking transactions and generate synthetic fraudulent transactions. By training fraud detection systems on a combination of real and synthetic data, these systems can become more robust in identifying potential fraudulent activities.

  3. Customer Service Automation: Natural Language Processing (NLP) models, which are a form of generative AI, can be used to generate human-like responses to customer inquiries or automate routine tasks such as ba

!
! Block PunchNG
!
##.ad-container
##.ad-container-inner
##div[class="ad-container"]
##div[class="ad-container-inner"]
@ichux
ichux / filter.txt
Created April 27, 2024 04:40
AdGuard custom filter rules
$127.0.0.1 analytics.google.com
||googletagmanager.com^$important
@@||nitroflare.com^
||quirkybliss.com^
||merequartz.com^
# https://fontawesome.com/v4/icons/
docker pull minlag/mermaid-cli
# Output file must end with ".md"/".markdown", ".svg", ".png" or ".pdf"
docker run --rm -u `id -u`:`id -g` -v ./onpie:/data minlag/mermaid-cli -i input.mmd
docker run --rm -u `id -u`:`id -g` -v ./onpie:/data minlag/mermaid-cli mmdc -i input.mmd -o output.png
flowchart TD
A[OneR8] -->|Call APIs| B(Analysis)
def strtobool(val):
"""Convert a string representation of truth to true (1) or false (0).
True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values
are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if
'val' is anything else.
"""
val = val.lower()
if val in ('y', 'yes', 't', 'true', 'on', '1'):
return 1
# split large file into 200MB
split -b 200m artofpostgresql.zip
# bring all together
cat * > onefile.zip
scp hphs:~/deployed/corebank/containers/nginx/web-app/assets/env.js .
env.js 100% 1300 277.1KB/s 00:00
scp env.js hphs:~/deployed/corebank/containers/nginx/web-app/assets/env.js
env.js
@ichux
ichux / gist:236abb2b32836badc933c5174cb896d5
Created April 13, 2024 10:59
How to Run HAProxy With Docker (In-Depth Guide)
https://www.haproxy.com/blog/how-to-run-haproxy-with-docker
echo Y | docker system prune -a --volumes