Skip to content

Instantly share code, notes, and snippets.

View Fatake's full-sized avatar
☢️

Paulo Ruiz Fatake

☢️
View GitHub Profile
@rxaviers
rxaviers / gist:7360908
Last active November 18, 2024 03:32
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
PARTE 1
10. Fps Constructor: https://www.assetstore.unity3d.com/en/#!/content/2561
9. Unirpg:
https://www.assetstore.unity3d.com/en/#!/content/51078
8. Draw call minimizer
https://www.assetstore.unity3d.com/en/#!/content/2859
7. Material UI:
https://github.com/InvexGames/MaterialUI
6. Jukedeck
https://www.jukedeck.com/
@bmehul
bmehul / get_pool_credentials.py
Last active August 3, 2022 20:43
Boto3: Get Pool Credentials
import boto3
import sys
def get_pool_credentials(region, identity_pool):
client = boto3.client('cognito-identity', region_name=region)
_id = client.get_id(IdentityPoolId=identity_pool)
_id = _id['IdentityId']
credentials = client.get_credentials_for_identity(IdentityId=_id)
@rizemon
rizemon / ColorMyWSA.js
Last active August 15, 2022 12:31
Automatically adds color-coded level information (Apprentice, Practitioner, Expert) to PortSwigger's Web Security Academy "All labs" page
/*
Inspired by this post https://www.deepfryd.com/burp-academy-apprentice/
How to use:
1) Browse to https://portswigger.net/web-security/all-labs.
2) Open your web browser's Developer tools by pressing 'F12' on your keyboard.
3) Click on the console tab.
4) Paste the following Javascript code into the console's prompt and hit 'Enter' on the keyboard.
5) Wait for all the labs to be updated with their respective levels (Tested ~12s)