Skip to content

Instantly share code, notes, and snippets.

class SuppressionMarqueEventData
{
int MarPk { get; set; }
string Libelle { get; set; }
string Code { get; set; }
bool EstInterne { get; set; }
}
@TheDigitalNomadDev
TheDigitalNomadDev / terminal_ios.py
Created August 22, 2018 10:40 — forked from ganeshrn/terminal_ios.py
ios terminal plugin
$ git diff lib/ansible/plugins/terminal/ios.py
diff --git a/lib/ansible/plugins/terminal/ios.py b/lib/ansible/plugins/terminal/ios.py
index c108e91257..3706019724 100644
--- a/lib/ansible/plugins/terminal/ios.py
+++ b/lib/ansible/plugins/terminal/ios.py
@@ -30,7 +30,7 @@ from ansible.plugins.terminal import TerminalBase
class TerminalModule(TerminalBase):
terminal_stdout_re = [
- re.compile(br"[\r\n]?[\w\+\-\.:\/\[\]]+(?:\([^\)]+\)){0,3}(?:[>#]) ?$")
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: reviews
...
spec:
hosts:
- reviews
http:
- route:
@TheDigitalNomadDev
TheDigitalNomadDev / dynamic-dropdownMenu.R
Created August 20, 2018 03:02 — forked from bborgesr/dynamic-dropdownMenu.R
How to dynamically add items to a dropdownMenu in shinydashboard
library(shiny)
library(shinydashboard)
ui <- dashboardPage(
dashboardHeader(title = "Dropdowns 2.0",
dropdownMenuOutput("menu")
),
dashboardSidebar(
helpText("Add another item to the dropdown menu by clicking ",
"on the button below"),