Skip to content

Instantly share code, notes, and snippets.

@anish-dcruz
anish-dcruz / rrule.js
Created February 12, 2023 17:22 — forked from jamesdixon/rrule.js
rrule.js
/*!
* rrule.js - Library for working with recurrence rules for calendar dates.
* https://github.com/jkbrzt/rrule
*
* Copyright 2010, Jakub Roztocil and Lars Schoning
* Licenced under the BSD licence.
* https://github.com/jkbrzt/rrule/blob/master/LICENCE
*
* Based on:
* python-dateutil - Extensions to the standard Python datetime module.
@anish-dcruz
anish-dcruz / input.json
Last active June 13, 2022 07:22
Advance Vue 1
{
"invoice_number": null,
"invoice_date": null,
"invoice_terms": null,
"po_number": null,
"invoice_from_text": null,
"bill_to": null,
"ship_to": null,
"items": [
{"description": null, "qty": 1, "rate": 0},
@anish-dcruz
anish-dcruz / LineItem.php
Last active June 14, 2023 19:15
Advanced Laravel 1
<?php
class LineItem {
}
<template>
<div class="widget">
<div v-if="activeItems && activeItems.length > 0">
<ul>
<li v-for="item in activeItems" :key="item.id">
{{item.name}}
</li>
</ul>
</div>
</div>