This is commands used in youtube video
Commands:
sudo apt update && sudo apt upgrade -y
# Requires `gcode_shell_command` extension to Moonraker (installing via KIUAH is the easy way) | |
# Requires gphoto2 http://www.gphoto.org/ | |
[gcode_shell_command gphoto2_trigger_snapshot] | |
command: gphoto2 --auto-detect --trigger-capture | |
timeout: 10. ; make sure this is long enough to account for focus time | |
verbose: True | |
[gcode_shell_command gphoto2_init_camera] | |
command: gphoto2 --auto-detect --set-config capturetarget=1 |
// Author: Sokdara Cheng | |
// Contact me for web or mobile app development using React or React Native | |
// https://chengsokdara.github.io | |
import React, { createContext, useContext, useReducer } from "react"; | |
import initialState from "./initialState"; // object of initial states | |
import reducer from "./reducer"; // https://reactjs.org/docs/hooks-reference.html#usereducer | |
const Store = createContext({ | |
dispatch: () => null, | |
state: initialState, | |
}); |
When You Have the Spirit | When You Do Not Have the Spirit | |
---|---|---|
1. | You generally feel happy and calm. | You may feel unhappy, depressed, confused, frustrated most of the time. |
2. | You feel full of light. | You may feel heavy, full of darkness. |
3. | Your mind is clear. | Your mind may be muddled. |
4. | You feel love for the Lord and others. | You may feel empty, hollow, cold inside. |
5. | You feel generous. | You may feel selfish, possessive, self-centered. |
6. | Nobody can offend you. | You may be offended easily. |
7. | You are very forgiving and kind. | You may usually be on the defensive. |
8. | You feel confident in what you do. | You may become discouraged easily. |
This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.
Service | SSL | status | Response Type | Allowed methods | Allowed headers |
---|
This has only been tested on my Acer C710. Do your research before putting your device in dev mode. If you brick your Chromebook from anything in this tutorial that's not my fault. I have had the recovery screen many times before and was able to restore with a USB drive, but you may not be so lucky.
Note: This will wipe and reset your Chromebook
esc+refresh+power
then
<script src="https://unpkg.com/@webcomponents/custom-elements"></script> | |
<style> | |
body { | |
margin: 0; | |
} | |
/* Style the element from the outside */ | |
/* | |
fancy-tabs { | |
margin-bottom: 32px; |
GIT_PS1_SHOWCOLORHINTS=true | |
green="$(tput setaf 2)" | |
red="$(tput setaf 1)" | |
blue="$(tput setaf 4)" | |
yellow="$(tput setaf 3)" | |
white="$(tput setaf 7)" | |
bold="$(tput bold)" | |
reset="$(tput sgr0)" | |
PS1="\`if [[ \$? = "0" ]]; then echo '\n$green'; else echo '\n$red'; fi\`\$(s=\$(printf "%*s" \$COLUMNS); echo \${s// /-})\n \[$reset\]\[$blue\]\W\$(__git_ps1 \"\[$bold\](\[$reset\]\[$green\]%s\[$reset\]\[$blue\]\[$bold\])\") \[$reset\]\[$yellow\]\[$reset\]" |