| ASCII | HTML | |
|---|---|---|
| Single backticks | 'Isn't this fun?' |
'Isn't this fun?' |
| Quotes | "Isn't this fun?" |
"Isn't this fun?" |
| Dashes | -- is en-dash, --- is em-dash |
-- is en-dash, --- is em-dash |
graph LR
A[Square Rect] -- Link text --> B((Circle))| #!/bin/bash | |
| # | |
| # Ansible role test shim. | |
| # | |
| # Usage: [OPTIONS] ./tests/test.sh | |
| # - distro: a supported Docker distro version (default = "centos7") | |
| # - playbook: a playbook in the tests directory (default = "test.yml") | |
| # - role_dir: the directory where the role exists (default = $PWD) | |
| # - cleanup: whether to remove the Docker container (default = true) | |
| # - container_id: the --name to set for the container (default = timestamp) |
| ASCII | HTML | |
|---|---|---|
| Single backticks | 'Isn't this fun?' |
'Isn't this fun?' |
| Quotes | "Isn't this fun?" |
"Isn't this fun?" |
| Dashes | -- is en-dash, --- is em-dash |
-- is en-dash, --- is em-dash |
graph LR
A[Square Rect] -- Link text --> B((Circle))I hereby claim:
To claim this, I am signing this object:
| <% config[:vagrantfiles].each do |vagrantfile| %> | |
| require "<%= vagrantfile %>" | |
| <% end %> | |
| Vagrant.configure("2") do |c| | |
| c.berkshelf.enabled = false if Vagrant.has_plugin?("vagrant-berkshelf") | |
| <% if config[:cachier] %> | |
| if Vagrant.has_plugin?("vagrant-cachier") | |
| c.cache.scope = <%= [':box', ':machine'].include?(config[:cachier]) ? config[:cachier] : ':box' %> | |
| end |
| #include <stdlib.h> | |
| #include <stdio.h> | |
| #include <unistd.h> | |
| #include <string.h> | |
| #include <libpng16/png.h> | |
| #include <X11/X.h> | |
| #include <X11/Xlib.h> | |
| #include <X11/Xutil.h> | |
| #include <X11/extensions/Xcomposite.h> |
| #include <stdlib.h> | |
| #include <stdio.h> | |
| #include <unistd.h> | |
| #include <string.h> | |
| #include <libpng16/png.h> | |
| #include <X11/X.h> | |
| #include <X11/Xlib.h> | |
| #include <X11/Xutil.h> | |
| #include <X11/extensions/Xcomposite.h> |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace ConsoleApplication3 | |
| { | |
| public class EventStateManager | |
| { |
| using System; | |
| using System.Collections; | |
| public class SingletonBase<T> where T : SingletonBase<T>{ | |
| } | |
| public class MyChildSingletonA : SingletonBase<MyChildSingletonA> { | |
| } |
| from android import Android | |
| droid = Android() | |
| def launch_script(path, terminal=False): | |
| terminal = 'FORE' if terminal else 'BACK' | |
| activity = 'com.googlecode.android_scripting.action.LAUNCH_{0}GROUND_SCRIPT'.format(terminal) | |
| extras = {'com.googlecode.android_scripting.extra.SCRIPT_PATH': path} | |
| packagename = 'com.googlecode.android_scripting' |
| ## Copyright (C) 1996-1997 Flaga hf. Medical Devices (authored by Rognvaldur J. Saemundsson) | |
| ## Modified by Joris Coppens, 071014, TSD Netherlands institute for Neuroscience | |
| ## Copyright (C) 2013 Carnë Draug <carandraug@octave.org> | |
| ## | |
| ## This program is free software; you can redistribute it and/or modify it under | |
| ## the terms of the GNU General Public License as published by the Free Software | |
| ## Foundation; either version 3 of the License, or (at your option) any later | |
| ## version. | |
| ## | |
| ## This program is distributed in the hope that it will be useful, but WITHOUT |