Skip to content

Instantly share code, notes, and snippets.

View sefatanam's full-sized avatar
:octocat:
odistro

Sefat Anam sefatanam

:octocat:
odistro
View GitHub Profile
@sefatanam
sefatanam / prompt.py
Created January 28, 2025 16:27 — forked from brownan/prompt.py
Ollama command line interface with Markdown rendering
#!/bin/env python3
import argparse
import io
import json
import os
import sys
import urllib.parse
import urllib.request
from typing import Optional, NamedTuple
@sefatanam
sefatanam / Connection String
Created December 23, 2024 22:43
OneClient Backend Changes
sClLQOkek3PlsAbDteBRX+F69oDNnaAlyyRgcKPdAtQU0JuN5Pmx5iD4/rMQXSZ9uCHLKKZA/b9Nk/H9JVsc7BBb5yLcul8GOCoIAHJzj+Q55LfS7e20HP+hkyzd6fhszW+f8pihxeyM6YraoZTG9sskGhwUAMuIISKaClAhXMcEn/nf88SBlJtBgegICcSdrmm/30b6+vER+UpNl31J07soV6hLfECnLepyizSX22A=
@sefatanam
sefatanam / README.md
Created October 23, 2024 16:55 — forked from m0hadang/README.md
vim(NVim, LazyVim, NvChad) shortcut

vim(NVim, LazyVim) ShortCut

NVim

  • intellisense : tab(can use in command(:) mode)
  • keymap site :

Lazy Vim Shortcut

  • select block : ctrl + space
  • shit buffer : shit + h,j,k,l
@sefatanam
sefatanam / init.lua
Last active October 11, 2024 18:25
my neovim config ...
vim.g.base46_cache = vim.fn.stdpath "data" .. "/base46/"
vim.g.mapleader = " "
-- bootstrap lazy and all plugins
local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
if not vim.uv.fs_stat(lazypath) then
local repo = "https://github.com/folke/lazy.nvim.git"
vim.fn.system { "git", "clone", "--filter=blob:none", repo, "--branch=stable", lazypath }
end
@sefatanam
sefatanam / readme.md
Created February 6, 2024 17:10
Share data natively from mobile to any PWA app

Code sniped

📺 Naruto: Shippuden (2007 - 2017)

🎥 Dual Audio With English Subtitles

WATCH ONLINE OR DOWNLOAD 👇 Season Wise :- 👇👇 📺 Naruto: Shippuden (2007 - 2017)

🎥 Dual Audio With English Subtitles

[
{
"about": [
"Akatsuchi (赤ツチ, Akatsuchi) é um shinobi de Iwagakure.",
"Akatsuchi é muito jovial e infantil e sempre parece ter um temperamento alegre. Ele estava animado com a perspectiva de voar mais uma vez, mesmo que houvesse a possibilidade de eles estarem indo para uma batalha.",
"Akatsuchi é um homem grande e imponente, com olhos escuros e cabelos pretos com picos que saem para fora na parte de trás debaixo de seu protetor de testa, o qual é usado como uma bandana. Ele também tem grandes bochechas, e um nariz gordo que lhe dá uma visão geral de sua jovialidade constante. Ele usa o uniforme vermelho de Iwagakure, que possui ambas as mangas, debaixo de seu colete, além de usar um lenço amarelo que o envolve em torno de seu pescoço.",
"Anos após o fim da Quarta Guerra Mundial Shinobi, Akatsuchi deixa uma barba crescer e aparentemente descarta seu protetor de testa. Ele também prende seu cabelo em um rabo de cavalo.",
"Artigo principal: Reunião dos Cinco Kage (Arco)",
[
{
"lat": 25.515758,
"lon": 89.817442,
"type": "Rich",
"occupation":"Farming",
"name":"Abdul Rahman",
"disability":"No"
},
{
"url":""
}
@sefatanam
sefatanam / README.md
Last active May 12, 2023 10:11
Angular resuable table

This code appears to be an Angular template that defines a table component with some customization options.

The component is the main table component, and it expects the following inputs and outputs:

dataSource: It is likely a variable or property that represents the data source for the table. displayedColumns: It is likely a variable or property that specifies the columns to be displayed in the table. template: It is a reference to the element defined later in the code. This template is used to customize the rendering of the table cells. (paginateSizeOnChange): It is likely an event handler function that is triggered when the pagination size changes in the table. The element with the #templateRef reference defines a custom template for rendering the table cells. This template is used to apply different styles or formatting based on the column definition.