An open API service indexing awesome lists of open source software.

https://github.com/jofaval/utilities

Some custom utilities I've made for my own use at first. Meant to improve the day to day routines
https://github.com/jofaval/utilities

automate automation go golang javascript python utilities utilities-python

Last synced: about 2 months ago
JSON representation

Some custom utilities I've made for my own use at first. Meant to improve the day to day routines

Awesome Lists containing this project

README

          

# Utilities

Some utilities I've made along the way, resourceful to me, but maybe for somebody else too, hopefully.

## Contents

1. [Python](#python)
1. [Developed](#developed)
1. [Javascript](#javascript)
1. [Developed](#developed-1)
1. [Go(lang)](#golang)
1. [Developed](#developed-2)

## Python

[Table of contents](#contents)

An easy and fast to develop in language that's proven to be very useful, specially because of it's libraries.

### Developed

[Table of contents](#contents)

- [ascii-to-text.py](./python/ascii-to-text.py), it does as it says, given ascii codes it returns a text, and viceversa.
- [store-folder-state.py](./python/store-folder-state.py), prints all of the folders, with the option for recursiveness, into a txt as a sort of snapshot of a given folder
- [specificity.py](./python/specificity.py), utility functions to ease the pain of CSS specificity.
- [github-repository-created_at.py](./python/github-repository-created_at.py), utility to sort by date public github repos from a user.
- [postman-to-markdown.py](./python/postman-to-markdown.py), utility to transform a postman collection to a markdown doc.
- [get_words_from_pdf.py](./python/get_words_from_pdf.py), CLI script to get words from a pdf and retrieve (total words and read time).
- [simulate_activity.py](./python/simulate_activity.py), Utility to simulate mouse movement activity (multi-platform).

## Javascript

[Table of contents](#contents)

The language by default for user interacion in the web.

### Developed

[Table of contents](#contents)

- [specificity.js](./javascript/specificity.js), the same python utility, but in javascript
- [find-unsubscribe-button.js](./javascript/find-unsubscribe-button.js), not perfect, but it helps ease the pain of finding and clicking the unsuscribe button
- [github-repos-urls.js](./javascript/github-repos-urls.js), just a quick utily to get the repository links of a quick filter search
- [youtube-playlist-total-watch-time.js](./javascript/youtube-playlist-total-watch-time.js), sums up the total watch time for a given YouTube (watch/play)list
- [get-trello-checklist-links.js](./javascript/get-trello-checklist-links.js), gets all the links from trello checklists in an open card
- [get-article-details-medium-profile.js](./javascript/get-article-details-medium-profile.js), gets article details from a medium profile
- [2048-solver.js](./javascript/2048-solver.js), 2048 solver, mainly made for the 8x8 grid

## Go(lang)

[Table of contents](#contents)

Compiled language developed by Google that's simple and resourceful

### Developed

[Table of contents](#contents)

- None at the moment