This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div id="app"> | |
<!--<img src="./assets/logo.png">--> | |
<h1></h1> | |
<h2>Smartify Crud Demo 01</h2> | |
<div class="container"> | |
<smartify-crud :options="options" :schema="schema" :omodel="model"></smartify-crud> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cs ---------------------------------------------------------------------------- | |
AutoIt Version: 3.3.12.0 | |
Author: André Timermann | |
Script Function: | |
Manipulador de Objeto Avançado | |
NOTA: Estou desenvolvendo uma biblioteca mais completa com interface gráfica, no futuro será migrado | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#version=CENTOS7 | |
# Arquivo de Instalação oVirt Hosts | |
install | |
################################################# | |
# Use network installation | |
################################################# | |
url --url="ftp://192.168.30.1/pub/" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
Vue Material - FORM | |
<fieldset v-if="schema != null" class="vue-form-generator"> | |
{{ fields }} | |
<template v-for="field in fields"> | |
<div v-if="fieldVisible(field)" :class="getFieldRowClasses(field)" class="form-group"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
logWrite('------'); | |
Local $oP0=_UIA_getObjectByFindAll($UIA_oDesktop, "Title:=Siscomex Carga - Windows Internet Explorer;controltype:=UIA_WindowControlTypeId;class:=IEFrame", $TreeScope_Children); | |
Local $oP1=_UIA_getObjectByFindAll($oP0, "controltype:=UIA_PaneControlTypeId;class:=Frame Tab", $TreeScope_Children); | |
Local $oP2=_UIA_getObjectByFindAll($oP1, "title:=Siscomex Carga - Windows Internet Explorer;controltype:=UIA_PaneControlTypeId;class:=TabWindowClass", $TreeScope_Children); | |
Local $oP3=_UIA_getObjectByFindAll($oP2, "controltype:=UIA_PaneControlTypeId;class:=Shell DocObject View", $TreeScope_Children); | |
Local $oP4=_UIA_getObjectByFindAll($oP3, "controltype:=UIA_ImageControlTypeId;iaccessiblevalue:=https://www4c.receita.fazenda.gov.br/carga-web/captcha.jpg", $TreeScope_Descendants); | |
Local $coord = _StringExplode(_UIA_getPropertyValue($oP4, $UIA_BoundingRectanglePropertyId), ";"); | |
;Remove Borda Vermelha (Minimiza e restaura) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# /usr/local/bin/brightness | |
# wrapper script to change brightness values | |
# make script executable | |
# constants - edit as required | |
UPPER=4882 | |
LOWER=1 | |
INCREMENT=100 | |
DECREMENT=100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var express = require('express'); | |
var app = express(); | |
app.use('/static', express.static('static')); | |
app.use(function (req, res, next) { | |
console.log('Time:', Date.now()); | |
next(); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cs ---------------------------------------------------------------------------- | |
AutoIt Version: 3.3.12.0 | |
Author: André Timermann | |
Script Function: | |
Automação Download de Arquivo Siscarga | |
#ce ---------------------------------------------------------------------------- | |
;AutoItSetOption("MustDeclareVars", 1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var express = require('express') | |
var app = express() | |
app.set('view engine', 'jade') | |
app.set('views',process.argv[3]) | |
//app.use(express.static(process.argv[3] || path.join(__dirname, 'public'))); | |
app.get('/home', function(req, res) { | |
//res.end('Hello World!') | |
res.render('index.jade', {date: new Date().toDateString()}) |