(x^2+y^2-1)^3=x^2*y^3
(x^2+y^2-1)^3-x^2*y^3=0
(x²+y²-1)³=x²y³
(x²+y²-1)³-x²y³=0
View (x²+y²-1)³=x²y³ or (x^2+y^2-1)^3=x^2*y^3.md
View language code to language.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
af-ZA Afrikaans (South Africa) | |
am-ET Amharic (Ethiopia) | |
ar-AE Arabic (United Arab Emirates) | |
ar-BH Arabic (Bahrain) | |
ar-DZ Arabic (Algeria) | |
ar-EG Arabic (Egypt) | |
ar-IL Arabic (Israel) | |
ar-IQ Arabic (Iraq) | |
ar-JO Arabic (Jordan) | |
ar-KW Arabic (Kuwait) |
View Hebrew Themes and Writings In Japanese Animes.md
MACHIKADO MAZOKU
/The Demon Girl Next Door
, まちカドまぞく
https://en.wikipedia.org/wiki/The_Demon_Girl_Next_Door
supposed to have an ancient Mesopotamia writings on various objects,
actual meaningful Hebrew writing is used instead,
if you can read it, or at least copy it to google translate,
you can have some additional fun content.
View Burp and Android Phones (new Android versions 10,11,12..).md
edit:
will not work
you (still) can not make the device trust the certificate.
you are needed to have a super-user admin access,
(even systemless with magisk is fine),
will not work
you (still) can not make the device trust the certificate.
you are needed to have a super-user admin access,
(even systemless with magisk is fine),
View Animals Emoji Symbols.md
Emoji | Emoji Name | Alt Code | Alt + X Code |
---|---|---|---|
Monkey Face | Alt + 128053 | 1F435 Alt + X |
View How to manifest-patch explore.exe but without actually patching it for support in unlimited path length.md
- opt-in the support of the unlimited path-length by applying a registry patch:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem]
"LongPathsEnabled"=dword:00000001
View SVG to PNG - High Quality (ImageMagick or Inkscape).md
SVG to PNG - High Quality (ImageMagick or Inkscape)
ImageMagick
mogrify
to batch handle a whole folder of svg files.
magick mogrify -format png *.svg
will use the native size of the svg,
it will also set the background to white by default.
the svg native size is often defined by the viewBox (something likeviewBox="0 0 24 24"
means your png will be 24x24 pixels).
View [FFMPEG] embed a thumbnail into a video or an audio file (not an image as video source!), compatible with Windows explorer-preview and various players (Media Player Classic, Android MX-Player).md
the command is broken into multiple lines,
for easier reading (just join it together).
ffmpeg -y -loglevel "repeat+info"
-i "file:input.mkv"
-map 0 -dn -ignore_unknown -c copy
-attach "thumbnail.png"
"-metadata:s:2" "mimetype=image/png"
"-metadata:s:2" "filename=cover.png"
View [javascript][console][trick] get console.log on screen, in-case the page is watching over you so you won't be able to open the developer-tools due to debugger or debuger calls (websites that prevents debugging stuff with developer tools or inspect el
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ "use strict"; | |
var is_first = ("undefined" === typeof console._log) | |
,element | |
; | |
if(false === is_first) return; | |
element = document.querySelector('[id="console"]'); | |
if(null === element){ | |
element = document.createElement("div"); | |
element.setAttribute("id","console"); |
NewerOlder