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
❗️ Closed issue #48 in iotaledger/stronghold.rs | |
🗣 Commented on #48 in iotaledger/stronghold.rs | |
❗️ Opened issue #74 in iotaledger/chronicle.rs | |
🗣 Commented on #135 in tauri-apps/tauri-docs | |
🎉 Merged PR #1024 in tauri-apps/tauri |
This is an example of a function whose logic lives in the type definition rather than in the function body.
/**
* @name `curryRecord`
*
* Takes a unary function that takes a record as an argument, and makes the
* record partially applicable. Returns a new function that takes a partial of
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
/** Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. */ | |
"use strict"; | |
/** | |
* The runtime has a single beforeExit function which is stored in the global | |
* object with a symbol key. | |
* The symbol is not exported. | |
* The process.beforeExit listener is setup in index.js along with all other | |
* top-level process event listeners. | |
*/ |
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
export enum LogLevelName { | |
Info = 'info', | |
Warn = 'warn', | |
Error = 'error', | |
Method = 'method', | |
All = 'all', | |
None = 'none', | |
} | |
export enum LogLevelStyle { |
Here is a list of questions which are asked more often then others. If you know of a question that a lot of people ask, just ask it in a comment. If you would like to add to this faq, just leave a comment in the Q & A & R (question, answer, reference) format. Use Markdown! Let's Answer this!!!
Although Quasar framework documentation covers most of the asked questions from users I think it would be nice to have quick reference guide to Frequently Asked Questions.
If you like saving time to yourself and/or to Quasar users reacting to your answer please provide if possible:
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> | |
<q-page class="flex flex-center"> | |
<div class="col"> | |
<img alt="Quasar logo" src="statics/icons/icon-128x128.png"> | |
<q-input class="col-12" label="Search folder..." v-model="path" outlined filled @keypress.enter="getFiles()"> | |
<template #append> | |
<q-icon class="cursor-pointer" name="search" @click="getFiles()"/> | |
</template> | |
</q-input> |
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
<script> | |
import { QInput } from 'quasar' | |
import { Money } from 'v-money' | |
import Util from '@services/util' | |
export default { | |
// Component <money> and Directive v-money https://github.com/vuejs-tips/v-money | |
// https://github.com/quasarframework/quasar/blob/v0.17/src/components/input/QInput.js | |
// https://github.com/quasarframework/quasar/blob/v0.17/src/mixins/input.js | |
extends: QInput, |
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
#!/usr/bin/env bash | |
# This scenario creates a Github repository with two forks, one | |
# is stale/missing features from upstream forks/project | |
# Dir Structure: | |
# fakeproject | |
# fakeproject-fork | |
# fakeproject-stale-fork |
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
[alias] | |
rescue = !git fsck --full --no-reflogs --unreachable --lost-found | grep commit | cut -d\\ -f3 | xargs -n 1 git log -n 1 --pretty=oneline > .git/lost-found.txt | |
ignore = !files={$(echo \"$@\" | tr ' ' ,)}.gitignore && echo '<-' github:$files && curl -sL https://raw.githubusercontent.com/github/gitignore/master/$files >> .gitignore && echo '->' .gitignore || echo FAIL && : | |
license-osi = !curl -sL https://raw.githubusercontent.com/OpenSourceOrg/licenses/master/texts/plain/$1 > LICENSE | |
license = !curl -sL https://raw.githubusercontent.com/github/choosealicense.com/gh-pages/_licenses/$1.txt > LICENSE | |
fork = !git clone $1 $3 --depth 1 && pushd ${3:-$(basename $1 .git)} > /dev/null && git remote add upstream $(git remote get-url origin) && git remote set-url origin $2 && popd > /dev/null && : | |
modlink = !pushd $1 && repo=$(git remote get-url origin) && popd && git submodule add $repo $2 && rm $2 && ln -s $1 $2 && : | |
first-commit = !git log $(git rev-list |
NewerOlder