How do I dropdown?
This is how you dropdown.
<details> <summary>How do I dropdown?</summary> <br> This is how you dropdown.
package com.jayfella.motorunner.lemur; | |
import com.jme3.asset.AssetManager; | |
import com.jme3.math.ColorRGBA; | |
import com.jme3.math.Vector3f; | |
import com.simsilica.lemur.GuiGlobals; | |
import com.simsilica.lemur.Insets3f; | |
import com.simsilica.lemur.Label; | |
import com.simsilica.lemur.component.QuadBackgroundComponent; | |
import com.simsilica.lemur.component.TbtQuadBackgroundComponent; |
/* An example of Memory Allocation */ | |
#include<linux/slab.h> | |
#include<linux/init.h> | |
#include<linux/module.h> | |
#include<linux/kernel.h> | |
#define size 10 | |
MODULE_DESCRIPTION("example of memory allocation "); |
#include<avr/io.h> | |
#include<avr/interrupt.h> | |
#include<util/delay.h> | |
#include "lcd.h" | |
volatile int cnt_zero,cnt_one; | |
ISR (INT0_vect) //External interrupt_zero ISR | |
{ | |
cnt_zero++; | |
} | |
ISR (INT1_vect) //External interrupt_one ISR |
/* | |
| Example part of AVR Tutorial Series @ Explore Embedded | |
| To read the detailed tutorial visit: | |
| http://exploreembedded.com/wiki/5.AVR_Timer_programming | |
*/ | |
#include<avr/io.h> | |
#include <util/delay.h> | |
#define LED PD4 | |
int main() | |
{ |
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to | |
# newer versions of the distribution. | |
deb http://us.archive.ubuntu.com/ubuntu/ bionic main restricted | |
# deb-src http://us.archive.ubuntu.com/ubuntu/ bionic main restricted | |
## Major bug fix updates produced after the final release of the | |
## distribution. | |
deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted | |
# deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted |
<details> <summary>How do I dropdown?</summary> <br> This is how you dropdown.
Command:
$ fastboot help
Output:
usage: fastboot [OPTION...] COMMAND...
flashing:
git rm -r --cached . | |
git add . | |
git commit -m "fixing .gitignore" |
Get a shareable link from Google Drive by right-clicking the file and selecting Get Shareable Link
.
Examine the link to get the file's ID. Example:
https://docs.google.com/open?id=[ID]
Certainly! Obsidian is a popular note-taking application that supports Markdown with LaTeX integration for mathematical notation. When using LaTeX in Obsidian's Markdown flavor, you typically enclose the LaTeX code within double dollar signs $$...$$
for block math and single dollar signs $...$
for inline math.
Here's an exhaustive list of the symbols for propositional logic and their formulas specifically formatted for Obsidian flavor Markdown:
Conjunction (AND)
$\land$
or $\wedge$
Disjunction (OR)