did not want to get out of bed. played this one by feel and wasn't surprised by the results.
#running
did not want to get out of bed. played this one by feel and was not surprised by the results.
#running
did not want to get out of bed. played this one by feel and was not surprised by the results.
#running
did not want to get out of bed. played this one by feel and was not surprised by the results.
#running
#running #treadmill
#running #treadmill
#running #treadmill
#running #treadmill
went alright. hit everything i wanted but just was not in to it today. looking forward to an easy day tomorrow.
#running
went alright. hit everything i wanted but just was not into it today. looking forward to an easy day tomorrow.
#running
went alright. hit everything i wanted but just was not into it today. looking forward to an easy day tomorrow.
#running
went alright. hit everything i wanted but just was not into it today. looking forward to an easy day tomorrow.
#running
U28gdGhlIGlkZWEgaXMgdG8gZGV0ZWN0IHdoZW4gYSBsb29wIGJlZ2lucyBhbmQgZXZlcnl0aGlu
ZyByZXBlYXRzLiBIb3cgZGlkIHlvdSBkbyB0aGF0LCBpcyB0aGVyZSBhIGNsZXZlciB0cmljaz8g
SSBqdXN0IHN0b3JlZCB0aGUgbWFwIGNvbmZpZ3VyYXRpb25zIGluIGEgaGFzaCBtYXAuIEFmdGVy
IGVhY2ggY3ljbGUsIEkgY2hlY2sgaWYgd2UgYWxyZWFkeSBzYXcgdGhpcyBjb25maWd1cmF0aW9u
IGFuZCBpbiB3aGljaCBjeWNsZSB0aGF0IHdhcy4gVGhlbiB3ZSBjYW4gZXh0cmFwb2xhdGUgaG93
IGl0IGxvb2tzIGxpa2UgYWZ0ZXIgYSBiaWxsaW9uIGN5Y2xlcy4NCg0K~
U28gdGhlIGlkZWEgaXMgdG8gZGV0ZWN0IHdoZW4gYSBsb29wIGJlZ2lucyBhbmQgZXZlcnl0aGlu
ZyByZXBlYXRzLiBIb3cgZGlkIHlvdSBkbyB0aGF0LCBpcyB0aGVyZSBhIGNsZXZlciB0cmljaz8g
SSBqdXN0IHN0b3JlZCB0aGUgbWFwIGNvbmZpZ3VyYXRpb25zIGluIGEgaGFzaCBtYXAuIEFmdGVy
IGVhY2ggY3ljbGUsIEkgY2hlY2sgaWYgd2UgYWxyZWFkeSBzYXcgdGhpcyBjb25maWd1cmF0aW9u
IGFuZCBpbiB3aGljaCBjeWNsZSB0aGF0IHdhcy4gVGhlbiB3ZSBjYW4gZXh0cmFwb2xhdGUgaG93
IGl0IGxvb2tzIGxpa2UgYWZ0ZXIgYSBiaWxsaW9uIGN5Y2xlcy4NCg0K~
U28gdGhlIGlkZWEgaXMgdG8gZGV0ZWN0IHdoZW4gYSBsb29wIGJlZ2lucyBhbmQgZXZlcnl0aGlu
ZyByZXBlYXRzLiBIb3cgZGlkIHlvdSBkbyB0aGF0LCBpcyB0aGVyZSBhIGNsZXZlciB0cmljaz8g
SSBqdXN0IHN0b3JlZCB0aGUgbWFwIGNvbmZpZ3VyYXRpb25zIGluIGEgaGFzaCBtYXAuIEFmdGVy
IGVhY2ggY3ljbGUsIEkgY2hlY2sgaWYgd2UgYWxyZWFkeSBzYXcgdGhpcyBjb25maWd1cmF0aW9u
IGFuZCBpbiB3aGljaCBjeWNsZSB0aGF0IHdhcy4gVGhlbiB3ZSBjYW4gZXh0cmFwb2xhdGUgaG93
IGl0IGxvb2tzIGxpa2UgYWZ0ZXIgYSBiaWxsaW9uIGN5Y2xlcy4NCg0K~
- Explore VGA a bit: How to draw pixels on DOS all by yourself without a library in graphics mode 12h?
- Explose XMS a bit: How can I use more than 640 kB / 1 MB on DOS?
Both are … quite awkward. 😬 For VGA, I’ll stick to using the Borland Graphics Interface for now. Mode 13h is great, all pixels are directly addressable – but it’s only 320x200. Mode 12h (640 x 480 with 16 colors) is pretty horrible to use with all the planes and what not.
As per this spec, I’ve written a small XMS example that uses 32 MB of memory:
https://movq.de/v/9ed329b401/xms.c
It works, but it appears the only way to make use of this memory is to copy data back and forth between conventional memory and extended memory. I don’t know how useful that is going to be. 🤔 But at least I know how it works now.
- Explore VGA a bit: How to draw pixels on DOS all by yourself without a library in graphics mode 12h?
- Explose XMS a bit: How can I use more than 640 kB / 1 MB on DOS?
Both are … quite awkward. 😬 For VGA, I’ll stick to using the Borland Graphics Interface for now. Mode 13h is great, all pixels are directly addressable – but it’s only 320x200. Mode 12h (640 x 480 with 16 colors) is pretty horrible to use with all the planes and what not.
As per this spec, I’ve written a small XMS example that uses 32 MB of memory:
https://movq.de/v/9ed329b401/xms.c
It works, but it appears the only way to make use of this memory is to copy data back and forth between conventional memory and extended memory. I don’t know how useful that is going to be. 🤔 But at least I know how it works now.
- Explore VGA a bit: How to draw pixels on DOS all by yourself without a library in graphics mode 12h?
- Explose XMS a bit: How can I use more than 640 kB / 1 MB on DOS?
Both are … quite awkward. 😬 For VGA, I’ll stick to using the Borland Graphics Interface for now. Mode 13h is great, all pixels are directly addressable – but it’s only 320x200. Mode 12h (640 x 480 with 16 colors) is pretty horrible to use with all the planes and what not.
As per this spec, I’ve written a small XMS example that uses 32 MB of memory:
https://movq.de/v/9ed329b401/xms.c
It works, but it appears the only way to make use of this memory is to copy data back and forth between conventional memory and extended memory. I don’t know how useful that is going to be. 🤔 But at least I know how it works now.
legs were tired as fuck and the whole thing felt like a tempo run. at some point i was able to zone out and i don't think i would have completed the run if i hadn't.
#running
legs were tired as fuck and the whole thing felt like a tempo run. at some point i was able to zone out and i do not think i would have completed the run if i had not.
#running
legs were tired as fuck and the whole thing felt like a tempo run. at some point i was able to zone out and i do not think i would have completed the run if i had not.
#running
legs were tired as fuck and the whole thing felt like a tempo run. at some point i was able to zone out and i do not think i would have completed the run if i had not.
#running
Works a treat 😅 Just grabbed an unused PC fan, adapted it to an old 5v phone wall charger and hey presto, instantly cooler by 25c+.