Skip to content

Instantly share code, notes, and snippets.

View pizofreude's full-sized avatar
👏

Hafeez Pizofreude pizofreude

👏
View GitHub Profile
@pizofreude
pizofreude / TIL_20230216_Python_VirtualEnvironment.md
Last active July 26, 2023 09:55
Python Virtual Environment Setup

Python Virtual Environment

Best practice before creating python project to avoid dependencies error across programs is to code in virtual environment.

Setup

Go to desired directory in the terminal, then type in command line:

Windows:

@pizofreude
pizofreude / TIL_20230214_LaTeX_Hyperlinks.md
Last active February 14, 2023 10:31
Latex: How to make hyperlinks appears blue, underlined, and clickable.
@pizofreude
pizofreude / keybase.md
Created February 1, 2023 05:22
Prove my GitHub with Keybase.

Keybase proof

I hereby claim:

  • I am pizofreude on github.
  • I am pizofreude (https://keybase.io/pizofreude) on keybase.
  • I have a public key ASDTcfq5kpVsFsvFqcAXYoBFZPfrSjxm49eS3usYkxRJCQo

To claim this, I am signing this object:

@pizofreude
pizofreude / Backup_aliases.sh_GitBash.md
Last active January 21, 2023 16:50
Backup for Additional Aliases in aliases.sh

alias npp='/c/Program\ Files/Notepad++/notepad++.exe' alias cls='clear'

@pizofreude
pizofreude / index.htm
Last active October 2, 2022 06:12 — forked from vampireneo/index.htm
HTML for embed another page by iframe, without border
<html>
<head>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
</head>
<body style="margin:0px;padding:0px;overflow:hidden">
<!-- <iframe src="__URL_HERE__" frameborder="0" style="overflow:hidden;overflow-x:hidden;overflow-y:hidden;height:100%;width:100%;position:absolute;top:0px;left:0px;right:0px;bottom:0px" height="100%" width="100%"></iframe> -->
<iframe class="gas-cards-iframe" src="https://www.blocknative.com/gas-iframe" style="width:100%;height:500px;display:block"></iframe>
</body>
</html>