emacs --daemon
to run in the background.
emacsclient.emacs24 <filename/dirname>
to open in terminal
NOTE: "M-m and SPC can be used interchangeably".
- Undo -
C-/
- Redo -
C-?
- Change case: 1. Camel Case :
M-c
2. Upper Case :M-u
- Lower Case :
M-l
// License: Apache-2.0 / MIT | |
use bevy::core_pipeline::{ | |
draw_3d_graph, node, AlphaMask3d, Opaque3d, RenderTargetClearColors, Transparent3d, | |
}; | |
use bevy::prelude::*; | |
use bevy::reflect::TypeUuid; | |
use bevy::render::camera::{ActiveCamera, CameraTypePlugin, RenderTarget}; | |
use bevy::render::render_asset::RenderAssets; | |
use bevy::render::render_graph::{NodeRunError, RenderGraph, RenderGraphContext, SlotValue}; |
#!/bin/bash | |
VDEV="/dev/video0" | |
ADEV="default:CARD=HDMI" | |
# input: cvbs (composite), yc (s-video), hdmi, component, auto | |
VINPUT=yc | |
AINPUT=line_in | |
# Set input to S-Video and AR to 4:3 | |
mwcap-control --audio-input $AINPUT $VDEV |
#!/bin/bash | |
# This script allows you to chroot ("work on") | |
# the raspbian sd card as if it's the raspberry pi | |
# on your Ubuntu desktop/laptop | |
# just much faster and more convenient | |
# credits: https://gist.github.com/jkullick/9b02c2061fbdf4a6c4e8a78f1312a689 | |
# make sure you have issued |
emacs --daemon
to run in the background.
emacsclient.emacs24 <filename/dirname>
to open in terminal
NOTE: "M-m and SPC can be used interchangeably".
C-/
C-?
M-c
2. Upper Case : M-u
M-l
#!/bin/bash | |
##################################################### | |
# Name: Bash CheatSheet for Mac OSX | |
# | |
# A little overlook of the Bash basics | |
# | |
# Usage: | |
# | |
# Author: J. Le Coupanec | |
# Date: 2014/11/04 |