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
| // Copyright (c) Facebook, Inc. and its affiliates. | |
| // This source code is licensed under the MIT license found in the | |
| // LICENSE file in the root directory of this source tree. | |
| import org.apache.tools.ant.taskdefs.condition.Os | |
| def config = project.hasProperty("react") ? project.react : []; | |
| def cliPath = config.cliPath ?: "node_modules/react-native/cli.js" |
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
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| // This widget is the root of your application. | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| theme: ThemeData( |
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
| ; Ender 3 Custom End G-code | |
| G4 ; Wait | |
| M220 S100 ; Reset Speed factor override percentage to default (100%) | |
| M221 S100 ; Reset Extrude factor override percentage to default (100%) | |
| G91 ; Set coordinates to relative | |
| G1 F1800 E-3 ; Retract filament 3 mm to prevent oozing | |
| G1 F3000 Z20 ; Move Z Axis up 20 mm to allow filament ooze freely | |
| G90 ; Set coordinates to absolute | |
| G1 X0 Y{machine_depth} F1000 ; Move Heat Bed to the front for easy print removal | |
| M106 S0 ; Turn off cooling fan |
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
| brew install pandoc | |
| brew tap homebrew/cask | |
| brew install --cask basictex | |
| eval "$(/usr/libexec/path_helper)" | |
| # Update $PATH to include `/usr/local/texlive/2022basic/bin/universal-darwin` | |
| sudo tlmgr update --self | |
| sudo tlmgr install texliveonfly | |
| sudo tlmgr install xelatex | |
| sudo tlmgr install adjustbox | |
| sudo tlmgr install tcolorbox |
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
| import socket | |
| import time | |
| import struct | |
| import zlib | |
| import signal | |
| import binascii | |
| import json | |
| import pickle | |
| import sys | |
| import getopt |