Skip to content

Instantly share code, notes, and snippets.

@senthilmpro
senthilmpro / telegram-channel-dl.js
Created March 10, 2024 15:32
telegram-channel-dl.js
// download
let counter = 0;
let prefix = "TamilFreakers";
const LAST_INDEX = 1210; // get the message Id of last message (right click on the latest post, "copy message link".. this should have latest message id")
let messages = Array(LAST_INDEX).fill(0).map((x, i) => `message${i + 1}`).reverse();
let textContents = [];
let htmlContents = [];
@senthilmpro
senthilmpro / convert-image-url-to-base64.js
Created March 10, 2024 15:30
Image URL to base64 using javascript
// snippet from google gemini
function convertImageURLToBase64(imageUrl) {
fetch(imageUrl)
.then(response => response.blob())
.then(blob => {
const reader = new FileReader();
reader.readAsDataURL(blob);
reader.onloadend = function() {
const base64data = reader.result;
@senthilmpro
senthilmpro / logger.js
Created September 7, 2023 16:34
Winston Logger colorize using Node.js (code snippet)
// open terminal -> "npm install winston -S"
const winston = require('winston');
// snippet from https://stackoverflow.com/questions/51012150/winston-3-0-colorize-whole-output-on-console
let alignColorsAndTime = winston.format.combine(
winston.format.colorize({
all:true
}),
winston.format.label({
label:'[LOGGER]'
@senthilmpro
senthilmpro / git-log-color.sh
Created August 7, 2023 19:42
git log (color)
git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --branches
## source: https://dev.to/pradumnasaraf/beautify-your-git-log-with-a-single-command-2i5
@senthilmpro
senthilmpro / nodejs-axios-download-progress.js
Created July 21, 2021 20:07
axios download progress in nodeJS
const { default: axios } = require("axios");
const fs = require("fs");
const downloadFile = async (url, filename) => {
const { data, headers, request } = await axios({
url: url,
method: "GET",
responseType: "stream",
});
@senthilmpro
senthilmpro / remove-node-modules
Created March 9, 2021 05:45
Remove all node_modules folder - mac terminal command
# https://dev.to/trilon/how-to-delete-all-nodemodules-folders-on-your-machine-43dh
$ cd documents
$ find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \;
@senthilmpro
senthilmpro / integrate-webcam-in-javascript.js
Created April 4, 2021 06:38
webcam-access-in-javascript (js-snippets)
// https://dev.to/stackfindover/how-to-integrate-webcam-using-javascript-3fji
var StopWebCam = function () {
var stream = video.srcObject;
var tracks = stream.getTracks();
for (var i = 0; i < tracks.length; i++) {
var track = tracks[i];
track.stop();
}
@0xjjpa
0xjjpa / population.js
Created March 10, 2013 03:04
Wrapper for data related to the age groups in the United States over the last 150 years. Retrieved from the Minnesota Population Center - http://ipums.org/
var population = [
{
"year": "1850",
"age": "0",
"sex": "1",
"people": "1483789"
},
{
"year": "1850",
"age": "0",
@0xjjpa
0xjjpa / binaryTree.js
Created February 16, 2013 16:42
Simple binary tree structure in a C-like syntax (no class, just node wrapper)
var Node = function(v, l, r) {
this.value = v; this.left = l || {}; this.right = r || {};
}
Node.prototype.addChildren = function(number) {
if(number) {
if(this.value) {
Node.prototype.parent = this;
if(this.value > number) {
Node.prototype.direction = "left";
Basic
=====
[Shift]+[Mod]+[Enter] - launch terminal.
[Mod]+[b] - show/hide bar.
[Mod]+[p] - dmenu for running programs like the x-www-browser.
[Mod]+[Enter] - push acive window from stack to master, or pulls last used window from stack onto master.
[Mod] + [j / k] - focus on next/previous window in current tag.