Skip to content

Instantly share code, notes, and snippets.

View vishalparkar's full-sized avatar

Vishal Parkar vishalparkar

  • Infosys
  • Mysuru, Karnataka, India
View GitHub Profile
@hrishikeshrt
hrishikeshrt / README.md
Last active January 29, 2024 14:06
Hindu Calendar Utility using drikPanchang.com

Python class and a CLI for various calendar utilities according to Hindu Calendar. It uses drikPanchang.com for querying data.

Some Features:

  • Finding the Tithi of a particular date
  • Querying daily Panchang
  • Finding an occurrence of a particular Tithi in the current (or specified) year
  • Ability to specify date in both regional or Gregorian format
  • Display in regional language
  • ICS Calendar Creator (Plotting Janma-Tithi on the Gregorian calendar for the specified year)
@berkorbay
berkorbay / github_desktop_ubuntu.md
Last active May 7, 2024 08:11
To install Github Desktop for Ubuntu

IMPORTANT

See the following links for further updates to Github Desktop for Ubuntu. These are official instructions. (also mentioned by fetwar on Nov 3, 2023)

For the sake of "maintaining the tradition" here is the updated version.

@masterashu
masterashu / paytm_checksum.py
Last active February 13, 2022 18:25
Paytm Payment Gateway: Checksum Generator for Python3
import base64
import string
import random
import hashlib
from Crypto.Cipher import AES
IV = "@@@@&&&&####$$$$"
BLOCK_SIZE = 16
@tkrotoff
tkrotoff / FrontendFrameworksPopularity.md
Last active May 7, 2024 14:13
Front-end frameworks popularity (React, Vue, Angular and Svelte)
@mrkrndvs
mrkrndvs / export-named-sheet-as-csv.gs
Last active May 4, 2024 21:53 — forked from mderazon/export-to-csv.gs
Google apps script to export an individual sheet as csv file
/*
* script to export data of the named sheet as an individual csv files
* sheet downloaded to Google Drive and then downloaded as a CSV file
* file named according to the name of the sheet
* original author: Michael Derazon (https://gist.github.com/mderazon/9655893)
*/
function onOpen() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var csvMenuEntries = [{name: "Download Primary Time File", functionName: "saveAsCSV"}];