Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View rpwnage's full-sized avatar
🅱️
ootrom

Luca rpwnage

🅱️
ootrom
View GitHub Profile
{% sw_extends '@Storefront/storefront/component/address/address-personal.html.twig' %}
{% block component_address_personal_fields %}
{% block component_address_personal_account_type %}
{% if onlyCompanyRegistration or (config('core.loginRegistration.showAccountTypeSelection') and not hideCustomerTypeSelect) %}
<div class="row g-2" style="display: none;">
<div class="form-group col-md-3 col-sm-6 contact-type">
{% block component_address_personal_account_type_label %}
<label class="form-label"
@rpwnage
rpwnage / Extractor.py
Created February 25, 2024 16:27
extract the m3u8 from voe.sx
import json, re, base64, requests
VOE_SX_URL = "some voe.sx url"
streamRequest = requests.get(VOE_SX_URL)
secret = re.search("let f62aad852c654bf8c9737da67c45630c7dec5019 = '(.*)';", streamReq.text).group(1)
secretDecoded = json.loads(re.search("'(.*)'b", (str(base64.b64decode(secret))[::-1])).group(1).replace("\\", ""))
# secretDecoded["file"] is the m3u8 file used in the stream, yay!
print(secretDecoded)

Keybase proof

I hereby claim:

  • I am isn0we on github.
  • I am rpwnage (https://keybase.io/rpwnage) on keybase.
  • I have a public key ASBbYCCduAT5331Qgie3kc6SSxQdwlZCNiDK_ko_0L1uSwo

To claim this, I am signing this object:

@rpwnage
rpwnage / index.html
Created September 14, 2018 11:17
Rounded button with cool hover effect
<div>
<a href="http://turn.lv" class="button">Made with &#9825; by Turn</a>
</div>
@rpwnage
rpwnage / css-wave-animation-with-a-png.markdown
Created September 13, 2018 14:39
CSS Wave Animation with a .png

CSS Wave Animation with a .png

There was talk on our internal chat ( https://chat.vanila.io) about how https://itmeo.com/ have beautiful animation, and a member asked if someone can hack it. :) So I decide to examine their code and make just animation snippet code out of it.

A Pen by Luca on CodePen.

License.