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
""" | |
An example of minimum requirements to make MultiValueField-MultiWidget for Django forms. | |
""" | |
import pickle | |
from django.http import HttpResponse | |
from django import forms | |
from django.template import Context, Template | |
from django.views.decorators.csrf import csrf_exempt |
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
"10 ways to make university IT assignments more relevant to industry." | |
1) Change the assignment several times while students are working on it. | |
2) Assign 5 new members to the team 2 days before the assignment is | |
due, claiming extra resources are needed. The students are told that | |
'mythical man month' does not apply in this case because of awesome | |
management skills. | |
3) Have the best programmer in the team designated 'programmer'. Then |
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
### Keybase proof | |
I hereby claim: | |
* I am elena on github. | |
* I am elena (https://keybase.io/elena) on keybase. | |
* I have a public key whose fingerprint is BFB6 7B0C EFE3 A9BC 47A8 554C 330E 54CA 48C0 3FDA | |
To claim this, I am signing this object: |
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
# <type>: (If applied, this commit will...) <subject> (Max 50 char) | |
# |<---- Using a Maximum Of 50 Characters ---->| | |
# Explain why this change is being made | |
# |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->| | |
# Provide links or keys to any relevant tickets, articles or other resources | |
# Example: Github issue #23 |
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
# -*- coding: utf-8 -*- | |
import binascii | |
import os | |
from django.core.exceptions import ObjectDoesNotExist | |
from django.utils.text import slugify | |
def generate_unique_slug(text, queryset, slug_field='slug', iteration=0): | |
slug = slugify(text) |
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
versions: | |
Pipfile.lock | |
"py2neo": { | |
"hashes": [ | |
"sha256:09805b0a2980607ed633689aceae26516f530795fef540ebcf26ab06faef3b38" | |
], | |
"index": "pypi", | |
"version": "==4.0.0" | |
}, |
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
from py2neo import Graph, Node, Relationship | |
AFewGoodMen = Node("Movie", title="A Few Good Men", released=1992, | |
tagline="In the heart of the nation's capital, in a courthouse of the U.S. government, one man will stop at nothing to keep his honor, and one will stop at nothing to find the truth.") | |
ALeagueofTheirOwn = Node("Movie", title='A League of Their Own', released=1992, | |
tagline='Once in a lifetime you get a chance to do something different.') | |
AaronS = Node("Person", name='Aaron Sorkin', born=1961) | |
Al = Node("Person", name='Al Pacino', born=1940) | |
AnnabellaS = Node("Person", name='Annabella Sciorra', born=1960) |
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
from django.db import models | |
class Person(models.Model): | |
name = models.CharField(max_length=100) |
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
Command Mode (press Esc to enable) | |
F: find and replace | |
Ctrl-Shift-F: open the command palette | |
Ctrl-Shift-P: open the command palette | |
Enter: enter edit mode | |
P: open the command palette | |
Shift-Enter: run cell, select below | |
Ctrl-Enter: run selected cells | |
Alt-Enter: run cell and insert below |
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
sudo apt update | |
sudo apt install -y mate-terminal emacs git git-cola gitg python3-pip python3-dev vlc gimp blender tree baobab virtualbox | |
sudo pip3 install --upgrade pip | |
sudo pip3 install virtualenv virtualenvwrapper thefuck pyflakes jedi flake8 importmagic autopep8 black isort bandit ruff | |
git config --global user.email "[email protected]" | |
git config --global user.name "Elena Williams" | |
git config --global init.defaultBranch main |
OlderNewer