| Category | Shortcut | Description |
|---|---|---|
| Global | g n |
Go to the notifications page |
g d |
Go to the dashboard | |
g p |
Go to the pull requests page | |
g i |
Go to the issues page | |
g s |
Go to the code search page | |
/ |
Open the site-wide search box | |
| Repository | g c |
Go to the repository code tab |
g i |
Go to the repository issues tab |
Microsoft Kiota is a tool that generates API clients for HTTP REST APIs described by OpenAPI. It supports a wide range of languages and leverages the full capabilities of OpenAPI descriptions.
Here are some of its features:
- Generate API clients for HTTP REST APIs described by OpenAPI.
- Support for a wide range of languages.
- Leverage the full capabilities of OpenAPI descriptions.
- Generate only the source code necessary.
- Minimize external dependencies.
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
| lsof -i :7022 | grep LISTEN | awk '{print $2}' | xargs kill -9 |
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
| POST http://localhost:8080/alfresco/api/-default-/public/search/versions/1/search | |
| Content-Type: application/json | |
| Authorization: Basic admin admin | |
| Accept: application/json | |
| { | |
| "query": { | |
| "query": "TYPE:'content' AND (PATH:'/app:company_home/st:sites/cm:services-sales-support-management//*' OR PATH:'/app:company_home/st:sites/cm:business-development//*' OR PATH:'/app:company_home/st:sites/cm:bancassurance//*')", | |
| "language": "afts" | |
| }, |
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
| # Runtime image | |
| FROM mcr.microsoft.com/dotnet/runtime:6.0-alpine | |
| # Fixed: Only the invariant culture is supported in globalization-invariant mode | |
| RUN apk add --no-cache icu-libs krb5-libs libgcc libintl libssl1.1 libstdc++ zlib | |
| ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false | |
| # Set timezone | |
| RUN apk add --no-cache tzdata | |
| ENV TZ='Asia/Bangkok' |
$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
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
| class TLMBot { | |
| constructor(minWaitTime = 5000, maxWaitTime = 15000) { | |
| this.minWaitTime = minWaitTime; | |
| this.maxWaitTime = maxWaitTime; | |
| this.isMining = false; | |
| this.isBotRunning = false; | |
| this.startedAt = 0; | |
| this.initialBalance = 0; | |
| this.accumulate = 0; |
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
| CREATE TABLE `alf_child_assoc` ( | |
| `id` bigint(20) NOT NULL AUTO_INCREMENT, | |
| `version` bigint(20) NOT NULL, | |
| `parent_node_id` bigint(20) NOT NULL, | |
| `type_qname_id` bigint(20) NOT NULL, | |
| `child_node_name_crc` bigint(20) NOT NULL, | |
| `child_node_name` varchar(50) NOT NULL, | |
| `child_node_id` bigint(20) NOT NULL, | |
| `qname_ns_id` bigint(20) NOT NULL, | |
| `qname_localname` varchar(255) NOT NULL, |
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
| #r "nuget: RepoDb.MySQL" | |
| #load "ConnectionString.fsx" | |
| open MySql.Data.MySqlClient | |
| open RepoDb | |
| open RepoDb.Attributes | |
| open System.Linq | |
| type Create = { | |
| Table: string |
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
| POST http://192.168.0.19:8080/xyz/service/api/uploadFile?alf_ticket=TICKET_04bb4fc44be78e3082a675e6d9f9d278ecd195eb | |
| Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW | |
| ------WebKitFormBoundary7MA4YWxkTrZu0gW | |
| Content-Disposition: form-data; name="Field1" | |
| Field1-Value | |
| ------WebKitFormBoundary7MA4YWxkTrZu0gW | |
| Content-Disposition: form-data; name="Field2" |
NewerOlder