- What are "Queries" in Logseq?
- Queries are for asking questions from your knowledge base and the outside world.
- How to write simple queries?
- By using
{{query }}
, the format is something like this:
{{query Something you're looking for}}
- By using
- How to write simple queries?
- Queries are for asking questions from your knowledge base and the outside world.
- **Query Operators **
These three operators can be applied around any query filters.
- and
This a collection of demo apps, all of which are aimed at for deployment as containers, mainly into Azure but could obviously run anywhere. These are designed for demos and hands on lab exercises, to be used with Azure and DevOps CI & CD scenarios, where you need "something" to deploy and push through the pipeline.
The apps are all small, simple standalone web applications but they are designed for ease of deployment, showcasing use of cloud native deployment scenarios and running as containers, rather than complete examples of a fully functioning architecture.
Example deployment scenarios
- Run locally
- Run as Docker container
- Run in Kubernetes & AKS
- Run in Azure App Service
- Run in Azure Container Instance & Container Apps
javascript: Promise.all([import('https://unpkg.com/[email protected]?module'), import('https://unpkg.com/@tehshrike/[email protected]'), ]).then(async ([{ | |
default: Turndown | |
}, { | |
default: Readability | |
}]) => { | |
/* Optional vault name */ | |
const vault = ""; | |
/* Optional folder name such as "Clippings/" */ |
O roteador Askey RTF3507VW-N1 fornecido pela Vivo tem vários problemas:
- Existe um cache interno de DNS (usando o
dnsmasq
?) bugado: ao fazer a mesma requisição DNS duas vezes seguidas, a primeira resposta vem correta, porém na seguinte temos:
[WIP] Logseq Plugin System is currently under Alpha Testing phase.
In this short guide, it will walk you through the steps needed to set up your development environment for writing and running a hello world simple inside of Logseq Desktop Client. You know Logseq Plugin based on Web Technologies composed of JS & HTML & CSS, but neither are mandatory, you can develop plugins use any language which can be translated to javascript (Logseq made by Clojurescript!). We will use Typescript to demonstrate this sample. Because there is a type definition file to make development experience even better.
You may have gotten accustomed to Keep Calm and Use OPA, and then suddenly, there's
yaourt --m-arg "--skippgpcheck" -S {{ package }} | |
### | |
--skipinteg | |
Do not perform any integrity checks (checksum and PGP) | |
on source files. | |
--skipchecksums | |
Do not verify checksums of source files. |
import {Directive, Attribute} from '@angular/core'; | |
import {NgModel} from '@angular/common'; | |
@Directive({ | |
selector: '[mask]', | |
host: { | |
'(keyup)': 'onInputChange()' | |
} | |
}) | |
export class Mask { | |
maskPattern: string; |
// App | |
import { Component } from '@angular/core'; | |
@Component({ | |
selector: 'app', | |
template: '<span>{{ sayHello() }}</span>', | |
}) | |
export class App { | |
public name: string = 'John'; |
A complete list of RxJS 5 operators with easy to understand explanations and runnable examples.