git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
# -*- coding: utf-8 -*- | |
from sqlalchemy import Column, String, Integer, ForeignKey, create_engine | |
from sqlalchemy.orm import sessionmaker, relation | |
from sqlalchemy.ext import declarative | |
engine = create_engine('sqlite:///:memory:') | |
Session = sessionmaker(bind=engine) | |
session = Session() |
The list would not be updated for now. Don't write comments.
The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Wed, 21 Sep 2022 till Thu, 21 Sep 2023.
Because of GitHub search limitations, only 1000 first users according to amount of followers are included. If you are not in the list you don't have enough followers. See raw data and source code. Algorithm in pseudocode:
githubUsers
#/usr/bin/env python | |
### | |
### This generates a very simple histogram of unread e-mail in your INBOX. | |
### This is meant as a toy, and your are free to do whatever you want with the code. | |
### | |
# core python libraries | |
import datetime |
#canvas { | |
margin: auto; | |
display: block; | |
background-color: #070719; | |
} | |
This text now lives at https://github.com/MarcDiethelm/contributing/blob/master/README.md. I turned it into a Github repo so you can, you know, contribute to it by making pull requests.
If you want to contribute to a project and make it better, your help is very welcome. Contributing is also a great way to learn more about social coding on Github, new technologies and and their ecosystems and how to make constructive, helpful bug reports, feature requests and the noblest of all contributions: a good, clean pull request.
People
![]() :bowtie: |
π :smile: |
π :laughing: |
---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
# I have my own logging setup and had a hard time disabling console output in Flask. | |
app.logger.disabled = True | |
log = logging.getLogger('werkzeug') | |
log.disabled = True | |
# New, 2022 Method: | |
logging.getLogger('werkzeug').disabled = True |
import io | |
from reportlab.lib import colors | |
from reportlab.lib.pagesizes import letter | |
from reportlab.platypus import SimpleDocTemplate, Table | |
from reportlab.platypus.tables import TableStyle | |
def make_doc(): | |
pdf = io.BytesIO() |
""" | |
Placed into public domain by | |
anatoly techtonik <[email protected]> | |
Show HTML in GUI window through PyQt4/PySide. | |
[ ] position window at the center of the screen | |
(right now it is middle bottom) | |
[ ] implement lazy loading for PyQt4/PySide | |
""" |