Skip to content

Instantly share code, notes, and snippets.

View shanesaravia's full-sized avatar

Shane Saravia shanesaravia

View GitHub Profile
@shanesaravia
shanesaravia / endpoints.txt
Created November 9, 2022 04:22 — forked from Kavan72/endpoints.txt
Valorant endpoints
[PlayerFeedback_CheckForSurvey] POST
[PlayerFeedback_SendAnswers] POST
[PatchNotes_GetPatchNotes] GET
[AggStats_Fetch] GET
[AccountXP_GetPlayer] GET https://pd.ap.a.pvp.net/account-xp/v1/players/{user_id}
[Config_FetchConfig] GET https://shared.ap.a.pvp.net/v1/config/ap
package main
import (
"fmt"
"strconv"
"strings"
)
func conv_to_intslice(puzzle_input string) []int {
// Split into slice
@shanesaravia
shanesaravia / Large-app-how-to.md
Created September 16, 2019 17:42 — forked from cuibonobo/Large-app-how-to.md
How to structure a large application in Flask. Taken from the Flask wiki: https://github.com/mitsuhiko/flask/wiki/Large-app-how-to

Here's an example application that uses the pattern detailed below: https://github.com/tantastik/talent-curator


This document is an attempt to describe the first step of a large project structure with flask and some basic modules:

  • SQLAlchemy
  • WTForms

Please feel free to fix and add your own tips.