Skip to content

Instantly share code, notes, and snippets.

View MGYBY's full-sized avatar
🏃‍♂️
拉磨

BYY MGYBY

🏃‍♂️
拉磨
View GitHub Profile
@tomsail
tomsail / 0_telemac_v8p5r1.md
Last active July 12, 2025 22:00
TELEMAC v8p5r1 manuals
@dcasati
dcasati / delft3d
Last active June 2, 2025 11:07
compile delft3d on rockylinux9
#!/bin/env bash
# shfmt -i 2 -ci -w
set -eox
wget https://registrationcenter-download.intel.com/akdlm/IRC_NAS/d461a695-6481-426f-a22f-b5644cd1fa8b/l_HPCKit_p_2024.2.1.79_offline.sh
sh ./l_HPCKit_p_2024.2.1.79_offline.sh -a --silent --cli --eula accept
# pre-requisites
apt update && apt install -y \
@H0R5E
H0R5E / README.md
Last active May 27, 2025 05:11
Instructions for compiling Deflt3D using Windows Subsystem for Linux

Compiling Deflt3D using Windows Subsystem for Linux

This is a guide for compiling Delft3D for Linux using Windows Subsystem for Linux (WSL). Because the Linux compilation instructions are [quite specific][1] using WSL gives the advantage of easily using any Linux distribution. The [Deltares compilation notes][1] are provided for [CentOS][2] version 7, so we will recreate a similar environment using WSL. An outline of the steps in this guide is as follows:

  1. Set up WSL

Sublime Text 3 configuration

subl config

ln -s /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl /usr/local/bin/subl

Custom color schemes

@cuonggt
cuonggt / markdown_guide.md
Last active October 26, 2025 01:01
The Ultimate Guide to Markdown

Markdown Guide

The Ultimate Guide to Markdown

Basic Markdown Formatting

Headings

# This is an <h1> tag

This is an tag

@rave78
rave78 / insert_blank_box.tex
Created April 15, 2015 15:14
Insert a frame or blank box as a figure in latex
\begin{figure}
\centering
\fbox{
\begin{minipage}{1in}
\hfill\vspace{1in}
\end{minipage}
}
\caption{Caption}
\end{figure}
@radum
radum / Default (OSX).sublime-keymap
Last active December 29, 2024 18:38
Sublime Text 3 Configuration Files
[
{ "keys": ["ctrl+pagedown"], "command": "next_view" },
{ "keys": ["ctrl+pageup"], "command": "prev_view" }
]
@djGrill
djGrill / Preferences.sublime-settings
Last active January 16, 2025 20:17
Sublime Text 3 Settings
{
// Sets the colors used within the text area.
// The value "auto" will switch between the "light_color_scheme" and
// "dark_color_scheme" based on the operating system appearance.
"color_scheme": "auto",
"light_color_scheme": "Breakers.sublime-color-scheme",
"dark_color_scheme": "Mariana.sublime-color-scheme",
// Note that the font_face and font_size are overridden in the platform
// specific settings file, for example, "Preferences (Linux).sublime-settings".