Skip to content

Instantly share code, notes, and snippets.

@joyrexus
joyrexus / README.md
Last active March 24, 2025 17:35 — forked from btoone/curl.md
curl tutorial

An introduction to curl using GitHub's API.

Basics

Makes a basic GET request to the specifed URI

curl https://api.github.com/users/caspyin

Includes HTTP-Header information in the output

@jamesbrobb
jamesbrobb / multiform.py
Last active July 4, 2023 18:53 — forked from michelts/gist:1029336
django multiform mixin and view that allows the submission of a) All forms b) Grouped forms c) An individual form
class MultiFormMixin(ContextMixin):
form_classes = {}
prefixes = {}
success_urls = {}
grouped_forms = {}
initial = {}
prefix = None
success_url = None
@st4lk
st4lk / mandrill_email.py
Last active August 2, 2021 05:31
Python: send emails by mandrill. Django and standalone example
"""
Example of mandrill service in python (http://mandrill.com/)
Description of usage in python:
Russian: http://www.lexev.org/2014/send-email-django-project-mandrill-service/
English: http://www.lexev.org/en/2014/send-email-django-project-mandrill-service/
"""
# ======
# Django
@nferrari
nferrari / strategy.py
Last active March 25, 2016 14:36
django-oscar french strategy
# myapp/partner/strategy.py
from decimal import Decimal as D
from oscar.apps.partner import strategy, prices
DEFAULT_RATE = D('0.196')
PRODUCT_CLASSES_RATES = {
'cours': 0,
@plentz
plentz / nginx.conf
Last active March 28, 2025 17:48
Best nginx configuration for improved security(and performance)
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@jpvincent
jpvincent / gist:4034445
Created November 7, 2012 21:04
Stage d’expertise technique Web - 2013

Jean-pierre VINCENT, consultant et expert technique Web cherche son stagiaire

Le candidat

Si vous pensez que :

  • le web, ça rox.
  • HTML5, CSS3 et javascript dominent déjà le monde.
  • vous voudriez faire un grand bond en avant dans ces technos.
  • chef de projet ou manager ça n’est pas l’aboutissement d’une carrière de développeur.
  • le grand écart IE7 - Chrome et mobiles est possible.
@martinsam
martinsam / gist:651211
Created October 28, 2010 12:04
User Perf
#don't multiply queryset for user.get_profile...
#coworkers is a queryset of User
coworkers_id = set([c.id for c in coworkers])
from users_profiles.models import UserProfile
profiles = UserProfile.objects.filter(user__in=coworkers_id)
co_profiles = dict((u.id, u) for u in profiles)
for co in coworkers:
co.get_profile = co_profiles.get(co.id)