Skip to content

Instantly share code, notes, and snippets.

View adriatic's full-sized avatar
💭
I may be slow to respond.

Nikolaj Ivancic adriatic

💭
I may be slow to respond.
  • Congral, LLC
  • Ann Arbor, MI
  • 16:01 (UTC -04:00)
View GitHub Profile
@adriatic
adriatic / yarn-create-redwood-app--ts.log
Created August 10, 2022 00:49
log of yarn create redwood-app --ts .
```
yarn create redwood-app --ts .
yarn create v1.22.19
[1/4] 🔍 Resolving packages...
[2/4] 🚚 Fetching packages...
[3/4] 🔗 Linking dependencies...
warning "create-redwood-app > @redwoodjs/internal > @graphql-codegen/typescript-react-apollo@3.3.2" has unmet peer dependency "graphql-tag@^2.0.0".
warning "create-redwood-app > @redwoodjs/internal > babel-plugin-graphql-tag@3.3.0" has unmet peer dependency "graphql-tag@^2.10.1".
warning "create-redwood-app > @redwoodjs/internal > @redwoodjs/graphql-server > @envelop/depth-limit@1.6.0" has unmet peer dependency "@envelop/core@^2.4.0".
Aurelia Tools LLC Individual Contributor License Agreement
Thank you for Your interest in Aurelia Tools and Aurelia UI Toolkits open source projects. This document clarifies the terms under which You, the person listed below, may make Contributions — which may include without limitation, software, bug fixes, configuration changes, documentation, or any other materials — to any of the projects owned or managed by Aurelia Tools.
Please complete the following information about You and the Contributions. If You have questions about these terms, please contact us at legal@bluespire.com. You accept and agree to the following terms and conditions for Your present and future Contributions submitted to Blue Spire projects. Except for the license granted herein to Aurelia Tools, You reserve all right, title, and interest in and to Your Contributions.
Licenses
Aurelia Tools public projects (code, documentation, and any other materials) are released under the terms of the MIT license, with the following exception:
Co
@adriatic
adriatic / app.html
Created June 27, 2016 21:50
autocomplete basic-use
<template>
<div id="example">
<div class="demo-section k-content">
<p><strong>People:</strong></p>
<ak-autocomplete k-data-source.bind="items">
<input style="width: 100%;">
</ak-autocomplete>
<p class="demo-hint" style="word-break: break-all">Type a name, available values in the list are: ${ items } </p>
</div>
</div>
@adriatic
adriatic / app.html
Created June 7, 2016 16:52 — forked from cdaniel77/app.html
Area charts: basic use
<template>
<ak-chart k-title.bind="{text: 'Gross Domestic product growth \n /GDP annual %/'}"
k-legend.bind="{position: 'bottom'}"
k-series-defaults.bind="seriesDefaults"
k-series.bind="series"
k-value-axis.bind="valueAxis"
k-category-axis.bind="categoryAxis"
k-tooltip.bind="tooltip">
</ak-chart>
</template>
@adriatic
adriatic / app.html
Last active May 15, 2016 13:16 — forked from JeroenVinke/app.html
Aurelia KendoUI component - problem report
<!-- put your view here -->
<template>
<p>Loaded</p>
</template>
<template>
<section>
<h4>About</h4>
</section>
</template>
@adriatic
adriatic / app.html
Created April 19, 2016 13:10
Upload: Api
<!-- app.html -->
@adriatic
adriatic / app.html
Last active July 20, 2016 06:30
Window: Api
<template>
<div id="example">
<div class="box wide hidden-on-narrow" style="z-index:10000">
<div class="box-col">
<h4>API Functions</h4>
<ul class="options">
<li>
<button click.delegate="window.open()" ak-button>Open</button>
<button click.delegate="window.close()" ak-button>Close</button>
</li>
@adriatic
adriatic / app.html
Last active July 20, 2016 06:31
Window: events
<template>
<require from="./logger.js"></require>
<require from="./events.css"></require>
<div id="example">
<div class="box">
<h4>Console log</h4>
<logger view-model.ref="logger"></logger>
</div>
@adriatic
adriatic / ajax.css
Last active July 20, 2016 06:31
Window: ajax
#undo {
text-align: center;
position: absolute;
white-space: nowrap;
border-width: 1px;
border-style: solid;
padding: 2em;
cursor: pointer;
}