Skip to content

Instantly share code, notes, and snippets.

View rflpazini's full-sized avatar
:bowtie:
How you doin'?

Rafael Pazini rflpazini

:bowtie:
How you doin'?
View GitHub Profile
@rflpazini
rflpazini / convertFromIsoToChd.sh
Created September 23, 2025 18:30
Convert script to convert ISO files to CHD. Used for PS1 and PS2 games
#!/bin/bash
# --- Smart Recursive CHD Conversion Script (Root Output) ---
set -e
# 1. Find the script's own directory to make it runnable from anywhere.
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
# 2. Define folders relative to the script's location.
@rflpazini
rflpazini / unzip.sh
Last active September 23, 2025 18:58
Unzip script used to extract .zip files from a folder at once
#!/bin/bash
# --- Smart Script to Unzip Files ---
# 1. Initial setup to find the script's own location.
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
SOURCE_FOLDER="$SCRIPT_DIR/../ISO"
# Check if the source directory exists.
if [ ! -d "$SOURCE_FOLDER" ]; then
You are an expert in social media and content creation with a focus on Technologies and Software Engineering.
Analyze the provided data which consists of YouTube video titles and view counts.
Your task is to create new video ideas based on the best performing content as
quantified by view count.
Rank your video suggestions from most to least relevant,considering the following factors:
1. Identify common themes or topics across high-perfoming titles that could inspire
new video ideas.
// Code generated by easyjson for marshaling/unmarshaling. DO NOT EDIT.
package config
import (
json "encoding/json"
jwtauth "github.com/Pluto-tv/lib-auth-go/jwtauth"
circuitbreaker "github.com/Pluto-tv/lib-client-go/circuitbreaker"
httpclient "github.com/Pluto-tv/lib-client-go/httpclient"
httpserver "github.com/Pluto-tv/lib-server-go/httpserver"
@rflpazini
rflpazini / rflpazini_solarized.icls
Last active April 7, 2021 13:15
Solarized theme modified for IntelliJ
<scheme name="rflpazini's - solarized light" version="142" parent_scheme="Default">
<option name="FONT_SCALE" value="1.0" />
<metaInfo>
<property name="created">2021-04-07T10:14:16</property>
<property name="ide">Idea</property>
<property name="ideVersion">2021.1.0.0</property>
<property name="modified">2021-04-07T10:14:41</property>
<property name="originalScheme">Solarized Light (Material) Modified</property>
</metaInfo>
<console-font>
@rflpazini
rflpazini / .editorconfig
Created October 24, 2020 13:37
.editorconfig using Google style guide
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = false
max_line_length = 100
tab_width = 2
ij_continuation_indent_size = 4
ij_formatter_off_tag = @formatter:off

fifagama dashboard

Uma api paginada que devolve os números baseados nas informações obtidas através do Kaggle

Como usar

Basta chamar no endpoint a seguir e receber os dados que você

$ curl --request GET \
const moment = require('moment');
const axios = require('axios');
const qs = require('qs');
module.exports = class Ahgora{
constructor(user_id, password){
this.url = 'https://www.ahgora.com.br/externo/getApuracao';
this.options = {};
this.current = moment().format('YYYY-MM-DD');
@rflpazini
rflpazini / remove-all-commits.md
Last active June 15, 2019 05:05
Remove all commits from a git branch

Glorious Method

# Clone the project, e.g. `myproject`:
git clone <project-url>

# Since all of the commits history are in the `.git` folder, we have to remove it:
cd myproject

# And delete the `.git` folder:
git rm -rf .git
[user]
name = rflpazini
email = [email protected]
[alias]
logpretty = log --graph --decorate --pretty=oneline --abbrev-commit
ci = commit
br = branch
co = checkout
cob = checkout -b
d = difftool