|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <!doctype html>
- <html lang=en>
- <head>
- <!-- Always define the charset before the title -->
- <meta charset=utf-8>
- <title>Code — David Larlet</title>
- <!-- Define a viewport to mobile devices to use - telling the browser to assume that the page is as wide as the device (width=device-width) and setting the initial page zoom level to be 1 (initial-scale=1.0) -->
- <meta name="viewport" content="width=device-width, initial-scale=1"/>
- <!-- Fake favicon, to avoid extra request to the server -->
- <link rel="icon" href="data:;base64,iVBORw0KGgo=">
- <link type="application/atom+xml" rel="alternate" title="Feed" href="/david/log/" />
- <link rel="manifest" href="/manifest.json">
-
- <link rel="stylesheet" href="/static/david/css/larlet-david-_J6Rv.css" data-instant-track />
-
- <noscript>
- <style type="text/css">
- /* Otherwise fonts are loaded by JS for faster initial rendering. See scripts at the bottom. */
- body {
- font-family: 'EquityTextB', serif;
- }
- h1, h2, h3, h4, h5, h6, time, nav a, nav a:link, nav a:visited {
- font-family: 'EquityCapsB', sans-serif;
- font-variant: normal;
- }
- </style>
- </noscript>
-
- <!-- Canonical URL for SEO purposes -->
- <link rel="canonical" href="https://larlet.fr/david/code/">
-
- </head>
- <body>
- <div>
-
- <header>
- <nav>
- <p>
- <small>
- Je suis <a href="/david/" title="Profil public">David Larlet</a>, <a href="/david/pro/" title="Activité professionnelle">artisan</a> du web qui vous <a href="/david/pro/accompagnement/" title="Activité d’accompagnement">accompagne</a><span class="more-infos"> dans l’acquisition de savoirs pour concevoir des <a href="/david/pro/produits-essentiels/" title="Qu’est-ce qu’un produit essentiel ?">produits essentiels</a></span>. <span class="more-more-infos">Discutons ensemble d’une <a href="/david/pro/devis/" title="En savoir plus">non-demande de devis</a>.</span> Je partage ici mes <a href="/david/blog/" title="Expériences bienveillantes">réflexions</a> et <a href="/david/correspondances/2017/" title="Lettres hebdomadaires">correspondances</a>.
- </small>
- </p>
- </nav>
- </header>
-
-
- <h1>Open-Source Code</h1>
- <section>
- <article>
- <h2>Content Browser</h2>
- <p>
- A way to browser content on the Web without the navigation/social/comments crap in a readability way.
- </p>
- <h5>
- <a href="https://bitbucket.org/david/contentbrowser/" title="">Documentation & repository</a>
- </h5>
- </article>
- <article>
- <h2>Django ROA</h2>
- <p>
- ROA (or WOA) stands for Resource (or Web) Oriented Architecture, it’s
- about Service Oriented Architecture (SOA) with web constraints. Django
- ROA allows you to access remote resources (API) using the Django ORM.
- Use Django’s ORM to model remote API resources.
- </p>
- <h5>
- <a href="https://bitbucket.org/david/django-roa/wiki/Home" title="">Documentation</a> |
- <a href="https://bitbucket.org/david/django-roa/src/" title="">Repository</a>
- </h5>
- </article>
- <article class="">
- <h2>Django storages</h2>
- <p>
- An attempt to regroup all Django storages. Firstly, it was just a home
- for an S3 one but now there are storages for FTP, MogileFS, Image and
- so on. Do not hesitate to participate and to submit your one! Note that
- I can’t test all submitted storages.
- </p>
- <h5>
- <a href="http://django-storages.readthedocs.org/en/latest/" title="">Documentation</a> |
- <a href="https://bitbucket.org/david/django-storages/src/" title="">Repository</a>
- </h5>
- </article>
- <article>
- <h2>Django OAuth+</h2>
- <p>
- Support of OAuth in Django. The whole specification is used
- as test and many projects use it in production.
- The "plus" fork uses the more robust python-oauth2 and fix some bugs.
- </p>
- <h5>
- <a href="https://bitbucket.org/david/django-oauth-plus/" title="">Documentation</a> |
- <a href="https://bitbucket.org/david/django-oauth-plus/src/" title="">Repository</a>
- </h5>
- </article>
- <article class="">
- <h2>Django invitation</h2>
- <p>
- Built on top of django-registration, it restricts registration to a
- given number of invited person per active user (strategy introduced
- by GMail to involve 2.0 users).
- </p>
- <h5>
- <a href="https://bitbucket.org/david/django-invitation/" title="">Documentation</a> |
- <a href="https://bitbucket.org/david/django-invitation/src/" title="">Repository</a>
- </h5>
- </article>
- <article>
- <h2>Django-fr</h2>
- <p>
- The website of the French community. It mainly contains
- translated documentation and useful links.
- </p>
- <h5>
- <a href="http://www.django-fr.org/" title="">Website</a> |
- <a href="https://bitbucket.org/djangofr/djangofrdoc/wiki/Home" title="">Documentation</a> |
- <a href="https://bitbucket.org/djangofr/" title="">Repository</a>
- </h5>
- </article>
- </section>
-
-
- <footer>
- <nav>
- <p>
- <small>
- Je réponds quasiment toujours aux <a href="mailto:david%40larlet.fr" title="Envoyer un email">emails</a> (<a href="/david/signature/" title="Ma signature actuelle avec possibilité de chiffrement">signés</a>) et vous pouvez me rencontrer à Montréal. <span class="more-infos">N’hésitez pas à <a href="/david/log/" title="Être tenu informé des mises à jour">vous abonner</a> pour être tenu informé des publications récentes.</span>
- </small>
- </p>
- </nav>
- </footer>
-
- </div>
-
- <script src="/static/david/js/larlet-david-3ee43f.js" data-no-instant></script>
-
- <script data-no-instant>InstantClick.init()</script>
-
- </body>
- </html>
|