Skip to content

Instantly share code, notes, and snippets.

View R0mb0's full-sized avatar
💻
Can someone help me? 😁

Francesco Rombaldoni R0mb0

💻
Can someone help me? 😁
  • INRCA/SIA
  • Italy
  • 05:09 (UTC +02:00)
View GitHub Profile
@cseeman
cseeman / markdown_examples.md
Last active April 21, 2025 13:40
Markdown for info panel/warning box

Examples for how to create your own info panel, warning box and other decent looking notification in GitHub markdown.

All the boxes are single/two cell tables or two row tables.

Warning box

❗ You have to read about this
@code-boxx
code-boxx / 0-JS-EXCEL.MD
Last active April 10, 2025 08:11
Javascript Create Excel File
@dadyarri
dadyarri / license-badges.md
Last active March 11, 2025 07:55 — forked from lukas-h/license-badges.md
Markdown License Badges for your Project

Markdown License badges

Подборка меток с типами лицензии для README вашего проекта.
Этот список включает самые популярные лицензии для проектов с открытым исходным кодом и открытыми данными.
Просто скопируйте и вставьте код под метками в ваши Markdown файлы

Примечание

  • Эти метки не заменяют лицензионный файл с полным текстом лицензии, это просто эмблемы для README, чтобы выбранная лицензия была видна сразу

Переводы: (Нет гарантий, что переводы соответсвуют оригиналу)

@apaskulin
apaskulin / advanced-formatting-github-markdown.md
Created April 15, 2018 17:49
Tips and tricks for more formatting options in GitHub Markdown

Advanced Formatting in GitHub Markdown

GitHub Flavored Markdown lets you create useful documents in GitHub and GitHub Enterprise using .md files. Like other varieties of markdown, GitHub Markdown tries to be as readable as possible in its raw form, resulting in an intentionally limited set of formatting options. However, these options can feel restrictive when dealing with complex content.

Although GitHub Markdown strips out most HTML tags, here are a few tricks that can give you more flexibility when formatting your documents. These advanced formatting options can make your documents more useable, but they come at the expense of plain text readability, so use with caution.

@ryno1234
ryno1234 / rijndael.asp
Created September 8, 2015 21:36
AES Rijndael implementation from Phil Fresle provided for archive purposes.
<%
'Option Explicit
' Rijndael.asp
' Copyright 2001 Phil Fresle
' [email protected]
' http://www.frez.co.uk
' Implementation of the AES Rijndael Block Cipher. Inspired by Mike Scott's
' implementation in C. Permission for free direct or derivative use is granted
' subject to compliance with any conditions that the originators of the
' algorithm place on its exploitation.