Skip to content

Instantly share code, notes, and snippets.

View ItsCbass's full-sized avatar
🦀
Learning Rust

Sebastian Rivera ItsCbass

🦀
Learning Rust
  • EL DIABLO®
  • 0xBEEF
  • 19:45 (UTC -04:00)
  • Instagram _itscbass
View GitHub Profile
@Julli4n
Julli4n / ok.js
Last active May 9, 2024 15:02
ROBLOX
/*
!! The feature that uses this endpoint has recently started rolling out to users.
!! See `App > Avatar > Profile Picture Editor`
!!
!! You may continue using this script, the only advantage is being able to
!! customize FullBody and Closeup independently.
*/
@ZechCodes
ZechCodes / challenge_100.md
Last active September 7, 2020 13:33
Challenge 100 - Hiding the Card Number

Challenge 100 - Hiding the Card Number

Write a function that takes a credit card number and only displays the last four characters. The rest of the card number must be replaced by ************.

Examples

card_hide("1234123456785678") ➞ "************5678"

card_hide("8754456321113213") ➞ "************3213"
@muff-in
muff-in / resources.md
Last active May 30, 2024 06:00
A curated list of Assembly Language / Reversing / Malware Analysis / Game Hacking-resources
#!/bin/bash
iatest=$(expr index "$-" i)
#######################################################
# SOURCED ALIAS'S AND SCRIPTS BY zachbrowne.me
#######################################################
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
@skyl
skyl / install.rb
Last active March 21, 2024 17:58
Homebrew without sudo
#!/System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/ruby
# SET YOUR_HOME TO THE ABSOLUTE PATH OF YOUR HOME DIRECTORY
# chmod +x install.rb
# ./install.rb
YOUR_HOME = ''
HOMEBREW_PREFIX = "#{YOUR_HOME}/usr/local"
HOMEBREW_CACHE = '/Library/Caches/Homebrew'
HOMEBREW_REPO = 'https://github.com/Homebrew/homebrew'