Requires a working mermaid setup for just-the-docs.
Place the file below in the _plugins
folder of your site. Now in your AsciiDoc files, you can do
[mermaid]
....
graph TD;
A-->B;
A-->C;
Requires a working mermaid setup for just-the-docs.
Place the file below in the _plugins
folder of your site. Now in your AsciiDoc files, you can do
[mermaid]
....
graph TD;
A-->B;
A-->C;
with Ada.Text_IO; use Ada.Text_IO; | |
with Ada.Containers.Hashed_Maps; use Ada.Containers; | |
with Ada.Iterator_Interfaces; | |
procedure Main is | |
package Tiles is | |
-- Implementation is completely hidden | |
type Tile_Type is private; | |
# Makefile to make it work | |
it: | |
@echo > /dev/null | |
work: | |
@echo "aye!" | |
# support for Picard | |
so: | |
@echo "Warp 9 engaged." | |
.PHONY: it work so |
#!/usr/bin/expect -f | |
# | |
# creates a new key/cert pair with openssl and signs it with a local CA | |
# | |
# expects /etc/ssl/openssl.cnf to provide correct defaults to everything | |
# except the CN. Easily modifyable to handle more parameters. | |
# | |
# usage: ./newcert.key CN capass | |
# | |
# * CN: the name of your website, eg example.com |
import macros | |
macro callFilter(filter: stmt, value: stmt): expr = | |
if value.kind == nnkStrLit: | |
newStmtList( | |
newNimNode(nnkConstSection).add(newNimNode(nnkConstDef).add(newIdentNode("filtered"), newEmptyNode(), | |
newCall(filter, value))), | |
newIdentNode("filtered")) | |
else: | |
newCall(filter, value) |
class Foo { | |
std::move_iterator move_it; | |
int I; | |
public: | |
Foo(const int like_to, const std::move_iterator& move_it) : | |
I(like_to), move_it(move_it) {} | |
}; |
$debDir = "/some/path" | |
define localPackage ($packageName = $title) { | |
package {$packageName : | |
ensure => installed, | |
provider => dpkg, | |
source => "${debDir}/${packageName}.deb" | |
} | |
} |
passdb passwd-file { | |
args = /home/vmail/%d/passwd | |
} | |
passdb pam { | |
args = session=yes dovecot | |
} | |
userdb static { | |
args = uid=vmail gid=dovecot home=/home/vmail/%d/%u |
with Ada.Containers.Vectors; | |
with Ada.Containers.Hashed_Maps; | |
generic | |
type Key_Type is private; | |
with package Element_Vectors is new Ada.Containers.Vectors (<>); | |
with function Hash (Key : Key_Type) return Ada.Containers.Hash_Type; | |
with function Equivalent_Keys (Left, Right : Key_Type) return Boolean; | |
package Multimaps is | |
package Parent is new Ada.Containers.Hashed_Maps |
-- compilation unit 1: | |
generic | |
type T is private; | |
package Unit is | |
-- ... | |
end Unit; | |
-- compilation unit 2: |