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 tastypie import fields | |
from tastypie.authentication import Authentication | |
from tastypie.authorization import Authorization | |
from tastypie.bundle import Bundle | |
from tastypie.exceptions import NotFound | |
from tastypie.resources import Resource | |
# a dummy class representing a row of data | |
class Row(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
import datetime | |
def daterange(start, stop, step=datetime.timedelta(days=1), inclusive=True): | |
# inclusive=False to behave like range by default | |
if step.days > 0: | |
while start < stop: | |
yield start | |
start = start + step | |
elif step.days < 0: | |
while start > stop: |
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
/* | |
Подключение AT2424C15 по I2C | |
*/ | |
#define ADDR 0x50 | |
void setup() { | |
Wire.begin(); | |
Serial.begin(38400); | |
randomSeed(analogRead(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
def video_id(value): | |
""" | |
Examples: | |
- http://youtu.be/SA2iWivDJiE | |
- http://www.youtube.com/watch?v=_oPAwA_Udwc&feature=feedu | |
- http://www.youtube.com/embed/SA2iWivDJiE | |
- http://www.youtube.com/v/SA2iWivDJiE?version=3&hl=en_US | |
""" | |
query = urlparse(value) | |
if query.hostname == 'youtu.be': |
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
#include <Wire.h> | |
#define ADDR 128 //адрес устройства | |
void setup() | |
{ | |
Serial.begin(115200);//скорость обмена с компом | |
Wire.begin(ADDR); //определим как ведомый с указанным адресом | |
Wire.onReceive(receive_handler); //ждем данных от мастера, функция возвращает int число байт данных | |
} |
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
#!/bin/bash | |
NUM=0 | |
CPUS= | |
for ARG in "$@" | |
do | |
if [ $NUM -eq 0 ]; then INTERFACE=$ARG; fi | |
if [ $NUM -gt 0 ]; then CPUS[$[$NUM-1]]=$ARG; fi | |
let NUM++ | |
done |
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
Use net.InterfaceAddrs(). | |
addrs, err := net.InterfaceAddrs() | |
if err != nil { | |
panic(err) | |
} | |
for i, addr := range addrs { | |
fmt.Printf("%d %v\n", i, addr) | |
} | |
If you want to know interface names too, use net.Interfaces() to get a list of interfaces first. |
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
<script> | |
window.intercomSettings = | |
{ | |
// TODO: The current logged in user's full name name: "John Doe", | |
// TODO: The current logged in user's email address. email: "[email protected]", | |
// TODO: The current logged in user's sign-up date as a Unix timestamp. created_at: 1234567890, app_id: "qq55r2qw" } | |
; | |
</script> | |
<script>(function(){var w=window;var ic=w.Intercom;if(typeof ic==="function") | |
{ic('reattach_activator');ic('update',intercomSettings);} |
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
#!/usr/bin/env python | |
# | |
# Copyright 2012 Patrick Hetu <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, |
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
#!/bin/sh | |
for i in nf_conntrack_netlink iptable_nat nf_conntrack nf_conntrack_ipv4 nf_defrag_ipv4 nf_nat nf_nat_ipv4 xt_nat ; do | |
for j in nf_conntrack_netlink iptable_nat nf_conntrack nf_conntrack_ipv4 nf_defrag_ipv4 nf_nat nf_nat_ipv4 xt_nat ; do | |
modprobe -r $j ; | |
done ; | |
done |
OlderNewer