Here is easy steps to try Windows 10 on ARM or Ubuntu for ARM64 on your Apple Silicon Mac. Enjoy!
NOTE: that this is current, 10/1/2021 state.
- Install Xcode from App Store or install Command Line Tools on your Mac
* What are the files named? | |
* What casing is convention? | |
* Semi-colons or not? | |
* What does the code look like, conventionally? | |
* Programming in general: | |
variables, constants, static, structs, interfaces, enums, lists (arrays, maps) classes, abstract, anonymous classes, functions, closures, async, threads, network io, (de)serialization, files, streams, graphics, local hardware, etc... | |
unit testing | |
* UI: | |
What are "screens" called? | |
Views, containers, text, images, buttons, text input, "component" input i.e. sliders, radios, check boxes, etc, |
Here is easy steps to try Windows 10 on ARM or Ubuntu for ARM64 on your Apple Silicon Mac. Enjoy!
NOTE: that this is current, 10/1/2021 state.
#!/bin/bash | |
# This script rotates the screen and touchscreen input 90 degrees each time it is called, | |
# also disables the touchpad, and enables the virtual keyboard accordingly | |
# by Ruben Barkow: https://gist.github.com/rubo77/daa262e0229f6e398766 | |
#### configuration | |
# find your Touchscreen and Touchpad device with `xinput` | |
TouchscreenDevice='ELAN Touchscreen' | |
TouchpadDevice='SynPS/2 Synaptics TouchPad' |