- Install GPG tools
- Install GPG tools and setup pin entry by running:
brew install gnupg pinentry-mac mkdir -m 700 -p ~/.gnupg echo "pinentry-program /usr/local/bin/pinentry-mac" >> ~/.gnupg/gpg-agent.conf killall gpg-agent
Some notes and techniques for reverse engineering Webpack (and a little bit about React/Vue/Angular) apps.
<!-- | |
Author: <Anthony Sychev> (hello at dm211 dot com | a.sychev at jfranc dot studio) | |
Buy me a coffe: https://www.buymeacoffee.com/twooneone | |
Untitled-1 (c) 2022 | |
Created: 2022-01-25 20:06:02 | |
Desc: Attach some dom element on the bottom of screen as absolute, triggered to move on resize address bar. | |
--> | |
<html> |
<script type="application/ld+json"> | |
{ | |
"@context": "https://schema.org", | |
"@graph": [{ | |
"@type": "Organization", | |
"@id": "https://www.example.com/#organization", | |
"name": "{{ your name }}", | |
"url": "https://www.example.com/", | |
"address": "{{ address }}", | |
"email": "{{ email }}", |
/* | |
Al usar Langify en Shopify, la app traduce todo incluido los js | |
con eso crea conflicto en la pagina de productos en el theme CASCADE. | |
Provocando que deje de funcionar los sliders tanto en version DESKTOP | |
como en version MOBILE. | |
Para solventar el fallo añadimos este script en archivo | |
/assets/theme.min.js |
/** | |
* Convert From/To Binary/Decimal/Hexadecimal in JavaScript | |
* https://gist.github.com/faisalman | |
* | |
* Copyright 2012-2015, Faisalman <fyzlman@gmail.com> | |
* Licensed under The MIT License | |
* http://www.opensource.org/licenses/mit-license | |
*/ | |
(function(){ |
# Generate a BaseSystem.dmg with 10.13 Install Packages | |
hdiutil attach /Applications/Install\ macOS\ 10.13\ Beta.app/Contents/SharedSupport/InstallESD.dmg -noverify -mountpoint /Volumes/highsierra | |
hdiutil create -o /tmp/HighSierraBase.cdr -size 7316m -layout SPUD -fs HFS+J | |
hdiutil attach /tmp/HighSierraBase.cdr.dmg -noverify -mountpoint /Volumes/install_build | |
asr restore -source /Applications/Install\ macOS\ 10.13\ Beta.app/Contents/SharedSupport/BaseSystem.dmg -target /Volumes/install_build -noprompt -noverify -erase | |
cp -R /Volumes/highsierra/Packages /Volumes/OS\ X\ Base\ System/System/Installation | |
hdiutil detach /Volumes/OS\ X\ Base\ System/ | |
hdiutil detach /Volumes/highsierra/ | |
mv /tmp/HighSierraBase.cdr.dmg /tmp/BaseSystem.dmg |
# Check option | |
isUsePassword=0 | |
isDev=0 | |
while getopts pd OPT | |
do | |
case $OPT in | |
p) | |
isUsePassword=1 ;; | |
d) | |
isDev=1 ;; |
<?php | |
// source: http://cker.name/webadmin/ | |
/* | |
* webadmin.php - a simple Web-based file manager | |
* Copyright (C) 2004-2011 Daniel Wacker [daniel dot wacker at web dot de] | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation; either version 2 of the License, or | |
* (at your option) any later version. |