This file contains hidden or 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
| diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h | |
| index 52e6832..d6b9da9 100644 | |
| --- a/Marlin/Configuration.h | |
| +++ b/Marlin/Configuration.h | |
| @@ -76,7 +76,7 @@ | |
| #endif | |
| // Define this to set a custom name for your generic Mendel, | |
| -// #define CUSTOM_MENDEL_NAME "This Mendel" | |
| +#define CUSTOM_MENDEL_NAME "Kossel" |
This file contains hidden or 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
| void in_received_handler(DictionaryIterator* received, void* ctx) { | |
| Tuple* data = dict_read_first(received); | |
| while(data) { | |
| switch(data->key) { | |
| case KEY_UTC_OFFSET: | |
| utc_offset = (time_t) data->value->int32; | |
| persist_write_int(KEY_UTC_OFFSET, utc_offset); | |
| break; |
This file contains hidden or 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
| >>> dis.dis(chk_serial) | |
| 32 0 LOAD_GLOBAL 0 (b) | |
| 3 LOAD_FAST 0 (s) | |
| 6 CALL_FUNCTION 1 | |
| 9 POP_JUMP_IF_FALSE 22 | |
| 12 LOAD_GLOBAL 1 (a) | |
| 15 LOAD_GLOBAL 2 (F) | |
| 18 CALL_FUNCTION 1 | |
| 21 RETURN_VALUE | |
| >> 22 LOAD_CONST 1 ('Fail') |
This file contains hidden or 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
| -----BEGIN CERTIFICATE----- | |
| MIIEBTCCAu2gAwIBAgIJAP0uddqDGvvtMA0GCSqGSIb3DQEBBQUAMIGYMQswCQYD | |
| VQQGEwJFUzERMA8GA1UECAwIR2lwdXprb2ExDTALBgNVBAcMBElSVU4xDzANBgNV | |
| BAoMBkV1c2thbDESMBAGA1UECwwJRW5jb3VudGVyMRswGQYDVQQDDBJoYWNraXQu | |
| ZWtwYXJ0eS5vcmcxJTAjBgkqhkiG9w0BCQEWFmp1YW5hbkBkaWFyaW9saW51eC5j | |
| b20wHhcNMTQwNzEyMDg0MjUzWhcNMTUwNzEyMDg0MjUzWjCBmDELMAkGA1UEBhMC | |
| RVMxETAPBgNVBAgMCEdpcHV6a29hMQ0wCwYDVQQHDARJUlVOMQ8wDQYDVQQKDAZF | |
| dXNrYWwxEjAQBgNVBAsMCUVuY291bnRlcjEbMBkGA1UEAwwSaGFja2l0LmVrcGFy | |
| dHkub3JnMSUwIwYJKoZIhvcNAQkBFhZqdWFuYW5AZGlhcmlvbGludXguY29tMIIB | |
| IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2554w65KJ43nIri89/R+sluw |
This file contains hidden or 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 long(data, offset, size): | |
| n = 0 | |
| for i in range(size): | |
| shft = ((size-i-1)*8) | |
| n |= data[offset+i] << shft | |
| return n |
This file contains hidden or 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
| ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCy5p92lfLeQhkD5Kcy89Y3/Dg7GEaDKdKZfkk+2GOq41bDw1KGfMb1Vzxq/wHODxDGkNW3kaD4C/KeLgfnAVlcrjqeN8U7qEa2SXRrdQ4By7cVaBRDqTK8zxl1G9/TZ+lFif1rXiuhesHquYMW17K7uCBPGF/sDhyP0v85XVVeVByidzZ7MUsT0ZQXf1yD000hKYU+ehrz9ZEoUfEPGCwJGvOWM/GAbQYL8mTiSlT2hEow87r1JZEYoMn2+OOHdCqGa+cofe1EQYVGgcmBLo4gY90yZu6g4Ush9IuJE5htT19eOw+AzG/yOGV40UHAOvEgTO9QN34ykJEuRaQ9OJSj jdiez@InfiniteImprobabilityDrive |
This file contains hidden or 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
| jdiez@judiez:~$ grep -i gopath .bashrc | |
| export GOPATH=$HOME/go |
This file contains hidden or 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
| josemanueldiez@personal:/tmp$ curl -I -r 0-99 https://cdn-us-1.mediacru.sh/XKqIoTA38VaO.webm | |
| HTTP/1.1 206 Partial Content | |
| Server: nginx/1.7.4 | |
| Date: Mon, 18 Aug 2014 23:54:01 GMT | |
| Content-Type: video/webm | |
| Content-Length: 100 | |
| Connection: keep-alive | |
| Last-Modified: Tue, 01 Jul 2014 22:20:09 GMT | |
| ETag: "53b33419-71f1ea" | |
| Expires: Wed, 17 Sep 2014 23:54:01 GMT |
This file contains hidden or 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 ( | |
| "bufio" | |
| "fmt" | |
| "net" | |
| "os" | |
| "sync" | |
| "time" | |
| "io" |
This file contains hidden or 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
| Traceback (most recent call last): | |
| File "compile_static.py", line 111, in <module> | |
| prepare() | |
| File "compile_static.py", line 54, in prepare | |
| output = minify(output) | |
| File "/home/jdiez/MediaCrush/lib/python2.7/site-packages/slimit/minifier.py", line 38, in minify | |
| tree = parser.parse(text) | |
| File "/home/jdiez/MediaCrush/lib/python2.7/site-packages/slimit/parser.py", line 93, in parse | |
| return self.parser.parse(text, lexer=self.lexer, debug=debug) | |
| File "/home/jdiez/MediaCrush/lib/python2.7/site-packages/ply/yacc.py", line 265, in parse |