Visit Gist and see 'raw' link, It's including SHA-1 long hash name like this.
https://gist.github.com/raw/2370972/47150711fedb7375d19d761ab122485b8105678d/gist-raw-perm-HEAD.user.js
Visit Gist and see 'raw' link, It's including SHA-1 long hash name like this.
https://gist.github.com/raw/2370972/47150711fedb7375d19d761ab122485b8105678d/gist-raw-perm-HEAD.user.js
This bash script offers quick shortcuts to simulate slower network connections. It is useful when you need to simulate a wireless network on a Linux network server, especially when you are using a virtual machine guest on your local machine or in the cloud.
slow 3G # Slow network on default eth0 down to 3G wireless speeds
slow 3G -l 600ms -p 10% # slow network on eth0 and setup latency to 600ms packetloss to 10%
slow reset # Reset connection for default eth0 to normal
slow vsat --latency=500ms # Simulate satellite internet with a high latency
slow dsl -b 1mbps # Simulate DSL with a slower speed than the default
class LocalDateTimeField(with_metaclass(models.SubfieldBase, models.DateTimeField)): | |
'''A hack/workaround version of DateTimeField that considers the datetime | |
from the database as local time. | |
''' | |
def to_python(self, value): | |
from django.utils.dateformat import format | |
value = models.DateTimeField.to_python(self, value) | |
if isinstance(value, datetime): | |
print('-' + repr(value)) | |
print(strftime('%Y-%m-%d %H:%M:%S.%f', value.timetuple())) |