Skip to content

Instantly share code, notes, and snippets.

View kmanadkat's full-sized avatar
🎯
Full Stack Developer

Krupesh Anadkat kmanadkat

🎯
Full Stack Developer
View GitHub Profile
@kmanadkat
kmanadkat / Project.cpp
Created February 22, 2025 19:40
Arduino LCD I2C & Keypad Mini Project
/**
* Arduino Weight Converter
* This project allows the user to enter a weight (in Kg or Lbs) using a 4x4 matrix keypad.
* The program then calculates and displays the equivalent weight on various celestial bodies
* using an I2C LCD.
*
* Components:
* - Arduino Uno
* - 4x4 matrix keypad
* - I2C 16x2 LCD module
@kmanadkat
kmanadkat / config.json
Last active February 8, 2025 19:40
Continue Config
{
"models": [
{
"title": "Qwen 2.5 Coder 7b",
"model": "qwen2.5-coder:7b",
"provider": "ollama",
"apiKey": ""
}
],
"tabAutocompleteModel": {
@kmanadkat
kmanadkat / bingo.sh
Created August 8, 2023 10:17
FreeCodeCamp - Learn Bash Scripting by Building Five Programs
#!/bin/bash
# Bingo Number Generator
echo -e "\n~~ Bingo Number Generator ~~\n"
NUMBER=$(( RANDOM % 75 + 1 ))
TEXT="The next number is, "
if (( $NUMBER <= 15 ))
then
echo $TEXT B:$NUMBER
elif [[ $NUMBER -le 30 ]]
@kmanadkat
kmanadkat / .p10k.zsh
Last active March 28, 2023 08:51
VS CODE Settings 2023
# Generated by Powerlevel10k configuration wizard on 2023-03-27 at 18:29 IST.
# Based on romkatv/powerlevel10k/config/p10k-rainbow.zsh, checksum 53641.
# Wizard options: nerdfont-complete + powerline, small icons, rainbow, unicode,
# 12h time, angled separators, sharp heads, flat tails, 1 line, sparse, many icons,
# fluent, instant_prompt=verbose.
# Type `p10k configure` to generate another config.
#
# Config for Powerlevel10k with powerline prompt style with colorful background.
# Type `p10k configure` to generate your own config based on it.
#
@kmanadkat
kmanadkat / Nginx-reverse-proxy.md
Created February 22, 2023 12:39
Setting Up NGINX Reverse Proxy For Local Development

Setup Hosts File

This is very straight forward process and involves editing a single file. You will need sudo privileges for this.

  1. Open Terminal and execute below to open hosts file

    sudo nano /etc/hosts
@kmanadkat
kmanadkat / main.dart
Created June 27, 2021 09:42
Sliver App Bar with Tab Bar; Preserve Scroll; No Overlap issue on Tab Change
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
static const String _title = 'Flutter Code Sample';
@override
@kmanadkat
kmanadkat / main.dart
Created June 27, 2021 07:32
Sliver App Bar Hiding Content Issue
import 'dart:math';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
@kmanadkat
kmanadkat / README.md
Created October 20, 2019 16:16 — forked from willprice/README.md
Install OpenCV 4.1.0 for Raspberry Pi 3 or 4 (Raspbian Buster)

Install OpenCV 4.1.0 on Raspbian Buster

$ chmod +x *.sh
$ ./download-opencv.sh
$ ./install-deps.sh
$ ./build-opencv.sh
$ cd ~/opencv/opencv-4.1.0/build
$ sudo make install
@kmanadkat
kmanadkat / ML0101EN-Reg-NoneLinearRegression-py-v1.ipynb
Created March 27, 2019 19:44
Created on Cognitive Class Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.