open import Data.Nat
open import Data.Empty
hiding (⊥-elim)
open import Relation.Nullary
open import Relation.Binary.PropositionalEquality
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Pretty much everything is working out of the box. The screen is beautiful and the keyboard is nice to type on.
The battery life when just doing using the laptop as a portable laptop is pretty good. It's light, thin.
I look forwarding to testing its for some light gaming, but until then, here's what I did to get everything working on it.
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
| using REPL | |
| # +-------+ | |
| # | Utils | | |
| # +-------+ | |
| read_next_byte(io::IO) = read(io, 1)[1] | |
| function read_stream_bytes(stream::IO) | |
| queue = UInt8[] |
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
| # The function ds() below reads a Sixel graphics file and creates an RGB Image, | |
| # which can then be displayed and processed using the Image package. | |
| # Public domain example code. | |
| using Color, Images, ImageView | |
| function vt340_palette() | |
| pal = RGB[] | |
| push!(pal, RGB(0.00, 0.00, 0.00)) | |
| push!(pal, RGB(0.20, 0.20, 0.80)) |