www.amazon.com.au @amzn
This file contains hidden or 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
| elementary@elementary:~/idk$ lsblk -o NAME,FSTYPE,SIZE,PARTLABEL | |
| NAME FSTYPE SIZE PARTLABEL | |
| loop0 squashfs 2.3G | |
| nvme0n1 931.5G | |
| ├─nvme0n1p1 vfat 512M EFI | |
| ├─nvme0n1p2 crypto_LUKS 914.1G root | |
| └─nvme0n1p3 crypto_LUKS 16.9G | |
| nvme1n1 476.9G | |
| ├─nvme1n1p1 vfat 260M EFI system partition | |
| ├─nvme1n1p2 16M Microsoft reserved partition |
This file contains hidden or 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
| # Author: Endermanbugzjfc | |
| # License: Unlicense | |
| let | |
| mkNetBeansJavaPlatform = { | |
| openjdk, | |
| openjdkMajorVersion, | |
| label ? "JDK ${openjdkMajorVersion} (Nix)", | |
| }: let | |
| in '' |
This file contains hidden or 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
| import re | |
| import base64 | |
| MARKER_GROUP = 1 | |
| slur = base64.b64decode("am9i").decode("utf-8") | |
| # print(slur) | |
| def marker(text): | |
| for match in re.finditer(slur, text, re.IGNORECASE): | |
| span = match.span() |
This file contains hidden or 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
| Sub Ans() | |
| For Each Slide In ActivePresentation.Slides | |
| For Each Shape In Slide.Shapes | |
| If Shape.HasTextFrame Then | |
| Set A = Shape.TextFrame.TextRange.Find(FindWhat:="Answer: ") | |
| If Not A Is Nothing Then | |
| Shape.TextFrame.TextRange.Text = "Answer: ___" | |
| End If | |
| End If |
This file contains hidden or 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
| /* | |
| * フィギュア F I G Y U A 手辦 | |
| * Unlicense | https://gist.github.com/Endermanbugzjfc/f75e8d271057877403725f60700a6a2a | |
| * Please install the Style Settings plugin to configure this snippet. | |
| * | |
| * Credits: | |
| * - A person on Discord: image scalability. | |
| * - ChatGPT: image visibility toggle. | |
| */ | |
| /* @settings |
This file contains hidden or 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
| fn mock<T: Into<String>, I: IntoIterator<Item = T>>(_: I) {} | |
| struct Merchant<'a> { | |
| name: &'a str, | |
| billing_portal: &'a str, | |
| billing_period: &'a str, | |
| stripe_id: Option<&'a str>, | |
| } | |
| fn merchant() -> Merchant { unimplemented!(); } |
This file contains hidden or 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
| SELECT * FROM Customers | |
| WHERE uuid = "weqsc" OR wtfid = "weqsc" | |
| ORDER BY (uuid IS NOT NULL) * 2 + (wtfid IS NOT NULL) DESC |
I hereby claim:
- I am endermanbugzjfc on github.
- I am endermanbugzjfc (https://keybase.io/endermanbugzjfc) on keybase.
- I have a public key ASAj0td0MLMY2uQspE0mjc3_spUt8ydo3_4uadjwWspBTgo
To claim this, I am signing this object:
This file contains hidden or 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
| if [ -z "${GOBIN}" ] | |
| then | |
| echo GOBIN not set! | |
| exit 1 | |
| fi | |
| if [ ! -d "${GOBIN}" ] | |
| then | |
| echo "GOBIN's directory does not exists!" | |
| exit 1 | |
| fi |
NewerOlder