I hereby claim:
- I am styson on github.
- I am styson (https://keybase.io/styson) on keybase.
- I have a public key whose fingerprint is 302B 8E64 6E03 45E2 5D63 9EA0 E9A7 3E1B A3B0 75FE
To claim this, I am signing this object:
body { | |
background: yellow; | |
font-size: 20px; | |
color: red; | |
} |
Install nodemon | |
npm install -g nodemon | |
Copy this file to your $HOME folder | |
https://gist.github.com/styson/7d56bafc9d1b7fe1ff1d3dd907b7bf0c | |
run this command from your bash cmd window |
{ | |
"restartable": "rs", | |
"ignore": [ | |
"CommonAssemblyInfo.cs" | |
], | |
"verbose": false, | |
"watch": [ | |
"source/" | |
], | |
"ext": "cs" |
{ | |
"cmd": ["cscript", "$file"], | |
"selector": "source.js" | |
} |
I hereby claim:
To claim this, I am signing this object:
var FCApp = new ActiveXObject("FCFLCompat.FCApplication"); | |
FCApp.WorkingDirectory = 'C:\\projects\\Dovetail-Agent\\pages\\'; | |
FCApp.Initialize(); | |
var FCSession = FCApp.CreateSession(); | |
FCSession.Login('sa', 'sa', 'user'); | |
FCSession.ThrowErrors = false; | |
var actEntry = FCSession.CreateGeneric('act_entry'); | |
actEntry.AppendFilter("entry_time", ">", "7/2/2014 10:40:13 AM"); |
.ViaAdhocRelation("subcase_objid", "case", "objid", view => view | |
.ViaRelation("case_reporter2site", franchise => franchise | |
.Assign(d => d.ContactName).FromIdentifyingField("site_id") | |
.Assign(d => d.SiteName).FromField("name") | |
) | |
); |
shortcuts.update('caseUploadFile', function() { | |
var dfd = Case.Controller.tabController.getTabDeferred(); | |
dfd.done(openFileDialog); | |
Case.Controller.tabController.loadDeferredTab(dfd, 'attachments'); | |
}); | |
getTabDeferred: function () { | |
return $.Deferred(); | |
}, |
<use master="" /> | |
<viewdata model="Agent.Support.Handlers.template.history.listing.HistoryListingModel" /> | |
{[ _.each(groups, function(group) { ]} | |
<div class="history-group row-fluid"> | |
<div class="rail"> | |
<time datetime="" class="fixed_date"> | |
<em>{{ group.date }}</em><hr/> | |
<strong>{{ group.month }}</strong> | |
{{ group.year }} | |
</time> |
<html> | |
<head> | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function() { | |
var frm = $('.frameWrap1 > ul > li').find('iframe, img').attr('height'); | |
$("<p>" + frm + "</p>").insertAfter("#frm"); | |
var img = $('.frameWrap2 > ul > li').find('iframe, img').attr('height'); | |
$("<p>" + img + "</p>").insertAfter("#img"); |