Skip to content

Instantly share code, notes, and snippets.

View bashiru98's full-sized avatar
๐Ÿˆ
Focusing

Bashiru Bukari bashiru98

๐Ÿˆ
Focusing
  • software engineer @dabblelab
  • Turkey
  • 22:17 (UTC +03:00)
View GitHub Profile
@bashiru98
bashiru98 / newincident.hbs
Created September 22, 2021 19:25 — forked from caeb92/newincident.hbs
Example nodejs typescript : Send emails with Nodemailer - Handlebars
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.card {

Updating nested array inside array mongodb

For example: We have a document like this one;

clubs:{
cid: 1,
cname: "Fenerbahce",
cplayers: [{

pid: 1,

@bashiru98
bashiru98 / flutter_setup.md
Created August 18, 2021 13:50 — forked from bradtraversy/flutter_setup.md
Flutter dev setup & notes
@bashiru98
bashiru98 / lowpass.py
Created August 13, 2021 09:58 — forked from junzis/lowpass.py
Python Lowpass Filter
# https://stackoverflow.com/questions/25191620/
# creating-lowpass-filter-in-scipy-understanding-methods-and-units
import numpy as np
from scipy.signal import butter, lfilter, freqz
from matplotlib import pyplot as plt
def butter_lowpass(cutoff, fs, order=5):
nyq = 0.5 * fs
@bashiru98
bashiru98 / minikubedelete
Created June 4, 2021 23:27 — forked from sharepointoscar/minikubedelete
Minikube - Delete all pods from default namespace
# delete all pods
kubectl delete --all pods --namespace=default
# deete all deployments
kubectl delete --all deployments --namespace=default
# delete all services
kubectl delete --all services --namespace=default
@bashiru98
bashiru98 / docker-help.md
Created February 28, 2021 09:22 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info