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 connection | |
# If using cursor without "with" -- it must be closed explicitly: | |
with connection.cursor() as cursor: | |
cursor.execute('select column1, column2, column3 from table where aaa=%s', [5]) | |
for row in cursor.fetchall(): | |
print row[0], row[1], row[3] |
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
import textwrap as mod_textwrap | |
import django.db.models.fields as mod_fields | |
def wordwrap_fields(model): | |
""" | |
When models are not created through forms (so standard form validation didn't prevent | |
too long strings), this can be used to automatically wordwrap. | |
""" | |
for field in model._meta.fields: |
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
import logging | |
import logging.handlers | |
import os.path as path | |
def setup_logging(file_name, log_directory=None, stream=None, max_bytes=None, | |
backup_count=None): | |
""" | |
Log directory may be a file in that directory. | |
""" | |
f = logging.Formatter(fmt='%(levelname)s:%(name)s: %(message)s ' |
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
package main | |
import ( | |
"encoding/xml" | |
"fmt" | |
"os" | |
) | |
func main() { | |
f, _ := os.Open("test_files/gpx1.1_with_all_fields.gpx") |
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
package main | |
// From https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes | |
import ( | |
"encoding/json" | |
"fmt" | |
"strings" | |
) |
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
package main | |
import ( | |
"fmt" | |
"unicode" | |
"golang.org/x/text/transform" | |
"golang.org/x/text/unicode/norm" | |
) |
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
package main | |
import ( | |
"fmt" | |
"time" | |
"github.com/facebookgo/inject" | |
) | |
type EmailSender struct { |
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 sys | |
f = open(sys.argv[1]) | |
string = f.read() | |
f.close() | |
parts = string.strip().split("*") | |
translation = parts[-1].strip() |
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
package main | |
import ( | |
"fmt" | |
"reflect" | |
) | |
type Test struct { | |
} |
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
package main | |
import ( | |
"errors" | |
"fmt" | |
"sync" | |
"time" | |
) | |
type GroupWaiter struct { |