First, make sure the local Bluetooth controller (e.g. a Bluetooth dongle the built in Bluetooth radio) is recognized:
lsusb
bluetoothctl
# for windows | |
PS C:\Users\sayem> netstat -aon | findstr :3000 | |
TCP 0.0.0.0:3000 0.0.0.0:0 LISTENING 12008 | |
TCP [::]:3000 [::]:0 LISTENING 12008 | |
PS C:\Users\sayem> taskkill /PID 12008 /F | |
SUCCESS: The process with PID 12008 has been terminated. | |
PS C:\Users\sayem> | |
#for linux | |
lsof -i :3000 |
keycode 117 = End |
import { Check } from "lucide-react"; | |
export default function Steps({ steps, currentStep = 1 }: { steps: string[], currentStep?: number }) { | |
return ( | |
<div className="flex gap-x-0 -mx-4 lg:-ms-0 overflow-auto py-4"> | |
{steps.map((step, index) => ( | |
<div key={index} className="flex flex-col items-center px-4 gap-2 relative step-circle-container "> | |
<div className={`${currentStep > index + 1 ? 'before:bg-gray-700 after:bg-gray-700 border-gray-700' : 'before:bg-gray-300 after:bg-gray-300 border-gray-300'} h-5 w-5 bg-white border rounded-full step-circle flex items-center justify-center `}> | |
<div className={`${currentStep > index + 1 ? 'scale-100 w-full h-full' : currentStep == index + 1 ? ' scale-100 h-1.5 w-1.5' : 'scale-0'} flex items-center justify-center rounded-full bg-gray-700 `}> |
{ | |
"version": 2, | |
"builds": [ | |
{ | |
"src": "app.js", | |
"use": "@vercel/node" | |
} | |
], | |
"routes": [ | |
{ |
wget -qO- https://www.mongodb.org/static/pgp/server-7.0.asc | sudo tee /etc/apt/trusted.gpg.d/server-7.0.asc
If you receive an error indicating that gnupg is not installed, perform the following steps:
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=Edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Colorful Glowing Liquid</title> | |
<!-- Custom Styles --> | |
<style> |
#aliases | |
alias x="exit" | |
alias c="clear" | |
#alias firefox='/opt/firefox/firefox' | |
alias pnd="pnpm dev" | |
alias nd="npm run dev" | |
alias ns="npm start" | |
alias nb="npm run build" |
https://samftp.com | |
http://discoveryftp.net | |
http://movies.discoveryftp.net | |
http://172.27.27.83 | |
http://172.27.27.84 | |
http://ftpbd.net | |
http://103.58.73.9 | |
http://media.ftpbd.net | |
http://server1.ftpbd.net | |
http://server4.ftpbd.net |
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |