This guide is adapted from this original post by Christopher Charles.
- Clone the MLX Swift Examples GitHub repository:
This guide is adapted from this original post by Christopher Charles.
| import SwiftUI | |
| /// A view that arranges its children in horizontal lines | |
| /// | |
| /// FlowStack { | |
| /// ForEach(1..<100) { num in | |
| /// Text(String(num)) | |
| /// .padding(8) | |
| /// .background(Circle().fill(Color.red)) | |
| /// } |
| // | |
| // ContentView.swift | |
| // Grabber | |
| // | |
| // SwiftUI-Lab | |
| // | |
| // For more information on the techniques used in this example, check | |
| // The Power of the Hosting+Representable Combo (https://swiftui-lab.com/a-powerful-combo/) | |
| import SwiftUI |
| import SwiftUI | |
| extension Calendar { | |
| func generateDates( | |
| inside interval: DateInterval, | |
| matching components: DateComponents | |
| ) -> [Date] { | |
| var dates: [Date] = [] | |
| dates.append(interval.start) |
.kobo/KoboKobo eReader.conf[FeatureSettings], if it doesn't exist, create it.ExportHighlights=true and saveThis document sets out how I installed GalliumOS 2.1 on a new Acer Chromebook 14" (CB3-431) 'Edgar' in April 2017. I installed GalliumOS on the internal eMMC storage, but left Chrome OS in place (allowing dual-booting).
It is meant to be an easy-to-follow and particularly thorough (if repetitive) guide, but I make no warranty that it will work correctly for you. It will wipe all data on your Edgar.
I have tried to provide references for each section; see the GalliumOS wiki guide to chrx installation for an overview of the general process.
⚠ Caution: There have been reports of Edgars' speakers overheating, due to a malfunction of the audio hardware, when booted into anything other than Chrome OS. I have not experienced this, and it seems to be believed that this will not now occur under GalliumOS. More information can be found in the comments for the [GalliumOS Braswell Platform Validation
| [Unit] | |
| Description=Service that restarts my spread_goodness.service every two hours. | |
| [Service] | |
| Type=oneshot | |
| ExecStart=/usr/bin/systemctl try-restart spread_goodness.service |
Job title – Data Scientist
Basic Qualifications
| -- show running queries (pre 9.2) | |
| SELECT procpid, age(clock_timestamp(), query_start), usename, current_query | |
| FROM pg_stat_activity | |
| WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' | |
| ORDER BY query_start desc; | |
| -- show running queries (9.2) | |
| SELECT pid, age(clock_timestamp(), query_start), usename, query | |
| FROM pg_stat_activity | |
| WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |