duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
### Disclaimer, | |
- datetime is not copied with the timezone difference. seems like the dates are saved in UTC so there will be difference with the datetime columns | |
--- | |
in this guide, | |
postgres username = "jep" | |
postgres password = "jepjep" |
""" | |
License: MIT - https://opensource.org/licenses/MIT | |
ChromeLogger is a protocol which allows sending logging messages to the Browser. | |
This module implements simple support for Django. It consists of two components: | |
* `LoggingMiddleware` which is responsible for sending all log messages | |
associated with the request to the browser. | |
* `ChromeLoggerHandler` a python logging handler which collects all messages. |
/** | |
* App Endpoint API Access Example | |
* | |
* Author: SmartThings | |
*/ | |
preferences { | |
section("Allow Endpoint to Control These Things...") { | |
input "switches", "capability.switch", title: "Which Switches?", multiple: true | |
input "locks", "capability.lock", title: "Which Locks?", multiple: true |
""" | |
setup: | |
pip install requests | |
pip install requests[socks] | |
super helpful: | |
- http://packetforger.wordpress.com/2013/08/27/pythons-requests-module-with-socks-support-requesocks/ | |
- http://docs.python-requests.org/en/master/user/advanced/#proxies | |
""" |
void getToken() | |
{ | |
print("getToken"); | |
getTokenService = new GetTokenService(); | |
getTokenService.getToken().then((ServiceEvent event) | |
{ | |
login(); | |
}); | |
} |
Here are a few common tasks you might do in your templates, as they would be written in ExpressionEngine vs. Craft CMS.
/* | |
#ie10 will only be red in MSIE 10, | |
both in high contrast (display setting) and default mode | |
*/ | |
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { | |
#ie10 { color: red; } | |
} |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import urllib, urllib2, cookielib | |
import string, os, re, time, datetime, sys | |
import xbmc, xbmcgui, xbmcplugin, xbmcaddon | |
BASE = [ | |
'http://apps.ohlulz.com/rtmpgui/list.xml', | |
#'http://localhost/links.xml', |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import urllib, urllib2, cookielib | |
import string, os, re, time, datetime, sys | |
import xbmc, xbmcgui, xbmcplugin, xbmcaddon | |
#from xml.etree import ElementTree | |
from elementtree import ElementTree |