Skip to content

Instantly share code, notes, and snippets.

View felipe-negri's full-sized avatar
🐲

Felipe Negri felipe-negri

🐲
View GitHub Profile
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
"meta": {
"version": "PTDL_v1",
"update_url": null
},
"exported_at": "2021-01-12T05:54:35-05:00",
"name": "Python-Universal",
"author": "yajtpg@gmail.com",
"description": "Python egg with compatibility for multiple Python versions.",
@felipe-negri
felipe-negri / pot.json
Last active August 29, 2024 21:30
pot.json
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PANEL",
"meta": {
"version": "PTDL_v2",
"update_url": null
},
"exported_at": "2024-08-28T02:42:32+00:00",
"name": "Path of Titans ARM64",
"author": "felipe@negri.dev",
"uuid": "5469896c-3b87-4084-8d55-1b6e15282516",
/**
* Returns an array with arrays of the given size.
*
* @param myArray {Array} Array to split
* @param chunkSize {Integer} Size of every group
*/
function chunkArray(myArray, chunk_size){
var results = [];
while (myArray.length) {
@felipe-negri
felipe-negri / deviant.groovy
Created September 27, 2018 17:15 — forked from crazy4groovy/deviant.groovy
Get photos from deviantart gallery(s), download to local folder or export url list to local file
/*
* author: crazy4groovy
* description: given a list of 1+ deviant art gallery URLs (semicolon separated),
* will parse out a list of all full size images found.
* license: MIT, no warranties or guarantees!
*/
import static groovyx.gpars.GParsPool.withPool as parallel
/////////////////////////////////