Skip to content

Instantly share code, notes, and snippets.

View hextraza's full-sized avatar
💜

hextraza hextraza

💜
View GitHub Profile
@hextraza
hextraza / itsreallynotthathard.md
Last active November 11, 2020 00:50
Discord is a good name for what just happened

I know the admin team has stated that they want all further discussion about the feminism "debate" moved into a private channel so that #general isn't diluted with conversation they deem to be political. I'm going to bring it up again regardless, because it's very clear that this problem is never going to be mentioned again if I don't.

I'm not going to get into why the original comment and the rest of the thinly-veiled sexism that followed it is wrong, because I wouldn't be able to fully disparage it within the Discord character limit. Instead, my criticism lies squarely with the moderator response to the ensuing discussion.

There is no feminism "debate," @Robert. Women existing in this community is not and cannot be framed as an "issue." The fact is that several women -- a group we know are underrepresented and underprivileged in STEM -- demonstrated discomfort after interacting with this person. If you

@hextraza
hextraza / aaa.py
Created February 9, 2020 00:32
aaaa.py
def knapsack_alg_dp(n, values, weights, max_weight):
stored_val = {}
def get_knapsack(key, values, weights):
if(not key in stored_val.keys()):
stored_val[key] = knapsack_alg_internal(key[0], values, weights, key[1])
return stored_val[key]
def knapsack_alg_internal(n, values, weights, max_weight):
val = []

Keybase proof

I hereby claim:

  • I am devsebb on github.
  • I am devsebb (https://keybase.io/devsebb) on keybase.
  • I have a public key whose fingerprint is 3756 48D9 45AC 94F9 63CD 4666 B2BB D455 18BD F5C2

To claim this, I am signing this object:

@hextraza
hextraza / debateGate_install.sh
Last active July 24, 2019 16:39
debateGate install script
#!/bin/sh
git clone https://github.com/devsebb/debateGate.git
mv debateGate debategate
cd debategate
python3 -m venv flask
flask/bin/pip3 install -r requirements.txt