This file contains 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
interface Transaction { | |
amount: number; | |
} | |
class Test { | |
private const BIG_AMOUNT = 10; | |
public getPositiveTransactions(transactions: Transaction[]) { | |
// point free | |
return transactions.filter(this.isPositive); |
This file contains 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
@NgModuel({ | |
imports: [], // Import other module | |
declarations: [], // The components, directives and pipe belong to this module | |
providers: [], // Provide service (class name) that's defined in **this** module. External service is not needed here. | |
exports: [], // Export **declarable** classes so that other module can use. This is the public API of the component.. | |
entryComponents: [], // A list of components that are not referenced in a reachable component template in this moodule. | |
bootstrap: [] // Usually root component. | |
}) | |
export class AppModule { } |
This file contains 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
# run every day at 12am | |
00 00 * * * /home/x/run_backup.sh |
This file contains 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
[DllImport("isxdl.dll")] | |
static extern Int32 isxdl_Download(IntPtr hWndParent, String pszURL, String pszFileName); | |
[DllImport("isxdl.dll")] | |
static extern Int32 isxdl_SetOption(String option, String value); | |
private void button_download_Click(object sender, EventArgs e) | |
{ | |
var fileUrl = "REPLACE_ME"; | |
This file contains 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
// Refresh the data in timer or in live data update callback | |
this.timer.Tick += (s, e) => { | |
// draw the live value | |
using (Graphics g = this.dataListView1.CreateGraphics()) | |
{ | |
// shrink the drawing area so that the grid line and selection color can be seen. | |
Rectangle r = lvi.GetSubItem(4).Bounds; | |
r.Inflate(-2, -2); | |
// use double buffer to avoid flicker |
This file contains 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
// https://github.com/mholt/PapaParse/issues/175 | |
var blob = new Blob([csvString]); | |
if (window.navigator.msSaveOrOpenBlob) // IE hack; see http://msdn.microsoft.com/en-us/library/ie/hh779016.aspx | |
window.navigator.msSaveBlob(blob, "filename.csv"); | |
else | |
{ | |
var a = window.document.createElement("a"); | |
a.href = window.URL.createObjectURL(blob, {type: "text/plain"}); | |
a.download = "filename.csv"; | |
document.body.appendChild(a); |
This file contains 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.imageDescription.onCreated -> | |
template = this | |
# template level instance | |
template.editing = new ReactiveVar(false) | |
template.saving = new ReactiveVar(false) | |
# Automatically focus the input | |
Tracker.autorun -> | |
editing = template.editing.get() | |
if editing |
This file contains 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
$('#channels-table').dataTable | |
scrollX: true | |
scrollY: '600px' | |
scrollCollapse: true | |
paging: false | |
destroy: true | |
dom: 'lrtip' # remove filter but keep 'searching' option in order to make column filter work | |
# table row select effect | |
$('#channels-table tbody tr').on 'click', (e)-> |
This file contains 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
// https://github.com/hharnisc/meteor-accounts-admin-ui-bootstrap-3/blob/bc613e55d4e8c9b419b798e92d274dc697d68b15/client/accounts_admin.js#L35 | |
// search no more than 2 times per second | |
var setUserFilter = _.throttle(function(template) { | |
var search = template.find(".search-input-filter").value; | |
Session.set("userFilter", search); | |
}, 500); | |
Template.accountsAdmin.events({ | |
'keyup .search-input-filter': function(event, template) { |
This file contains 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
+autoForm collection="ProductScopes" id="insertProductScopeForm" type='insert' | |
+afQuickField name='name' | |
.form-group(class="{{#if afFieldIsInvalid name='color'}}has-error{{/if}}") | |
+afFieldLabel name='color' | |
+afFieldInput name='color' | |
if afFieldIsInvalid name='color' | |
span.help-block {{afFieldMessage name='color'}} | |
button.btn.btn-primary(type="submit") Insert | |
NewerOlder