| Features | Chrome OS | Chrome OS Flex | Linux Distros | Windows | Mac OS |
|---|---|---|---|---|---|
| Light work stability | β | β | π€ | π€ | β |
| Light work usability | β | β | β | π© | β |
| Recoverable dev setup | β | β | π€ | π€ | β |
| Dev setup usability | β | β | π | π© | π€ |
| Bloatware | β | β | π | π© | π€ |
| Price | π² | π | π | π²π²π² | π²π² |
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
| // model.rs | |
| use burn::{ | |
| module::{Module, Param}, | |
| nn::{EmbeddingConfig, Linear, LinearConfig, RmsNorm, RmsNormConfig}, | |
| tensor::{Int, Tensor, backend::Backend}, | |
| }; | |
| // Closing brace for the `burn` import block | |
| use serde::{Deserialize, Serialize}; |
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
| sudo apt install \ | |
| pdfarranger \ | |
| okular |
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
| # file: .chrome-remote-desktop-session | |
| exec /etc/X11/Xsession 'cinnamon-session-cinnamon' |
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
| sudo apt update && \ | |
| sudo apt upgrade && \ | |
| sudo apt install build-essential openssh-server vim |
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
| version: '3' | |
| services: | |
| app: | |
| build: | |
| context: . | |
| dockerfile: Dockerfile | |
| volumes: | |
| - /var/run/docker.sock:/var/run/docker-host.sock | |
| - ..:/workspace:cached | |
| entrypoint: /usr/local/share/docker-init.sh |
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
Show hidden characters
| { | |
| "name": "DApp Development Environment", | |
| "dockerComposeFile": "docker-compose.yml", | |
| "service": "app", | |
| "workspaceFolder": "/workspace", | |
| "remoteEnv": { | |
| "LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}" | |
| }, | |
| "remoteUser": "vscode", | |
| "postCreateCommand": "npm install -g truffle" |
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
| { | |
| "name": "DApp Development Environment", | |
| "dockerComposeFile": "docker-compose.yml", | |
| "service": "app", | |
| "workspaceFolder": "/workspace", | |
| "remoteEnv": { | |
| "LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}" | |
| }, | |
| "remoteUser": "vscode" | |
| } |
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
| FROM mcr.microsoft.com/vscode/devcontainers/base:0-bullseye | |
| ARG INSTALL_ZSH="true" | |
| ARG UPGRADE_PACKAGES="false" | |
| ARG ENABLE_NONROOT_DOCKER="true" | |
| ARG USE_MOBY="true" | |
| ENV DOCKER_BUILDKIT=1 | |
| ARG USERNAME=automatic |
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
| version: '3' | |
| services: | |
| app: | |
| build: | |
| context: . | |
| dockerfile: Dockerfile | |
| volumes: | |
| - /var/run/docker.sock:/var/run/docker-host.sock | |
| - ..:/workspace:cached | |
| entrypoint: /usr/local/share/docker-init.sh |
NewerOlder