Skip to content

Instantly share code, notes, and snippets.

View Ochibobo's full-sized avatar

Ochibobo Ochibobo

View GitHub Profile
@Ochibobo
Ochibobo / diagrams.md
Created July 26, 2022 09:06 — forked from blackcater/diagrams.md
Markdown Diagrams

Diagrams

Markdown Preview Enhanced supports rendering flow charts, sequence diagrams, mermaid, PlantUML, WaveDrom, GraphViz, Vega & Vega-lite, Ditaa diagrams. You can also render TikZ, Python Matplotlib, Plotly and all sorts of other graphs and diagrams by using Code Chunk.

Please note that some diagrams don't work well with file exports such as PDF, pandoc, etc.

Flow Charts

This feature is powered by flowchart.js.

@Ochibobo
Ochibobo / ssh.md
Created May 13, 2022 07:59 — forked from bradtraversy/ssh.md
SSH & DevOps Crash Course Snippets

SSH Cheat Sheet

This sheet goes along with this SSH YouTube tutorial

Login via SSH with password (LOCAL SERVER)

$ ssh [email protected]

Create folder, file, install Apache (Just messing around)

$ mkdir test

$ cd test

@Ochibobo
Ochibobo / schelling.jl
Created April 5, 2022 12:24 — forked from Datseris/schelling.jl
Gist of Agents.jl introductory workshop
### Step 1: decide space
using Agents
space = GridSpace((10, 10); periodic = false)
### Step 2: make agent type
mutable struct SchellingAgent <: AbstractAgent
id::Int
pos::NTuple{2, Int}
group::Int