Skip to content

Instantly share code, notes, and snippets.

View Tanvir-rahman's full-sized avatar
🎮
👨‍💻 🚀 🎸 😎

Tanvir Rahman Tanvir-rahman

🎮
👨‍💻 🚀 🎸 😎
View GitHub Profile
@Tanvir-rahman
Tanvir-rahman / remoteDebugging.md
Created April 28, 2024 19:02 — forked from royshouvik/remoteDebugging.md
Describes how to setup remote debugging on an Android device using Chrome

Remote Debugging on Android with Chrome

The way your web content behaves on mobile can be dramatically different from the desktop experience. Remote debugging with Chrome DevTools lets you debug live content on your Android device from your development machine.

Debugging Chrome for Android using the Chrome Developer Tools

Remote debugging on Android supports:

  • Debugging websites in browser tabs.
  • Debugging WebViews in native Android apps.
@Tanvir-rahman
Tanvir-rahman / progress.html
Created May 18, 2020 11:45 — forked from WeiChiaChang/progress.html
Simple Pure CSS Progress Bar
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta chatset="UTF-8" />
<title>CSS Progress Bar</title>
<style>
.wrapper {
width: 500px;
}
@Tanvir-rahman
Tanvir-rahman / regexCheatsheet.js
Created February 5, 2019 05:57 — forked from sarthology/regexCheatsheet.js
A regex cheatsheet 👩🏻‍💻 (by Catherine)
let regex;
/* matching a specific string */
regex = /hello/; // looks for the string between the forward slashes (case-sensitive)... matches "hello", "hello123", "123hello123", "123hello"; doesn't match for "hell0", "Hello"
regex = /hello/i; // looks for the string between the forward slashes (case-insensitive)... matches "hello", "HelLo", "123HelLO"
regex = /hello/g; // looks for multiple occurrences of string between the forward slashes...
/* wildcards */
regex = /h.llo/; // the "." matches any one character other than a new line character... matches "hello", "hallo" but not "h\nllo"
regex = /h.*llo/; // the "*" matches any character(s) zero or more times... matches "hello", "heeeeeello", "hllo", "hwarwareallo"
@Tanvir-rahman
Tanvir-rahman / mongoDB.txt
Created July 26, 2018 18:51
MongoDB for windows
After complete installation
1) mongod --dbpath "C:\data\db" --logpath "C:\data\mongod.log" --install --serviceName "MongoDB"
2) net start MongoDB