openpgp4fpr:562DAB0963A00534B95C66E345B4B73EDF1304D9
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 os | |
import stat | |
from datetime import datetime | |
from ._compat import _get_argv_encoding | |
from ._compat import filename_to_ui | |
from ._compat import get_filesystem_encoding | |
from ._compat import get_strerror | |
from ._compat import open_stream | |
from .exceptions import BadParameter |
How to explain the movie Inception to a programmer? When you run a VM inside another VM, inside another VM ... everything runs real slow!
Source: Pyjokes
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
# UNFINISHED - test_arr at the bottom doesn't work when sorted. | |
# also, deplicating values also cannot - [1,2,3,3,4] <- cannot | |
# therefore values must be ambiguous to work | |
# note: 'list' is considered an 'array' here, but remember that it's actually a list in python. | |
def queue_sort(arr): | |
'''A new Sorting Algorithm. ''' | |
done = [] | |
startIndex = 0 | |
for _ in arr: |
# H1
## H2
### H3
#### H4
##### H5
##### H6
Result:
How do I dropdown?
This is how you dropdown.
<details> <summary>How do I dropdown?</summary> <br> This is how you dropdown.
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
<html> | |
<head> | |
<title>The 'hi' Website</title> | |
<style> | |
</style> | |
</head> | |
<body> | |
<h1>Welcome to The 'hi' Website</h1> | |
<h4>This website is made by Hedy and it is about absolutely nothing.</h4> | |
</body> |
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
#include <stdio.h> | |
void main() | |
{ | |
printf("hi!"); | |
} |