hexsha
stringlengths
40
40
size
int64
5
1.04M
ext
stringclasses
6 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
3
344
max_stars_repo_name
stringlengths
5
125
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
listlengths
1
11
max_stars_count
int64
1
368k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
344
max_issues_repo_name
stringlengths
5
125
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
listlengths
1
11
max_issues_count
int64
1
116k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
344
max_forks_repo_name
stringlengths
5
125
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
listlengths
1
11
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
5
1.04M
avg_line_length
float64
1.14
851k
max_line_length
int64
1
1.03M
alphanum_fraction
float64
0
1
lid
stringclasses
191 values
lid_prob
float64
0.01
1
a1531a0be1edc004a5286de37e9d325bcf51762c
141
md
Markdown
_pages/about.md
seopchan/seopchan.github.io
421596d3d10a0773595d3078838af7c5129040e5
[ "MIT" ]
null
null
null
_pages/about.md
seopchan/seopchan.github.io
421596d3d10a0773595d3078838af7c5129040e5
[ "MIT" ]
null
null
null
_pages/about.md
seopchan/seopchan.github.io
421596d3d10a0773595d3078838af7c5129040e5
[ "MIT" ]
null
null
null
--- title: "Dev.Chan Blog 설명서" permalink: /about/ layout: single --- ## Dev.Chan Blog 이 블로그는 개인적인 개발 공부 내용 및 작성한 코드를 기록해두기 위해 만든 블로그입니다.
11.75
50
0.659574
kor_Hang
1.00001
a1538195c5734572ffe51991ef8b09ce1ca9fcb9
18,246
md
Markdown
articles/storage/queues/storage-quickstart-queues-java.md
gliljas/azure-docs.sv-se-1
1efdf8ba0ddc3b4fb65903ae928979ac8872d66e
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/storage/queues/storage-quickstart-queues-java.md
gliljas/azure-docs.sv-se-1
1efdf8ba0ddc3b4fb65903ae928979ac8872d66e
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/storage/queues/storage-quickstart-queues-java.md
gliljas/azure-docs.sv-se-1
1efdf8ba0ddc3b4fb65903ae928979ac8872d66e
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: 'Snabb start: Azure Queue Storage-bibliotek V12-Java' description: Lär dig hur du använder Azure Queue Java V12-biblioteket för att skapa en kö och lägga till meddelanden i kön. Härnäst får du lära dig hur du läser och tar bort meddelanden från kön. Du lär dig också hur du tar bort en kö. author: mhopkins-msft ms.author: mhopkins ms.date: 12/4/2019 ms.service: storage ms.subservice: queues ms.topic: quickstart ms.openlocfilehash: 013281db2821c99f6942edd1322f4978e100c144 ms.sourcegitcommit: 58faa9fcbd62f3ac37ff0a65ab9357a01051a64f ms.translationtype: MT ms.contentlocale: sv-SE ms.lasthandoff: 04/29/2020 ms.locfileid: "81729856" --- # <a name="quickstart-azure-queue-storage-client-library-v12-for-java"></a>Snabb start: Azure Queue Storage klient bibliotek V12 för Java Kom igång med Azure Queue Storage klient bibliotek version 12 för Java. Azure Queue Storage är en tjänst för att lagra ett stort antal meddelanden för senare hämtning och bearbetning. Följ de här stegen för att installera paketet och prova exempel koden för grundläggande uppgifter. Använd klient biblioteket för Azure Queue Storage-V12 för Java för att: * Skapa en kö * Lägga till meddelanden i en kö * Granska meddelanden i en kö * Uppdatera ett meddelande i en kö * Ta emot och ta bort meddelanden från en kö * Ta bort en kö [API Reference dokumentation](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-queue/12.0.0/index.html) | [bibliotek käll kods](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/azure-storage-queue) | [paket (maven)](https://mvnrepository.com/artifact/com.azure/azure-storage-queue) | [exempel](https://docs.microsoft.com/azure/storage/common/storage-samples-java?toc=%2fazure%2fstorage%2fqueues%2ftoc.json#queue-samples) ## <a name="prerequisites"></a>Krav * [Java Development Kit (JDK)](https://docs.microsoft.com/java/azure/jdk/?view=azure-java-stable) version 8 eller senare * [Apache maven](https://maven.apache.org/download.cgi) * Azure-prenumeration – [skapa en kostnads fritt](https://azure.microsoft.com/free/) * Azure Storage-konto – [skapa ett lagrings konto](https://docs.microsoft.com/azure/storage/common/storage-quickstart-create-account) ## <a name="setting-up"></a>Konfigurera Det här avsnittet beskriver hur du förbereder ett projekt så att det fungerar med Azure Queue Storage-V12 för Java. ### <a name="create-the-project"></a>Skapa projektet Skapa ett Java-program med namnet *köer-snabb start-V12*. 1. I ett konsol fönster (till exempel cmd, PowerShell eller bash) använder du Maven för att skapa en ny konsol app med namn *köer – snabb start-V12*. Skriv följande **mvn** -kommando för att skapa en "Hello World!" Java-projekt. ```console mvn archetype:generate -DgroupId=com.queues.quickstart \ -DartifactId=queues-quickstart-v12 \ -DarchetypeArtifactId=maven-archetype-quickstart \ -DarchetypeVersion=1.4 \ -DinteractiveMode=false ``` 1. Resultatet från att generera projektet bör se ut ungefär så här: ```console [INFO] Scanning for projects... [INFO] [INFO] ------------------< org.apache.maven:standalone-pom >------------------- [INFO] Building Maven Stub Project (No POM) 1 [INFO] --------------------------------[ pom ]--------------------------------- [INFO] [INFO] >>> maven-archetype-plugin:3.1.2:generate (default-cli) > generate-sources @ standalone-pom >>> [INFO] [INFO] <<< maven-archetype-plugin:3.1.2:generate (default-cli) < generate-sources @ standalone-pom <<< [INFO] [INFO] [INFO] --- maven-archetype-plugin:3.1.2:generate (default-cli) @ standalone-pom --- [INFO] Generating project in Batch mode [INFO] ---------------------------------------------------------------------------- [INFO] Using following parameters for creating project from Archetype: maven-archetype-quickstart:1.4 [INFO] ---------------------------------------------------------------------------- [INFO] Parameter: groupId, Value: com.queues.quickstart [INFO] Parameter: artifactId, Value: queues-quickstart-v12 [INFO] Parameter: version, Value: 1.0-SNAPSHOT [INFO] Parameter: package, Value: com.queues.quickstart [INFO] Parameter: packageInPathFormat, Value: com/queues/quickstart [INFO] Parameter: version, Value: 1.0-SNAPSHOT [INFO] Parameter: package, Value: com.queues.quickstart [INFO] Parameter: groupId, Value: com.queues.quickstart [INFO] Parameter: artifactId, Value: queues-quickstart-v12 [INFO] Project created from Archetype in dir: C:\quickstarts\queues\queues-quickstart-v12 [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 6.394 s [INFO] Finished at: 2019-12-03T09:58:35-08:00 [INFO] ------------------------------------------------------------------------ ``` 1. Växla till de nyligen skapade *köerna-snabb starts-V12-* katalogen. ```console cd queues-quickstart-v12 ``` ### <a name="install-the-package"></a>Installera paketet Öppna filen *Pom. XML* i text redigeraren. Lägg till följande beroende element i gruppen med beroenden. ```xml <dependency> <groupId>com.azure</groupId> <artifactId>azure-storage-queue</artifactId> <version>12.0.1</version> </dependency> ``` ### <a name="set-up-the-app-framework"></a>Konfigurera app Framework Från projekt katalogen: 1. Navigera till katalogen */src/main/Java/com/Queues/QuickStart* 1. Öppna filen *app. java* i redigeraren 1. Ta bort `System.out.println("Hello world!");` instruktionen 1. Lägg `import` till direktiv Här är koden: ```java package com.queues.quickstart; /** * Azure queue storage v12 SDK quickstart */ import com.azure.storage.queue.*; import com.azure.storage.queue.models.*; import java.io.*; import java.time.*; public class App { public static void main( String[] args ) throws IOException { } } ``` [!INCLUDE [storage-quickstart-credentials-include](../../../includes/storage-quickstart-credentials-include.md)] ## <a name="object-model"></a>Objekt modell Azure Queue Storage är en tjänst för lagring av ett stort antal meddelanden. Ett Queue-meddelande kan vara upp till 64 KB stort. En kö kan innehålla miljon tals meddelanden, upp till den totala kapacitets gränsen för ett lagrings konto. Köer används ofta för att skapa en efter släpning av arbete som ska bearbetas asynkront. Queue Storage erbjuder tre typer av resurser: * Lagrings kontot * En kö i lagrings kontot * Meddelanden i kön Följande diagram visar relationen mellan de här resurserna. ![Diagram över kö Storage-arkitektur](./media/storage-queues-introduction/queue1.png) Använd följande Java-klasser för att interagera med dessa resurser: * [QueueClientBuilder](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-queue/12.0.0/com/azure/storage/queue/QueueClientBuilder.html): `QueueClientBuilder` klassen konfigurerar och instansierar ett `QueueClient` objekt. * [QueueServiceClient](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-queue/12.0.0/com/azure/storage/queue/QueueServiceClient.html): med `QueueServiceClient` kan du hantera alla köer i ditt lagrings konto. * [QueueClient](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-queue/12.0.0/com/azure/storage/queue/QueueClient.html): `QueueClient` klassen låter dig hantera och ändra en enskild kö och dess meddelanden. * [QueueMessageItem](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-queue/12.0.0/com/azure/storage/queue/models/QueueMessageItem.html): `QueueMessageItem` klassen representerar de enskilda objekt som returneras när [receiveMessages](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-queue/12.0.0/com/azure/storage/queue/QueueClient.html#receiveMessages-java.lang.Integer-) anropas i en kö. ## <a name="code-examples"></a>Kodexempel I de här exempel kods tycken visar vi hur du utför följande åtgärder med klient biblioteket för Azure Queue Storage för java: * [Hämta anslutningssträngen](#get-the-connection-string) * [Skapa en kö](#create-a-queue) * [Lägga till meddelanden i en kö](#add-messages-to-a-queue) * [Granska meddelanden i en kö](#peek-at-messages -in-a-queue) * [Uppdatera ett meddelande i en kö](#update-a-message-in-a-queue) * [Ta emot och ta bort meddelanden från en kö](#receive-and-delete-messages-from-a-queue) * [Ta bort en kö](#delete-a-queue) ### <a name="get-the-connection-string"></a>Hämta anslutningssträngen Koden nedan hämtar anslutnings strängen för lagrings kontot. Anslutnings strängen lagras i den miljö variabel som skapades i avsnittet [Konfigurera din lagrings anslutnings sträng](#configure-your-storage-connection-string) . Lägg till den här koden `main` i-metoden: ```java System.out.println("Azure Queues storage v12 - Java quickstart sample\n"); // Retrieve the connection string for use with the application. The storage // connection string is stored in an environment variable on the machine // running the application called AZURE_STORAGE_CONNECTION_STRING. If the environment variable // is created after the application is launched in a console or with // Visual Studio, the shell or application needs to be closed and reloaded // to take the environment variable into account. String connectStr = System.getenv("AZURE_STORAGE_CONNECTION_STRING"); ``` ### <a name="create-a-queue"></a>Skapa en kö Välj ett namn för den nya kön. Koden nedan lägger till ett GUID-värde till könamnet för att säkerställa att det är unikt. > [!IMPORTANT] > Könamn får bara innehålla gemena bokstäver, siffror och bindestreck, och måste börja med en bokstav eller en siffra. Varje bindestreck måste föregås och följas av ett tecken som inte är ett bindestreck. Namnet måste vara mellan 3 och 63 tecken långt. Mer information om namngivning av köer finns i [namnge köer och metadata](/rest/api/storageservices/naming-queues-and-metadata). Skapa en instans av klassen [QueueClient](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-queue/12.0.0/com/azure/storage/queue/QueueClient.html) . Anropa sedan metoden [create](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-queue/12.0.0/com/azure/storage/queue/QueueClient.html#create--) för att skapa kön i ditt lagrings konto. Lägg till den här koden i slutet av `main` metoden: ```java // Create a unique name for the queue String queueName = "quickstartqueues-" + java.util.UUID.randomUUID(); System.out.println("Creating queue: " + queueName); // Instantiate a QueueClient which will be // used to create and manipulate the queue QueueClient queueClient = new QueueClientBuilder() .connectionString(connectStr) .queueName(queueName) .buildClient(); // Create the queue queueClient.create(); ``` ### <a name="add-messages-to-a-queue"></a>Lägga till meddelanden i en kö Följande kodfragment lägger till meddelanden i kön genom att anropa [SendMessage](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-queue/12.0.0/com/azure/storage/queue/QueueClient.html#sendMessage-java.lang.String-) -metoden. Det sparar också en [SendMessageResult](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-queue/12.0.0/com/azure/storage/queue/models/SendMessageResult.html) som returneras från `sendMessage` ett samtal. Resultatet används för att uppdatera meddelandet senare i programmet. Lägg till den här koden i slutet av `main` metoden: ```java System.out.println("\nAdding messages to the queue..."); // Send several messages to the queue queueClient.sendMessage("First message"); queueClient.sendMessage("Second message"); // Save the result so we can update this message later SendMessageResult result = queueClient.sendMessage("Third message"); ``` ### <a name="peek-at-messages-in-a-queue"></a>Granska meddelanden i en kö Titta på meddelandena i kön genom att anropa metoden [peekMessages](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-queue/12.0.0/com/azure/storage/queue/QueueClient.html#peekMessages-java.lang.Integer-java.time.Duration-com.azure.core.util.Context-) . `peelkMessages` Metoden hämtar ett eller flera meddelanden från början av kön, men ändrar inte synligheten för meddelandet. Lägg till den här koden i slutet av `main` metoden: ```java System.out.println("\nPeek at the messages in the queue..."); // Peek at messages in the queue queueClient.peekMessages(10, null, null).forEach( peekedMessage -> System.out.println("Message: " + peekedMessage.getMessageText())); ``` ### <a name="update-a-message-in-a-queue"></a>Uppdatera ett meddelande i en kö Uppdatera innehållet i ett meddelande genom att anropa [updateMessage](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-queue/12.0.0/com/azure/storage/queue/QueueClient.html#updateMessage-java.lang.String-java.lang.String-java.lang.String-java.time.Duration-) -metoden. `updateMessage` Metoden kan ändra ett meddelandes Synlighets-timeout och innehåll. Meddelande innehållet måste vara en kodad UTF-8-sträng som är upp till 64 KB stor. Tillsammans med nytt innehåll för meddelandet skickar du meddelande-ID och pop-kvitto genom att använda det `SendMessageResult` som sparades tidigare i koden. Meddelande-ID och pop-kvitto identifierar vilket meddelande som ska uppdateras. ```java System.out.println("\nUpdating the third message in the queue..."); // Update a message using the result that // was saved when sending the message queueClient.updateMessage(result.getMessageId(), result.getPopReceipt(), "Third message has been updated", Duration.ofSeconds(1)); ``` ### <a name="receive-and-delete-messages-from-a-queue"></a>Ta emot och ta bort meddelanden från en kö Hämta tidigare tillagda meddelanden genom att anropa [receiveMessages](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-queue/12.0.0/com/azure/storage/queue/QueueClient.html#receiveMessages-java.lang.Integer-java.time.Duration-java.time.Duration-com.azure.core.util.Context-) -metoden. Exempel koden tar också bort meddelanden från kön när de har tagits emot och bearbetats. I det här fallet visar bearbetningen bara meddelandet i-konsolen. Appen pausar indata från användaren genom att `System.console().readLine();` anropa innan den tar emot och tar bort meddelandena. Kontrol lera i [Azure Portal](https://portal.azure.com) att resurserna har skapats korrekt innan de tas bort. Eventuella meddelanden som inte tas bort kommer att bli synliga i kön igen för en annan chans att bearbeta dem. Lägg till den här koden i slutet av `main` metoden: ```java System.out.println("\nPress Enter key to receive messages and delete them from the queue..."); System.console().readLine(); // Get messages from the queue queueClient.receiveMessages(10).forEach( // "Process" the message receivedMessage -> { System.out.println("Message: " + receivedMessage.getMessageText()); // Let the service know we're finished with // the message and it can be safely deleted. queueClient.deleteMessage(receivedMessage.getMessageId(), receivedMessage.getPopReceipt()); } ); ``` ### <a name="delete-a-queue"></a>Ta bort en kö Följande kod rensar resurserna som skapats av appen genom att ta bort kön med [Delete](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-queue/12.0.0/com/azure/storage/queue/QueueClient.html#delete--) -metoden. Lägg till den här koden i slutet av `main` metoden: ```java System.out.println("\nPress Enter key to delete the queue..."); System.console().readLine(); // Clean up System.out.println("Deleting queue: " + queueClient.getQueueName()); queueClient.delete(); System.out.println("Done"); ``` ## <a name="run-the-code"></a>Kör koden Den här appen skapar och lägger till tre meddelanden i en Azure-kö. I koden visas meddelanden i kön, sedan hämtas och tas de bort innan kön tas bort. I konsol fönstret navigerar du till program katalogen och skapar och kör sedan programmet. ```console mvn compile ``` Sedan skapar du paketet. ```console mvn package ``` Kör följande `mvn` kommando för att köra appen. ```console mvn exec:java -Dexec.mainClass="com.queues.quickstart.App" -Dexec.cleanupDaemonThreads=false ``` Utdata från appen liknar följande exempel: ```output Azure Queues storage v12 - Java quickstart sample Adding messages to the queue... Peek at the messages in the queue... Message: First message Message: Second message Message: Third message Updating the third message in the queue... Press Enter key to receive messages and delete them from the queue... Message: First message Message: Second message Message: Third message has been updated Press Enter key to delete the queue... Deleting queue: quickstartqueues-fbf58f33-4d5a-41ac-ac0e-1a05d01c7003 Done ``` När appen pausar innan meddelanden tas emot kontrollerar du ditt lagrings konto i [Azure Portal](https://portal.azure.com). Kontrol lera att meddelandena finns i kön. Tryck på **RETUR** -tangenten för att ta emot och ta bort meddelandena. När du uppmanas till det trycker du på **RETUR** -tangenten för att ta bort kön och avsluta demonstrationen. ## <a name="next-steps"></a>Nästa steg I den här snabb starten har du lärt dig hur du skapar en kö och lägger till meddelanden i den med hjälp av Java Code. Sedan har du lärt dig att granska, hämta och ta bort meddelanden. Slutligen har du lärt dig hur du tar bort en meddelandekö. För självstudier, exempel, snabb starter och annan dokumentation går du till: > [!div class="nextstepaction"] > [Azure för Java-molnutvecklare](https://docs.microsoft.com/azure/developer/java/) * Om du vill se fler Azure Queue Storage-exempelprogram fortsätter du till [Azure Queue Storage SDK-V12 Java-klient biblioteks exempel](https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/storage/azure-storage-queue/src/samples/java/com/azure/storage/queue).
49.048387
692
0.732654
swe_Latn
0.861994
a153cb45af0b1f39d11922ad5362e269aca6f65f
368
md
Markdown
src/markdown-pages/csumb-names-new-dean-of-education.md
csumb-archives/news-gatsby
ef59f9a219e94123b306ebba3a856f78612446a5
[ "MIT" ]
1
2020-09-09T22:40:34.000Z
2020-09-09T22:40:34.000Z
src/markdown-pages/csumb-names-new-dean-of-education.md
csumb-archives/news-gatsby
ef59f9a219e94123b306ebba3a856f78612446a5
[ "MIT" ]
4
2020-08-12T21:16:50.000Z
2020-10-02T19:21:15.000Z
src/markdown-pages/csumb-names-new-dean-of-education.md
csumb-archives/news-gatsby
ef59f9a219e94123b306ebba3a856f78612446a5
[ "MIT" ]
null
null
null
--- slug: csumb-names-new-dean-of-education title: "CSUMB names new dean of education" date: January 01 2020 --- <p> Jose Luis Alvarado, who has served as associate dean for the College of Education at San Diego State since 2010, has been named dean of CSU Monterey Bay's newly created College of Education. – <em>Monterey Herald</em>, June 15, 2014 </p>
24.533333
80
0.722826
eng_Latn
0.993767
a1544e34e957dba1cda97fc87f557f86d7051d98
1,417
md
Markdown
2020/12/26/2020-12-26 22:55.md
zhzhzhy/WeiBoHot_history
32ce4800e63f26384abb17d43e308452c537c902
[ "MIT" ]
3
2020-07-14T14:54:15.000Z
2020-08-21T06:48:24.000Z
2020/12/26/2020-12-26 22:55.md
zhzhzhy/WeiBoHot_history
32ce4800e63f26384abb17d43e308452c537c902
[ "MIT" ]
null
null
null
2020/12/26/2020-12-26 22:55.md
zhzhzhy/WeiBoHot_history
32ce4800e63f26384abb17d43e308452c537c902
[ "MIT" ]
null
null
null
2020年12月26日22时数据 Status: 200 1.杨幂看杜淳脱衣服跳舞的表情 微博热度:4926145 2.大连10岁遇害女童家属将重新提交材料 微博热度:3415977 3.买年货要看薇娅直播 微博热度:3303977 4.快乐大本营 微博热度:2757153 5.印小天伍嘉成丁泽仁MAMA好炸 微博热度:1924309 6.张云龙新愿鸡汤 微博热度:1697670 7.陈志朋瘦了10公斤 微博热度:1504607 8.唐僧离开女儿国的原因 微博热度:1018412 9.追光吧哥哥 微博热度:992094 10.低龄未成年人刑责范围再调整 微博热度:971082 11.王一博银发撕漫感大片 微博热度:963457 12.李维嘉 微博热度:860669 13.北京回应中小学是否提前放假 微博热度:858329 14.奇葩说 微博热度:852262 15.日本28日起全面暂停新入境 微博热度:850257 16.阳光之下 微博热度:845566 17.北京一本地确诊病例曾拒绝发热门诊留观 微博热度:838206 18.郑爽问邓伦是不是金晨喜欢的类型 微博热度:833888 19.我也不知道叫什么了向屈楚萧道歉 微博热度:827329 20.闫军 微博热度:823307 21.肖顺尧摸于朦胧脖子震惊杨幂 微博热度:820412 22.我和妈妈的砍价区别 微博热度:743297 23.2020无价的你 微博热度:716538 24.考研英语二 微博热度:713174 25.考研英语一 微博热度:712369 26.杨超越侯明昊互怼太好笑了 微博热度:711810 27.高三男生见义勇为徒手挡刀 微博热度:589459 28.郑爽男生都是幼稚的小孩 微博热度:584516 29.Jiumeng抢龙 微博热度:555739 30.刑法最新修改内容 微博热度:544465 31.何洛洛秋衣被剪 微博热度:538610 32.印小天要冲出屏幕打我吗 微博热度:530862 33.虞书欣古装面纱造型 微博热度:506368 34.李维嘉回应 微博热度:481404 35.2021两会召开时间 微博热度:476350 36.广西毒贩开枪拒捕致民警中弹 微博热度:473406 37.哲仁王后 微博热度:469830 38.林依轮 早恋晚恋不给孩子下规矩 微博热度:453759 39.郑爽说李泽锋有点油腻 微博热度:293688 40.北京顺义确诊患者活动轨迹详情 微博热度:248046 41.秦岚刘以豪签补充协议 微博热度:237327 42.外贸玩具厂纷纷缺柜 微博热度:224118 43.谢霆锋线上演唱会 微博热度:216988 44.郭艾伦技术犯规 微博热度:207936 45.冉高鸣太强了 微博热度:198538 46.深圳首次开放个人预约新冠疫苗 微博热度:189086 47.符龙飞汪东城李泽锋烈火战马 微博热度:184526 48.官方回应工伤获赔180万律师费90万 微博热度:179900 49.英雄梦奇重塑 微博热度:178337 50.天真带小哥回家 微博热度:178237
6.946078
21
0.784051
yue_Hant
0.301348
a154c07b18e95581bb72e4227ef51bc12d6f91e8
22,287
md
Markdown
vendor/doctrine/orm/UPGRADE.md
nobita2811/myblog
3e6cc6f4b9043d8e709f17829ba27fc138224423
[ "MIT" ]
null
null
null
vendor/doctrine/orm/UPGRADE.md
nobita2811/myblog
3e6cc6f4b9043d8e709f17829ba27fc138224423
[ "MIT" ]
null
null
null
vendor/doctrine/orm/UPGRADE.md
nobita2811/myblog
3e6cc6f4b9043d8e709f17829ba27fc138224423
[ "MIT" ]
null
null
null
# Upgrade to 2.3 ## Auto Discriminator Map breaks userland implementations with Listener The new feature to detect discriminator maps automatically when none are provided breaks userland implementations doing this with a listener in ``loadClassMetadata`` event. ## EntityManager#find() not calls EntityRepository#find() anymore Previous to 2.3, calling ``EntityManager#find()`` would be delegated to ``EntityRepository#find()``. This has lead to some unexpected behavior in the core of Doctrine when people have overwritten the find method in their repositories. That is why this behavior has been reversed in 2.3, and ``EntityRepository#find()`` calls ``EntityManager#find()`` instead. ## EntityGenerator add*() method generation When generating an add*() method for a collection the EntityGenerator will now not use the Type-Hint to get the singular for the collection name, but use the field-name and strip a trailing "s" character if there is one. ## Merge copies non persisted properties too When merging an entity in UoW not only mapped properties are copied, but also others. ## Query, QueryBuilder and NativeQuery parameters *BC break* From now on, parameters in queries is an ArrayCollection instead of a simple array. This affects heavily the usage of setParameters(), because it will not append anymore parameters to query, but will actually override the already defined ones. Whenever you are retrieving a parameter (ie. $query->getParameter(1)), you will receive an instance of Query\Parameter, which contains the methods "getName", "getValue" and "getType". Parameters are also only converted to when necessary, and not when they are set. Also, related functions were affected: * execute($parameters, $hydrationMode) the argument $parameters can be either an key=>value array or an ArrayCollection instance * iterate($parameters, $hydrationMode) the argument $parameters can be either an key=>value array or an ArrayCollection instance * setParameters($parameters) the argument $parameters can be either an key=>value array or an ArrayCollection instance * getParameters() now returns ArrayCollection instead of array * getParameter($key) now returns Parameter instance instead of parameter value ## Query TreeWalker method renamed Internal changes were made to DQL and SQL generation. If you have implemented your own TreeWalker, you probably need to update it. The method walkJoinVariableDeclaration is now named walkJoin. ## Metadata Drivers Metadata drivers have been rewritten to reuse code from Doctrine\Common. Anyone who is using the `Doctrine\ORM\Mapping\Driver\Driver` interface should instead refer to `Doctrine\Common\Persistence\Mapping\Driver\MappingDriver`. Same applies to `Doctrine\ORM\Mapping\Driver\AbstractFileDriver`: you should now refer to `Doctrine\Common\Persistence\Mapping\Driver\FileDriver`. Also, following mapping drivers have been deprecated, please use their replacements in Doctrine\Common as listed: * `Doctrine\ORM\Mapping\Driver\DriverChain` => `Doctrine\Common\Persistence\Mapping\Driver\MappingDriverChain` * `Doctrine\ORM\Mapping\Driver\PHPDriver` => `Doctrine\Common\Persistence\Mapping\Driver\PHPDriver` * `Doctrine\ORM\Mapping\Driver\StaticPHPDriver` => `Doctrine\Common\Persistence\Mapping\Driver\StaticPHPDriver` # Upgrade to 2.2 ## ResultCache implementation rewritten The result cache is completely rewritten and now works on the database result level, not inside the ORM AbstractQuery anymore. This means that for result cached queries the hydration will now always be performed again, regardless of the hydration mode. Affected areas are: 1. Fixes the problem that entities coming from the result cache were not registered in the UnitOfWork leading to problems during EntityManager#flush. Calls to EntityManager#merge are not necessary anymore. 2. Affects the array hydrator which now includes the overhead of hydration compared to caching the final result. The API is backwards compatible however most of the getter methods on the `AbstractQuery` object are now deprecated in favor of calling AbstractQuery#getQueryCacheProfile(). This method returns a `Doctrine\DBAL\Cache\QueryCacheProfile` instance with access to result cache driver, lifetime and cache key. ## EntityManager#getPartialReference() creates read-only entity Entities returned from EntityManager#getPartialReference() are now marked as read-only if they haven't been in the identity map before. This means objects of this kind never lead to changes in the UnitOfWork. ## Fields omitted in a partial DQL query or a native query are never updated Fields of an entity that are not returned from a partial DQL Query or native SQL query will never be updated through an UPDATE statement. ## Removed support for onUpdate in @JoinColumn The onUpdate foreign key handling makes absolutely no sense in an ORM. Additionally Oracle doesn't even support it. Support for it is removed. ## Changes in Annotation Handling There have been some changes to the annotation handling in Common 2.2 again, that affect how people with old configurations from 2.0 have to configure the annotation driver if they don't use `Configuration::newDefaultAnnotationDriver()`: // Register the ORM Annotations in the AnnotationRegistry AnnotationRegistry::registerFile('path/to/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php'); $reader = new \Doctrine\Common\Annotations\SimpleAnnotationReader(); $reader->addNamespace('Doctrine\ORM\Mapping'); $reader = new \Doctrine\Common\Annotations\CachedReader($reader, new ArrayCache()); $driver = new AnnotationDriver($reader, (array)$paths); $config->setMetadataDriverImpl($driver); ## Scalar mappings can now be ommitted from DQL result You are now allowed to mark scalar SELECT expressions as HIDDEN an they are not hydrated anymore. Example: SELECT u, SUM(a.id) AS HIDDEN numArticles FROM User u LEFT JOIN u.Articles a ORDER BY numArticles DESC HAVING numArticles > 10 Your result will be a collection of Users, and not an array with key 0 as User object instance and "numArticles" as the number of articles per user ## Map entities as scalars in DQL result When hydrating to array or even a mixed result in object hydrator, previously you had the 0 index holding you entity instance. You are now allowed to alias this, providing more flexibility for you code. Example: SELECT u AS user FROM User u Will now return a collection of arrays with index "user" pointing to the User object instance. ## Performance optimizations Thousands of lines were completely reviewed and optimized for best performance. Removed redundancy and improved code readability made now internal Doctrine code easier to understand. Also, Doctrine 2.2 now is around 10-15% faster than 2.1. ## EntityManager#find(null) Previously EntityManager#find(null) returned null. It now throws an exception. # Upgrade to 2.1 ## Interface for EntityRepository The EntityRepository now has an interface Doctrine\Common\Persistence\ObjectRepository. This means that your classes that override EntityRepository and extend find(), findOneBy() or findBy() must be adjusted to follow this interface. ## AnnotationReader changes The annotation reader was heavily refactored between 2.0 and 2.1-RC1. In theory the operation of the new reader should be backwards compatible, but it has to be setup differently to work that way: // new call to the AnnotationRegistry \Doctrine\Common\Annotations\AnnotationRegistry::registerFile('/doctrine-src/lib/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php'); $reader = new \Doctrine\Common\Annotations\AnnotationReader(); $reader->setDefaultAnnotationNamespace('Doctrine\ORM\Mapping\\'); // new code necessary starting here $reader->setIgnoreNotImportedAnnotations(true); $reader->setEnableParsePhpImports(false); $reader = new \Doctrine\Common\Annotations\CachedReader( new \Doctrine\Common\Annotations\IndexedReader($reader), new ArrayCache() ); This is already done inside the ``$config->newDefaultAnnotationDriver``, so everything should automatically work if you are using this method. You can verify if everything still works by executing a console command such as schema-validate that loads all metadata into memory. # Update from 2.0-BETA3 to 2.0-BETA4 ## XML Driver <change-tracking-policy /> element demoted to attribute We changed how the XML Driver allows to define the change-tracking-policy. The working case is now: <entity change-tracking-policy="DEFERRED_IMPLICT" /> # Update from 2.0-BETA2 to 2.0-BETA3 ## Serialization of Uninitialized Proxies As of Beta3 you can now serialize uninitialized proxies, an exception will only be thrown when trying to access methods on the unserialized proxy as long as it has not been re-attached to the EntityManager using `EntityManager#merge()`. See this example: $proxy = $em->getReference('User', 1); $serializedProxy = serialize($proxy); $detachedProxy = unserialized($serializedProxy); echo $em->contains($detachedProxy); // FALSE try { $detachedProxy->getId(); // uninitialized detached proxy } catch(Exception $e) { } $attachedProxy = $em->merge($detachedProxy); echo $attackedProxy->getId(); // works! ## Changed SQL implementation of Postgres and Oracle DateTime types The DBAL Type "datetime" included the Timezone Offset in both Postgres and Oracle. As of this version they are now generated without Timezone (TIMESTAMP WITHOUT TIME ZONE instead of TIMESTAMP WITH TIME ZONE). See [this comment to Ticket DBAL-22](http://www.doctrine-project.org/jira/browse/DBAL-22?focusedCommentId=13396&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#action_13396) for more details as well as migration issues for PostgreSQL and Oracle. Both Postgres and Oracle will throw Exceptions during hydration of Objects with "DateTime" fields unless migration steps are taken! ## Removed multi-dot/deep-path expressions in DQL The support for implicit joins in DQL through the multi-dot/Deep Path Expressions was dropped. For example: SELECT u FROM User u WHERE u.group.name = ?1 See the "u.group.id" here is using multi dots (deep expression) to walk through the graph of objects and properties. Internally the DQL parser would rewrite these queries to: SELECT u FROM User u JOIN u.group g WHERE g.name = ?1 This explicit notation will be the only supported notation as of now. The internal handling of multi-dots in the DQL Parser was very complex, error prone in edge cases and required special treatment for several features we added. Additionally it had edge cases that could not be solved without making the DQL Parser even much more complex. For this reason we will drop the support for the deep path expressions to increase maintainability and overall performance of the DQL parsing process. This will benefit any DQL query being parsed, even those not using deep path expressions. Note that the generated SQL of both notations is exactly the same! You don't loose anything through this. ## Default Allocation Size for Sequences The default allocation size for sequences has been changed from 10 to 1. This step was made to not cause confusion with users and also because it is partly some kind of premature optimization. # Update from 2.0-BETA1 to 2.0-BETA2 There are no backwards incompatible changes in this release. # Upgrade from 2.0-ALPHA4 to 2.0-BETA1 ## EntityRepository deprecates access to protected variables Instead of accessing protected variables for the EntityManager in a custom EntityRepository it is now required to use the getter methods for all the three instance variables: * `$this->_em` now accessible through `$this->getEntityManager()` * `$this->_class` now accessible through `$this->getClassMetadata()` * `$this->_entityName` now accessible through `$this->getEntityName()` Important: For Beta 2 the protected visibility of these three properties will be changed to private! ## Console migrated to Symfony Console The Doctrine CLI has been replaced by Symfony Console Configuration Instead of having to specify: [php] $cliConfig = new CliConfiguration(); $cliConfig->setAttribute('em', $entityManager); You now have to configure the script like: [php] $helperSet = new \Symfony\Components\Console\Helper\HelperSet(array( 'db' => new \Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper($em->getConnection()), 'em' => new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($em) )); ## Console: No need for Mapping Paths anymore In previous versions you had to specify the --from and --from-path options to show where your mapping paths are from the console. However this information is already known from the Mapping Driver configuration, so the requirement for this options were dropped. Instead for each console command all the entities are loaded and to restrict the operation to one or more sub-groups you can use the --filter flag. ## AnnotationDriver is not a default mapping driver anymore In conjunction with the recent changes to Console we realized that the annotations driver being a default metadata driver lead to lots of glue code in the console components to detect where entities lie and how to load them for batch updates like SchemaTool and other commands. However the annotations driver being a default driver does not really help that much anyways. Therefore we decided to break backwards compability in this issue and drop the support for Annotations as Default Driver and require our users to specify the driver explicitly (which allows us to ask for the path to all entities). If you are using the annotations metadata driver as default driver, you have to add the following lines to your bootstrap code: $driverImpl = $config->newDefaultAnnotationDriver(array(__DIR__."/Entities")); $config->setMetadataDriverImpl($driverImpl); You have to specify the path to your entities as either string of a single path or array of multiple paths to your entities. This information will be used by all console commands to access all entities. Xml and Yaml Drivers work as before! ## New inversedBy attribute It is now *mandatory* that the owning side of a bidirectional association specifies the 'inversedBy' attribute that points to the name of the field on the inverse side that completes the association. Example: [php] // BEFORE (ALPHA4 AND EARLIER) class User { //... /** @OneToOne(targetEntity="Address", mappedBy="user") */ private $address; //... } class Address { //... /** @OneToOne(targetEntity="User") */ private $user; //... } // SINCE BETA1 // User class DOES NOT CHANGE class Address { //... /** @OneToOne(targetEntity="User", inversedBy="address") */ private $user; //... } Thus, the inversedBy attribute is the counterpart to the mappedBy attribute. This change was necessary to enable some simplifications and further performance improvements. We apologize for the inconvenience. ## Default Property for Field Mappings The "default" option for database column defaults has been removed. If desired, database column defaults can be implemented by using the columnDefinition attribute of the @Column annotation (or the approriate XML and YAML equivalents). Prefer PHP default values, if possible. ## Selecting Partial Objects Querying for partial objects now has a new syntax. The old syntax to query for partial objects now has a different meaning. This is best illustrated by an example. If you previously had a DQL query like this: [sql] SELECT u.id, u.name FROM User u Since BETA1, simple state field path expressions in the select clause are used to select object fields as plain scalar values (something that was not possible before). To achieve the same result as previously (that is, a partial object with only id and name populated) you need to use the following, explicit syntax: [sql] SELECT PARTIAL u.{id,name} FROM User u ## XML Mapping Driver The 'inheritance-type' attribute changed to take last bit of ClassMetadata constant names, i.e. NONE, SINGLE_TABLE, INHERITANCE_TYPE_JOINED ## YAML Mapping Driver The way to specify lifecycle callbacks in YAML Mapping driver was changed to allow for multiple callbacks per event. The Old syntax ways: [yaml] lifecycleCallbacks: doStuffOnPrePersist: prePersist doStuffOnPostPersist: postPersist The new syntax is: [yaml] lifecycleCallbacks: prePersist: [ doStuffOnPrePersist, doOtherStuffOnPrePersistToo ] postPersist: [ doStuffOnPostPersist ] ## PreUpdate Event Listeners Event Listeners listening to the 'preUpdate' event can only affect the primitive values of entity changesets by using the API on the `PreUpdateEventArgs` instance passed to the preUpdate listener method. Any changes to the state of the entitys properties won't affect the database UPDATE statement anymore. This gives drastic performance benefits for the preUpdate event. ## Collection API The Collection interface in the Common package has been updated with some missing methods that were present only on the default implementation, ArrayCollection. Custom collection implementations need to be updated to adhere to the updated interface. # Upgrade from 2.0-ALPHA3 to 2.0-ALPHA4 ## CLI Controller changes CLI main object changed its name and namespace. Renamed from Doctrine\ORM\Tools\Cli to Doctrine\Common\Cli\CliController. Doctrine\Common\Cli\CliController now only deals with namespaces. Ready to go, Core, Dbal and Orm are available and you can subscribe new tasks by retrieving the namespace and including new task. Example: [php] $cli->getNamespace('Core')->addTask('my-example', '\MyProject\Tools\Cli\Tasks\MyExampleTask'); ## CLI Tasks documentation Tasks have implemented a new way to build documentation. Although it is still possible to define the help manually by extending the basicHelp and extendedHelp, they are now optional. With new required method AbstractTask::buildDocumentation, its implementation defines the TaskDocumentation instance (accessible through AbstractTask::getDocumentation()), basicHelp and extendedHelp are now not necessary to be implemented. ## Changes in Method Signatures * A bunch of Methods on both Doctrine\DBAL\Platforms\AbstractPlatform and Doctrine\DBAL\Schema\AbstractSchemaManager have changed quite significantly by adopting the new Schema instance objects. ## Renamed Methods * Doctrine\ORM\AbstractQuery::setExpireResultCache() -> expireResultCache() * Doctrine\ORM\Query::setExpireQueryCache() -> expireQueryCache() ## SchemaTool Changes * "doctrine schema-tool --drop" now always drops the complete database instead of only those tables defined by the current database model. The previous method had problems when foreign keys of orphaned tables pointed to tables that were schedulded for deletion. * Use "doctrine schema-tool --update" to get a save incremental update for your database schema without deleting any unused tables, sequences or foreign keys. * Use "doctrine schema-tool --complete-update" to do a full incremental update of your schema. # Upgrade from 2.0-ALPHA2 to 2.0-ALPHA3 This section details the changes made to Doctrine 2.0-ALPHA3 to make it easier for you to upgrade your projects to use this version. ## CLI Changes The $args variable used in the cli-config.php for configuring the Doctrine CLI has been renamed to $globalArguments. ## Proxy class changes You are now required to make supply some minimalist configuration with regards to proxy objects. That involves 2 new configuration options. First, the directory where generated proxy classes should be placed needs to be specified. Secondly, you need to configure the namespace used for proxy classes. The following snippet shows an example: [php] // step 1: configure directory for proxy classes // $config instanceof Doctrine\ORM\Configuration $config->setProxyDir('/path/to/myproject/lib/MyProject/Generated/Proxies'); $config->setProxyNamespace('MyProject\Generated\Proxies'); Note that proxy classes behave exactly like any other classes when it comes to class loading. Therefore you need to make sure the proxy classes can be loaded by some class loader. If you place the generated proxy classes in a namespace and directory under your projects class files, like in the example above, it would be sufficient to register the MyProject namespace on a class loader. Since the proxy classes are contained in that namespace and adhere to the standards for class loading, no additional work is required. Generating the proxy classes into a namespace within your class library is the recommended setup. Entities with initialized proxy objects can now be serialized and unserialized properly from within the same application. For more details refer to the Configuration section of the manual. ## Removed allowPartialObjects configuration option The allowPartialObjects configuration option together with the `Configuration#getAllowPartialObjects` and `Configuration#setAllowPartialObjects` methods have been removed. The new behavior is as if the option were set to FALSE all the time, basically disallowing partial objects globally. However, you can still use the `Query::HINT_FORCE_PARTIAL_LOAD` query hint to force a query to return partial objects for optimization purposes. ## Renamed Methods * Doctrine\ORM\Configuration#getCacheDir() to getProxyDir() * Doctrine\ORM\Configuration#setCacheDir($dir) to setProxyDir($dir)
46.238589
523
0.764167
eng_Latn
0.99393
a157b2f4fb59225eb8d0709ce03fc1ee186c35a7
3,867
md
Markdown
content/articles/greater-impediment.md
veevo/dev
40a52f13be2cb953fd1ba94de5789c5848431ebb
[ "CC-BY-3.0" ]
null
null
null
content/articles/greater-impediment.md
veevo/dev
40a52f13be2cb953fd1ba94de5789c5848431ebb
[ "CC-BY-3.0" ]
null
null
null
content/articles/greater-impediment.md
veevo/dev
40a52f13be2cb953fd1ba94de5789c5848431ebb
[ "CC-BY-3.0" ]
null
null
null
--- title: Greater impediment date: 2019-02-01 19:00:00 image: "images/masonary-post/post-2.jpg" topics: - pride - avarice - rage - gluttony - envy - laziness - idleness - humility - faith --- It says ancient narrative, that a wise priest, desiring to teach the way of heaven to believers who trusted him, pleaded with Jesus to be revealed to him what the greater impediment against spiritual enlightenment. With a clean mind, he slept and dreamed that he was led to the heavenly door. Wrapped in splendor, an angel welcomed him, kind. "Messenger of Allah!" - said the priest - "I come to gnaw the truth to the human sheep that follow me." "What do you want to know?" - asked the angelic entity. "I ask for clarification on the greatest obstacle to the soul, in the march to God. I know that we have committed serious faults, which annihilate in us divine grace, in the ascension to light. However, I would like clearer explanations as to the evil problem, because our faults vary to infinity." The high Spirit smiled and considered, "The solution is simple. What are the failures you refer to?" The minister of faith moved his fingers and replied: "Pride, avarice, anger, gluttony, envy and laziness. From them are born the others imperfections." The messenger replied: "In essence, we can reduce all the faults to a single problem because all imperfections come from a single source." The priest, curious, pleaded: "Angel friend, clarify my understanding!" The emissary of the upper sphere, without any pretense of superiority, Explained: "If the proud worked for everyone's good, he would not find a cultivate the pride and vanity that lead you to believe to be the central point of the Universe. If the miser knew the advantage of sweat, in the happiness of the like, do not would indulge in the pleasure of possession that forces him to accumulate money uselessly. If man inclined to the temptation of easy pleasures he learns to use the forces in favor of collective elevation, would have no opportunity to attach yourself to the annihilating passions that drag you into crime. If angry people were willing to serve according to the divine designs, would not poison their own health with remorse and anguish Unjustifiable. If the gluttonous lived attentive to the constructive task that belongs to him in the world, he would not enslaved to the appetites that ruin his body and soul. And if the envious used existence, in decent work, I would not spend time maliciously following the initiatives of the next, complicating the very Destination... As you can see, the greatest imperfection, the primary cause of all evils, is the Laziness. It gives uplifting work to your sheep and convinces you that, in possession of the service, will not move away from the righteous path." The priest had nothing more to ask. Awakened, instructed, and, from the next day onwards, the people noticed that he changed the tone of their preaching. *   *   * The problem that stands out today is that of laziness. Entrepreneurship, ease, rest, moral amolent, pleasure are condiments that season the sloth running which rust destructive in the gears of the Spirit, eroding man. The determined Christian, like his Master, is active, a natural adversary and spontaneous of this corrosive odiento, however, much required and well accepted. When we feel, without real reasons, softness and need for time-consuming rest, let's wake up and produce. ## Source Redação do Momento Espírita, com base no cap. 36, do livro Alvorada cristã, pelo Espírito Néio Lúcio, psicografia de Francisco Cândido Xavier, ed. FEB e no cap. 8, do livro Espírito e Vida, pelo Espírito Joanna de Ângelis, psicografia de Divaldo Pereira Franco, ed. FEB. Em 23.8.2018. [Original Article (pt-BR)](http://momento.com.br/pt/ler_texto.php?id=5517)
34.526786
105
0.772692
eng_Latn
0.999363
a157c9e51b0119009203b465fe6bf71791b3d71e
54
md
Markdown
README.md
K-osA/kakao-web-clone
d5713f8304e748a1c03e98e337a608472bd2fe64
[ "MIT" ]
1
2022-01-27T20:26:03.000Z
2022-01-27T20:26:03.000Z
README.md
K-osA/kakao-web-clone
d5713f8304e748a1c03e98e337a608472bd2fe64
[ "MIT" ]
null
null
null
README.md
K-osA/kakao-web-clone
d5713f8304e748a1c03e98e337a608472bd2fe64
[ "MIT" ]
null
null
null
# Kakao-Web-Clone Clone of KakaoTalk using HTML, CSS
13.5
34
0.759259
yue_Hant
0.745594
a1585bba9c589e056fa0a5c3f9a9506f5496af50
2,401
md
Markdown
vault/community.discord.md
henry-js/dendron-site
9b5cddf1332742fb5e443826c742a7cf5547974a
[ "MIT" ]
null
null
null
vault/community.discord.md
henry-js/dendron-site
9b5cddf1332742fb5e443826c742a7cf5547974a
[ "MIT" ]
null
null
null
vault/community.discord.md
henry-js/dendron-site
9b5cddf1332742fb5e443826c742a7cf5547974a
[ "MIT" ]
null
null
null
--- id: bjhsGLyqME7QcNV6GueUb title: Discord desc: '' updated: 1642721497339 created: 1640809069591 --- > This page is a reflection of what is inside the `#root` channel in the Dendron Discord. ## Summary Welcome to the [Dendron on Discord](https://link.dendron.so/discord)! This is a collaborative place to discuss all things related to Dendron and personal knowledge management! ## Rules As far as rules go, we just have one: > Be nice and help make this server a place where you and others can. ## Articles of interest Some links to check out when you have time: - If you haven't seen it just yet, Dendron was featured in the last Visual Studio Code livestream of 2021. - [Recording: Note Taking inside of Dendron](https://link.dendron.so/6eZ3) - [Our answers to in-stream questions](https://link.dendron.so/6pOR) - [Dendron origin (podcast)](https://link.dendron.so/6qAO) - [Hierarchal note taking (system that dendron is based on)](https://blog.dendron.so/notes/3dd58f62-fee5-4f93-b9f1-b0f0f59a9b64/) - [It's not you (essay about what's wrong with note taking)](https://www.kevinslin.com/notes/e1455752-b052-4212-ac6e-cc054659f2bb/) ## Channels to start with We are absolutely thrilled to have you here. Below are some good channels to get started in: ![[community.discord.channels#intros:#*]] ![[community.discord.channels#questions:#*]] ![[community.discord.channels#chat:#*]] ## Onboarding ![[dendron.case-studies.onboarding]] ## Resource links - [[dendron.tutorial]] - [Dendron homepage](https://dendron.so/) - [GitHub Discussions](https://github.com/dendronhq/dendron/discussions) - [[Dendron Public Roadmap|dendron://dendron.dendron-site/dendron.roadmap]] - [[dendron.guides.workflows.amoeba]]: A typical Dendron Workflow for taking notes - Submit a feature request](https://github.com/dendronhq/dendron/issues/new?assignees=&labels=&template=feature_request.md&title= - [Submit a bug report](https://github.com/dendronhq/dendron/issues/new?assignees=&labels=&template=bug_report.md&title=) - [Dendron user documentation](https://wiki.dendron.so/) - Submit a [user docs issue](https://github.com/dendronhq/dendron-site/issues/new) - [Dendron contributor documentation](https://docs.dendron.so/) - Submit a [contributor docs issue](https://github.com/dendronhq/dendron-docs/issues/new) ## Join other Dendrologists ![[community#join-other-dendrologists,1:#*]] ##
36.938462
175
0.75177
eng_Latn
0.791935
a158b6b6dd7937ef7bf4ddeb21b4e71f292d87df
1,301
md
Markdown
_posts/2021-02-06-记一次奇妙的文件上传getshell.md
FiveAourThe/FiveAourThe.github.io
347d3441f3c6bf81d9d976aa8733abc9c44d63d9
[ "Apache-2.0" ]
null
null
null
_posts/2021-02-06-记一次奇妙的文件上传getshell.md
FiveAourThe/FiveAourThe.github.io
347d3441f3c6bf81d9d976aa8733abc9c44d63d9
[ "Apache-2.0" ]
null
null
null
_posts/2021-02-06-记一次奇妙的文件上传getshell.md
FiveAourThe/FiveAourThe.github.io
347d3441f3c6bf81d9d976aa8733abc9c44d63d9
[ "Apache-2.0" ]
1
2019-07-11T01:09:51.000Z
2019-07-11T01:09:51.000Z
--- layout: post title: 记一次奇妙的文件上传getshell subtitle: 记一次奇妙的文件上传getshell date: 2021-02-06 author: 木已成舟 header-img: img/post-bg-rwd.jpg catalog: true tags: - 渗透测试 --- ## 正文 前几天在做公司的渗透测试项目时遇到的一个小程序,我发现了一个神奇的任意文件上传导致拿到了文件服务器的权限,怎么说呢,回想起来有点佩服自己当时的小脑袋。 1. 首先打开小程序的时候,打开后通过Burp看到它服务器的地址是`https://xxxx.com/xxxx`,在数据包中夹杂着一个暂时未知的URL,URL是这样子的`https://file.xxxx.com/getMsgById?Id=`,当时看响应体是空白的,就先把这个请求发送到Burp的repeater模块中记录下,看看能不能在小程序的功能点上找到类似的Id值。 2. 尝试按照小程序提供的功能走一遍。从功能上看应该是拍卖车牌的,我提供一个车牌号,之后进入了下一步,页面提供了扫描驾驶证获取车牌的的功能。 ![20210206221806](../../../../img/20210206221806.png) 3. 于是我先上传了一张正常的图片上去,返回包返回了一个`imgId`,突发奇想就将这个`imgId`拼接到第一步的URL中,打开浏览器中打开是这样的。 ![20210206222150](../../../../img/20210206222150.png) 4. 感觉有戏,我尝试将数据包发送到Burp的repeater模块中修改文件后缀为html,并将文件内容修改为了xss代码,上传成功,且有返回新的`imgId`,将这个`imgId`拼接到第一步的URL中,打开浏览器成功触发XSS。 ![20210206222458](../../../../img/20210206222458.png) 5. 抱着试一试的心态,再将文件后缀修改为jsp,文件内容修改为了cmd马后重放,也没问题,返回了新的`imgId`,将这个`imgId`拼接到第一步的URL中,打开浏览器jsp脚本居然真的解析成功了。 ![20210206222903](../../../../img/20210206222903.png) 6. 由于仅仅是普通的渗透测试,就不能深入了,开开心心编写报告等待下班。 ## 总结 虽然响应中仅仅返回了一个`imgId`值,但也是上传成功的一种表现,程序将`imgId`与文件的物理路径通过数据库的形式存储下来,再通过`getMsgById?`这个路由去读取和执行。果然挖洞要细心,不要认为开发不会这么写程序,就不去进行尝试。现在想想电视剧里说的那些话"想要练成神功,必须废掉以前的所有武功",细品还是很有道理的。
21.683333
187
0.764028
zho_Hans
0.223523
a158d4ce3455b2d65769ec297ae2efebf90e5893
5,396
md
Markdown
CHANGELOG.md
sonrad10/while.js
b5cd8723470eb18f36fa8cc8b03b8a9126b702d2
[ "MIT" ]
null
null
null
CHANGELOG.md
sonrad10/while.js
b5cd8723470eb18f36fa8cc8b03b8a9126b702d2
[ "MIT" ]
null
null
null
CHANGELOG.md
sonrad10/while.js
b5cd8723470eb18f36fa8cc8b03b8a9126b702d2
[ "MIT" ]
null
null
null
# Changelog All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. ## [2.2.0](https://github.com/sonrad10/while.js/compare/v2.1.0...v2.2.0) (2021-10-06) ### Features * added MacroManager to simplify registering macro dependencies ([ba10d82](https://github.com/sonrad10/while.js/commit/ba10d82972523a65439bed9da7d8da5d97259475)) * added ProgramManager class to simplify performing operations on programs ([a67347a](https://github.com/sonrad10/while.js/commit/a67347a37729dda8b0055667f69b42990917f607)) * added ProgramManager support for converting a program AST back into a string ([13ba9cb](https://github.com/sonrad10/while.js/commit/13ba9cb690b02bd008f87536377ecd8e7af4a12d)) * added support for converting from a programs-as-data object to a program AST ([e54f8e0](https://github.com/sonrad10/while.js/commit/e54f8e0fe73908583dfb4361bf658d403e15407c)) * added support for converting programs to programs-as-data format ([c82860f](https://github.com/sonrad10/while.js/commit/c82860f03c7efa687a60d2668441e869973590e1)) * added support for displaying programs-as-data objects as strings ([e3dedaa](https://github.com/sonrad10/while.js/commit/e3dedaa213011d2eecac1cc9cfd0aad32fad1997)) * added support for program-as-data tokens in extended WHILE ([e5a5501](https://github.com/sonrad10/while.js/commit/e5a55015d38e9c897e952a70d879e6e3372d81c9)) * added support for replacing macro calls with code ([1008b7e](https://github.com/sonrad10/while.js/commit/1008b7e450cce3437babec4d133243d23803c29c)) * added support for running macros in the interpreter ([de3ddd4](https://github.com/sonrad10/while.js/commit/de3ddd43aa7993c080e899d1f7de819d28a21d83)) * allowed ProgramManager to detect the macros referenced in a program ([1ec2ed9](https://github.com/sonrad10/while.js/commit/1ec2ed9911acef278c56dae9dceea0c618f9e7f0)) ### Bug Fixes * fixed issue where replacing macros would sometimes produce incorrect programs ([3107d87](https://github.com/sonrad10/while.js/commit/3107d872b577184de6624ae3c27bbd3046f51db0)) * removed unnecessary position markers from the AST ([641142a](https://github.com/sonrad10/while.js/commit/641142a5ef20461a1c5e338d64915897dfc1204e)) * stopped incorrectly flagging equality check inside parenthesis as an error ([43610db](https://github.com/sonrad10/while.js/commit/43610dbd74e91bf093e9ea2bc05c274ee7cb7cb7)) ## [2.1.0](https://github.com/sonrad10/while.js/compare/v2.0.0...v2.1.0) (2021-07-04) ### Features * added end positions to linter errors ([7c7af4f](https://github.com/sonrad10/while.js/commit/7c7af4ff6612039ab73cfc0d0692f8d489c1fea1)) ## [2.0.0](https://github.com/sonrad10/while.js/compare/v1.2.4...v2.0.0) (2021-07-03) ### ⚠ BREAKING CHANGES * Made lexer also return a list of error messages * Replaced lexer and parser global exports with a linter function ### Features * added a function that performs lexing and parsing in one step ([5af9c4c](https://github.com/sonrad10/while.js/commit/5af9c4c773147beb7793b5721779b630844045a0)) * added interpreter support for extended WHILE ([e7eeb3c](https://github.com/sonrad10/while.js/commit/e7eeb3cb783b3bf9ad8728db1d4fb5919d2edf0a)) * wrote README file ([4a39bc4](https://github.com/sonrad10/while.js/commit/4a39bc46aa064b50d485c6bed24d9d9bbb414049)) ### Bug Fixes * type errors not showing for the program name/io variables ([858ee5f](https://github.com/sonrad10/while.js/commit/858ee5f26016f3d2c7e16212cbf5bbd5856e9fec)) ### [1.2.4](https://github.com/sonrad10/while.js/compare/v1.2.3...v1.2.4) (2021-06-16) ### Bug Fixes * moved cli to its own file to prevent issues when installed as a module ([106e3b4](https://github.com/sonrad10/while.js/commit/106e3b4bc2875e464d613a933964f702ef8d4a8b)) ### [1.2.3](https://github.com/sonrad10/while.js/compare/v1.2.2...v1.2.3) (2021-06-16) ### Bug Fixes * added missing commander dependency ([7f8eb21](https://github.com/sonrad10/while.js/commit/7f8eb21797cb4406e66680ada4c1347241522544)) ### [1.2.2](https://github.com/sonrad10/while.js/compare/v1.2.1...v1.2.2) (2021-06-16) ### Bug Fixes * stopped missing tslib error when trying to run from the command line ([8e4b85c](https://github.com/sonrad10/while.js/commit/8e4b85ca3fd957c8eaf394bbd135e580d9f9055e)) ### [1.2.1](https://github.com/sonrad10/while.js/compare/v1.2.0...v1.2.1) (2021-06-16) ### Bug Fixes * updated dependencies ([944de72](https://github.com/sonrad10/while.js/commit/944de72d2d20b2685be3a4312f740b1567d2c2da)) ## [1.2.0](https://github.com/sonrad10/while.js/compare/v1.1.0...v1.2.0) (2021-06-16) ### Features * added a command line interface for executing a program with the interpreter ([350d805](https://github.com/sonrad10/while.js/commit/350d805eb9cdb40076f465a70fff30ab323c8d2d)) * added an interpreter for pure WHILE ([08435a8](https://github.com/sonrad10/while.js/commit/08435a83d8616e98348c55752e28c1738b7f8b37)) ## 1.1.0 (2021-06-11) ### Features * improved linter messages ([0b7459c](https://github.com/sonrad10/while.js/commit/0b7459cea976764f8877f6bcbeb3c007a7b98afc) through [b101711](https://github.com/sonrad10/while.js/commit/b10171117918f184227ee4f0681fd77d5f33343c)) ### Bug Fixes * added missing package-lock.json file ([28c71d5](https://github.com/sonrad10/while.js/commit/28c71d5f4e13cc82b9b66626e93232c9d308477a))
53.425743
228
0.787435
eng_Latn
0.432165
a1591ec54f2e0a5c516101cdaac1572e63960c8b
837
md
Markdown
wiki-docs/v1/EnemyHistoricalStatsPages/R1S4StrikeHiveshipOverlordUltra0.md
kramrm/BungieNetPlatform
a96f233d133d7d61c0c7a8d80fbb054b33a2343e
[ "MIT" ]
107
2016-03-04T16:07:52.000Z
2022-02-20T04:27:08.000Z
wiki-docs/v1/EnemyHistoricalStatsPages/R1S4StrikeHiveshipOverlordUltra0.md
kramrm/BungieNetPlatform
a96f233d133d7d61c0c7a8d80fbb054b33a2343e
[ "MIT" ]
20
2016-07-11T09:03:58.000Z
2021-11-04T17:05:37.000Z
wiki-docs/v1/EnemyHistoricalStatsPages/R1S4StrikeHiveshipOverlordUltra0.md
kramrm/BungieNetPlatform
a96f233d133d7d61c0c7a8d80fbb054b33a2343e
[ "MIT" ]
18
2016-03-12T18:58:40.000Z
2021-11-04T23:03:05.000Z
<span class="wiki-builder">This page was generated with Wiki Builder. Do not change the format!</span> ## Valus Tlu'urn ### Info * **enemyId:** R1S4StrikeHiveshipOverlordUltra0 * **enemyName:** ###R1S4StrikeHiveshipOverlordUltra0### * **cardId:** 700640 * **enemyTier:** Ultra * **raceName:** Cabal * **raceClass:** CabalUltraCenturionA * **enemyWeapon:** ProjectionRifle * **enemyShield:** * **activityType:** Strike * **activity:** StrikeHiveshipOverlord * **destination:** Hiveship ### Overrides key | value --- | ----- enemyName | Valus Tlu'urn ### Stats statType | statId -------- | ------ assistsAgainst | assistsAgainstR1S4StrikeHiveshipOverlordUltra0 precisionKillsOf | precisionKillOfR1S4StrikeHiveshipOverlordUltra0 deathsFrom | deathsFromR1S4StrikeHiveshipOverlordUltra0 killsOf | killsOfR1S4StrikeHiveshipOverlordUltra0
27.9
102
0.744325
yue_Hant
0.371731
a159bdb98882cd4703570caeb5183e6e92d4612e
11,495
md
Markdown
articles/hpc-cache/cache-usage-models.md
R0bes/azure-docs.de-de
24540ed5abf9dd081738288512d1525093dd2938
[ "CC-BY-4.0", "MIT" ]
63
2017-08-28T07:43:47.000Z
2022-02-24T03:04:04.000Z
articles/hpc-cache/cache-usage-models.md
R0bes/azure-docs.de-de
24540ed5abf9dd081738288512d1525093dd2938
[ "CC-BY-4.0", "MIT" ]
704
2017-08-04T09:45:07.000Z
2021-12-03T05:49:08.000Z
articles/hpc-cache/cache-usage-models.md
R0bes/azure-docs.de-de
24540ed5abf9dd081738288512d1525093dd2938
[ "CC-BY-4.0", "MIT" ]
178
2017-07-05T10:56:47.000Z
2022-03-18T12:25:19.000Z
--- title: Azure HPC Cache-Verwendungsmodelle description: Beschreibt die verschiedenen Cache-Verwendungsmodelle und wie Sie zwischen ihnen wählen können, um Einstellungen für schreibgeschütztes oder Lese/Schreib-Zwischenspeichern festzulegen und andere Einstellungen für das Zwischenspeichern zu steuern author: ekpgh ms.service: hpc-cache ms.topic: how-to ms.date: 07/12/2021 ms.author: v-erkel ms.openlocfilehash: b623bd074b327d8139082d3060a6cdb120c8acbb ms.sourcegitcommit: 8b7d16fefcf3d024a72119b233733cb3e962d6d9 ms.translationtype: HT ms.contentlocale: de-DE ms.lasthandoff: 07/16/2021 ms.locfileid: "114294899" --- <!-- filename is referenced from GUI in aka.ms/hpc-cache-usagemodel --> # <a name="understand-cache-usage-models"></a>Grundlegendes zu Cache-Verwendungsmodellen Mit Cache-Verwendungsmodellen können Sie anpassen, wie Ihr Azure HPC Cache Dateien speichert, um Ihren Workflow zu beschleunigen. ## <a name="basic-file-caching-concepts"></a>Grundlegende Konzepte zum Zwischenspeichern von Dateien Durch das Zwischenspeichern von Dateien werden Clientanforderungen von Azure HPC Cache beschleunigt. Dabei werden die folgenden grundlegenden Methoden verwendet: * **Zwischenspeichern von Lesevorgängen**: Azure HPC Cache speichert eine Kopie von Dateien, die Clients vom Speichersystem anfordern. Wenn ein Client das nächste Mal dieselbe Datei anfordert, kann HPC Cache die Version im Cache bereitstellen, statt die Datei erneut aus dem Back-End-Speichersystem abrufen zu müssen. * **Zwischenspeichern von Schreibvorgängen**: Optional kann Azure HPC Cache eine Kopie der von den Clientcomputern gesendeten geänderten Dateien speichern. Wenn mehrere Clients in einem kurzen Zeitraum Änderungen an derselben Datei vornehmen, können alle Änderungen im Cache erfasst werden, sodass nicht jede Änderung einzeln in das Back-End-Speichersystem geschrieben werden muss. Nach einer festgelegten Zeitspanne ohne Änderungen verschiebt der Cache die Datei in das langfristige Speichersystem. Wenn das Zwischenspeichern von Schreibvorgängen deaktiviert ist, speichert der Cache die geänderte Datei nicht, sondern schreibt sie sofort in das Back-End-Speichersystem. * **Zurückschreibverzögerung**: Für einen Cache mit aktiviertem Zwischenspeichern von Schreibvorgängen ist die Zurückschreibverzögerung die Zeitspanne, die der Cache auf zusätzliche Dateiänderungen wartet, bevor die Datei in das Back-End-Speichersystem kopiert wird. * **Back-End-Überprüfung**: Die Einstellung für die Back-End-Überprüfung bestimmt, wie häufig der Cache seine lokale Kopie einer Datei mit der Remoteversion auf dem Back-End-Speichersystem vergleicht. Wenn die Back-End-Kopie aktueller als die zwischengespeicherte Kopie ist, ruft der Cache die Remotekopie ab und speichert sie für zukünftige Anforderungen. Die Einstellung der Back-End-Überprüfung gibt an, wann der Cache Dateien *automatisch* mit Quelldateien im Remotespeicher vergleicht. Sie können jedoch erzwingen, dass Azure HPC Cache Dateien vergleicht, indem Sie einen Verzeichnisvorgang ausführen, der eine readdirplus-Anforderung enthält. Readdirplus ist eine standardmäßige NFS-API (erweiterter Lesevorgang), die Verzeichnismetadaten zurückgibt. Durch diesen Vorgang wird erzwungen, dass der Cache Dateien vergleicht und aktualisiert. Die in Azure HPC Cache integrierten Verwendungsmodelle haben unterschiedliche Werte für diese Einstellungen, sodass Sie die optimale Kombination für Ihre Situation auswählen können. ## <a name="choose-the-right-usage-model-for-your-workflow"></a>Auswahl des richtigen Verwendungsmodells für Ihren Workflow Sie müssen für jedes von Ihnen verwendete NFS-Protokollspeicherziel ein Nutzungsmodell auswählen. Azure Blob Storage-Ziele verfügen über ein integriertes Verwendungsmodell, das nicht angepasst werden kann. Mit den HPC Cache-Nutzungsmodellen können Sie zwischen kurzen Reaktionszeiten und dem Risiko veralteter Daten abwägen. Wenn Sie die Geschwindigkeit von Dateilesevorgängen optimieren möchten, spielt es für Sie möglicherweise keine Rolle, ob die Dateien im Cache mit den Back-End-Dateien abgeglichen werden. Wenn Sie jedoch sicherstellen möchten, dass Ihre Dateien immer auf dem neuesten Stand sind und den Dateien im Remotespeicher entsprechen, wählen Sie ein Modell aus, bei dem regelmäßig eine Überprüfung durchgeführt wird. Die Optionen für das Verwendungsmodell sind: * **Leseintensive, unregelmäßige Schreibvorgänge**: Verwenden Sie diese Option, wenn Sie den Lesezugriff auf Dateien beschleunigen möchten, die statisch sind oder selten geändert werden. Mit dieser Option werden Clientlesevorgänge zwischengespeichert, jedoch keine Schreibvorgänge. Schreibvorgänge werden sofort an den Back-End-Speicher weitergeleitet. Im Cache gespeicherte Dateien werden nicht automatisch mit den Dateien auf dem NFS-Speichervolume verglichen. (Lesen Sie die obige Beschreibung der Back-End-Überprüfung, um zu erfahren, wie Sie diese manuell vergleichen.) Verwenden Sie diese Option nicht, wenn das Risiko besteht, dass eine Datei direkt im Speichersystem geändert werden kann, ohne sie zuvor in den Cache zu schreiben. In diesem Fall ist die zwischengespeicherte Version der Datei nicht mit der Back-End-Datei synchron. * **Mehr als 15 % Schreibvorgänge**: Diese Option beschleunigt die Lese-und Schreibleistung. Wenn diese Option verwendet wird, müssen alle Clients über den Azure HPC-Cache auf Dateien zugreifen, anstatt den Back-End-Speicher direkt einzubinden. Die zwischengespeicherten Dateien enthalten aktuelle Änderungen, die noch nicht in das Back-End kopiert wurden. Bei diesem Nutzungsmodell werden Dateien im Cache nur alle acht Stunden mit den Dateien im Back-End-Speicher verglichen. Es wird davon ausgegangen, dass die zwischengespeicherte Version der Datei aktueller ist. Eine geänderte Datei im Cache wird in das Back-End-Speichersystem geschrieben, nachdem sie sich eine Stunde lang ohne zusätzliche Änderungen im Cache befunden hat. * **Clients umgehen den Cache und schreiben in das NFS-Ziel**: Wählen Sie diese Option aus, wenn Clients in Ihrem Workflow Daten direkt in das Speichersystem schreiben, ohne zuvor in den Cache zu schreiben, oder wenn Sie die Datenkonsistenz verbessern möchten. Dateien, die von Clients angefordert werden, werden zwischengespeichert (Lesevorgänge), aber alle Änderungen an diesen Dateien durch den Client (Schreibvorgänge) werden nicht zwischengespeichert. Sie werden direkt an das Back-End-Speichersystem weitergeleitet. Bei diesem Nutzungsmodell werden die Dateien im Cache häufig anhand der Back-End-Versionen auf Updates überprüft – alle 30 Sekunden. Bei dieser Überprüfung können Dateien außerhalb des Caches geändert werden, während die Datenkonsistenz gewahrt bleibt. > [!TIP] > Diese ersten drei grundlegenden Verwendungsmodelle können verwendet werden, um die Mehrzahl der Azure HPC Cache-Workflows zu verarbeiten. Die nächsten Optionen gelten für weniger häufige Szenarien. * **Mehr als 15 % Schreibvorgänge, der Sicherungsserver wird alle 30 Sekunden auf Änderungen überprüft** und **Mehr als 15 % Schreibvorgänge, der Sicherungsserver wird alle 60 Sekunden auf Änderungen überprüft**: Diese Optionen sind für Workflows konzipiert, in denen Sie sowohl Lese- als auch Schreibvorgänge beschleunigen möchten, aber es besteht die Möglichkeit, dass ein anderer Benutzer direkt in das Back-End-Speichersystem schreibt. Wenn z. B. mehrere Gruppen von Clients von unterschiedlichen Standorten aus an denselben Dateien arbeiten, sind diese Verwendungsmodelle möglicherweise sinnvoll, um einen Ausgleich zwischen Bedarf an schnellem Dateizugriff und geringer Toleranz für veraltete Inhalte aus der Quelle zu schaffen. * **Mehr als 15 % Schreibvorgänge, Zurückschreiben auf den Server alle 30 Sekunden**: Diese Option ist für das Szenario konzipiert, in dem mehrere Clients dieselben Dateien aktiv ändern, oder wenn einige Clients direkt auf den Back-End-Speicher zugreifen, anstatt den Cache einzubinden. Die häufigen Back-End-Schreibvorgänge wirken sich auf die Cacheleistung aus. Daher sollten Sie das Verwendungsmodell **Größer als 15 % der Schreibvorgänge** verwenden, wenn ein niedriges Risiko für einen Dateikonflikt vorliegt, wenn Sie z. B. wissen, dass verschiedene Clients in verschiedenen Bereichen derselben Dateigruppe arbeiten. * **Viele Lesezugriffe, Überprüfung des Sicherungsservers alle 3 Stunden**: Bei dieser Option werden schnelle Lesevorgänge auf Clientseite priorisiert. Außerdem werden zwischengespeicherte Dateien regelmäßig aus dem Back-End-Speichersystem aktualisiert, anders als im Verwendungsmodell **Umfangreiche, seltene Schreibvorgänge lesen**. In dieser Tabelle werden die Unterschiede im Nutzungsmodell zusammengefasst: [!INCLUDE [usage-models-table.md](includes/usage-models-table.md)] Wenn Sie Fragen zum optimalen Verwendungsmodell für Ihren Azure HPC Cache-Workflow haben, wenden Sie sich an Ihren Azure-Vertreter, oder öffnen Sie eine Supportanfrage, um Hilfe zu erhalten. ## <a name="change-usage-models"></a>Ändern von Nutzungsmodellen Sie können Nutzungsmodelle ändern, indem Sie das Speicherziel bearbeiten. Einige Änderungen sind jedoch nicht zulässig, da dadurch ein geringes Risiko von Dateiversionskonflikten entsteht. Eine Änderung **in das** oder **aus dem** Modell **Viele Lesevorgänge, seltene Schreibvorgänge** ist nicht möglich. Um ein Speicherziel in dieses Nutzungsmodell zu ändern oder um es von diesem in ein anderes Nutzungsmodell zu ändern, müssen Sie das ursprüngliche Speicherziel löschen und ein neues erstellen. Diese Einschränkung gilt auch für das Nutzungsmodell **Viele Lesezugriffe, Überprüfung des Sicherungsservers alle 3 Stunden**, das nicht so häufig verwendet wird. Außerdem können Sie zwischen den beiden Nutzungsmodellen des Typs „Viele Lesezugriff“ umschalten, aber nicht auf einen anderen Nutzungsmodellstil umsteigen. Diese Einschränkung ist aufgrund der Art und Weise erforderlich, in der verschiedene Nutzungsmodelle Anforderungen des Netzwerksperrungs-Managers (Network Lock Manager, NLM) verarbeiten. Die Azure HPC Cache-Instanz befindet sich zwischen Clients und Back-End-Speichersystem. In der Regel übergibt der Cache NLM-Anforderungen an das Back-End-Speichersystem, aber in einigen Fällen bestätigt der Cache selbst die NLM-Anforderung und gibt einen Wert an den Client zurück. In Azure HPC Cache ist dies nur bei Verwendung des Nutzungsmodells **Viele Lesevorgänge, seltene Schreibvorgänge** oder **Viele Lesezugriffe, Überprüfung des Sicherungsservers alle 3 Stunden** der Fall (oder mit einem standardmäßigen Blobspeicherziel, für das keine konfigurierbaren Nutzungsmodelle verfügbar sind). Wenn Sie zwischen **Viele Lesevorgänge, seltene Schreibvorgänge** und einem anderen Nutzungsmodell wechseln, gibt es keine Möglichkeit, den aktuellen NLM-Status vom Cache zum Speichersystem zu übertragen oder umgekehrt. Daher ist der Sperrstatus des Clients ungenau. > [!NOTE] > ADLS-NFS bietet keine Unterstützung für NLM. Sie müssen NLM deaktivieren, wenn Clients den Cluster einbinden, um auf ein ADLS-NFS-Speicherziel zuzugreifen. > > Verwenden Sie im Befehl ``mount`` die Option ``-o nolock``. Konsultieren Sie die Dokumentation zur Einbindung Ihres Clientbetriebssystems (man 5 nfs), um mehr über das genaue Verhalten der Option ``nolock`` für Ihre Clients zu erfahren. ## <a name="next-steps"></a>Nächste Schritte * [Hinzufügen von Speicherzielen](hpc-cache-add-storage.md) zu Ihrer Azure HPC Cache-Instanz.
111.601942
784
0.825489
deu_Latn
0.999257
a159f6c6f8989005000ad0c4c7f4f15b08fafc70
441
md
Markdown
_posts/2013-04-08-python-cookbook-2nd-edition.md
zqfan/zqfan.github.com
dc0b5ef98fed4cfc91f0cd437d36ee3868c7a7ca
[ "MIT" ]
null
null
null
_posts/2013-04-08-python-cookbook-2nd-edition.md
zqfan/zqfan.github.com
dc0b5ef98fed4cfc91f0cd437d36ee3868c7a7ca
[ "MIT" ]
24
2020-01-27T08:34:21.000Z
2021-11-12T02:16:15.000Z
_posts/2013-04-08-python-cookbook-2nd-edition.md
zqfan/zqfan.github.com
dc0b5ef98fed4cfc91f0cd437d36ee3868c7a7ca
[ "MIT" ]
1
2015-02-06T07:56:11.000Z
2015-02-06T07:56:11.000Z
--- layout: post title: "Python Cookbook 2nd Edition" description: "" category: book tags: [python, python cookbook] --- # License: [(CC 3.0) BY-NC-SA](http://creativecommons.org/licenses/by-nc-sa/3.0/) ## cha01 text ### char vs number * ord, it accepts unichr * chr * unichr ### string format * s.ljust(len, fill) * s.rjust(len, fill) * s.center(len,fill) ### string concate join is better than operator + or += ### TODO: translate
14.7
79
0.664399
eng_Latn
0.6228
a15a0063a061716e0a7d87ed8e6dddac93b86771
339
md
Markdown
responders/README.md
gdey/chi-render
63a35ddf6757fd2c2feb5aed73247b3dab57e1bb
[ "MIT" ]
null
null
null
responders/README.md
gdey/chi-render
63a35ddf6757fd2c2feb5aed73247b3dab57e1bb
[ "MIT" ]
null
null
null
responders/README.md
gdey/chi-render
63a35ddf6757fd2c2feb5aed73247b3dab57e1bb
[ "MIT" ]
null
null
null
# Responders This package provides various responders for transforming objects in to responses to be sent to the client. The following Responders are provided out of the box. * [JSON](json.go) * [XML](xml.go) * [HTML](html.go) * [PlainText](plain_text.go) To Register a responder use the `SetResponder` method on a controller.
22.6
57
0.737463
eng_Latn
0.990527
a15a056337a6b25bf7e7c7c3be06bc184911486b
1,353
md
Markdown
README.md
hlz2516/PC-Loudspeaker
dfbef6e69a1d7e014e15ef352c246847fbfb5387
[ "Apache-2.0" ]
null
null
null
README.md
hlz2516/PC-Loudspeaker
dfbef6e69a1d7e014e15ef352c246847fbfb5387
[ "Apache-2.0" ]
null
null
null
README.md
hlz2516/PC-Loudspeaker
dfbef6e69a1d7e014e15ef352c246847fbfb5387
[ "Apache-2.0" ]
null
null
null
# PC-Loudspeaker 一个用fmod-low-api开发的电脑扩音器/侦听器 # 使用 打开sample\RecordTest\Debug\RecordTest.exe,即可开启侦听效果,目前延迟20ms左右。 ps:该工具copy自FMOD的sample,本人只是修改了下参数重新编译了下,对其中的原理不是很懂,欢迎高手来一起修改源码来降低延迟。 我就是个SB,目前看到的降低延迟的解决方案就是使用voicemeeter,配合live prefessor来达到低延迟的效果,其实底层应该是应用了虚拟的asio驱动。如果是这样的话,写驱动明显不是我能做的事情,所以这个项目暂时不继续了。 ===================2020/11/19================= 想了下,软件上行不通,那就从硬件入手,硬件上应该就没有所谓的延时问题了,就算有应该也好解决。 其实这才是我兴趣想做的东西,有了这个可以大大降低bboxer玩麦克风的成本(主要是音响)。 ======================================= ===================2021/5/7=================== 没想到吧,我还在坚持项目,今天来一更。 本人模电已经学到了基本放大电路,虽然有些细节还不是很清楚,但这个项目的大体方向有了,首先,不需要用到单片机,直接搭电路。 到时候要买一款动圈式话筒(最便宜并且保证能用),放大电路把话筒输入产生的交流信号放大,输出电路上接一个扩音器。目前不知道怎么去测量话筒输入能产生的交流范围,也不知道话筒的额定电压和功率是多少,还有扩音器的额定电压和工作电流也是不知道的,这些到时候都要找方法测量。 而我现在能做的就是学好放大电路,比如说给我一个话筒和一个扩音器,知道他们的额定电压和工作电流,那么要使得他们工作,放大电路该如何设计,这是我现在重点考虑的。 所以,敬请期待吧XDM! ====================================== =================2021/12/03=================== 本项目已放弃,但我并不打算删库,毕竟有尝试过,失败是很正常的事情。总结一下失败的原因 1. 没有给自己定一个ddl,也没有一个对这个项目进度有一个清晰规划,只有一个大体的,模糊的方向,而在顺着这个方向的过程中,我发现已经逐渐偏离方向了,如果一开始就发现在PC上无法实现几乎无延迟的侦听效果,可能就没有这个项目了,也就不会做这么多无用功了 2. 嵌入式的东西需要的前置知识太多,学成的时间和精力成本太大,前期学习难度大,关键是当时确实是抱着试一试的心态来搞单片机,去学模拟电路,电路原理,结果卡住又不知道该如何解决,就很迷茫,迷茫了一阵子后遂放弃 如今我已经基本选定了移动端的方向,某种角度上看,其实移动端不过是集成度更高的单片机,开发人员也是以APP为主。我不知道会不会学着学着又没有公司要我,也不知道自己能否在这个领域找到自我实现的价值,不过不管那么多了,just do it,大不了就换行呗,人生而已,冲就完事了。
37.583333
136
0.748707
yue_Hant
0.347771
a15aad438db55640cf374907b5f6c54a9dfdb440
1,547
md
Markdown
week12_rl/README.md
s0lucien/Practical_DL
97b7b44dc3bd80f3a40fb98ed29ce2e414c149b6
[ "MIT" ]
1
2019-04-03T14:00:14.000Z
2019-04-03T14:00:14.000Z
week12_rl/README.md
s0lucien/Practical_DL
97b7b44dc3bd80f3a40fb98ed29ce2e414c149b6
[ "MIT" ]
8
2019-05-17T09:49:41.000Z
2021-05-26T12:03:11.000Z
week12_rl/README.md
s0lucien/Practical_DL
97b7b44dc3bd80f3a40fb98ed29ce2e414c149b6
[ "MIT" ]
3
2018-09-21T13:52:19.000Z
2018-09-24T11:30:15.000Z
## Materials * [Slides](https://yadi.sk/d/GG-GvN-13UhzFw) * Video lecture by D. Silver - https://www.youtube.com/watch?v=KHZVXao4qXs * Our [lecture](https://yadi.sk/i/I3M09HKQ3GKBiP), [seminar](https://yadi.sk/i/8f9NX_E73GKBkT) * Alternative lecture by J. Schulman part 1 - https://www.youtube.com/watch?v=BB-BhTn6DCM * Alternative lecture by J. Schulman part 2 - https://www.youtube.com/watch?v=Wnl-Qh2UHGg ## More materials * A full-term course on reinforcement learning - [practical_rl](https://github.com/yandexdataschool/practical_rl) * Actually proving the policy gradient for discounted rewards - [article](https://papers.nips.cc/paper/1713-policy-gradient-methods-for-reinforcement-learning-with-function-approximation.pdf) * On variance of policy gradient and optimal baselines: [article](https://papers.nips.cc/paper/4264-analysis-and-improvement-of-policy-gradient-estimation.pdf), another [article](https://arxiv.org/pdf/1301.2315.pdf) * Generalized Advantage Estimation - a way you can speed up training for homework_*.ipynb - [article](https://arxiv.org/abs/1506.02438) * Generalizing log-derivative trick - [url](http://blog.shakirm.com/2015/11/machine-learning-trick-of-the-day-5-log-derivative-trick/) * Combining policy gradient and q-learning - [arxiv](https://arxiv.org/abs/1611.01626) * Bayesian perspective on why reparameterization & logderivative tricks matter (Vetrov's take) - [pdf](https://www.sdsj.ru/slides/Vetrov.pdf) * Adversarial review of policy gradient - [blog](http://www.argmin.net/2018/02/20/reinforce/)
73.666667
215
0.766645
eng_Latn
0.348009
a15af856c19dad1d38a0c638761ddc073d29abe4
1,039
md
Markdown
more-examples/10-constants/exercises/README.md
kiran-blockchain/comcast-india-go
a83d96c34fbbe25dae43108b566e759dc17d7dcf
[ "MIT" ]
1
2021-12-24T05:05:11.000Z
2021-12-24T05:05:11.000Z
more-examples/10-constants/exercises/README.md
kiran-blockchain/comcast-india-go
a83d96c34fbbe25dae43108b566e759dc17d7dcf
[ "MIT" ]
4
2022-02-15T22:17:28.000Z
2022-03-11T22:42:33.000Z
GolangBasics/learngo/10-constants/exercises/README.md
ErdemOzgen/Go-Learning-Archive
6ea799e47f4f2c07aee495a5cfcdce7a47b49656
[ "MIT" ]
1
2022-02-02T07:27:32.000Z
2022-02-02T07:27:32.000Z
# Constants 1. **[Minutes in Weeks](https://github.com/inancgumus/learngo/tree/master/10-constants/exercises/01-minutes-in-weeks)** 2. **[Remove the Magic](https://github.com/inancgumus/learngo/tree/master/10-constants/exercises/02-remove-the-magic)** 3. **[Constant Length](https://github.com/inancgumus/learngo/tree/master/10-constants/exercises/03-constant-length)** 4. **[TAU](https://github.com/inancgumus/learngo/tree/master/10-constants/exercises/04-tau)** 5. **[Area](https://github.com/inancgumus/learngo/tree/master/10-constants/exercises/05-area)** 6. **[No Conversions Allowed](https://github.com/inancgumus/learngo/tree/master/10-constants/exercises/06-no-conversions-allowed)** 7. **[Iota Months](https://github.com/inancgumus/learngo/tree/master/10-constants/exercises/07-iota-months)** 8. **[Iota Months #2](https://github.com/inancgumus/learngo/tree/master/10-constants/exercises/08-iota-months-2)** 9. **[Iota Seasons](https://github.com/inancgumus/learngo/tree/master/10-constants/exercises/09-iota-seasons)**
49.47619
131
0.757459
yue_Hant
0.088426
a15b3725dea36e37b2b01445f46123a9a0fea8f9
565
md
Markdown
x11-misc/lightdm-gtk-greeter.md
filakhtov/gentoo-use-docs
4db20ef1693080450ea7acf533e96d029f252f9d
[ "Unlicense" ]
1
2019-05-12T13:36:30.000Z
2019-05-12T13:36:30.000Z
x11-misc/lightdm-gtk-greeter.md
filakhtov/gentoo-use-docs
4db20ef1693080450ea7acf533e96d029f252f9d
[ "Unlicense" ]
1
2018-06-13T02:50:47.000Z
2018-06-13T02:50:47.000Z
x11-misc/lightdm-gtk-greeter.md
filakhtov/gentoo-use-docs
4db20ef1693080450ea7acf533e96d029f252f9d
[ "Unlicense" ]
2
2018-06-11T21:27:10.000Z
2020-05-05T14:07:42.000Z
# x11-misc/lightdm-gtk-greeter ### ayatana Pass the `--enable-libindicator` option to the configure script. Enable support for the Ayatana Indicators via the framework developed by the Canonical for the Ubuntu Unity desktop environment to display supported application indicators in the panel indicator area of the LightDM. This flag should be disabled as Ubuntu abandoned Unity and switched to the GNOME desktop environment. ### branding Download and install Gentoo-branded greeter background and patch a config file to use it. It is safe to disable the flag.
47.083333
280
0.80708
eng_Latn
0.9974
a15c114efc502237fc71301adb5e6f2418b2bcfd
5,065
md
Markdown
docs/web-ui.md
kamalbanga/spark
598fcbe5ed353e3e432d5d32f656527806c7c612
[ "Apache-2.0" ]
null
null
null
docs/web-ui.md
kamalbanga/spark
598fcbe5ed353e3e432d5d32f656527806c7c612
[ "Apache-2.0" ]
null
null
null
docs/web-ui.md
kamalbanga/spark
598fcbe5ed353e3e432d5d32f656527806c7c612
[ "Apache-2.0" ]
null
null
null
--- layout: global title: Web UI description: Web UI guide for Spark SPARK_VERSION_SHORT license: | Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --- Apache Spark provides a suite of web user interfaces (UIs) that you can use to monitor the status and resource consumption of your Spark cluster. **Table of Contents** * This will become a table of contents (this text will be scraped). {:toc} ## Jobs Tab The Jobs tab displays a summary page of all jobs in the Spark application and a details page for each job. The summary page shows high-level information, such as the status, duration, and progress of all jobs and the overall event timeline. When you click on a job on the summary page, you see the details page for that job. The details page further shows the event timeline, DAG visualization, and all stages of the job. ## Stages Tab The Stages tab displays a summary page that shows the current state of all stages of all jobs in the Spark application, and, when you click on a stage, a details page for that stage. The details page shows the event timeline, DAG visualization, and all tasks for the stage. ## Storage Tab The Storage tab displays the persisted RDDs and DataFrames, if any, in the application. The summary page shows the storage levels, sizes and partitions of all RDDs, and the details page shows the sizes and using executors for all partitions in an RDD or DataFrame. ## Environment Tab The Environment tab displays the values for the different environment and configuration variables, including JVM, Spark, and system properties. ## Executors Tab The Executors tab displays summary information about the executors that were created for the application, including memory and disk usage and task and shuffle information. The Storage Memory column shows the amount of memory used and reserved for caching data. ## SQL Tab If the application executes Spark SQL queries, the SQL tab displays information, such as the duration, jobs, and physical and logical plans for the queries. Here we include a basic example to illustrate this tab: {% highlight scala %} scala> val df = Seq((1, "andy"), (2, "bob"), (2, "andy")).toDF("count", "name") df: org.apache.spark.sql.DataFrame = [count: int, name: string] scala> df.count res0: Long = 3 scala> df.createGlobalTempView("df") scala> spark.sql("select name,sum(count) from global_temp.df group by name").show +----+----------+ |name|sum(count)| +----+----------+ |andy| 3| | bob| 2| +----+----------+ {% endhighlight %} <p style="text-align: center;"> <img src="img/webui-sql-tab.png" title="SQL tab" alt="SQL tab" width="80%" /> <!-- Images are downsized intentionally to improve quality on retina displays --> </p> Now the above three dataframe/SQL operators are shown in the list. If we click the 'show at \<console\>: 24' link of the last query, we will see the DAG of the job. <p style="text-align: center;"> <img src="img/webui-sql-dag.png" title="SQL DAG" alt="SQL DAG" width="50%" /> <!-- Images are downsized intentionally to improve quality on retina displays --> </p> We can see that details information of each stage. The first block 'WholeStageCodegen' compile multiple operator ('LocalTableScan' and 'HashAggregate') together into a single Java function to improve performance, and metrics like number of rows and spill size are listed in the block. The second block 'Exchange' shows the metrics on the shuffle exchange, including number of written shuffle records, total data size, etc. <p style="text-align: center;"> <img src="img/webui-sql-plan.png" title="logical plans and the physical plan" alt="logical plans and the physical plan" width="80%" /> <!-- Images are downsized intentionally to improve quality on retina displays --> </p> Clicking the 'Details' link on the bottom displays the logical plans and the physical plan, which illustrate how Spark parses, analyzes, optimizes and performs the query. ## Streaming Tab The web UI includes a Streaming tab if the application uses Spark streaming. This tab displays scheduling delay and processing time for each micro-batch in the data stream, which can be useful for troubleshooting the streaming application.
42.208333
102
0.73465
eng_Latn
0.995345
a15c92eedbcaac6ec928d20b684b66941669c344
1,843
md
Markdown
services/IoT/nl/ja/reference/standards_and_requirements.md
Ranjanasingh9/docs
45286f485cd18ff628e697ddc5091f396bfdc46b
[ "Apache-2.0" ]
null
null
null
services/IoT/nl/ja/reference/standards_and_requirements.md
Ranjanasingh9/docs
45286f485cd18ff628e697ddc5091f396bfdc46b
[ "Apache-2.0" ]
null
null
null
services/IoT/nl/ja/reference/standards_and_requirements.md
Ranjanasingh9/docs
45286f485cd18ff628e697ddc5091f396bfdc46b
[ "Apache-2.0" ]
1
2020-09-24T04:33:34.000Z
2020-09-24T04:33:34.000Z
--- copyright: years: 2015, 2017 lastupdated: "2017-03-13" --- {:new_window: target="\_blank"} {:shortdesc: .shortdesc} {:screen: .screen} {:codeblock: .codeblock} {:pre: .pre} # 標準と要件 {: #standards_and_requirements} {{site.data.keyword.iot_full}} は、メッセージングやデバイス/アプリケーション開発全般に関する標準と要件を複数サポートしています。 {:shortdesc} <!-- ## Blockchain {: #blockchain} {{site.data.keyword.iot_short_notm}} supports the following versions of the Hyperledger fabric: - 0.5 ## Python {: #python} Support for MQTT over SSL requires at least Python v2.7.9 or v3.4, and OpenSSL v1.0.1. --> ## MQTT {: #mqtt} {{site.data.keyword.iot_short_notm}} では、MQTT メッセージ・プロトコルの以下のバージョンがサポートされています。 MQTT バージョン | 注 --- | --- | --- [3.1.1 ![外部リンク・アイコン](../../../icons/launch-glyph.svg "外部リンク・アイコン")](https://www.oasis-open.org/standards#mqttv3.1.1){: new_window} (推奨) | <ul><li>OASIS 規格。<li>ISO 規格 (ISO/IEC PRF 20922) <li>V3.1 に比べてプロトコルの定義が明確になったので、さまざまなクライアントとサーバーの間の相互運用性が改善されています。<li>MQTT クライアント ID (ClientId) の最大長が、V3.1 での 23 文字から 256 文字に増えました。</br>{{site.data.keyword.iot_short_notm}} サービスでは、長いクライアント ID が必要になることがよくあります。</br>長いクライアント ID は、MQTT プロトコルのバージョンにかかわりなくサポートされています。ただし、V3.1 クライアント・ライブラリーの一部では、ClientId 値の長さが検査され、23 文字の制限が適用されます。</ul> 3.1 | MQTT V3.1 は、現在最も広く使用されているプロトコル・バージョンです。 {{site.data.keyword.iot_short_notm}} は、MQTT 規格で許可されている任意のコンテンツをサポートします。MQTT は、データを認識しないので、画像、任意のエンコード方式のテキスト、暗号化データ、ほとんどすべてのタイプのバイナリー形式データを送信できます。MQTT 規格について詳しくは、以下のリソースを参照してください。 - [MQTT.org ![外部リンク・アイコン](../../../icons/launch-glyph.svg "外部リンク・アイコン")](http://mqtt.org/){: new_window} - [HiveMQ: Introducing MQTT ![外部リンク・アイコン](../../../icons/launch-glyph.svg "外部リンク・アイコン")](http://www.hivemq.com/blog/mqtt-essentials-part-1-introducing-mqtt){: new_window} {{site.data.keyword.iot_short_notm}} の特定のユース・ケースのメッセージ・ペイロードのサイズや形式に関する制限については、[MQTT メッセージング](mqtt/index.html)を参照してください。
38.395833
515
0.737927
yue_Hant
0.513444
a15cacac403390518aa2c1b8bfd9d9cb8fa140cc
270,564
md
Markdown
CHANGELOG.md
sociomantic-tsunami/nessie-ui
bfa0986ecc9dc292bed06878dc0e1d733510aada
[ "MIT" ]
7
2018-07-26T18:01:16.000Z
2020-08-26T22:06:53.000Z
CHANGELOG.md
sociomantic-tsunami/nessie-ui
bfa0986ecc9dc292bed06878dc0e1d733510aada
[ "MIT" ]
330
2018-06-28T07:58:40.000Z
2019-12-16T11:52:44.000Z
CHANGELOG.md
sociomantic-tsunami/nessie
bfa0986ecc9dc292bed06878dc0e1d733510aada
[ "MIT" ]
11
2017-09-26T10:25:44.000Z
2018-06-13T13:33:04.000Z
### Changelog All notable changes to this project will be documented in this file. Dates are displayed in UTC. Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). #### [7.0.4](https://github.com/sociomantic-tsunami/nessie-ui/compare/7.0.3...7.0.4) > 3 April 2019 - :bug: Check whether the position has changed before calling setState [`#934`](https://github.com/sociomantic-tsunami/nessie-ui/pull/934) - Issue 738 slider touch [`#756`](https://github.com/sociomantic-tsunami/nessie-ui/pull/756) - depend on lifeCycle hooks [`9d06b48`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9d06b4860080b8bda7506ad9f49e51b439b15f23) - Release 7.0.3 [`97a5bcd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/97a5bcd69ed462b75c766fd2f9494f895944466f) - removed EventListener, fix lint errors [`a60d54e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a60d54eaf7bfad4eedaedda3ab2b9a4a0b067eed) - compiled styles and sprite [`1968a52`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1968a528f1d96065c05085e4b2551f9e14af7831) - Release 7.0.4 [`ca8946e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ca8946ecb9553ac21b657d11e5f5af71632c8f77) #### [7.0.3](https://github.com/sociomantic-tsunami/nessie-ui/compare/7.0.2...7.0.3) > 21 January 2019 - upgraded loch-ness to 2.3.1 [`#754`](https://github.com/sociomantic-tsunami/nessie-ui/pull/754) - added left 0 for search [`#740`](https://github.com/sociomantic-tsunami/nessie-ui/pull/740) - Revert "added left 0 for search, updated webpack-dev-server" [`7e81ef4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7e81ef4d45dc4be19bc00b641ca459f4331e8faa) - added left 0 for search, updated webpack-dev-server [`7a11f45`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7a11f4569e2dbde964684a180608c705b58422ac) - added react-event-listener HOC, set Passive to false #738 [`21be32d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/21be32df6c81c600a0ac82cd2e5a848bae9dd74a) - Release 7.0.3 [`142c01a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/142c01aec923d6a08dd04c16b4be97d3d44948d8) - Release 7.0.2 [`2872572`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2872572ee8621a851b6af7c4520dd5ffbea087f4) - compiled styles and sprite [`30a56af`](https://github.com/sociomantic-tsunami/nessie-ui/commit/30a56afeafbaa9b47191ca0aadb775e6eb584a25) - Updated Travis Slack key [`37a4f86`](https://github.com/sociomantic-tsunami/nessie-ui/commit/37a4f86ad35ec895d264ac8f431082e54f3cfa39) #### [7.0.2](https://github.com/sociomantic-tsunami/nessie-ui/compare/7.0.1...7.0.2) > 9 January 2019 - Issue 736 slider touch bug [`#737`](https://github.com/sociomantic-tsunami/nessie-ui/pull/737) - Release 7.0.1 [`c3868db`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c3868db68aeaafed54e07dadf7caea4181154246) - Added regression test #736 [`8f2f37a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8f2f37a646fb355d0c2f1ace95e430ba1368924c) - Release 7.0.2 [`42d1fe5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/42d1fe5835ff38fc0754d82f834286a51f33f893) - compiled styles and sprite [`3d94dc8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3d94dc853dfbcaa88c0a607383e35a24789bb983) - Fixes Slider touch bug #736 [`80f4d33`](https://github.com/sociomantic-tsunami/nessie-ui/commit/80f4d33f5569b10dfce815e576f4a82395d21d75) #### [7.0.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/7.0.0...7.0.1) > 5 December 2018 - Remove dist from .gitignore [`919630e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/919630eb026d33155c9ef3b47c6ce31790cb030c) - Release 7.0.0 [`96baeee`](https://github.com/sociomantic-tsunami/nessie-ui/commit/96baeeead095812db88d7a0e3c2e3e3122a722ad) - Release 7.0.1 [`1160502`](https://github.com/sociomantic-tsunami/nessie-ui/commit/116050294a53b10e3f43ccefd21847131f867e89) - Added missing clickTab() to TabsDriver [`9a941fb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9a941fbdc7fea90d8bd609cc92a6a5fcaad92924) - compiled styles and sprite [`f25152b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f25152b54cd4d2f4749af65d4143221a787d019e) ### [7.0.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.5.0...7.0.0) > 4 December 2018 - Milestone test driver revamp [`#557`](https://github.com/sociomantic-tsunami/nessie-ui/pull/557) - Updated GHPages [`25049c3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/25049c33d997c8fced0c3a40e6ea50f937e48443) - Release 7.0.0 [`ab88f52`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ab88f528a74e3f1b35e8b0ddc2f51950ba899522) - Release 6.5.0 [`ffa2fde`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ffa2fde031dd24e9251c9f87fd183a9b2041ecb8) #### [7.0.0-alpha.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.4.5...7.0.0-alpha.1) > 12 November 2018 - Updated driver error messages [`#675`](https://github.com/sociomantic-tsunami/nessie-ui/pull/675) - [Drivers] remove errors that don't apply [`#702`](https://github.com/sociomantic-tsunami/nessie-ui/pull/702) - inclueded deactivated to propTypes #706 [`#707`](https://github.com/sociomantic-tsunami/nessie-ui/pull/707) - updaged gh page to 6.4.5 [`427efb4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/427efb4155e3dd8aaaf3c261e0dec3c31579bf38) - fixing gh pages rendering issue [`3d26121`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3d261210cf0a017583aada1228470367c4c82c4c) - Release 6.4.5 [`cdb1da1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cdb1da15ebde1d12c3bc2afe435a586de93febd3) - Release 7.0.0-alpha.1 [`76c86a8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/76c86a8151086ec83959784616117b6899648dc1) - removed display from .main #708 [`009c054`](https://github.com/sociomantic-tsunami/nessie-ui/commit/009c0541c915da1e3f018a7ddbbb7e6ba2a3ac6a) - fixed clickable state of the arrow #708 [`bcd7ad6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bcd7ad6f27611fd09ffbf6b8ec102bf1bc16a4f8) - Removed lost 'console.log' from Slider [`60ede16`](https://github.com/sociomantic-tsunami/nessie-ui/commit/60ede16134472ee790c86342cfe5e06b78fa276a) #### [7.0.0-alpha.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.4.1...7.0.0-alpha.0) > 5 October 2018 - added font-weight/style for each placeholder #625 [`52652e1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/52652e1aee58ed84e3e53e43b472e5e0176fab1b) - Release 6.4.1 [`c3fd25d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c3fd25d6c2a3b9f787695d1b60d0388f5614e9cf) #### [6.5.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.4.6...6.5.0) > 4 December 2018 - Minor changes neanderthal [`#710`](https://github.com/sociomantic-tsunami/nessie-ui/pull/710) - Remove test globals [`#723`](https://github.com/sociomantic-tsunami/nessie-ui/pull/723) - [DateTimeInput] added onChange driver and tests [`#722`](https://github.com/sociomantic-tsunami/nessie-ui/pull/722) - Added onKeyPress to CodeEditor [`#716`](https://github.com/sociomantic-tsunami/nessie-ui/pull/716) - [Drivers] onKeyEvent keyCode [`#713`](https://github.com/sociomantic-tsunami/nessie-ui/pull/713) - compiled styles and sprite [`a654b4b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a654b4bb7b2dee9820d7dd87dd46d1dc4f620f55) - Removed globals part1 #468 [`3c566b1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3c566b14521ae96ca67c8d454cc2b74e50509e60) - Added onChange driver and tests #717 [`c445cf8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c445cf87e41e99759731a07f28d8d42863d6f57d) - Fixed PR issue; removed extra methods and tests #695 [`22acdaa`](https://github.com/sociomantic-tsunami/nessie-ui/commit/22acdaa30a0dec05e5669fba5fed133dcc7a187a) - Updated DatePicker driver and tests part1 #717 [`694e6e7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/694e6e7c2327c5e9ff96655e0bca6e4ee46e07bd) - Removed globals part2 #468 [`463e3f4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/463e3f469f38ea7c30fb14085b3855e4264a11bb) - Release 6.4.6 [`5194cba`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5194cbadff3eea07d9e1c7f5d13f6b5d686a42d0) - Release 6.5.0 [`c1bf599`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c1bf599f2ecb36ecce2877586b2eacc7567cf178) - Changed pressKey to keyPress #695 [`c4ee62d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c4ee62dfbc14b7be75fe32ab4c74aa6c7d18b2d4) - Removed globals part3 #468 [`36926e5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/36926e531c5594a9bbfb635a56317c1762d62beb) #### [6.4.6](https://github.com/sociomantic-tsunami/nessie-ui/compare/7.0.0-alpha.1...6.4.6) > 16 November 2018 - fixed clickable state of the arrow #708 [`#709`](https://github.com/sociomantic-tsunami/nessie-ui/pull/709) - pointer-events: none for Icon #714 [`#715`](https://github.com/sociomantic-tsunami/nessie-ui/pull/715) - Added keyCode key as keyPress param; PR fix #712 [`#712`](https://github.com/sociomantic-tsunami/nessie-ui/issues/712) - Returned and updated old driver methods/tests for CodeEditor #695 [`18fe706`](https://github.com/sociomantic-tsunami/nessie-ui/commit/18fe7064ae84aa29d08836066d5dfaf4f00b0a97) - Release 6.4.6 [`b87bdca`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b87bdca6ed150de3f6480c01170cd055188e93f7) - compiled styles and sprite [`5a4f078`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5a4f078d233ebfb714bf24dbc641ef2e80ac0437) - Added onKeyPress prop #695 [`85a4edc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/85a4edcc4de95f2ed915db66ebe1ce68046e3389) - Passed keyCode as value for 'which' #712 [`fc8b74a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fc8b74aa9ed2dff29b232585917cfbff6af9270c) - Fixed typo, removed onKeyPress from div #695 [`a85a2b5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a85a2b56cce8625e5c529ed31ed46536957be054) - Fixes CSS comment syntax error #708 [`0becd8b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0becd8b6c2aac00f3214848fc1321af13103c036) #### [6.4.5](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.4.4...6.4.5) > 8 November 2018 - add deactivated icon and some tweaks #703 [`#705`](https://github.com/sociomantic-tsunami/nessie-ui/pull/705) - Updated PasswordInput driver #670 [`2709322`](https://github.com/sociomantic-tsunami/nessie-ui/commit/27093222a75b1d29ffc693715cb3c178bab6b95e) - Updated InputField driver #670 [`90e8eab`](https://github.com/sociomantic-tsunami/nessie-ui/commit/90e8eab93c4382385d6a015a339494389eae0e45) - Updated ToggleButton driver and tests; code cleaning CodeEditor and TextInput #670 [`1616e95`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1616e95c6c085fa2818c297697e21150f70d4e65) - Updated DatePicker driver and tests; minor code cleanup #670 [`4e5ba1b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4e5ba1b15c98de79a0155525f16f52c2577f6f2f) - Updated TagInput driver #670 [`53d36f9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/53d36f917d5313435a83592c80195567818a4393) - Updated ToggleButton err and tests #698 [`a6fc436`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a6fc436dbd44c44d4cc2d91db9a7f070f837ef9d) - Updated TextInput driver and tests #670 [`18925cf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/18925cfe4bc42e35249cabcc4762fdfca55351fa) - Updated IconButton driver #670 [`738b415`](https://github.com/sociomantic-tsunami/nessie-ui/commit/738b41572fd40707f0ee3fef94d204fb4acf5932) - Updated ValuedTextInput driver #670 [`a99279f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a99279f3d12f53d651727c3bf97e0596be39bd05) - Updated TextArea driver; added missing methods and tests #670 [`e870ce4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e870ce4a76ace6cbe537f282fd719e851b64354a) - Updated IconWithTooltip driver; removed IconButton err tests #670 [`31b464c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/31b464cb18c3ae9f4780bd7034a4c0c8030c07a9) - Updated Radio driver #670 [`d7f4712`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d7f471254f6e56f73325a88e6fe3cc674fe2c59e) - Updated ValuedTectInput err and tests #698 [`13d6260`](https://github.com/sociomantic-tsunami/nessie-ui/commit/13d62602805152d70d1d0ca7b5b371ba075ea68f) - compiled styles and sprite [`2f52114`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2f5211457f4adaa52f5b7bb8774e3d30512988f1) - Updated Fieldset driver #670 [`fad6436`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fad6436aa81031d6d6f7943c8054d8afe5626a3a) - Release 6.4.4 [`6fb2151`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6fb2151987bc71637b08910d9489923d68402f29) - Release 6.4.5 [`8788bb1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8788bb1fa66e88a79bf859ba26ec346ccff4692d) - Updated ModalDialog driver #670 [`e42c16d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e42c16d3285a954d9c462e49eb149e61d93a564d) - Removed Fieldset err from driver #670 [`54551db`](https://github.com/sociomantic-tsunami/nessie-ui/commit/54551db24380d8158e46c408305be84c56c24ad7) #### [6.4.4](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.4.3...6.4.4) > 5 November 2018 - Update focus for textinput font #697 [`#701`](https://github.com/sociomantic-tsunami/nessie-ui/pull/701) - removed onClickIcon propType #699 [`#700`](https://github.com/sociomantic-tsunami/nessie-ui/pull/700) - Dropdown option hover state [`#688`](https://github.com/sociomantic-tsunami/nessie-ui/pull/688) - fixed the issue without effecting modern browsers #692 [`#696`](https://github.com/sociomantic-tsunami/nessie-ui/pull/696) - InputField onChange driver fix [`#693`](https://github.com/sociomantic-tsunami/nessie-ui/pull/693) - [Drivers] pass arguments to onKeyEvent [`#691`](https://github.com/sociomantic-tsunami/nessie-ui/pull/691) - Fixed component imports in drivers [`#687`](https://github.com/sociomantic-tsunami/nessie-ui/pull/687) - removed pointer-events and visibility #679 [`#681`](https://github.com/sociomantic-tsunami/nessie-ui/pull/681) - [Text] onClick and role='link' [`#677`](https://github.com/sociomantic-tsunami/nessie-ui/pull/677) - Removed errors when isReadOnly onEvent is triggered; InputContainer linter fix #698 [`#698`](https://github.com/sociomantic-tsunami/nessie-ui/issues/698) - compiled styles and sprite [`1020e72`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1020e72e385305075c820995dfa5d3e28732b01c) - update git hub pages to 6.4.4 [`ad6c9ff`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ad6c9fff9c112812f69b7cdc8bfb707f7d408634) - Updated PasswordInput errors and tests #698 [`c9fcc17`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c9fcc171a3ccc527df35fb89a9b13b4098a7f6d4) - Updated TagInput errors and tests #698 [`ad0b65b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ad0b65b209a1fface3cca183a697aeb0a067ab94) - Updated TextInput err and tests #698 [`d321017`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d32101769d03af656df0ab3add519e92fc07cc46) - Updated PasswordInput #670 [`c039e1b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c039e1b9e824a9929a1df3f08bb8ab079b2eb746) - Updated Radio errors and tests #698 [`a071a3b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a071a3bceb54157b91b003e4336a9fb46f61029f) - Added keyCode to onKeyEvents #689 [`a6383a0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a6383a0c31c28eb80a00c2fe3e38f3255bd56d76) - Added onClick and role='link'; removed commented code #676 [`9ec2de1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9ec2de1a0a05c64a88ac5f2fdf0f8170f5d84966) - Fixed PR issue #685 [`eb98ca0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/eb98ca08c9b1d089191fecd146949a46b4cc655b) - Added onChange test for InputField #690 [`601e23e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/601e23ed22078c715ba03f83d1ad91c59655dea8) - Updated TextArea err and tests #698 [`92b06a0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/92b06a0e4a1b68390d914e5a586168c70d9197e2) - Fixed InputField/InpuContainer import in drivers; removed unnecessary code #690 [`31088b4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/31088b4f8b60eb03d6d6dcfb4d0076896501213e) - Release 6.4.4 [`bffb7b3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bffb7b351f899c8714bd1c93ff17e4a555ab2e27) - Updated specificity to apply font styles #685 [`e4627f3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e4627f3fb08c5505ece8fe510c3c86e6f6fb65e0) - Fixed component imports in drivers #667 [`af9bbee`](https://github.com/sociomantic-tsunami/nessie-ui/commit/af9bbeee5772ae14919cfce3967811fd92591c43) - Updated icon position and flounder margins #685 [`dd637b4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/dd637b4cd28bacf252325e86fdd5f42416f69c7a) - keep fonts definitionts as they were #697 [`082323c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/082323c92d82422da2e730a18d46d3ea1ac54353) - Release 6.4.3 [`7bca03e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7bca03eb375ccd0cbe776ae5ed380b189dc9744b) - Updated colors, fonts and margins #685 [`7b9a39e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7b9a39eed50e11abe9ee1cd5f2301ccb6ffb704b) - Fixed PR issues #685 [`43a72e6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/43a72e6eddb45e515c62162ed262995abe87f726) - Fixed PR issues part2 #685 [`ab89586`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ab89586ea8deff4726ee4f94f38d1765659ed876) - Added click to driver and test #676 [`2867b90`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2867b9078d1b1458ff3e7246bfe27afa366e9ac5) - Removed label from CodeEditor tests #670 [`ef0afb4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ef0afb404704222bc808a69bdebb3a32a2f3d853) - Updated ListBoxOption styles #685 [`72d825f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/72d825f49fa892675ce10f5e382c2da38a5b571a) - Updated colors and fonts #685 [`2791b60`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2791b609172a233fc78faa42bc996bd50406b3c1) - Fixed spacing #685 [`13c8de5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/13c8de5eb9987cea82e9462aece4cfbca0c3df8d) - Fixed Flounder Option styles #685 [`9a80217`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9a80217fd60315d38462427e99c5536983612a87) - Updated ToggleButton driver #670 [`4bb003d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4bb003d9578ef908f9724c0a13e28d96dfe1b2b6) - Change method changes value on input node #690 [`d37c96c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d37c96c6e9a6e1de1cbf73bc9e474642a6e14872) - removed border and box shadow in case of focus #679 [`47974f8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/47974f8208f61b6bfe7aeb361aa80ce6145867e1) - Updated ListBox driver #670 [`4d21447`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4d214477fa8b168e1c6d0d8a127b6619f5738e33) - Fixed ListBoxOption and Flounder description line-height #685 [`91eed22`](https://github.com/sociomantic-tsunami/nessie-ui/commit/91eed2285109c6cbc3142e2a7c0fe46acf0bcd39) - Updated ValuedTextInput driver #670 [`95806c8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/95806c8d1614abc11fde0bb502b584235cee3db0) - Update flounderDropdown.css [`eeea308`](https://github.com/sociomantic-tsunami/nessie-ui/commit/eeea308f58760f1ff563076920575cce5e041e40) - Update listBoxOption.css [`7781edf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7781edf8c02d4939b6f1803397ae73fb10989077) - Corrected ListBoxOption padding #685 [`d026869`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d026869dc932cd980176a431cb81637d4685d3ae) - Corrected listBoxOption padding #685 [`b2a6fa6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b2a6fa6b1e66844e482e942faedbc20a7a5ea71e) #### [6.4.3](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.4.2...6.4.3) > 18 October 2018 - change display from flex to block #673 [`#674`](https://github.com/sociomantic-tsunami/nessie-ui/pull/674) - Added hasFullWidth prop to Grid/Row [`#672`](https://github.com/sociomantic-tsunami/nessie-ui/pull/672) - Module driver clickToggle [`#669`](https://github.com/sociomantic-tsunami/nessie-ui/pull/669) - remove <Text> from shownPages wrapper #665 [`#666`](https://github.com/sociomantic-tsunami/nessie-ui/pull/666) - updated gh-pages to 6.4.2 [`95cd57f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/95cd57f8328ee08b019c7aeff5e70703694e6c07) - compiled styles and sprite [`b5d93ef`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b5d93efeea423e0ab47df18838a3ff1eca279acb) - Removed 'label' from CodeEditor err msg #670 [`79b419f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/79b419f47de0f2dcc1aacb776614e01c5a9d41ec) - Release 6.4.2 [`342ce63`](https://github.com/sociomantic-tsunami/nessie-ui/commit/342ce63894ebd151f51a170cf08aa2fa7155043f) - Fixed Checkbox err; Checkable part1 #670 [`31da06b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/31da06b7dbe67521ee4b653223db07652d6c900d) - Fixed Radio err; revert Checkable #670 [`bf27454`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bf2745451272be0f393371cf3a23d60557c3d1b0) - Updated errors for groups #670 [`6f1c699`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6f1c6992435e2a8a8b0d17cc72e5e11aa3379ef6) - Release 6.4.3 [`4217642`](https://github.com/sociomantic-tsunami/nessie-ui/commit/42176429a3563c9f715c116dee197e30fd5b3559) - Added hasFullWidth prop #671 [`52e62a6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/52e62a6db5c782d388b89f630abff30a1df0fe88) - Updated Button errors #670 [`4eb8e73`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4eb8e739d428c431607876a20e2c7cc0274327b7) - Updated DatePicker driver #670 [`0482258`](https://github.com/sociomantic-tsunami/nessie-ui/commit/048225805c3cd049e9c1866a08af01e6cc308680) - Added copyright to CheckboxGroup #670 [`30dcfb5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/30dcfb52a54bf309ea2221651c2c80d88bbbbd10) - Updated Flounder driver #670 [`5c156fe`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5c156fe4fb0fe1585e25469e2c7637b619564a2b) - Fixed check for iconType in driver #668 [`f79a40f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f79a40f3fd112ba30de60dd6b7a3c0e21b5b63f9) #### [6.4.2](https://github.com/sociomantic-tsunami/nessie-ui/compare/7.0.0-alpha.0...6.4.2) > 10 October 2018 - added thumbdrag callbacks for master branch #626 [`#662`](https://github.com/sociomantic-tsunami/nessie-ui/pull/662) - Scrollbar indicator functionality #630 [`#663`](https://github.com/sociomantic-tsunami/nessie-ui/pull/663) - [TabButton]: increased marginRight to be 16px between TabButtons #656 [`#659`](https://github.com/sociomantic-tsunami/nessie-ui/pull/659) - [Toggle-button]: Matching focus state color with designSpec [`#658`](https://github.com/sociomantic-tsunami/nessie-ui/pull/658) - [Paginator]: added fontSizes for paginator buttons to 14px #654 [`#657`](https://github.com/sociomantic-tsunami/nessie-ui/pull/657) - [DatePickerItem]: fixed the circle issue #655 [`#660`](https://github.com/sociomantic-tsunami/nessie-ui/pull/660) - Issue 642 tabs driver click tab [`#652`](https://github.com/sociomantic-tsunami/nessie-ui/pull/652) - FlounderDropdown Header Level 1 Styling #644 [`#651`](https://github.com/sociomantic-tsunami/nessie-ui/pull/651) - removed '0' in case of empty [] #646 [`#650`](https://github.com/sociomantic-tsunami/nessie-ui/pull/650) - textAlign prop has undefined value #648 [`#649`](https://github.com/sociomantic-tsunami/nessie-ui/pull/649) - added font-weight/style for each placeholder #625 [`#645`](https://github.com/sociomantic-tsunami/nessie-ui/pull/645) - compiled styles and sprite [`93027ce`](https://github.com/sociomantic-tsunami/nessie-ui/commit/93027ce61f1ba8138e1c7c5e20caca5575832dbc) - Release 6.4.2 [`c350599`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c35059989f20334954a83886487420e6f113a75f) - added clickTab driver method #642 [`5199273`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5199273784bf2babcc9a2a5c1f0acf0ce13e63c6) - fix line-height [`c528f09`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c528f0999a09dcb2d9216b7a771f63ab68c14109) - simplified the solution #646 [`9c28ead`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9c28ead4e637454af10fc4116d06cd8fc0106578) - removed roles from tabButton.css and scoped it inside tabs.css #656 [`1eca3a1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1eca3a1ec9480c888cb1d9034669a41aace125ec) - removed Text from StartPageButton and EndPageButton #654 [`f802af1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f802af1c0739bdfd418e5ee15c722430624fa667) - increased marginRight to be 16px between TabButtons #656 [`182e814`](https://github.com/sociomantic-tsunami/nessie-ui/commit/182e814701c2528e2e9c222605cd63183b34d745) - fixed the circle issue #655 [`a7b3edf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a7b3edf59e0d0fca2f1d0a40978fd4866292ba53) - added fontSizes for paginator buttons to 14px #654 [`b7a8e01`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b7a8e013c695c2963eda52813514e24ece33709c) - added semiBold font-family #654 [`2998065`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2998065a0656819a876ec4e152dd57d58952235b) - removed console.log #646 [`da9f66d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/da9f66de198e77b414890c0739daafab89de54a6) - removed calc() from height prop of the circle #655 [`6e4e9c5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6e4e9c5e9f6af6371f17bf09e44fdcd5483204db) - matching focus state color [`2811909`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2811909cf6b47c7d2312bf4c540f5d2aad9e13e2) - fix default line-height [`dcc6d90`](https://github.com/sociomantic-tsunami/nessie-ui/commit/dcc6d90c36f18a77cc53f324a5ccd3dcaf14014d) - removed extra spaces #646 [`e333cca`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e333cca1967a000a532bcb9690e780afff7ba09e) #### [6.4.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.4.0...6.4.1) > 5 October 2018 - added the new Thumb drag events #626 [`#643`](https://github.com/sociomantic-tsunami/nessie-ui/pull/643) - Issue 506 dev bundle [`#636`](https://github.com/sociomantic-tsunami/nessie-ui/pull/636) - Some Icon tweaks and cleanup [`#637`](https://github.com/sociomantic-tsunami/nessie-ui/pull/637) - Line height fixes [`#638`](https://github.com/sociomantic-tsunami/nessie-ui/pull/638) - added new icons to other related components #635 [`#639`](https://github.com/sociomantic-tsunami/nessie-ui/pull/639) - Tabs content padding [`#633`](https://github.com/sociomantic-tsunami/nessie-ui/pull/633) - Fixed focus bug for Paginator [`#632`](https://github.com/sociomantic-tsunami/nessie-ui/pull/632) - Updated GHPages [`5ea6d8c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5ea6d8ccf4a6873ca987a61e759f1a8142dd59b8) - compiled styles and sprite [`ca6b9be`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ca6b9be1d7ff77677fb571b87dd1f044d14ad452) - Simplified webpack config #506 [`ceb1af8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ceb1af82a504e929c58841444cc94005f0fc7f65) - Added padding prop; removed margin-bottom #627 [`f31ca25`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f31ca25c5aa5afbca4fc15a8cc0b47a78cc38652) - Padding prop controls content padding #627 [`b885274`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b88527417ed98708ba21ab622112e5a386755377) - Release 6.4.0 [`21bfe44`](https://github.com/sociomantic-tsunami/nessie-ui/commit/21bfe44df8e492c1e48183f9657c4900fc121acb) - Release 6.4.1 [`ce1a2d2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ce1a2d2ebd7a1456d5cd4545257dc885c10d9e09) - added new icons to ComboBox #635 [`7871b76`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7871b76f6e0d82737ca0ed218003b0c62de5dedc) - Fixed focus bug on arrow buttons #629 [`ba9155a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ba9155a6c1f4afe6c2231d1388deddab90edefd1) - Reverted changes to icon.css from 7871b76 [`7e83f7c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7e83f7cec95d5135954e7c30d5c92f0edb060da5) - Changed the order of setting padding #627 [`d0a841b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d0a841b2e44961008df1a624e45b8f69b54c850e) - Build dev bundle(s) as part of release #506 [`e912f37`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e912f37961444bd265fa7affe6a08bdfc83b82f3) - Fixed PR issue #627 [`0ec2ca6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0ec2ca6f12621efe310af358039637abcdc615e7) - Added library name to dev bundle #506 [`0fa8021`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0fa80212d437e97afcd7d0fb9eae98ecf703488c) #### [6.4.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.3.2...6.4.0) > 26 September 2018 - Minor changes mongoose [`#624`](https://github.com/sociomantic-tsunami/nessie-ui/pull/624) - Remove TableCell header text capitalization #619 [`#623`](https://github.com/sociomantic-tsunami/nessie-ui/pull/623) - Issue 586 icon svg updates [`#601`](https://github.com/sociomantic-tsunami/nessie-ui/pull/601) - Import CodeMirror styles directly from node_modules #575 [`#618`](https://github.com/sociomantic-tsunami/nessie-ui/pull/618) - compiled styles and sprite [`0e8793b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0e8793bb784218afeddaf4f4c774d9de32fda97f) - updated svg icons first row in design #586 [`67b8854`](https://github.com/sociomantic-tsunami/nessie-ui/commit/67b885469a0c3c225d25ccdb1c1102c33f1b4e3c) - revert back yarn.lock #586 [`773fa7f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/773fa7ff86b48d303e6c1356d55a93c4cfe567f0) - Updated yarn.lock [`c970141`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c9701410750b1d60c16a80e7a1a3917971988e61) - updated svg icons 6th row in design #586 [`1f05383`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1f053838df106fce9ef6079c338a885f36bb2db1) - updated svg icons 4th row in design #586 [`9ed2ce7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9ed2ce7ce16282b19e8d4e0fe18d17e53f0f683b) - updated svg icons 2nd row in design #586 [`f2933dc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f2933dc495675297b433b70e1296a6b26a375d14) - updated svg icons 3rd row in design #586 [`f99ab9f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f99ab9faf76e664bb1983de09b25aeb0a45d7f61) - Release 6.4.0 [`ac24d2b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ac24d2b6b0df2544330f5bcd1a780881b283717f) - updated svg icons 5th row in design #586 [`6b7dfdf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6b7dfdf93358fb56d82f4b3c1ab727a6aea081c0) - Remove scrollbar.css [`0a36afc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0a36afc2389f202000efdb8cf7946b42edad32f3) - Added scrollBar.css [`44a75da`](https://github.com/sociomantic-tsunami/nessie-ui/commit/44a75daf09587a41622fef0a2bdd7aa9238ee96a) - fixed loader, sociomantic icons in fill color #586 [`308ab05`](https://github.com/sociomantic-tsunami/nessie-ui/commit/308ab059381f57eeb81e73c4524aca3f02df05d2) - removed width, height attrs #586 [`3d841a3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3d841a323be8a1b213739840881653933f201a47) - updated svg icons last row in design #586 [`4cce248`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4cce2484d015f87846b2fa12e28a42ae400a4693) - removed width, height attrs from rest of icons #586 [`b9b8e43`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b9b8e43f4d68a0f19aa9a2d4c18ebbb323c6735b) - Release 6.3.2 [`30517dd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/30517dd1429e6c277e15a8b600b4edba4fce02a9) - fixed fill color of check of approved icon #586 [`08837a9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/08837a9fca2f4cb8dea8627ee9290ad0887056a3) - Fixed ValuedTextInput valueLabel font-family #622 [`15a6c4e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/15a6c4ea43868dd56df1431a5b4f72d44ca22eea) - Added background color to InputContainer #621 [`44fe038`](https://github.com/sociomantic-tsunami/nessie-ui/commit/44fe038ef3f23e6d58491d6822dc82f54b0058e2) - Added background to FlounderDropdown; removed from InputContainer #621 [`d7f4bb5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d7f4bb534de1302f062759a368592f5b7ef549cf) - Fixed DatePicker TimeInput font-family #620 [`967cbf0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/967cbf0cbf915c898012352c8e9f0d5eb5889b41) - TableCell header font size fix [`1e598cb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1e598cb632bee7b6348cc1af6fce07d69f569f88) - Removed extra space #621 [`1d63874`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1d6387498662dc6957c9d6238774294dcf4eb7fa) #### [6.3.2](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.3.1...6.3.2) > 21 September 2018 - Issue 538 scroll buttons action [`#610`](https://github.com/sociomantic-tsunami/nessie-ui/pull/610) - compiled styles and sprite [`e3131fb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e3131fb62ff1ff7cb1d926f0aa0ded92a74ab4c2) - Import CodeMirror styles directly from node_modules #575 [`af2d4aa`](https://github.com/sociomantic-tsunami/nessie-ui/commit/af2d4aa13a792c4d23e29deb8465e979f0443a7a) - ScrollBox scrollAmount tweaks [`0f2dde7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0f2dde7c409c410f771c90eb9afedfb32ba527ad) - Added scrollBar.css [`85bd9ce`](https://github.com/sociomantic-tsunami/nessie-ui/commit/85bd9ceb5926a52d1947015aa7bf168a63574518) - Remove scrollbar.css [`30b036a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/30b036a612e8926bb9e8a33abf1a0abfd267ba1e) - contentWidth/height by default when none scroll amount set #538 [`22fe159`](https://github.com/sociomantic-tsunami/nessie-ui/commit/22fe1599d3250ec01490052ee8126d64464fad71) - Updated ScrollBox tests [`e75cad1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e75cad13615112632398aba1e44247a40d0bc459) - Updated GHPages [`89c82f7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/89c82f7b1e36992d8824cf837fec4152676296c9) - Release 6.3.1 [`a03a7ce`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a03a7ce4289c2fc6fa4511c1f73161ffc15f84eb) - Release 6.3.2 [`29b5a24`](https://github.com/sociomantic-tsunami/nessie-ui/commit/29b5a24f25f07b1c56734ad12d7f6e908c5e8aa3) - Temporary hack to make dist work [`819a489`](https://github.com/sociomantic-tsunami/nessie-ui/commit/819a48994447e8c538af95f2d91b20125e71a37e) - FlounderDropdown extraClasses fix [`23d4604`](https://github.com/sociomantic-tsunami/nessie-ui/commit/23d46041d9db42e65346fc14d267ccd56ce2e4e5) - Fixed syntax error in ToggleButton CSS [`a23b502`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a23b50284f618758b0150383d77be015fab11935) #### [6.3.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.3.0...6.3.1) > 20 September 2018 - Force new stacking context for ScrollBox content #614 [`#615`](https://github.com/sociomantic-tsunami/nessie-ui/pull/615) - added lineHeight prop #539 [`#611`](https://github.com/sociomantic-tsunami/nessie-ui/pull/611) - H2 Bold; closes #612 [`#612`](https://github.com/sociomantic-tsunami/nessie-ui/issues/612) - ToggleButton subtitle SemiBoldIt; closes #613 [`#613`](https://github.com/sociomantic-tsunami/nessie-ui/issues/613) - Update GHPages [`e6b477d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e6b477d3d77546ce537582cea19a46c6745e8237) - add scroll buttons functionality #538 [`8cc01d5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8cc01d511eeaa81fc2176aa7155c559d3376d6db) - Release 6.3.0 [`a5ec99f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a5ec99f66d0cdbb9fa16cfa0f0f0685c1394dc5d) - compiled styles and sprite [`58d8c02`](https://github.com/sociomantic-tsunami/nessie-ui/commit/58d8c0219c9ba00810cd3182a8c48a1f11b7530e) - update ScrollBox test #538 [`c884ca7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c884ca724913809729ed52e4dadf01e2e076ffbf) - Release 6.3.1 [`f7c4af2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f7c4af25f46bac991ca264857712a202bf380345) #### [6.3.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.2.5...6.3.0) > 19 September 2018 - Minor changes loris [`#604`](https://github.com/sociomantic-tsunami/nessie-ui/pull/604) - add active border color to existing border #599 [`#600`](https://github.com/sociomantic-tsunami/nessie-ui/pull/600) - updated copyright statments [`#590`](https://github.com/sociomantic-tsunami/nessie-ui/pull/590) - ScrollBox fix #607 [`#607`](https://github.com/sociomantic-tsunami/nessie-ui/issues/607) - Updated GHPages [`182abd9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/182abd9c646641cbf63ef7769be52396857bc978) - compiled styles and sprite [`5de36ae`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5de36aeca5fad247a0e10c77e8a13ef795e53093) - upgraded loch-ness to 2.2.6, removed deactiviated and not-found icons #586 [`1607d96`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1607d9691eb553da9a2a70b34ab643f9e591cf4d) - updated icons #586 [`5e49e0e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5e49e0e81fb6afd7ea5a0d3a19898bbf75df3d58) - deleted new files, replace old files #586 [`61959b9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/61959b9926d863e787d56c427893b0f0cd303784) - uploaded sociomantic, paused icons #586 [`9530d4f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9530d4f484a2dbc6bc75be8762e4f73aed6e1a94) - Release 6.3.0 [`65c6b35`](https://github.com/sociomantic-tsunami/nessie-ui/commit/65c6b35b9b852741c2e3f73597c0b4af6d65fbea) - updated campaigns, creatives, reports icons #586 [`38e9acc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/38e9acceb755e6a66f7a59c83151198b840c27be) - removed inline-fill attribute #586 [`d020b70`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d020b70d27795f230c2d5d754390aa30ffd8b4d9) - letter-spacing undefined by default in TextComponent [`4e9488b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4e9488b7e8482c6cb1ce586adf977a0c1a077cfa) - Release 6.2.5 [`46e1bf7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/46e1bf7222f578142eeb1265b81d3aba3a53948e) - Text component link styling [`52e12fb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/52e12fb77e20d484338df9920e72861e67dc4466) - added arrow up, arrow down #586 [`9948b6c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9948b6ced2cbbf1a487ff6872d0bbc4c24de7855) - updated close-circle #586 [`c6dae29`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c6dae2954ceb9159cf8a670ab29ff67a7454812b) - Fixed Column size and minor linter errors #602 [`afec277`](https://github.com/sociomantic-tsunami/nessie-ui/commit/afec27777c7265b0f54dfe013975fe14085d7e2c) - Disabled Uploader background color fix [`729cfb4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/729cfb4b2550c81cdaef8dba3db0b99350898f2e) - removed inline-fill attribute from loader, right icons #586 [`746a09f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/746a09f0148f2bb008502509cbcb72379d8e7464) - updated yarn.lock #586 [`e1da81a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e1da81ad5e1646a3c4c5dc2eebb6dd3a0c90f12b) - Remove inherit’s from Text component [`ffa7ec5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ffa7ec56c19efb5682cb71594ab69ce0f7998257) - paused icon has --PC-LIME color #586 [`c61ea70`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c61ea708b24649239fd4fc374b1a49032ad0dc89) - fix page content width [`0aca0a6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0aca0a6346190d527142968dbc51b6cd9237b3f9) - Module Card padding="none" [`5e6ea4f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5e6ea4f46340900ed2ba42740651ac1ae7cca1fd) - Fixes Slider focus glow position IE10 #605 [`36cf92f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/36cf92f4157c1061dcb6207d9c9f2ecbbcfb1c02) - Added max-width to ListBox to prevent overflowing #595 [`ed3568d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ed3568d6f977a25032d52b50f354b2f80bfc6720) - Fixed issue with Table padding #593 [`5a09d49`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5a09d49573f28ceec873070428a74291981598f0) - Fixes Checkables IE10 #606 [`68bba62`](https://github.com/sociomantic-tsunami/nessie-ui/commit/68bba62a9b1bc9817911cd84d05eb861356357af) - TabButton border-bottom fix [`1870990`](https://github.com/sociomantic-tsunami/nessie-ui/commit/18709908c83e0cd0989b0eb3c215ff788b422a4f) #### [6.2.5](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.2.4...6.2.5) > 5 September 2018 - [Table] Added style for borders:none [`#584`](https://github.com/sociomantic-tsunami/nessie-ui/pull/584) - Tabs with ScrollBox [`#576`](https://github.com/sociomantic-tsunami/nessie-ui/pull/576) - reset tooltip msg text-transform #579 [`#581`](https://github.com/sociomantic-tsunami/nessie-ui/pull/581) - fixed onClickOverlay #571 [`#583`](https://github.com/sociomantic-tsunami/nessie-ui/pull/583) - added deprecation warn #559 [`#577`](https://github.com/sociomantic-tsunami/nessie-ui/pull/577) - added copyright statement [`#572`](https://github.com/sociomantic-tsunami/nessie-ui/pull/572) - Alternative style fix #537 [`#537`](https://github.com/sociomantic-tsunami/nessie-ui/issues/537) - secondaryControls margin fix #537 [`#537`](https://github.com/sociomantic-tsunami/nessie-ui/issues/537) - compiled styles and sprite [`36230b9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/36230b9d411846d31761c8375d061590c12284c3) - added copyright statment [`d017986`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d0179862c6215114bbd6ba9166c268de4dd64f42) - Fixed PR issues before merging with master [`50fee2d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/50fee2d7972bf2c7c0bddc88f239045be634250e) - Small Tabs/TabButton cleanup [`83d5e6d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/83d5e6dc83f864e3394ca1bd2a322b7ba70ceb38) - Fixed issue with borders #537 [`0b91d7a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0b91d7aea6c40b846b1ffe83c23907a7aba5dc62) - Added style for borders:none #578 [`1e837e4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1e837e438f4b70a6ca23b8c1d4060870cc46b559) - Release 6.2.4 [`8b26d80`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8b26d80c8f4af6787dfa7740185fe7e986f25d1c) - Fixed PR issue #537 [`e4241b3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e4241b3dc9183efa9a0be355b4003858b5622859) - Release 6.2.5 [`6a2f06a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6a2f06ac6498bf8b0a2516fe2ff64c9df07c77eb) - Fixed styling issues part3 #537 [`cea7eff`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cea7eff0509eda5621743b366a7acfa85c6d65ac) - Grouped imports in Tabs index #537 [`fc769a3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fc769a3f784002427b4f6c373ba5c05c93580502) - Added margin-bottom to last-child of secondaryControls #537 [`28bb3a3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/28bb3a3773f9263458b171fda3b0eb8d1a40b3f5) - Fixed PR issue #578 [`3783b04`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3783b04f8911c5d6119e2f99fb6e19ba5a9db9f3) - Fixed incorrect import #537 [`e895505`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e895505ff1b577f4575c5abdb229fb60b010ab9f) - Adjust PageHeader padding #585 [`86b0bcd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/86b0bcdea94e8d1d3506a1f588df62db1e27961a) #### [6.2.4](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.2.3...6.2.4) > 30 August 2018 - Issue 567 uploader focus [`#568`](https://github.com/sociomantic-tsunami/nessie-ui/pull/568) - Added z-index to Tooltip .tooltipContainer #566 [`#569`](https://github.com/sociomantic-tsunami/nessie-ui/pull/569) - Fixed TableRow and TableCell borders [`#552`](https://github.com/sociomantic-tsunami/nessie-ui/pull/552) - added BoldIt, SemiBoldIt, LightIt #543 [`#553`](https://github.com/sociomantic-tsunami/nessie-ui/pull/553) - Fixed TabButton letter-spacing [`#554`](https://github.com/sociomantic-tsunami/nessie-ui/pull/554) - Added box-sizing to ScrollBox inner [`#555`](https://github.com/sociomantic-tsunami/nessie-ui/pull/555) - Rewritten driver errors [`#549`](https://github.com/sociomantic-tsunami/nessie-ui/pull/549) - Fixed PR issue #516 [`fa0bfb8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fa0bfb8fbf1782555fe1bf6819fb543a920e36e7) - compiled styles and sprite [`1b07ebf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1b07ebf61a9176ad8a10e6d66cb45712ffd47471) - Moved ScrollBox to Tabs header; fixed style issues part1 #537 [`abc23a3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/abc23a3a6b5c2aa22d50a63b3f575b1c97dbeaf7) - Focused styling tweak (IconButton, FlounderDropdown) [`90a409d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/90a409d4d8df376b36ed5a996f0e67bf23c1960d) - Release 6.2.4 [`1996e4a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1996e4ae14d21d20459d4ef5bd922130a77abd90) - Release 6.2.3 [`9afae9c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9afae9cf3f8b2293117fbbe0c73e09f8a79ed05d) - Fixed TableRow and TableCell borders #545 [`7e24cc8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7e24cc885a618d4a60fc70a0d36e079d442f4831) - Fixed letter-spacing #540 [`01cdce3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/01cdce3183f9b34d57b53f7a332026664e2a2cfa) - Wrapped Tabs with ScrollBox #537 [`94afd48`](https://github.com/sociomantic-tsunami/nessie-ui/commit/94afd484d9fa114c87221d6a765b87ee8577c9b6) - Card default padding set to 'M' #551 [`77ed6f4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/77ed6f4cdb5537bca11d4fe51fae82528eee8d19) - Added regression test #567 [`46588f8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/46588f825af438c401c33aff03052b67a76362a0) - Fixed style issue part2 #537 [`e0126e7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e0126e7eb79424c967f5fdfbf7e9942cd1745ec3) - Fixed PageHeader padding property name #560 [`567d877`](https://github.com/sociomantic-tsunami/nessie-ui/commit/567d8770edd1f5aa321ee14781356413fded7e5c) - Added tabIndex=-1 to Uploder <input> #567 [`9ddfd4b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9ddfd4bbd07a49169fdc0a148a97ec003372f898) - Added box-sizing to ScrollBox inner #541 [`39561cd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/39561cd35d3894c2412488d0ac25b7471fcff94b) #### [6.2.3](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.2.2...6.2.3) > 23 August 2018 - Input field cleanup [`#530`](https://github.com/sociomantic-tsunami/nessie-ui/pull/530) - Updated Checkbox-/RadioGroup drivers [`#550`](https://github.com/sociomantic-tsunami/nessie-ui/pull/550) - Issue 400 tooltip dep warning [`#536`](https://github.com/sociomantic-tsunami/nessie-ui/pull/536) - Added separated drivers [`#548`](https://github.com/sociomantic-tsunami/nessie-ui/pull/548) - Removed simulate tests [`#544`](https://github.com/sociomantic-tsunami/nessie-ui/pull/544) - Imported components in drivers [`#535`](https://github.com/sociomantic-tsunami/nessie-ui/pull/535) - Issue 487 tooltip design update [`#524`](https://github.com/sociomantic-tsunami/nessie-ui/pull/524) - added configuerable width #529 [`#533`](https://github.com/sociomantic-tsunami/nessie-ui/pull/533) - Slider CSS cleanup [`#531`](https://github.com/sociomantic-tsunami/nessie-ui/pull/531) - Improve test drivers [`#467`](https://github.com/sociomantic-tsunami/nessie-ui/pull/467) - Fixed Slider error handle color [`#525`](https://github.com/sociomantic-tsunami/nessie-ui/pull/525) - PasswordInput turn off auto features [`#526`](https://github.com/sociomantic-tsunami/nessie-ui/pull/526) - Issue 424 checkable styling [`#518`](https://github.com/sociomantic-tsunami/nessie-ui/pull/518) - Moved global rules from tests to .eslintrc; minor eslint fixes [`#523`](https://github.com/sociomantic-tsunami/nessie-ui/pull/523) - Minor merge fixes #267 [`#267`](https://github.com/sociomantic-tsunami/nessie-ui/issues/267) - Moved global rules from tests to .eslintrc; minor eslint fixes #468 [`#468`](https://github.com/sociomantic-tsunami/nessie-ui/issues/468) - Clean up all InputField-based components [`8e4f018`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8e4f018903256d77a99282a55c53b0099ac7d342) - compiled styles and sprite [`9164b81`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9164b81760c7a43fd6413d6f85c12bba2319e87e) - Added separated drivers #515 [`878fb68`](https://github.com/sociomantic-tsunami/nessie-ui/commit/878fb68ccb685e5b755a9d4e28b145c7e0cb5f1d) - Button, DatePicker part1 updated tests #534 [`ffbfc0f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ffbfc0fbd82161097b5943eee14c59df564b442b) - Updated ToggleButton, Uploader and ValuedTextInput tests #534 [`01d1d67`](https://github.com/sociomantic-tsunami/nessie-ui/commit/01d1d672f6f0d0fa4b71ce70f455938653960137) - Updated Checkbox and Radio driver and tests #267 [`2d316a3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2d316a3698668c65ef79e3dfa4edd42f1a9bdf55) - Added missing tooltip position propspecs [`c1f2ee9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c1f2ee9ff8aa44c9e30fa5ad209fdffca0046209) - Fixed wrong merge [`f8fec62`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f8fec62dac2a54005e4770fbb942ead7735206be) - Updated Button and DatePicker tests #534 [`31f589e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/31f589ea3d5feb44039cb4aa57eb20b9503f08fd) - Deprecated IconWithTooltip #400 [`f7e3917`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f7e3917c393f628f51ec180b366222907b07463e) - Updated IconWithTooltip and InputField tests #534 [`003b235`](https://github.com/sociomantic-tsunami/nessie-ui/commit/003b235e600f77ea9f286554ba5ad004e43fc30b) - Updated PasswordInput tests #534 [`da7956b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/da7956b10a79828db895d1f8c91283a4cf01fe36) - Updated TagInput tests #534 [`9685b39`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9685b392172c3c58a345ff19e0cc2ef8676fd207) - Updated TextArea and TextInput tests #534 [`6799d0e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6799d0e8662989e84b8fa8fabccc81716a278192) - Tooltip styling cleanup #400 [`11d6666`](https://github.com/sociomantic-tsunami/nessie-ui/commit/11d6666302b77969198da39a0c8d5200a83df8e8) - Switch errors; removed no-unused-expressions exception in tests #516 [`f9d6c53`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f9d6c536277d6a0afb4df136ea1b2d3086379285) - fixed left/right for caret coords #487 [`8452948`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8452948a8cf7e8d59f60aafb7093659330f8a088) - Updated Icon and IconButton tests #534 [`c200086`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c20008637e73cd5b26258ee6b58849c40b6edc63) - TextInputWithDropdown driver and tests #267 [`815f10f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/815f10fccebfb5835b3fa031bf4efdbf29f7f21b) - Fixed leftovers from #534 [`efe7257`](https://github.com/sociomantic-tsunami/nessie-ui/commit/efe7257bcc1b75b5f8654ed73ab4ccdbf3493086) - Updated GHPages [`12b3d2a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/12b3d2a60598957710110ad10be80aff5e8a59ab) - Updated Button, CheckableGroup, Checkbox and CodeEditor tests #534 [`89b7858`](https://github.com/sociomantic-tsunami/nessie-ui/commit/89b7858520f237ded7b7e4bcfe771fb25d91bd50) - Added props for disabling auto features on PasswordInput #514 [`4f6b703`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4f6b7035f315cd480eff9f72cab543d7ec56ed52) - Imported components in drivers; few minor tweaks #517 [`20124a9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/20124a9ad27021a93551dad36731ef56833a6f91) - Updated CheckableGroup errors #516 [`ac7cc99`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ac7cc9912856d5438a46f1c9b5a1fc416936877d) - Updated DatePicker and DateTimeInput driver and tests #267 [`03a8fea`](https://github.com/sociomantic-tsunami/nessie-ui/commit/03a8fea9b1ea15c976486bbb1f01e34e14dc0122) - More Slider styling fixes + tiny JS tidy [`0006226`](https://github.com/sociomantic-tsunami/nessie-ui/commit/00062269936adf32e2ff2f90074d6696711a7244) - Added missing tests for DatePicker #534 [`0b6a5f1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0b6a5f152e581fb2ac888ae89fe729b891dd750d) - fixed the indention of src/index.js #529 [`f17b1bd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f17b1bddfa749647290977c0dcf44302074e47dc) - adjusted .tooltipContainer for top/bottom sides #487 [`1f6212d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1f6212d550481165137ac2d0286cbacd0c896a0f) - Slider errors #516 [`5603997`](https://github.com/sociomantic-tsunami/nessie-ui/commit/56039975fa40af01a0d0f0e27f87ce9ff1ba4511) - PageContent tweaks [`e8a4db2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e8a4db241596ba1d2d861709fe0a374de09e5c3e) - DatePicker errors #516 [`eb7c076`](https://github.com/sociomantic-tsunami/nessie-ui/commit/eb7c076580afa999d52d9c626b271db937271459) - PasswordInput errors #516 [`606e81e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/606e81e36a7ca1be52969790c0b14d013a586dd6) - Updated IconButton and ToggleButton errors #516 [`f13a8be`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f13a8be6d01eda0ebbc7c8021e89199e6f2ce866) - Updated ButtonDriver errors #516 [`8c379af`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8c379afc2bd74b0847eb7a6dd941c2d12ba67da3) - Updated Checkbox/-Group errors #516 [`924c3d5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/924c3d507586f8b0a7af8312262454bb27898116) - Updated Fieldset and Icon tests #534 [`be6758d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/be6758d060f01909891d07f22cfeb2d79c28d506) - Fixed PR issue #468 [`8aead0e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8aead0e4e059f299a86ba7075ddb9d95e6be41fb) - Added missing driver method and tests for ComboBox [`42c6271`](https://github.com/sociomantic-tsunami/nessie-ui/commit/42c6271c0122f24fdb17980ba4c8657af89f0868) - CSS-positioned Tooltip deprecation warnings #400 [`5d4a338`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5d4a3385d5bdbceaef6d3144b19073f8fbcbf7ce) - Fix standalone Tooltip markup #400 [`11d6980`](https://github.com/sociomantic-tsunami/nessie-ui/commit/11d6980690d594953335e42b99b6ee9b50a05c0b) - TagInput errors #516 [`21b1bdd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/21b1bddc8c45a89ec1a8a17496cd5c15f3ee3b56) - Changed ERR arg name from 'doWhat' to 'onEvent' #516 [`45222c8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/45222c823340d3214ec2c5d16714ee50cb4fdaab) - fixed left/right for tooltipContainer coords #487 [`200aa9e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/200aa9e60916f670a62abd389c53a3763bf99f2a) - finshied top, bottom coords #487 [`8910bc3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8910bc34761d839b27cffb886c7780bd139eec4d) - CodeEditor errors #516 [`ea6b62a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ea6b62a0faa9892241ba52f4f08a41719236af4f) - Updated tests descriptions; minor tweaks #534 [`60e92bd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/60e92bd37aaa1e8661323397ac37ea00275c849e) - Radio errors #516 [`ed4c431`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ed4c4313d4ee9e2269e4e225e703061c261ae1a8) - Updated Slider and SliderGroup tests #534 [`9d65c93`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9d65c932c5057d751a562ae0e8b43a6f014f8267) - Fieldset, Icon/-WithTooltip errors #516 [`4cbaf85`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4cbaf85774b0cf5f40948a6269daf8b59604ad29) - Module errors #516 [`bcde96b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bcde96b4d150bf44bcf41877b3e18b9d0b596735) - Added “noWarn” prop to Tooltip #400 [`15aeb5b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/15aeb5bf7383af2ee149183726cfaf218d4c4df6) - added border colors for different roles #487 [`619f794`](https://github.com/sociomantic-tsunami/nessie-ui/commit/619f794a4be90048e2999db7439c118daf9846b2) - Added regression tests #514 [`c3ce77c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c3ce77cfae7a22f22239515c0d281f8edf95a415) - fixed the coords for top/bottom left/right #487 [`d5c886d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d5c886d29efcecc3a0587711ee44926d5cd2ac8c) - Fixed Slider error handle color #513 [`9e45953`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9e45953d0f748be0b69a54d7d4d44d9d883ef546) - ValuedTextInput errors #516 [`6b76828`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6b768280567f1108c239af77542f355d9148a146) - TextInput errors #516 [`7c01022`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7c01022509dc36bf53c1b55501be2e36f584973b) - ToggleButton errors #516 [`4479f44`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4479f4406d83ceb28af4a2109b5dd3d1774aa638) - TextArea errors #516 [`c44d661`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c44d661f2191ee3ccca1a6149485a8d6443ec9fb) - ListBox removed errors #516 [`b1def53`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b1def531973386dd688b2ff2b4dd22f8862be0c4) - Flounder removed blur and focus tests #267 [`73502f8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/73502f8adf032cb50505385973144c8e4703bcd7) - RadioGroup errors #516 [`a342492`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a3424921a8b6f940dd1782bf1c7ba2fa9a9f455b) - fixed position left/right for top/bottom coords in percentage #487 [`f1b14af`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f1b14afdde4ee3c35469d3bca1df26569662de70) - TextInputWithIcon styling fix (affecting Tooltip z-index) #400 [`9c0f705`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9c0f705e6280099223b37837da0537fd3a1a54be) - Global id propDoc tweak [`1e8069d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1e8069d34d75ba1bbad972cd3745b6c6f925489c) - added width for toolTipContainer, re-adjusted top, bottom coords #487 [`d0939d5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d0939d5daaf4a52777e4f475a6266b5f85628701) - ScrollBox errors #516 [`10cc06d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/10cc06d7b542bc7f52eda0a43d53446d257f0f8f) - Tooltip errors #516 [`fad1b6c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fad1b6c8b648282ac99f0b33c0aa36a25075a45f) - Release 6.2.3 [`08617ef`](https://github.com/sociomantic-tsunami/nessie-ui/commit/08617ef1506fa4bca4c36971068e00133201e0b4) - z-index 99999 for .tooltipContainer #487 [`2f6acb8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2f6acb83d4fb5ff05b1eb1619dde9fe6795dcf8b) - fixed bottom coords and caret shape #487 [`45507cc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/45507cc01c25300a87f3075b18c4ff5c266a2183) - re-adjusted left and right coords #487 [`200dadd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/200dadd3584f56deabdb3dc2c0c48f91eb3c126f) - Release 6.2.2 [`5bfcacf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5bfcacf000a17565774a06cf3d89db69aca887b9) - Target label using class name not tag name #424 [`537f0c3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/537f0c3aa628ef7ee06f298bf49bae4d8232ec27) - Uploader errors #516 [`abb3bda`](https://github.com/sociomantic-tsunami/nessie-ui/commit/abb3bdaf506d4d353f756dfd3cb25851c12d2acc) - abstracted ::after #487 [`3303089`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3303089ed892583147d1de4ebb4b9d81a672d509) - NotificationBar errors #516 [`dca9c88`](https://github.com/sociomantic-tsunami/nessie-ui/commit/dca9c88ffd80d4d1f57c6bf590e84fd20425dc3e) - Updated Checkbox-/RadioGroup drivers #547 [`70fe974`](https://github.com/sociomantic-tsunami/nessie-ui/commit/70fe9748ce119880d7d486b60c927f60b545829e) - giving tooltip-tooltip min width #487 [`2601ab4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2601ab4378aa77f63201d2792bc17164a423c3c6) - using variables for width, removed the height variable#487 [`c265f2e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c265f2e6d4cbf9630915eb09360c98f6271da164) - re-adjusted caret in top/bottom left #487 [`2ccf302`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2ccf3026a4f26291381dd774741adb08a31e2a2b) - re-adjusted top/bottom for right coords #487 [`8f4993e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8f4993eb4ca51badd91581ab2f354057b31c9e4f) - matched the design #487 [`6eb598a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6eb598a999253eb74312a29ff94f673ddea8224d) - Checkbox and Radio driver minor improvement #267 [`d7a6888`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d7a68882d70dad9bf7ed45a7b834b5790559271c) - Fixed copy-pasta #400 [`982e6ee`](https://github.com/sociomantic-tsunami/nessie-ui/commit/982e6eebdc0cbd57e144638cba49b075bb512415) - Replace magic number with var #424 [`2cbf71c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2cbf71c93d3f1abc6ba6fc9aae75c7d7ddc78069) - Minor test improvement #514 [`2d32f48`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2d32f4811264d5c43cdd9b59ff4aa6d632dea77b) - removed post-css-hexrgb #487 [`b69bdf6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b69bdf6bc5fee6631bd0bcf1056405ee7da9da61) #### [6.2.2](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.2.0...6.2.2) > 13 August 2018 - Fix Slider IE <= 11 #499 [`#512`](https://github.com/sociomantic-tsunami/nessie-ui/pull/512) - add subtle variant to ToggleButton component #508 [`#511`](https://github.com/sociomantic-tsunami/nessie-ui/pull/511) - add align props to Card #507 [`#510`](https://github.com/sociomantic-tsunami/nessie-ui/pull/510) - update module component to use Card component #449 [`#504`](https://github.com/sociomantic-tsunami/nessie-ui/pull/504) - update IsReadOnly props for DatePicker #501 [`#503`](https://github.com/sociomantic-tsunami/nessie-ui/pull/503) - StatusIndicator fixes #520 [`#520`](https://github.com/sociomantic-tsunami/nessie-ui/issues/520) - compiled styles and sprite [`f5003c9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f5003c950a0ac6b5643e8738a46e5032cb913bff) - compiled styles and sprite [`02f5b50`](https://github.com/sociomantic-tsunami/nessie-ui/commit/02f5b50ce7211310b408f39a3fc6230d2924d411) - Update GHPages [`5407a04`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5407a049af9336759ff78c0c32064c900328e9e6) - Export a dev bundle; make sure CSS is minified in prod bundle #506 [`12211b6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/12211b666341f2db80d43030521aba8af7849b5a) - TagInput driver and tests part2 #267 [`d4b05c3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d4b05c3445b841f785713ccd32338a8f0a2fa4d6) - Button and ToggleButton tests #267 [`94e0de1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/94e0de1213ab40673fdbcc49647f71a8c520a765) - Flounder driver and tests part1 #267 [`0a020ff`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0a020fff581a0f7081945e5e1936bb8e613c58a5) - TextArea driver and tests #267 [`ce30176`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ce30176cfe93927d3250eb77774c55322309dd62) - TextArea and TextInput driver and tests #267 [`bc5a4a3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bc5a4a3a92e89b7d1bdd9d8d53220659b4c707db) - ValuedTextInput driver and tests #267 [`e63241f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e63241f4dc76cc9cd8d7db8370382ff89519df5c) - Tabs/Tab/TabButton cleanup [`c26edba`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c26edbab03f11ce9e51e30b35d5ed31b103ca70c) - Checkables tidy up #424 [`75cd84e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/75cd84ebb674e4af234d024b7913a9a4249ab643) - TextInputWithIcon driver and tests part1 #267 [`17a272a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/17a272a6ef36a0884842e4299f486ff7bf868ca1) - Fixed Button tests; Uploader driver and tests part1 #267 [`18b4c48`](https://github.com/sociomantic-tsunami/nessie-ui/commit/18b4c482ca7fd4761bdb10cb08575b2f4c576efc) - Revert "re-factoring lines and re-grouping selectors #487" [`97fd55e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/97fd55e554e5799653479d6fd06a321854324c8e) - re-factoring lines and re-grouping selectors #487 [`6a81f0e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6a81f0ed29eaafbe150542017638284f5e502954) - Release 6.2.0 [`52a29e8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/52a29e8c151349a709e62e6a07694db011fbdba5) - SliderGroup driver and tests #267 [`87af045`](https://github.com/sociomantic-tsunami/nessie-ui/commit/87af04508205114a06233459c3fe0b868fadf096) - Tooltip driver and tests #267 [`3a5846b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3a5846bb648ad59a11b5baabc0deead8003af5f9) - Flounder driver and tests part2 #267 [`2adcc83`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2adcc83fe07bc876880bbbb57a71b4d9cadf4387) - gathered common rules#487 [`6c107a2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6c107a26577f3fc981512e9a535d3e43cf0d18e0) - Uploader driver and tests part2 #267 [`d532cf3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d532cf3733f7010345330d758cb788013248a360) - TextInputWithIcon driver and tests part2 #267 [`69f72fb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/69f72fb46b90c873ad5cfd63b7db88ac5d1671f3) - Removed isLoading tests for ToggleButton #267 [`4113fd9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4113fd940889a9047c05085d38b0a8131e44a9f0) - DateTimeInput removed get and set methods #267 [`710a4a6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/710a4a6782b5f89e31a7dbc012ec27dcbde34884) - Tag and TagInput driver and tests part1 #267 [`6949537`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6949537e16da6c46c64e9bc68248e955e411a0c3) - Code cleanup and tweak #267 [`13fe212`](https://github.com/sociomantic-tsunami/nessie-ui/commit/13fe21232188b5585bedb06e144f4f30549493f1) - Flounder removed openOnHover method #267 [`0172441`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0172441d7cd3cecbd9171e49f791b955993e4efc) - add isReadOnly props to DatePickerInput #501 [`26ddf60`](https://github.com/sociomantic-tsunami/nessie-ui/commit/26ddf60d1a602639bb78f8283e4245fa42abc650) - Removed TextArea onMouse errors #267 [`92aa70d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/92aa70dd52ccb64a2d8e70301d0c6623b1fc97e7) - fixed coords depending on new changes in width, height #487 [`9cf184c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9cf184c1fb67cd69998a128b5f682901279bd31f) - static position for arrows #487 [`1861c9a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1861c9a6c0d156aa5c003602bd9e9d6111823d38) - Export displayComponents dist bundle #505 [`b18f8b9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b18f8b9d2808a988f0701f286ee7f41464abdeca) - Slider tweaks [`980e488`](https://github.com/sociomantic-tsunami/nessie-ui/commit/980e4888e6d5d4ddb9f357de6f465b19c72d58f5) - Release 6.2.1 [`02ea254`](https://github.com/sociomantic-tsunami/nessie-ui/commit/02ea254106882548e0fe56abad03973fee418cc7) - Release 6.2.1 [`64f7028`](https://github.com/sociomantic-tsunami/nessie-ui/commit/64f7028c33290eae2831bbdb6a244f25d6473628) - Further Checkbox cleanup #424 [`c94a01d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c94a01d15fbde4d319929f9a23111ca5aa4b356f) - Release 6.2.2 [`60a0aef`](https://github.com/sociomantic-tsunami/nessie-ui/commit/60a0aefab36e4d5d7589ceb014e26a41aad5973f) - DateTimeInput driver tweaks #267 [`a02e302`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a02e30261225884df5a8f8d3bd20091844355f65) - Nested Text tweaki #521 [`45d2565`](https://github.com/sociomantic-tsunami/nessie-ui/commit/45d2565f78d3aecbfecb27aa5cee4a2eefd89f2a) - ScrollBar tests tweak #267 [`98d0b4a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/98d0b4a355da76520bf8f51af568a20ccee06c2a) - Oops, fixed Uploader; added regression test [`6162aac`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6162aaccdef6fd80300288cbc8ef2dd5574086a2) - Reduced secondary ToogleButton height #522 [`f2b5ccf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f2b5ccfae6c3e065036fa9aa56e53de363126203) - Removed eslint no-console comments #267 [`75d35da`](https://github.com/sociomantic-tsunami/nessie-ui/commit/75d35da65cdc85a6cc6fb4b60112d5584e4fb4ff) - SliderGroup minor code cleanup #267 [`a92463b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a92463bb02d818ec7e6e19331d3eb56bea20de3c) - display none for subtitle subtle role #508 [`1b21864`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1b21864a0bbefc8767ea39ac103ca6806187a9ca) - ESLint rule tweaks [`017523f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/017523fe09a478cc636befa4aed17c84163f7fbe) - Card contents should be flex column [`1a08274`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1a082742452bcfed853c42db1159ffd485c8cc87) - Remove silly radix lint rule [`97726a0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/97726a0b772d9d2512f5dade2f0564521e4ee003) #### [6.2.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.1.1...6.2.0) > 7 August 2018 - Minor changes koala [`#496`](https://github.com/sociomantic-tsunami/nessie-ui/pull/496) - add warnings when children not expected #485 [`#502`](https://github.com/sociomantic-tsunami/nessie-ui/pull/502) - Issue 494 update focused styling [`#500`](https://github.com/sociomantic-tsunami/nessie-ui/pull/500) - Add support for Windows machines [`#498`](https://github.com/sociomantic-tsunami/nessie-ui/pull/498) - Fix broken drivers affected by minifying the bundle [`#497`](https://github.com/sociomantic-tsunami/nessie-ui/pull/497) - fixed the focus behavior of Slider #492 [`#495`](https://github.com/sociomantic-tsunami/nessie-ui/pull/495) - Converted React.PureComponent’s to functions #425 [`#482`](https://github.com/sociomantic-tsunami/nessie-ui/pull/482) - Add variant of scroll buttons / indicators #489 [`#491`](https://github.com/sociomantic-tsunami/nessie-ui/pull/491) - updated the slider design #490 [`#493`](https://github.com/sociomantic-tsunami/nessie-ui/pull/493) - Issue 480 tabs secondary controls [`#488`](https://github.com/sociomantic-tsunami/nessie-ui/pull/488) - Issue 463 scroll box overlapping [`#484`](https://github.com/sociomantic-tsunami/nessie-ui/pull/484) - Issue 479 password input hover [`#486`](https://github.com/sociomantic-tsunami/nessie-ui/pull/486) - Add support for Text Style in Table Component #471 [`#477`](https://github.com/sociomantic-tsunami/nessie-ui/pull/477) - Add onMouseOver/onMouseOut #476 [`#478`](https://github.com/sociomantic-tsunami/nessie-ui/pull/478) - compiled styles and sprite [`c9c0518`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c9c0518f4570f639b25591faff494f4aadb74a9a) - Convert TextInputWithIcon to function component [`919c0bf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/919c0bf1d0fbe6a137a25ecf851b1ab70ba00896) - Updated Checkbox and related tests and drivers #267 [`0c45724`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0c4572445345b8f3fe63022e120d77423b69105c) - Updated PasswordInput driver and tests part2 #267 [`c7fdfb9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c7fdfb9c6175301b85b6e0b6c1ac74a79baf2175) - Removed CommonDrivers; updated tests and drivers part 1 #267 [`aca540d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/aca540ddf9a996e4d427318007a50736542b3069) - Updated InputField driver and tests #267 [`950203e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/950203edff225f0a28dbabc854588a7b605cbcfc) - Updated CodeEditor driver and tests part1 #267 [`ff609e2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ff609e274f755536a5354b4ba5017a64dbed16b6) - Updated GHPages [`fd5f532`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fd5f53202ecd946a5d13cf99c7077cd3dd22c285) - Updated CheckableGroup driver and tests part 1 #267 [`0a7de15`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0a7de1575e9d273d1c394b115acd3c04b68345be) - Updated Button drivers and tests #267 [`2d79b63`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2d79b63b7a6e0f871511d33ecec8a9b701eadf0a) - Updated DatePicker tests and driver part6 #267 [`21ee4af`](https://github.com/sociomantic-tsunami/nessie-ui/commit/21ee4aff6b9a190feedf3134371aaa44d3376da3) - Updated DatePicker tests and driver part5 #267 [`12dd30e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/12dd30e0c470c9f8ca9204f74fda3405c1c05088) - Updated IconButton tests #267 [`0116ef4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0116ef4b8991e6d7d37c1c1261529c6de32b89ba) - Fix nessie build on Windows machines [`6cd4ff3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6cd4ff3744da6fcc19ede0c5ef95b4be9742c303) - Button fixes [`bd2ea4d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bd2ea4d81b7fefa5b91694a891031e430f9ad064) - Updated Slider driver and tests #267 [`1c65df1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1c65df17c0ce865533831d5f20ce705a7247eb50) - Removed RadioGroup tests and driver #267 [`2483c49`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2483c490d16f9bf61b7893f5b9bd644cd91ea0c5) - IconButton circular focus ring #494 [`0a91e0c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0a91e0c9076ea0582ac5a3a41b0e725c9aa309f6) - Paginator fixes [`91d3412`](https://github.com/sociomantic-tsunami/nessie-ui/commit/91d3412d86293a4b41001a461f9231ecb4d38e6e) - Updated DatePicker tests and driver part4 #267 [`f9e0280`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f9e028063e0a8e14ea35ffc5321aead5288c4410) - adjusted colors for all arrows positions #487 [`c9939d0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c9939d020a59e9149ee9fdf0efa500698692dfd5) - updates to TextInputWithIcon #479 [`8e1a397`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8e1a397c1d13b54ef17083bed8d73e05c6a70723) - Release 6.2.0 [`f026857`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f02685750fe65b58d135cce1660202c50a1eea57) - Updated Table and TableCell driver and tests #267 [`a308d3c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a308d3c8e4085ee46afd5555be10caa466293030) - Updated tests for function components #425 [`2a3dc95`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2a3dc95c17702ec239a95c12c2f13c96f6731269) - Updated driver and tests for Fieldset #267 [`f106771`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f1067716d3dd8799b7f5e6448fd5ea8356e77151) - Updated IconWithTooltip driver and tests #267 [`aa194a7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/aa194a728218e8ec0c7255c0b762db05a251b4dc) - Added Icon driver and updated tests #267 [`fcd9135`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fcd9135574df6859ea047e9b77670a741d8ac417) - Updated Tabs and TabButton driver and tests #267 [`b2b3413`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b2b34136b520306d35ef575f6ca68b95d913977d) - Updated DatePicker tests and driver part3 #267 [`4cb1385`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4cb1385ccfd76c503987edb36504c853dca4e59f) - fix tests #479 [`0bb4cb5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0bb4cb5c107745ee7e89f3147c241ab2ed1af091) - Updated PasswordInput driver and tests part1 #267 [`7136259`](https://github.com/sociomantic-tsunami/nessie-ui/commit/71362598d8722c06187956aeae96e888b87649ff) - adjusted the x, y positions of tooltip container [`bd4b0f5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bd4b0f53ba6b5610d64104b47fdbd5dbcfca8c0e) - Updated Module driver and tests #267 [`9ec92a4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9ec92a42326150f2096c7ee1b76c2c1026df92e0) - Updated DatePicker tests and driver part1 #267 [`e292c58`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e292c58794883282f45102ea36054e34d47bd24b) - simplified tooltipContainer for top and bottom #487 [`68d9540`](https://github.com/sociomantic-tsunami/nessie-ui/commit/68d9540ffa3d8eee9f1f4e852d92a6cca0c18dcd) - Simplify the ScrollBox implementation for now... [`c601154`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c6011548175d0764e11fc3bab4eeeb1d90e469e4) - adjusted color for top and bottom #487 [`766388b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/766388b13e6dac910e084542d29f0e07c0e1f6df) - Updated CodeEditor tests and driver part3 #267 [`13eac5e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/13eac5e3a96cded8f164c241f33fdbc0ad0df9ae) - Release 6.1.1 [`2250ada`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2250ada8857fd6c6925ee6fcd197a9ac74dcbd76) - Updated Label driver and tests #267 [`fa32232`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fa322328e8d50373fe069bb3f7ea70c12471f6bb) - adjusted arrow position for top, topLeft, topRight #487 [`54fcfb4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/54fcfb4706ac54516c0f54b69f5ca37ef01a3aa5) - Updated ComboBox driver and tests part1 #267 [`28a28ab`](https://github.com/sociomantic-tsunami/nessie-ui/commit/28a28abf6064a9300b66e36aea151e1c4bc6b482) - Text component tidyup [`3fccfc7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3fccfc741162f441cc0afc37a3a1073b02924292) - adjusted tooltip for left and right positions #487 [`daa6c4e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/daa6c4e55dc23ca696a23a1a5638149204e2f0dc) - Updated NavItem driver and tests #267 [`891eaf8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/891eaf8f7a1ae2583cb7ebd92d87f8c0cc9a09bd) - rename overlap prop and use variable name #463 [`9a2c168`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9a2c16887745554026ad9ce8ddb9847f1ab9e774) - Added driver and tests for TableCell; fixed Tab test #267 [`cd4f21a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cd4f21a14ba9efddeca11e584dff203ddb7c4793) - update focus state for paginator #494 [`bf80279`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bf80279e0f5e2ea7b769e41cbd72f5cdbc1544d9) - avoid scrollbar content overlapping prop #463 [`69c265f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/69c265fbeb274f5ba97074ba1c235720477dcf7b) - Added Tab driver and tests; fixed Switch tests #267 [`3ad3597`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3ad35975e1f690a9a5b191aa547476bf7ac01288) - Fix ScrollBox padding to compensate for ScrollBars #463 [`e0df3ef`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e0df3efd7fe9e485cccac9677d9a1d62f64d54b2) - update focus state for Tabs #494 [`8ef66d5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8ef66d5060d3325ca714dc46654a44f26b2398c4) - Updated PasswordInput part1 #267 [`cdca54b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cdca54be321333d5a3c43385096e6040c4d20fc2) - Position the secondary controls content in the top right of the Tabs container #480 [`2bd793f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2bd793fb40badb02e687d1dfbb5da4e5d09a087a) - update focus state for valuedTextInput #494 [`c710cd1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c710cd1f2cba69c500b1212899493534853a182b) - adjusted arrow position for bottom, bottomLeft, bottomRight #487 [`ce95fb0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ce95fb062350c79207ec90de6cc6e99a2c537f48) - Updated DatePicker tests and driver part2 #267 [`0f2a1b3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0f2a1b33f58200b01b7627925b9c927f3dc383db) - ToggleButton secondary focused tweaks #494 [`97967ef`](https://github.com/sociomantic-tsunami/nessie-ui/commit/97967efb8c8bb7850177883c7a8271ecf7778f9c) - Add a secondaryControls prop #480 [`a10f63d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a10f63d9d45f23030668da8312176d5c84041ffc) - Updated InputField driver #267 [`ea516c0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ea516c0af2e8cb52165256f26e1d199c58cdb2f2) - update boxshadow for button #494 [`918a155`](https://github.com/sociomantic-tsunami/nessie-ui/commit/918a155ea23c0de849261e7775c542c6ab786d7b) - Fixed focused error focused styling (InputField, Checkables, ComboBox) #494 [`a2bfb35`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a2bfb352e3ba7dc5be24b00bf34d04ff49e5aa1e) - Fixed NavItem focused styling #494 [`37d91dd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/37d91dd823b2c7567ed41747c912354833372247) - Improvised Uploader focused styling #494 [`0f4d75b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0f4d75b933a2eee0093fcb18056a0acd9c4e77df) - Fixed Checkbox code #267 [`1f54d06`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1f54d062886246ce372fb638bae5b6476e4142a5) - Fixed Tooltip positions [`25f08c3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/25f08c3e52ab06bc3b048af559b2826a9da3170a) - Improvised Flounder tag focused styling #494 [`85ca09d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/85ca09d49d6c4d4b3be34f3fd7d06ee940b74e28) - Uploader tweaks [`b02b97c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b02b97c2e62929d7fe8a4a62d9b7e9c0272896ae) - ScrollBars not overlapping each other #463 [`80a32b9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/80a32b90a8a0020afa9a666adc879c9b47921c74) - Fix ScrollBox icon positioning in IE/Edge [`e2fad5e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e2fad5ea96896f49adc12afd6b8661aebd6efa46) - Fixed flounder error focused styling #494 [`7ea8eb3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7ea8eb31357b48e98c2c3c88c5d6ecba79f9e536) - ScrollBox compensates for macOS overlaid scrollbars [`8210e19`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8210e190c5769d5766eb05ae79fbfbb896f93e69) - Updated NotificationBar tests #267 [`6a2498c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6a2498cb6df6fddaddf79985d1bfb1f344b10263) - update focus state for switch #494 [`1b5f005`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1b5f005a5299de02c2c3abaf82264e81110be01a) - Only do padding compenstation when ScrollBars are shown #463 [`1e38163`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1e38163f3bf9caef34382532b689c70c429eeffe) - update focus state for NavItem #494 [`3523ce6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3523ce6048759962d02698733fd02f310e9a6853) - update focus state for iconbutton #494 [`9538811`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9538811b892da9e3a6c6e2d9ac8a6f642957b8f0) - Updated ListBox driver and tests #267 [`a1671d6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a1671d61a07ee86f72292ff661b124cc1a53ced6) - update focus state for ToggleButton #494 [`6f3d7d5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6f3d7d5d8befc5e9c82da8331ae9f1569aa7c897) - TabButton focused tweak [`dbfb1a2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/dbfb1a2f4a8bb09097bb5a83567b0bdd3d784aab) - StatusIndicator default status [`51e3f6e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/51e3f6e1fcf22121fcaf814320be857a0cdb9a93) - Updated CheckableGroup driver and tests part2 #267 [`f73cda6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f73cda659ec6f9d05acbf804f51d2c6857d03011) - fixing arrows overlay and pointer-events:none #489 [`628124c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/628124c51c852bc0262de7e5143d277d42377ef2) - setup position and color of arrow for left and right sides #487 [`bb16ecb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bb16ecbf8520cf48ce823256c78817fc133ec3c0) - ScrollBox CSS tweak [`e759015`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e75901576cd8be7bd515926936ffa9ffbcf0117a) - Further CodeEditor focused tweak [`5feec08`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5feec080d5ef10d13217c9dfdbd9ab83b9131b08) - Removed CommonDrivers; updated tests and drivers part 1a #267 [`8ab6e25`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8ab6e256c4371bfe5a07b7f610abe4122131c1b8) - IconWithTooltip tests code cleanup #267 [`1f7c084`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1f7c084df1050f5182a28236fc36423ebadfe2ec) - Improvised DatePicker focused styling #494 [`0973838`](https://github.com/sociomantic-tsunami/nessie-ui/commit/097383814d85cbdf33cae7c21d9c23e9da6f0c3d) - Tweaked IconButton, TabButton focused styling #494 [`c155b26`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c155b26a59bc08d506076a531d1a4cdb04efb2ef) - CodeEditor error focused styling #494 [`22cda22`](https://github.com/sociomantic-tsunami/nessie-ui/commit/22cda224fafca22fd0cde47f24f6f66c098821ae) - ScrollBox statusIndicatorVarient options naming [`9f6adb6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9f6adb68184ac6cd28425449533a5e7bd98ce584) - Fixed ValuedTextInput error focused styling #494 [`f2ca55b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f2ca55b3863ec2dd7f703f3e2915702f77839a03) - Updated CodeEditor driver and tests part2 #267 [`4f4da54`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4f4da54b4156e485cc46ca2da762894bcbadcf27) - Paginator IconButtons focused styling tweak [`cfc5dd0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cfc5dd02283e2a34e0f271d85c8f46a5e4a67619) - pointer-events fall back to visiblity for IE10 [`b2773bd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b2773bd240dedbbd55d1667e53e8a3cef7f2bf28) - update focus state for datepicker day-anchor #494 [`5f182c4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5f182c470ab10cdb8d5c07481bc29d04c98adbe5) - Set appearance: none on buttons [`43d9910`](https://github.com/sociomantic-tsunami/nessie-ui/commit/43d9910162dea178056efe0ce079a789babf7411) - adding default props for textInputWithIcon #479 [`bac87b4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bac87b446ad1fbce6c7e55a1eab8b4360f720d85) - update focus state for checkable components #494 [`25215d8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/25215d8e2666739e29ecc24988cdfd4954e17817) - Changed toggle to change for Switch #267 [`04a832b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/04a832b2a7f2a64163f73e75d13476b9d37e67be) - Fix webkit macOS scrollbar misbehavior [`b56758f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b56758f2b9d5290d1155a2afb32cf3cea5b66b41) - update boxshadow for inputfield #494 [`b20afda`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b20afda86f60fcea5af81c4307ae3b5f95a194e2) - Switch propSpec fix [`b717283`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b717283c815639a8548046e00aa943ca086c2eeb) - update focus state for flounderdropdown #494 [`f410b40`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f410b4022f11946b278d593c9eb27a669d83e90c) - IE10 Button fix [`b2c0369`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b2c0369cf59d85114d4b614393b72113a3eb3527) - update focus state for TagInput #494 [`8e70632`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8e706321a6643ae57b32f2920df1804039ee0697) - Changed how Button driver is targeting element #267 [`d84d3a1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d84d3a1d37a87cb6c022bfc86ca2f6a2a68a6d33) - Fix IconButton propspec [`d34cb59`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d34cb596c53fc59c550dfb8c3e824dc40077b45e) - fix typo #480 [`705f496`](https://github.com/sociomantic-tsunami/nessie-ui/commit/705f496d0c17c03759785d498dca4aff0cc6061e) - removed console.log method #492 [`f9e7409`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f9e7409f88434ba2f29abaec21221694ece43a4f) - Disable nonsense linter rule [`a10f9c1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a10f9c1d9ce29fda600bc642486b93dd0ff61075) - Fix TabButton alignment in IE/Edge [`9d476bf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9d476bfad4f31b0f0ffd4176108e4cedec0d9248) - Adjust ScrollBox for IconButton focused adjustments #494 [`686b422`](https://github.com/sociomantic-tsunami/nessie-ui/commit/686b422ff3feb571534add1b7eccbefe9ffbe861) #### [6.1.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.1.0...6.1.1) > 25 July 2018 - Issue 464 fix on scroll interface [`#465`](https://github.com/sociomantic-tsunami/nessie-ui/pull/465) - seperated readonly prop to TextInput, IconButton #461 [`#469`](https://github.com/sociomantic-tsunami/nessie-ui/pull/469) - Tooltip sizing [`#472`](https://github.com/sociomantic-tsunami/nessie-ui/pull/472) - added padding ability #462 [`#466`](https://github.com/sociomantic-tsunami/nessie-ui/pull/466) - add mouse events for IconButton #447 [`#458`](https://github.com/sociomantic-tsunami/nessie-ui/pull/458) - compiled styles and sprite [`b56ec4b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b56ec4b6df8e8c563f798eba2a5e90e8e8cec0ce) - Release 6.1.0 [`8006f6b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8006f6b82428cf661274dd87ca371799149846b9) - Updated drivers and tests part 3 #267 [`7039d2c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7039d2cc3983e2128f8b567b09836474ea5eb3c0) - Updated tests and drivers for PR part 1 #267 [`9fb7f28`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9fb7f28ffe44c6dae4965c5a4244a545444339b5) - Update GHPages [`7df00bd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7df00bd97b21e23f05718628aae33722a12a1976) - CSS-only Tooltip sizing solution [`073088c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/073088c6c2f6d491504076ea83e0f6b4067c4df1) - Updated drivers and tests; removed simpleComponent driver #267 [`9b815bb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9b815bbc86fcde366ad0a10cebe5718c29bbf0df) - Example of simplified ButtonDriver + updated tests #267 [`53af9f0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/53af9f030816c90da866bd4518aa6f149a2df2e9) - Updated tests and drivers part 4 #267 [`4d265e9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4d265e95249e5101bc0726fcbf3b7c45aed93926) - Tooltip cleanup [`b875026`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b875026144e7528963885b6d610b02f46a5666c0) - Reverted eslint rule; updated tests and drivers for PR part 2 #267 [`8bc5b89`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8bc5b899d060aeb29f14a1eae76321a1e3b81cd7) - Code cleanup #267 [`4abe5f9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4abe5f968c7ff228c9c79475422c03beb4b96144) - passing the readonly to all child components [`22f295d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/22f295ddfbbc2f0fa3bc65ad937ef09eec45da6c) - Release 6.1.1 [`a6cf040`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a6cf0402184fbe4ababce90ec5a64186e227f11c) - ToggleButton secondary design tweaks [`75f03c9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/75f03c93b8932259c1472e6e7e0e7cb19b0e014c) - Regression test for #464 [`e5e31be`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e5e31be5811ffc8fcd319d24fe791c7fb2826eac) - More ToggleButton secondary design tweaks [`b754b45`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b754b458a364cc3d426e8868addbc60cc6eed4b7) - ScrollBox logic tweak [`d9dc585`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d9dc585d97fa5073ec9ac3b1b2e94ac3fa6263c2) - added padding to the content [`f9566c8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f9566c8764c8f57b3ed29e333c169688bf97ccaf) - Restores the ScrollBox’s previous onScroll interface #464 [`a166259`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a166259e342b33277fe93db442991a2f1f98c1f6) - Make it work in IE (tooltip cannot be flex) [`dabd6a4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/dabd6a46dadde97d730e5798b9b45a0f529eb518) - Updated CommonDrivers README #267 [`72c1fc4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/72c1fc41c67af28f5f5110773b58cab3dd0ba3cc) - Set comma-dangle rule to avoid trailing commas in JS #267 [`e21acee`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e21aceeab06786515b561f30ccd9abeaca1d4a64) - set isReadOnly as disabled for Slider component #446 [`12d95a9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/12d95a90adf0e8c4e495a7557ec1452f69db6803) - Button/ToggleButton icon spacing fix [`cdffacb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cdffacb45f408cc1321a068fd79bde3729d4fe50) - switched isReadOnlyBtn to isReadOnlyButton #461 [`87d0443`](https://github.com/sociomantic-tsunami/nessie-ui/commit/87d04439ab10b774cab973b34ae4469180f90398) - Fix ToggleButton mouse cursor in FF [`d0c4efa`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d0c4efa62b8249566a607086c3183b407cab3d5e) - Further ToggleButton styling tweak [`ddade0b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ddade0bf231f031d3394b6f99f172cb3fb4b1e28) - Updated Tooltip max width/height [`6be29ec`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6be29ec065846f30ca90d3a95277f3d72fbf688f) - updated test file to handle the new props [`fb63f53`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fb63f53f533b5d9a2d4c86f6b777c8f2dd88b31f) - Fix build fail #267 [`4c241b1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4c241b143a5689203e12029b8815b92e48cca066) - Fix GHPages script [`d8185ff`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d8185ff8c13e4eca8849b9e8ce8feb4376e0521c) #### [6.1.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/6.0.0...6.1.0) > 20 July 2018 - Minor changes jackal [`#437`](https://github.com/sociomantic-tsunami/nessie-ui/pull/437) - Scroll bar improvements [`#444`](https://github.com/sociomantic-tsunami/nessie-ui/pull/444) - add inputRef for hidden input and hidding it properly #448 [`#457`](https://github.com/sociomantic-tsunami/nessie-ui/pull/457) - Create Card component #451 [`#454`](https://github.com/sociomantic-tsunami/nessie-ui/pull/454) - added font-family directly to flounder #452 [`#456`](https://github.com/sociomantic-tsunami/nessie-ui/pull/456) - Improve text styling options #436 [`#438`](https://github.com/sociomantic-tsunami/nessie-ui/pull/438) - fix/IconButton: onMouseDown tweak to avoid react warning [`#443`](https://github.com/sociomantic-tsunami/nessie-ui/pull/443) - Issue 441 status indicator styling update [`#442`](https://github.com/sociomantic-tsunami/nessie-ui/pull/442) - add divider optiions for Table component #435 [`#440`](https://github.com/sociomantic-tsunami/nessie-ui/pull/440) - Fixed Modal dialog carousel close button [`#439`](https://github.com/sociomantic-tsunami/nessie-ui/pull/439) - created the toggleButton component #275 [`#315`](https://github.com/sociomantic-tsunami/nessie-ui/pull/315) - Issue 54 implement build class name [`#434`](https://github.com/sociomantic-tsunami/nessie-ui/pull/434) - added id prop #430 [`#432`](https://github.com/sociomantic-tsunami/nessie-ui/pull/432) - Revert "Issue 54 implement build class name" [`#433`](https://github.com/sociomantic-tsunami/nessie-ui/pull/433) - Issue 54 implement build class name [`#427`](https://github.com/sociomantic-tsunami/nessie-ui/pull/427) - [gh-pages] setup gh-pages [`#431`](https://github.com/sociomantic-tsunami/nessie-ui/pull/431) - Remove proto/Component and change to generateId [`#429`](https://github.com/sociomantic-tsunami/nessie-ui/pull/429) - Migrate tests to Jest [`#426`](https://github.com/sociomantic-tsunami/nessie-ui/pull/426) - Issue 385 styled scrollbars [`#399`](https://github.com/sociomantic-tsunami/nessie-ui/pull/399) - Deprecate Form #413 [`#418`](https://github.com/sociomantic-tsunami/nessie-ui/pull/418) - CodeEditor Rendering bug fix #414 [`#420`](https://github.com/sociomantic-tsunami/nessie-ui/pull/420) - removed justify-content from module header #421 [`#423`](https://github.com/sociomantic-tsunami/nessie-ui/pull/423) - compiled styles and sprite [`e6f850b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e6f850b6522c82ce88f06fbf256060f13457c43e) - updated docs for gh pages [`6606045`](https://github.com/sociomantic-tsunami/nessie-ui/commit/66060455ad870f095b2c3a021e69b235fcae075e) - Release 6.1.0 [`1f3ee4c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1f3ee4cd3cfb29eb6deb442619295cd88f44dc34) - removed <Css> component #54 [`082094c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/082094c46b446ccc5625aad89237d6d6fa8c451d) - Updated/cleaned package.json #397 [`0c8fe93`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0c8fe93351981b33880244dcc9fe35399ff8a7f5) - depending on latest of lochness [`9b45695`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9b45695ea5504c2984564ad8f4327d300d3dfc30) - Updated TextInputWithIcon tests part 1 #397 [`ed0beba`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ed0beba6dbb7b65379c5cbb247d1351a34e554c5) - ToggleButton cleanup [`2b44afc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2b44afcf6bcc6e62da8b9ed4c933b61cf7341e65) - ScrollBox improvements [`aee0acc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/aee0accdb60701a604a19bb3b7f84e7192b3fd9f) - Release 6.0.0 [`826f5ef`](https://github.com/sociomantic-tsunami/nessie-ui/commit/826f5efdd101d4fff0eb46e3f23fb6a84451be0f) - implement requried, progressIndicator, Section, Slider, SliderGroup #54 [`b53263c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b53263cbf1cadef345b03c321d1d53de636bb902) - Fixed PR issues part 1 #397 [`d6656b2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d6656b2eafabe73ad08b3334972e0302f900ccfc) - Fixed ScrollBox tests [`b060b44`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b060b443f518de323518f4d6e17be9ee90abcc3b) - Code cleanup; fixed PR issues part 2 #397 [`b4a3fc3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b4a3fc3fd2b365a8c4c5e579d2f8ae3aa707fbe9) - Updated DimensionsInput tests part 1 #397 [`6079a2d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6079a2de0df9275e6cc59bb90d57009b53f9f122) - Updated Flounder tests part 3 #397 [`48650e5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/48650e5faf48b0b4b203ae4686ab7e8fff0b6dd7) - More ScrollBar/ScrollBox tinkering [`18da92b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/18da92b316050a8cc8c1b9f47d531d22a51a856c) - ScrollBar no longer uses range input [`5035a00`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5035a00adc7fe0a421a3b8a5c06a466689bc8f00) - Tidy up ScrollBar componenet [`71e934d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/71e934d3a243d59e931e61a5bede0fb60a4491ac) - Updated tests and test scripts #397 [`68568fd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/68568fdc65f451ac2569d3b4d35ad381109e93ec) - implement TextInput, ToolTip, Uploader #54 [`fb5369e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fb5369e574a68f0bf7678cfa862314e4098788ae) - Updated ScrollBar driver and tests [`b97730e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b97730e8c690f0b2e3cf6c6abec88718e98033f8) - Updated config to run tests for CodeMirror and Flounder #397 [`f49bb45`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f49bb456a432dba874f2f6f866d5d7618ead5030) - Removed wrapperDriver and updated affected components #267 [`b05f367`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b05f367769305eb1bdba1ea2f1fd8679588fa948) - implement paginator #54 [`5f8bf28`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5f8bf284db369acea7a1f80009c9a5d7bd33785e) - Updated drivers and tests #267 [`c62fefe`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c62fefe57adcbbc4c695162efe3ad0990d587ff5) - made use of css native scroll #385 [`49710cb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/49710cb73de5567760ce2a18ab80d572be89b3f4) - decreased nested <div> to 2 instead of 3 #385 [`6467b54`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6467b54e2539e4104543fba09fdc95f6a018e02e) - Removing unused style files [`102a91a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/102a91a26f08600f49be401d34aa47a9609bce56) - implement Sorter, Spinner, StatusIndicator #54 [`11662e5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/11662e5b25c4fddefc36894eda62b4dfb97be03a) - removed Css injector test cases, added buildClassName #54 [`e562af4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e562af4470f3838232f09a9e98bf24e43b38eac1) - removed import Css statment #54 [`45ea570`](https://github.com/sociomantic-tsunami/nessie-ui/commit/45ea570f27ac0726e51101e6a3ae452ed1f4c975) - Update tests [`b002969`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b002969281f96c5a3bf7bf5e2a0a55d92f8b9b76) - Moved generateId() from defaultProps to props #425 [`f6b1ca8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f6b1ca899b93099df61d2f3147f677de23e333e6) - improve Text options update #436 [`390d3c2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/390d3c2346bc5cb1d3b1f072bed80878117f9150) - switched tests to jest methods #275 [`c323708`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c3237084e086d8b749aff63f862786a5d255d524) - Updated ComboBox driver and tests #267 [`d84ea43`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d84ea43403df3b783163cb62a2c5226dc967f663) - removed hoc folder #54 [`b5ca24d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b5ca24d29a676107fca6f9430aa26a53b35ac1a3) - removed hoc folder #54 [`25a6ccf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/25a6ccffb4f8dc84dc31726b0fd9c422a523fd4d) - implement pageContent, pageHeader, pageFooter #54 [`a09eac3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a09eac3f51acffeeb6cb32295b42355b5aec4077) - added subTitle, updated theme #275 [`a8b9223`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a8b9223872f21c4a6132f723db9dd529fcdc6231) - implementd Divider #54 [`c883487`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c8834879c61585e798e17cd07c503350de925f6e) - implement ValuedTextInput #54 [`4587e8f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4587e8f0741fcee9d811a146110e3d754e737ad5) - implement IconButton #54 [`a2a08ad`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a2a08adaa985d1be9a097439d41eefaf743ac5cc) - implemented IconToolTip #54 [`795676e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/795676e8ff7edeb71fc302ae5cf2d440b7b48e73) - implement NavItem #54 [`ef44486`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ef4448624ef73d81ca2b809d851d870801cb4efe) - update StatusIndicator styles #441 [`c5f66bd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c5f66bdd238c73f304c2d46850643d410cd079b2) - implement Animate, NessieLogo #54 [`a1039cd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a1039cd816f24ac0d0bbfa03eeeb6d593c1edf61) - implement Fieldset #54 [`5345153`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5345153d36ddc2d4d394bf8fe643f79570ea55de) - implement Tab, Tabbutton, TextArea #54 [`136b178`](https://github.com/sociomantic-tsunami/nessie-ui/commit/136b178f95012a011e750d1a23c4f3d6596f0fb2) - Restored prev ScrollBox behavior [`dd014e6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/dd014e643c947bd56f470dbb012fc33b0fdfbf3e) - Updated Tabs with generateId #425 [`192ec90`](https://github.com/sociomantic-tsunami/nessie-ui/commit/192ec905384d3dfaf2dd92d974e2332fb2b5d0a8) - implement NotificationBar #54 [`11e555c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/11e555c3d27e38cfbe10f5bf511dc5e01092d1c2) - added copy methods [`088307d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/088307d883e2c08700157a044e0128d6a1810225) - Updated Slider with generateId #425 [`1273e26`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1273e2624313f7abcd36a29f0ddb097c4bd03dfa) - revert to simple href [`1817312`](https://github.com/sociomantic-tsunami/nessie-ui/commit/18173122df2a7c8c812b593630de8e28ed934ad1) - implemented Flounder, DragNDrop #54 [`d2cdf85`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d2cdf85e7aaf8d8b874fa8108d3c143a2d8bb009) - Moved ClickableDriver to SimpleComponent #267 [`4414740`](https://github.com/sociomantic-tsunami/nessie-ui/commit/44147409a0be2f9482bcacb9df0228b5fdb29d9c) - implement Module #54 [`f259d89`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f259d895ea1a141933a1f13b60951e37a3ff383c) - Slider tests code cleanup #397 [`6312d6d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6312d6dcf8877f52056a397698dd1bca16f98733) - Updated readme; simpleComponent extends wrapper driver; added missing jsdoc in inputComponent #267 [`eb56f3a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/eb56f3af08bab2b23d2485d33be8b6b79fc0f523) - implemented CodeEditor #54 [`6187031`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6187031b1984c1fedd104b94f84d63c8011bc6c0) - More ScrollBox fixes [`d40594a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d40594a671b7f95b23259885d11242f1dd1fc234) - implement ModalDialog #54 [`c67575f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c67575f7ba86b4e8726446def9223eb63d1b92f2) - implement Label #54 [`1383209`](https://github.com/sociomantic-tsunami/nessie-ui/commit/13832090a38d78b9de264eda09cf368fc44e6917) - Color palette fix [`ede6c4a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ede6c4a683fcb7c116c477ff5e3703666a11d863) - moved the thumbSize display to scrollBox + removed onWheel handler #385 [`06e51b4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/06e51b450754166684a700044c5f5af7b1402138) - Updated Section with generateId #425 [`3ea7895`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3ea78954a980c8dbd9f2a5fb0d6a951306675876) - maintained test and driver + fixing scrollBar vertical [`50f0e38`](https://github.com/sociomantic-tsunami/nessie-ui/commit/50f0e38aef3774424b403a7b40d55713df57c969) - updated gh dist, updated copy methods [`db10a2f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/db10a2f179d1e5f74b90a29615a14e400b87ad83) - Updated SpriteMap with generateId #425 [`f186347`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f18634724eeede3c6d03c0941cd72fe761c42d78) - implement Button #54 [`2c34dd6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2c34dd67f9bf1e5abbf097860a38f1d2c462fa1c) - Color palette fix [`36867ae`](https://github.com/sociomantic-tsunami/nessie-ui/commit/36867ae896f2715daf925fb1ec008a8d6f41813f) - Updated Tab with generateId #425 [`5edd26d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5edd26d1f98dbfc48b88e3bc2532af7b0853f1f9) - implement PasswordInput #54 [`15f13db`](https://github.com/sociomantic-tsunami/nessie-ui/commit/15f13db9710f48bb12703f2ff0550b8320f933de) - Removed webpack test in favor of jest #397 [`09839c0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/09839c0a52e6dd6238f64dd883c23843fabe889e) - add mouse events for IconButton #447 [`526b816`](https://github.com/sociomantic-tsunami/nessie-ui/commit/526b81605f5f61b043dcec55cb723865b70d5c8b) - ScrollBar tests minor codestyle [`eff5ca5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/eff5ca5801b9b0705439b955ede589462544c713) - Updated DimensionsInput tests part 2 #397 [`b543a5b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b543a5b929dc7e2249e068d70a0bfda02eba133f) - Updated TextInputWithIcon tests part 2 #397 [`6b3fe13`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6b3fe13dcd7ba158a9c5d60de803aca0384e4c9e) - implement pageContentHeader #54 [`65afb78`](https://github.com/sociomantic-tsunami/nessie-ui/commit/65afb784436d4d591af00e047db65b858905db47) - Updated Tooltip with generateId #425 [`b3f533b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b3f533b4748f7e5c3358e309f9ef93c252385b83) - implement Progress #54 [`2e6610c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2e6610cf8f259dc64a5e7e24ade07a4987208617) - implement Nanbar #54 [`7330eab`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7330eab3ddb824df1e3fb55375d7cac2ada24710) - Updated Button with generateId #425 [`146ad9e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/146ad9e1345a86e8ec670a2d460e373e69a68917) - implement NavList #54 [`8fa9463`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8fa94631c6a90d7580210a7540a03a02f7111392) - implement Page #54 [`0973457`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0973457f3bc490282a86baf2338c024652632a0d) - Element.scrollTo() is a nonstandard; set scrollTop/scrollLeft directly instead [`898a074`](https://github.com/sociomantic-tsunami/nessie-ui/commit/898a074d83f5f8a2ff9822c9f4bce568562049b1) - Updated TextArea with generateId #425 [`44d1656`](https://github.com/sociomantic-tsunami/nessie-ui/commit/44d165660bb2d0aa79fdc0b5a8980e58c2aac6a0) - lochness bump, update gh pages [`260fd05`](https://github.com/sociomantic-tsunami/nessie-ui/commit/260fd05c4dd9ef643781d277c33266951b2d2b35) - Updated CodeEditor and TextInputWithDropdown tests #397 [`6259d21`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6259d21c9eb49a9c883d756a4b77f2ae553da711) - Updated IconButton with generateId #425 [`e3e27b0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e3e27b0b1b461e0374005947d81c175a0b98862a) - Updated InputField with generateId #425 [`0612cb2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0612cb2a69f7109ec08ce1e9c87379fc10f30092) - Removed proto/Component.jsx #425 [`f310ed9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f310ed9b0520251bcd6eb4405eb25de32d227dff) - Updated Button driver and affected tests #267 [`0a28be5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0a28be57d9d6937356b7cb30c84789f21b1653ad) - Updated Slider tests part 3 #397 [`0d0d707`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0d0d7070edfdad97cab56fd4d1de2aaa0ffa5acd) - implement MessageBox #54 [`599b173`](https://github.com/sociomantic-tsunami/nessie-ui/commit/599b173a9321e20c036d8a2202e7c87d938283c8) - Updated Uploader with generateId #425 [`8f9895a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8f9895ab4e9a826768936f3543788f4991ea957d) - Updated ScrollBoxDriver [`e4cc155`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e4cc1552d25f6e8a1879680b2836bd821e433263) - finalized copy methods [`f793625`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f7936250ac693c4442acccadb7428deaaba80ab9) - Updated ValuedTextInput with generateId #425 [`711743d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/711743d8ea7c889db0911aec3230730a8323938b) - update color prop for textcomponent updates #436 [`bceffc0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bceffc0330ddb25901f2b1c18ebf421c726584df) - Updated TextInput with generateId #425 [`657633a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/657633aab303803e375c72013a279a7f4c4197f5) - Added ScrollBar README [`336c1a0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/336c1a0139f9fa29472d45d1585998aeea2bdf58) - Updated Slider tests part 2 #397 [`ed44fb0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ed44fb012d59593adacd43cdc1790af0d2b998cd) - Updated PasswordInput with generateId #425 [`95c994e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/95c994e3bb0814d5697e289cfbc6235bed33f070) - More ScrollBar tweaks [`361f3eb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/361f3ebebbd667d7716a4a13bb27225759cdbb47) - update font for StatusIndicator #441 [`9ef4c06`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9ef4c0663d9ecc3f5de40fd251f438eff0744bb0) - Color palette fix [`b65f81d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b65f81df541aa31122ea474a30f0ffe99dfaeb07) - maintained PageContentHeader #54 [`dd43135`](https://github.com/sociomantic-tsunami/nessie-ui/commit/dd4313542c5b0d5b83ff9c2f734374b324fb4827) - ScrollBar scrollBoxId prop spec [`513c268`](https://github.com/sociomantic-tsunami/nessie-ui/commit/513c268b121df5a26415dc1abfc6245999c6f268) - Remove invalid params from ScrollBar tests [`b9516c8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b9516c8df9563bae19c824179cf66d4f7d318a8a) - TabButton padding fix [`9e841be`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9e841be4b7dbbea5c055821e39b1177fcdb804ad) - Tweak ScrollBox example props [`a570dac`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a570dac4fe60a0f67e74326ea253f83074f5184d) - improve padding value checks #451 [`3425353`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3425353e67aea47b982a00ee0871ec7b41c94fc8) - Added global to avoid not defined warn #397 [`c180ef8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c180ef8f6eb60addd9ad940d8cc31b0b51cbc4c1) - Fixed failing test after merge [`54aed17`](https://github.com/sociomantic-tsunami/nessie-ui/commit/54aed17ea03732bcd6e59b73459160cc48375c75) - Disable silly lint rules for ScrollBar [`d45d06b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d45d06bd285561ba2495409facaccf186ffc8760) - Fixed generateId for SpriteMap #425 [`5c1f4ab`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5c1f4ab123b31e46122a1290ec4ece474ddf849b) - Try to fix Travis CI build fail #397 [`93eb8e9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/93eb8e9aa0cb786a23565c1fcb96cfbf5335277a) - implement Form #54 [`6b477f4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6b477f49fcfb36fe904b5b73aaa4fdbca12282fb) - undo removing react and proptypes #385 [`dbb1cc8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/dbb1cc8e1765b14a7a757ad8133ea50d57ac2573) - Try to fix Travis CI build fail no.2 #397 [`fde9778`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fde9778d270ca490f26607c55ab97c333e8824b8) - fix typo in Grid component [`b991f2b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b991f2bff406b3df79502a05c31e0d811fd2e4c2) - Fixed generateId for IconButton #425 [`39903c9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/39903c99e4872063045b67bc2f170dec3b4b3499) - removed console.log func #385 [`b569633`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b569633c82f6deb643145c8ac68fa36b71c4aaa5) - *Require* trailing commas in linter rules [`02b0df8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/02b0df838d776af63cd145846e8f2c42cdaa68ca) ### [6.0.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.14.1...6.0.0) > 26 June 2018 - Milestone global style update [`#422`](https://github.com/sociomantic-tsunami/nessie-ui/pull/422) - Updated NavItem tests fix #397 [`#397`](https://github.com/sociomantic-tsunami/nessie-ui/issues/397) - compiled styles and sprite [`d8cb05b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d8cb05b79bd6f896e6d5b2752ce30dae4b09976e) - Migrating tests to Jest part 1 #397 [`69aed60`](https://github.com/sociomantic-tsunami/nessie-ui/commit/69aed602c132ddb9a27f9c2e6c648a12e8d3c1cc) - Jest setup part 2 #397 [`4eb49bb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4eb49bbfdfb5d158f42c44abe745f7b062613d94) - Updated Slider tests part 1 #397 [`822b81a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/822b81a8367f5ececdad63c19c8881560feffc23) - Release 6.0.0 [`a7f3770`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a7f37708a424dcbf8aaa9d6008ba517c3f3a7121) - update icons in flounderDropdown [`9dcfec9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9dcfec92113b626c054f4d96593e2ca3a0797ac3) - Updated ListBox tests #397 [`af7cb4f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/af7cb4faf5838af2a5a90db67d5f95dec164deb1) - Updated ComboBox and ScrollBox tests #397 [`ba5ae45`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ba5ae4511f0b692173042eaa19e12ca5e16ed5c9) - Updated DatePicker and DateTimeInput tests #397 [`4f7f0ce`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4f7f0cea90867515fac38b0ac3d22f18c57dad93) - Updated InputField tests #397 [`3dcbf0e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3dcbf0e53d1943f605044ecbd95617ceb07f804a) - Updated SliderGroup tests #397 [`abcb072`](https://github.com/sociomantic-tsunami/nessie-ui/commit/abcb072ad7bdfcde201129a834e1d6d59b05cc68) - Updated Checkbox tests #397 [`f44afe8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f44afe8a8a24ea2a9ec524965b74ab1ee86066fe) - Add missing icon prop specs [`2b6c691`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2b6c69159477a89404c4fbfed0242f6ca9ec62cc) - Updated Uploader tests #397 [`5c3c0e4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5c3c0e4fa34702342412beb61082e7dd9e84fae6) - Updated TextInput tests #397 [`19577f5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/19577f57c4e4677eebc23ef372f6ebcdfbb86f41) - Simplify Switch component; styling fixes [`d3fd0fb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d3fd0fbc475731ef2e59a7502faf14b0dc34996b) - Updated Module tests #397 [`db1d009`](https://github.com/sociomantic-tsunami/nessie-ui/commit/db1d00976ddf6e74ed01edded233f5c21cdce94f) - Updated CheckableGroup tests #397 [`ce130f1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ce130f123087b1da99cf6e062937033aba652abc) - Updated IconWithTooltip tests #397 [`fb7bf97`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fb7bf972bea422c5c3010d2a039c52176ca9d607) - Updated PasswordInput tests #397 [`6580d76`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6580d763dbcbd15b3b6d1a42437411a1f24d9e48) - Jest setup #397 [`89182b2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/89182b2ac3e99ba594d7813223133626be4f9b5f) - Updated TagInput tests #397 [`b1267ca`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b1267ca01a400f8cad4099a10ec5b17b2ecc5dcd) - Updated NavItem tests #397 [`ae9837e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ae9837e0856b41fef831600b285aa3460e0b8785) - Updated IconButton tests #397 [`3a38add`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3a38add753f9f591bef55a7416407e44fb26190b) - Updated RadioGroup tests #397 [`fba90c0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fba90c064053271f7adf9ac1ec17ff0f1505be0d) - Updated Radio tests #397 [`276f064`](https://github.com/sociomantic-tsunami/nessie-ui/commit/276f064566b011170d3cb177011e4e74c989f197) - Updated Headings tests #397 [`e26e133`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e26e1337516b126d85ff29883960f0f8f278801d) - Button tests updated; removed Flounder from index and tests #397 [`9978dab`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9978dab2110daea9220f302cc0eda9878296ba92) - Updated Tag tests #397 [`7ed7b9b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7ed7b9bcc96cee54dbde7dfb8bf7e5dec797b924) - Updated Section tests #397 [`5b41efe`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5b41efe197476774e5fa7124ed76bf0ab05675ea) - Updated Switch tests #397 [`f9dda5b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f9dda5bfe240a5f8af96e9bd6ab2d2dfa79cf21b) - Updated Tabs tests #397 [`6c08f0c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6c08f0c52d7e34df1461c7a9281417a69719c63f) - Updated ModalDialog tests #397 [`769f04c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/769f04c4f24728fa3b43a196ee8aa3fc609bc585) - update IconButton component to show a bg [`e306b07`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e306b0769013722fa1a74561cf44e449891743ce) - Updated Text tests #397 [`15a9bfd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/15a9bfd73151710b9c3565bf8b53948b6e1d7769) - Updated TextArea tests #397 [`8d4f68e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8d4f68e1940332c87ed7a393b7720bf540ad4d4b) - Updated Form tests #397 [`7a57a21`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7a57a21dfc885b987f637aead6dbecdc1cd1f2e6) - Updated Fieldset tests #397 [`1f7edfd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1f7edfddc3f36580dcd9211846b87f2419bfe185) - Updated ProgressBar tests #397 [`482710a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/482710a9449fdb1e07d6d4171722c48943cc1e0d) - Updated ProgressIndicator tests #397 [`b32afa2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b32afa2f767f0c70e95d1467addf474d3ae348d1) - Updated Icon tests #397 [`dbe4b8d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/dbe4b8d38c7df42b820a6138f3d7a5da23fc9406) - Updated Spinner tests #397 [`cd3d6a4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cd3d6a459f4c558ecfc5063b4bc0a135536ffa51) - Slider styling fixes [`ca0f7f1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ca0f7f16f226dae601ca254864f65d651d51662c) - Updated TextInputWithDropdown tests #397 [`f62c1f0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f62c1f0c86244351ed28fae903a58de88dc5ed2f) - Updated Animate and NavDropdown tests #397 [`11581b0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/11581b0374d33241fa441de0a62181de3481a4ac) - update checkable component styling [`7bbd418`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7bbd418e1eb3cc915e42c7be2506abda3d482e09) - Updated Label tests #397 [`d39eb12`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d39eb12bd0f07822afb3e5e25274ace918b35a8e) - update modal carousel arrow styling [`ff9b0eb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ff9b0eb5191c8b935429dbdae0505d9d4de823d9) - Updated StatusIndicator tests #397 [`6e8c933`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6e8c933d0bc6d79fb3a0e14e908fe6afd031b77c) - Updated ValuedTextInput tests #397 [`ab77f4f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ab77f4f62a9485eb345fb4cd40fcf49dd0d5f7b2) - Updated Tooltip tests #397 [`276ea19`](https://github.com/sociomantic-tsunami/nessie-ui/commit/276ea1990ddd40208dbc406fd1ff04a5cb23fa98) - Updated TabButton tests #397 [`3a5d466`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3a5d4660d96d899c91282c4aed5ac5b56da3b5b6) - Updated Sorter tests #397 [`a6e3723`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a6e37235268c925ce696252fcc51f620df24672f) - Switch color fixes [`cfd19c8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cfd19c8e2abbee859b714ec75617edc1ebcf72d4) - Updated NavList tests #397 [`fd09053`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fd0905365caaa174db244cbdc1be180ccf389e96) - Updated NavBar tests #397 [`0b8837d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0b8837d8c95e8c68ce71571343ac9b2fe002fdd3) - Updated Column tests #397 [`9316072`](https://github.com/sociomantic-tsunami/nessie-ui/commit/93160720bf47602fbb1cb92cb18e5e04e419afee) - Updated MessageBox tests #397 [`827136c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/827136c1bdede2fb657b92955879b2d82e73224f) - Updated Paginator tests #397 [`8741229`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8741229d8b225822485b4e4dd085ac2ebdbf6f1c) - fix for Tag / TagInput [`bfff65d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bfff65d5f96604f72661925eaee160544ce1cb8c) - Updated NotificationBar tests #397 [`31b5b2d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/31b5b2ddfea4b48ab45682d05f04f371ac89a8e6) - more updates for flounder dropdown icons [`315196c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/315196cf77b4698b2014d19c1f65acf8f2e315d8) - Table borders tweak [`3d825dd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3d825ddce83311992904d9e991b4b6f43abd6bea) - Updated Dropdown tests #397 [`a1b1a4a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a1b1a4a1d1dfeafde203795c0b3129785b86b5de) - Updated DragNDrop tests #397 [`c75676b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c75676b303f47c6bc901f5b043d92f3f40ff9e14) - Updated Required tests #397 [`a3d4693`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a3d4693cea3831baab7a6906233bd9aeeea849ec) - Migration to Jest part 2 #397 [`020ff5b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/020ff5b722d3f824977f2df517338a522c251dad) - Updated Divider tests #397 [`480921a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/480921aefae31aaad20c75b9b7bb374b0abc4585) - Added deprecation warnings #413 [`c7918d1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c7918d19c5451978742d932acac12083bcd3ca5c) - Add MessageBox “default” styling [`5807900`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5807900b28198035448b3eaa706bd81f7c61d4c0) - fixed the flounderDropDown overlapping with the icon issue [`1081b38`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1081b38413bc11f6db3b8188b20dc2c154ffd6a4) - IconWithTooltip content flex tweak [`2a13f9e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2a13f9ea3e1a8120eb8518f40e898d246c4ba6e4) - update ModalDialog with the new IconButton updates [`d30082a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d30082a77a13cbe91a678cf84f9d3ee2e5c9d710) - Release 5.14.1 [`86b24b6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/86b24b6ab51d4f39d21871b05042912c2ae11d5e) - update box shadow [`57d3f63`](https://github.com/sociomantic-tsunami/nessie-ui/commit/57d3f63fbd6f078283200c6364f8c478486345f9) - update tag/taginput styling [`94c4872`](https://github.com/sociomantic-tsunami/nessie-ui/commit/94c4872be3d3bd45d3d9cf336fa21bb6ec9f2a15) - Updated SpriteMap tests #397 [`ce7b5fc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ce7b5fc0101e3e09ad12f6e202c809e7731226de) - Nested module tweak [`8e0e298`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8e0e29879d4d8bead6940f8f9094c10915f18274) - Checkable spacing fix [`5640195`](https://github.com/sociomantic-tsunami/nessie-ui/commit/56401950a0fce80a3ff09422cd9255bc4b2e197f) - update colors for audience module icons [`c492073`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c49207321e0582ebc2835e84ef0d58d941384b01) - update flounderDropdown multitag [`be152e0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/be152e09b57100465a0c36e215d5dfeeb470dcc2) - fixed Sales Market Identifier flounderDropdown to be expand/collapse [`9b8bf17`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9b8bf177dd6b91600a0fdb76dcb41255d1cc0f24) - fix TagInput height [`43c568c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/43c568c954afbad152adbc16e67d2d56b0a6a742) - update icon color for notification bar [`48cc7a4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/48cc7a4e7df3b5c1deb419ee79602c6ba1651a5f) - Module spacing fix [`a9a45f8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a9a45f8f3da754c5cc8c554bc029446f81fdfe3a) - Added refresh() method to componentDidUpdate #414 [`eb455c1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/eb455c11f057a51e4cf074073040277a3f371f55) - TagInput tag spacing tweak [`bdea16e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bdea16e348d7e70d6e4029256d2a72f7bdb847bc) - Updated Grid tests #397 [`f2beea4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f2beea48b3467228dceb5213f2f60d09f8b73ec8) - fix tooltip width for IE11 [`9c233dc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9c233dc58a36b06de7997e1e35af9f87fd267cb4) - Fix DatePickerHeader prop spec [`3621531`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3621531915908bf39bd520ab5e63374f2d89cc34) - Further nested module tweak [`5a05e83`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5a05e834a3eead75b3c02b89042d5bd4b1c0c2dd) - Further tweak [`3dbbc57`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3dbbc577dad7d1578ab71d64c0b64e70b34b8675) - Legacy Row hasMinHeight fix [`096954a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/096954a4bc7e6e4ae060f835aa92b47743137b69) - Paginator icon size S [`e5850ad`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e5850adae8c0c75e7909f6b6109293a3f980567f) - fix font for FlounderDropdown search [`0c1c098`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0c1c0984809ce0f23511b8ba9013af9a64996158) - IconWithTooltip z-index does not need to be huge [`c4c83da`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c4c83da4f953745300f058dd159b21e55be31708) - background color fix for flounderDropdown selected option [`782b40a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/782b40a9aa2e3d8736b5b94fc0345691224e1aec) - fixed the alignment of placeholder with multiple tag flounder [`6b7e24f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6b7e24f1b5c21bb820b529815c04bd3d0786318e) - remove box-shadow for module [`caeae52`](https://github.com/sociomantic-tsunami/nessie-ui/commit/caeae528b0a3d5f6cce5b67da93195e97901c77a) - update loading overlay z-index [`17bc978`](https://github.com/sociomantic-tsunami/nessie-ui/commit/17bc9780030a3ce59c01d058dde976b3bc8d0413) - increased the z-index of the message element [`52d35d0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/52d35d078fc96814bad39faf81db6ddf6b00821a) - set the font-family to Nessie-Bold [`8cc7490`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8cc749052225c4c73ba2bd6ae05a48de73637328) - TextInputWithDropdown styles extend from base.css [`d192f5e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d192f5e96544dda236aab3fe4f69ec481c312807) - MessageBox text color fix [`16bdc3b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/16bdc3b3871f3c9df758044bcd0cf97e74cf888e) - update disbled color for navigation item disabled [`5ad3df1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5ad3df1a5e8d4761362a378030bba08ec4738eca) - Remove Label nowrap [`8cd0227`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8cd0227b2fe12808ee1628e8695e0f5f3c742c1b) - correct position for module title underline IE11 [`d3bed7d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d3bed7df8fd73ac66fa6d4ec9f98be8218f44bb0) - error iconTooltip increased z-index [`6ed93b6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6ed93b682c9cf5d075c0192c15988c6562827cd0) - Renamed test file for Grid #397 [`3929975`](https://github.com/sociomantic-tsunami/nessie-ui/commit/39299750ca722417697a4b3c1943cc0ff521cbc6) #### [5.14.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.14.0...5.14.1) > 13 June 2018 - Fix incorrect uploader prop camel-casing [`#416`](https://github.com/sociomantic-tsunami/nessie-ui/pull/416) - Test drivers default values #409 [`#410`](https://github.com/sociomantic-tsunami/nessie-ui/pull/410) - TagInput Driver bug fix #405 [`#406`](https://github.com/sociomantic-tsunami/nessie-ui/pull/406) - [Required] Deprecate component #403 [`#407`](https://github.com/sociomantic-tsunami/nessie-ui/pull/407) - Simplify testing [`#392`](https://github.com/sociomantic-tsunami/nessie-ui/pull/392) - removed the label component from import #367 [`#393`](https://github.com/sociomantic-tsunami/nessie-ui/pull/393) - navDropdown and dropdown z-index #387 [`#389`](https://github.com/sociomantic-tsunami/nessie-ui/pull/389) - Simplify webpack [`#391`](https://github.com/sociomantic-tsunami/nessie-ui/pull/391) - Issue #83 webpack minify bundle [`#390`](https://github.com/sociomantic-tsunami/nessie-ui/pull/390) - Issue #246 webpack upgrade [`#388`](https://github.com/sociomantic-tsunami/nessie-ui/pull/388) - Moar package upgrades / removals! [`f129eca`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f129eca926a237f14bf70bf8b7ee5c1201b1595d) - Fixed issues with css and postcss loaders #246 [`ce085fb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ce085fb2a09b27f399c39fdf0dbd0c390716b6bd) - Simplified the testing config; upgraded packagges / removed unused [`94ce7b6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/94ce7b61f27dd9a04a1dbec70f57f2115950d191) - Upgraded packages / removed unused packages [`0737c39`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0737c39d880ca73aadd9620e5b85e997ba637047) - Simplified webpack config [`fba60e1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fba60e14ed7c60d6149220187c2ef0c741b37ff0) - transformed ScrollBox to Stateful comp #385 [`a14cdcc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a14cdcc469009ef4555681ba5b59c0f2e43233ec) - Example of simplified ButtonDriver + updated tests #267 [`d5016d9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d5016d9866a81affbb6fe1dcf286d8bb1a0f6345) - created driver for ScrollBar comp #385 [`61c4222`](https://github.com/sociomantic-tsunami/nessie-ui/commit/61c422201003708b7b9f45b6a44a1df6e4884119) - matched the UI crossbrowser and platforms #385 [`0e31679`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0e3167959c6595ad63b521a4021fdf7d307122c6) - created tests.js + added on ScrollBox tests.js #385 [`275adee`](https://github.com/sociomantic-tsunami/nessie-ui/commit/275adee529465949850e580ec0188eb551664525) - scrollMax, width for ScrollBar have been implemented #385 [`9da8da6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9da8da61446fb827e72094fa3e5ed96e2a1741a0) - beautified the code + depend of fixed value of thumbSize for IE #385 [`0731ae8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0731ae806548b30d8799e82176808af2721bfd2a) - compiled styles and sprite [`ad42ca7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ad42ca713c58b0d1bc238dc724160679e3e97cba) - added thumbSize for ScrollBar #385 [`fedb7c9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fedb7c9c9dff081b5fe77173a0dc14f635e7b792) - added the communication between the scrollBox/Bar #385 [`7ddaac8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7ddaac8d4c90fed0fc33d2981db567c722e3aafc) - Downgrade svgo; tweak package.json scripts [`5464ba6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5464ba6c039c36f71341a3960f746aed5780db49) - seprate scrollPos for two states + default behaviour for scrolling #385 [`cdcb80f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cdcb80f14315d0cfdb6127426bb7bf269717fb21) - Re-added svg-sprite-generator package [`f369115`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f36911580a45fe4cd79a5ee185e06ed9bd1476fd) - updated the scroller #385 [`9c80a04`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9c80a0454fb9243856e85860b6bb88498de652e8) - Removed blur/focus from ButtonDriver (not implemented by Button) #267 [`87e97e3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/87e97e3cd3e0530477691ea22728d9c21cfff248) - Added closeTagByIndex and closeTagByLabel driver methods #405 [`a0b9b1e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a0b9b1e063396115af04e544b9407dead31eeef2) - Added minimizers for js and css #83 [`ad33635`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ad33635f23b79dccdefadf8d30d271fac735c91c) - Release 5.14.0 [`58c48aa`](https://github.com/sociomantic-tsunami/nessie-ui/commit/58c48aaf3dc592d26d9729323cba16d284d0b230) - made 'vertical' as a default orientation #385 [`3833b9d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3833b9d1ddf6d972e25043ae63b5757e25d18150) - Code cleanup #246 [`74808f2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/74808f2932a221abae79f21366ddbcd4fcde9ee2) - added seek methods to ScrollBox driver #385 [`e60effa`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e60effae5ccf6f829ca9b8c64762ef5eb64a93a6) - update NavItem and NavDropdown styling [`bdd4d15`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bdd4d15d72e0309e28015a3b4751670afceb3e9d) - Added deprecation warning #403 [`cc458b8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cc458b80f30cc238209a0527cbce5f0bde97e641) - Fixed tdd issue #246 [`83a3867`](https://github.com/sociomantic-tsunami/nessie-ui/commit/83a3867faed53968c6ab373795ff88aa8dd86e90) - Sort package.json scripts [`bc38f5a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bc38f5ad8236e38e0f3470320ec96a8794906753) - Still export displayComponents bundle... for now [`26900e6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/26900e6005fcbae7ed0350288ee59b4a5d9da331) - Revert "Still export displayComponents bundle... for now" [`118a235`](https://github.com/sociomantic-tsunami/nessie-ui/commit/118a235ba2be447ea34be70be7a4f0caee3e0df0) - Revert dist bundle libraryTarget to commonjs [`4d04a66`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4d04a66accb1bcfad8bce619b20b3fc8ca1ead71) - Revert dist bundle libraryTarget to commonjs [`01c23a1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/01c23a187ad463333e68d0e7156747abc92b5792) - Fixed PR issue; code cleanup #405 [`da0cec3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/da0cec36b6ec68ec9b0fa13f0c7998be8c347707) - Updated stylelint config [`32cfa7f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/32cfa7f322afd51a966de9bde3e65c0efec73f95) - Added default values to params #409 [`227a8a1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/227a8a140e3030a74da1f1a5756cb6bbff928d47) - changed scrollMove to scrollPos #385 [`bff92fd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bff92fd2f33b7d8d0aeadf894ae788e9ec1a1901) - Sort scripts in package.json [`49e6b03`](https://github.com/sociomantic-tsunami/nessie-ui/commit/49e6b0304825cddcf820b41c64929db539147538) - Release 5.14.1 [`fc61cb0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fc61cb0f6b08c1ebc6a9ee578b7cbaf04465e553) - Add missing ^’s in package.json [`5afb183`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5afb18347b985b1f787a5244daaadda89eb52a04) - Remove skipped tests [`3a4464f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3a4464fd9443415cf22d76368c8afdcb753d7068) - MessageBox style tweaks [`b296477`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b29647768ce7565105ca0253bf9ce2a97d00bb9a) - Tabs style tweaks [`16a91a5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/16a91a5ccab93ebe3fc63e087b98a988f46246a1) - Explicit node_modules path in webpack config [`079f52a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/079f52a87cd2778a205c3a4b452bf484cbced14d) - Restored externals in webpack test config [`379ebc3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/379ebc3ea80132088fc23203d41117d580010606) - update user menu font color [`116045b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/116045bf7d2e68bd7792af3422eb8cbb359ee999) - Removed unneeded react-addons-test-utils [`4b482e4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4b482e477fbd62c91f24513df0cb158736ea8595) - Fixed PR issue #409 [`4fa9354`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4fa935471a27a44419a410d22f28c9a56951730a) - Removed minification from dev #83 [`daaebfd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/daaebfdcfa218bf8edfbf4e01a8e73adb16f6641) - Fixed z-index for navDropdown and dropdown #387 [`8b6bda9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8b6bda9462dcd92a203052ba4a8ef32c314a581a) - Fixed PR issue #409 [`ee37050`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ee37050192c67868d73d35b6133dbab08e5fcb40) - fix arrow padding in header mode dropdown [`d825947`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d825947ab1ed76e74a52d1fdc5290afe7fd2f1ff) - update icon color for nav items [`d5ba008`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d5ba0081f1478bfbbf62f06517ef258e835ec98e) - Update license.md [`10ada06`](https://github.com/sociomantic-tsunami/nessie-ui/commit/10ada0683c0e190b2535553069737ef95f6f5a8c) - fix min-height in header mode flounderdropdown [`caf8f35`](https://github.com/sociomantic-tsunami/nessie-ui/commit/caf8f354f796d1fca1b867d9b4bba2ea1a4dbf57) - Page BG color fix [`fb8c299`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fb8c29986e5b1b6dde0785075c54e2048b3504e7) - Remove trailing comma [`53f94ed`](https://github.com/sociomantic-tsunami/nessie-ui/commit/53f94edee1524cee6bfa0914fee1f6b36c1ce19b) - ComboBoxDriver scroll method default value 0 #409 [`6342e45`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6342e451e8ed9e88ebfef642fec8ab7f433b3428) - update navDropdown width [`63f8017`](https://github.com/sociomantic-tsunami/nessie-ui/commit/63f801724f7d7f09e5020a091215cc1fc20f571f) - removed the label component from import #367 [`a7f940d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a7f940d25e2bc5a06fe81c9256cefe1bab03a49e) - Code cleanup part2 #246 [`68aeb6e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/68aeb6ecee4fa710fdf65339ae5be36b2a0c7f14) - NavDropdown style tweak [`c23cac0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c23cac03f196f76bcca38fd16831350f5cc87cc2) - Restore singleRun:true in karma.conf.js [`0630af5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0630af5c8bc9fbb56618e6d239ff62715ab1f52a) #### [5.14.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.13.1...5.14.0) > 25 May 2018 - Minor changes iguana [`#384`](https://github.com/sociomantic-tsunami/nessie-ui/pull/384) - Issue #381 tag input size [`#382`](https://github.com/sociomantic-tsunami/nessie-ui/pull/382) - Issue 369 checkable group driver [`#383`](https://github.com/sociomantic-tsunami/nessie-ui/pull/383) - Changed styling to avoid overlapping #371 [`#372`](https://github.com/sociomantic-tsunami/nessie-ui/pull/372) - TableCell style update #376 [`#377`](https://github.com/sociomantic-tsunami/nessie-ui/pull/377) - Issue #374 checkables onChange bug fix [`#379`](https://github.com/sociomantic-tsunami/nessie-ui/pull/379) - added the value prop to input element #373 [`#380`](https://github.com/sociomantic-tsunami/nessie-ui/pull/380) - Issue 363 code editor driver improvments [`#364`](https://github.com/sociomantic-tsunami/nessie-ui/pull/364) - added the mouseover/out to the component #375 [`#378`](https://github.com/sociomantic-tsunami/nessie-ui/pull/378) - added textArea driver #361 [`#365`](https://github.com/sociomantic-tsunami/nessie-ui/pull/365) - Set up new addons.js bundle containing withDropdown #354 [`#356`](https://github.com/sociomantic-tsunami/nessie-ui/pull/356) - Issue 342 combo box missing events [`#366`](https://github.com/sociomantic-tsunami/nessie-ui/pull/366) - moved the label to the top level of the component #367 [`#368`](https://github.com/sociomantic-tsunami/nessie-ui/pull/368) - Issue 350 add missing callback props [`#355`](https://github.com/sociomantic-tsunami/nessie-ui/pull/355) - compiled styles and sprite [`00fd3a9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/00fd3a9c0867d86c260211dd7920b88e661dc591) - added tests and driver to RadioGroup component #369 [`a2708a9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a2708a95548c78b9f02450a17838736b41f3e4ed) - Added test for Radio and updated tests description #374 [`70d8a54`](https://github.com/sociomantic-tsunami/nessie-ui/commit/70d8a541c45a6d3bbc2ab193e68e69129d7f6373) - Flounder header styling fixes [`401ec4a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/401ec4aa45e73e62fab65c56a8c9a3214c2a9406) - added inputValue and pressKey methods to codeEditor driver #363 [`3e4662f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3e4662fc580f06a5c090588a3eb32542c4985f68) - Form component cleanup [`e9ea2fa`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e9ea2fa6556cee15e6147c48f50595cd8d6cddda) - Global styling tweaks [`ffcf3a1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ffcf3a10b6e04ed0e2042236f71d3a53fccde19a) - Implement Checkable isReadOnly using 'disabled' attribute #374 [`2f85bcb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2f85bcbc205d9040371388834709503f21616c94) - Release 5.14.0 [`df11ce1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/df11ce14f1bbe6b401cd329151a80cfb6bdcf710) - defaults.json tweaks [`c1bffa9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c1bffa9ebd137dfe56afe5793f04505a52565442) - added toggles methods to the driver #369 [`a165984`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a165984080f0f450eac07c324a81c16dd7159e4e) - Added conditional for onChange and updated tests #374 [`55265c9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/55265c9786e4689f67c3b74054c9ef7ff2c7ef70) - Remove unused classes from PageContentHeader [`c75b6f7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c75b6f753d5d632bd14757e44c1dfd05cf20c18a) - Module styling fixes [`75fd9aa`](https://github.com/sociomantic-tsunami/nessie-ui/commit/75fd9aacbc7b636fe7cb20ad6a3778178591640a) - replaced the outerMost div with InputContainer #367 [`50f71eb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/50f71eb4b78e85388abab93c0d0c8b377cb1dc22) - updated the driver and test files onChange callBack #363 [`8052029`](https://github.com/sociomantic-tsunami/nessie-ui/commit/80520293510af193c7aff9e001892513f65225d9) - Removed redundant CSS from Form [`a474301`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a474301d5a718387cd6ff0b0afcfda9b393c4e75) - Upgrade webpack part 1 [`6f2ea79`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6f2ea798d47a8f3b5bbf47df21f8dfe133df22ad) - Updated Grid README [`cb52baa`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cb52baab7ecd80d888eafb59e9e66cd1c824cabe) - Updated MessageBox styles [`c6d475d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c6d475d1bb6df2fce0b03626344ac2478982c746) - Added class if TableCell isHeader; fixed Table gutters size #376 [`2de7767`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2de776743ad2207f4e07c59d8b5024c5b8d204ee) - updated tagInput driver to extend from InputComponentDriver #350 [`8a16a2f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8a16a2f09fbfbcf9551b89caed145ac84bda2722) - Added onClick to InputField-based components #342 [`94f6a24`](https://github.com/sociomantic-tsunami/nessie-ui/commit/94f6a241f189f5bbbb124de6b61479ec4e93b919) - fix notification bar colors [`262d95d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/262d95d01effece66fe5aad38b1235481288c165) - Release 5.13.1 [`40b5166`](https://github.com/sociomantic-tsunami/nessie-ui/commit/40b5166d1612b7b472757c293557cd031248a3c0) - fix tooltip conflicts and datepicker month correct fonts [`7d4b07d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7d4b07d5b29d7f9dbdbe0faf99245e2ee8012bf0) - Fixed PR issue #374 [`023f9e2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/023f9e26702f7a1d6a458abd53716c02f8dd193a) - Updated size for Tag and TagInput #381 [`ff0d656`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ff0d6564aeb826abf9dd92029175a96e7403b010) - Fixed FlounderDropdown spacing [`193bc1f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/193bc1f6c9be33f638ec6368ff2b3cc028b33ebb) - Updated size for Flounder multipleTags #381 [`a911acf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a911acfda1960edff062d658bd64fe49fe914344) - tooltip link text style update [`385352e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/385352e50d37d95d8ab2cbda57e5b4326462f5b7) - Fix Form failing tests [`269b75c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/269b75c859bd699fe0b48043347ebe600bd360b3) - Nav styling fixes [`c5359d3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c5359d328574b5d05337430a8aeffd14b26ef084) - Added onClickIcon to ComboBox #342 [`9669d84`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9669d8438d1789476ea4e32693eddd47404d82f6) - tooltip margin and background-color update [`8be0cee`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8be0cee978fc5bac6e630ded6d19079f8b345fee) - Fixed withDropdown spacing [`3c966cb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3c966cbbb323684a3b56a1909a5e98a7cdd809c4) - Hack webpack/ExtractTextPlugin to combine CSS from different entrypoints #354 [`355d7d4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/355d7d4f57c3bf3db5819f7096fe91593fb6ebee) - revert color update in notification bar icon [`e6d8062`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e6d80625ccc8b0eec3759477dfce4f9d0ea7739e) - Button styling fixes [`d55b3d6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d55b3d641d137d3b3b3329488e695b276ba7bb31) - Restore (deprecated) hasMinHeight styling rule in grid.css [`83365d1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/83365d1bf6fa437684b8093f9905a16e111731a5) - no result state updated to be italic [`dca84ef`](https://github.com/sociomantic-tsunami/nessie-ui/commit/dca84efcf286b22e4f5fe5f577e50729ab546cd5) - removed the right/left spacing [`6027433`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6027433a5c25e25e231dde226afe1a70d2aef31a) - updated the height of flounderdropdown [`27ca876`](https://github.com/sociomantic-tsunami/nessie-ui/commit/27ca87645a882bf4e0e51a07e1c8a1e016471330) - StatusIndicator color var fix [`b5f9001`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b5f9001e027ec23aa1300676a641554d4d313b08) - Update TableRow color var [`eb4b7c6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/eb4b7c6831bbbc2a4db513f0cd7f1108237f8ebc) - Further MessageBox tweak [`2104953`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2104953117a0826038d1b3c86b7fa15f7b081363) - Remove onClick from TextInputWithDropdown [`2260174`](https://github.com/sociomantic-tsunami/nessie-ui/commit/226017428e5cc16b9a2f95e9c5d110fa7bdab611) - Removed onClick from DimensionsInput [`83464a7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/83464a7125ad76b7314f61a7ba34cf3eee038c00) - page header updates [`5fe6f5c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5fe6f5cf72e63169bec32cadbf075bc76a80be92) - increased the margin between the inputs groups [`1a312e8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1a312e8518c085f679787088ba529abdeb399ef3) - NavItem icon size S [`0cc2ad3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0cc2ad37fc10c96d87ba35a8e56dacfe3e50a6c2) - Switch label hidden by default [`feee42c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/feee42c4fea6ec34d640094ef1a255e33ad5a69b) - removed the label component from import #367 [`b526a9c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b526a9c208b1bee718cb32555c847ec452597e83) - TableCell color tweak [`1ec3546`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1ec35465c72b98af00c8779e8f5f8e8f25ef5b7a) - Upgraded happypack #246 [`be314c0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/be314c08717548e2e3fefbcb7769377525e60924) - navDropdown boxshadow changed to the main boxShadow spec [`1852ceb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1852ceb73325b531c1c3776a0a78cf0638226be0) - decreased the vertical space between sorter arrows [`acbba08`](https://github.com/sociomantic-tsunami/nessie-ui/commit/acbba087d9fee0d6d33011dd01e5ad162db1c83a) - PageContentHeader spacing fix [`7dab110`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7dab110c4f8fbdafb5281fb27f4f49fef594e5a6) - ListBoxOption icons size tweak [`01ab413`](https://github.com/sociomantic-tsunami/nessie-ui/commit/01ab413e0232c5cc5fc5ce9c566fab3b44eadf39) - Tag IconButton size S [`8e36c4d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8e36c4db6a479bbaf2b08eb1ff54d40b0bd6bfb5) - dropdown arrow always at the top [`e2f8963`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e2f8963187e3d2e57e486cd81a956b0992448aa5) - H3 styling fix [`967b704`](https://github.com/sociomantic-tsunami/nessie-ui/commit/967b704c2aa176e0ee513c4c92b2b6073f3ebfc0) - PageContent loading overlay z-index tweak [`0c01ed3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0c01ed353aff62f3fd642941a18bb9062a92b3fa) - Modal styling tweak [`654905d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/654905d389b6786506e04344b3b0571736628577) - Revert Column prop change [`4141183`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4141183d691b6777894cc7a3d9488af105ce47d0) #### [5.13.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.13.0...5.13.1) > 9 May 2018 - CodeEditorDriver setValue should call onChange [`#362`](https://github.com/sociomantic-tsunami/nessie-ui/pull/362) - Release 5.13.0 [`91f77d0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/91f77d057c8d7a64b9958a4515e5b0c4095db638) - updated children prop desc and replaced the mouseOver/Out to be Enter/Leave #275 [`ca1adc7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ca1adc7bd76df4fb1c57da17f17a8cf274444f89) - updated toggleButton test #275 [`02f1a79`](https://github.com/sociomantic-tsunami/nessie-ui/commit/02f1a79c03bcbcba08710612f67104dbd498b180) - compiled styles and sprite [`4fae7c1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4fae7c117461fb19c20f28435ed506efeb927af8) - Release 5.13.1 [`b8418ca`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b8418ca279a35ad5b0cd6bff86796c9c00017cff) #### [5.13.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.12.0...5.13.0) > 8 May 2018 - Minor changes hamster [`#353`](https://github.com/sociomantic-tsunami/nessie-ui/pull/353) - Prevent CodeEditor from firing onChange when value prop changes #359 [`#360`](https://github.com/sociomantic-tsunami/nessie-ui/pull/360) - added deprecation warning to animate component #352 [`#357`](https://github.com/sociomantic-tsunami/nessie-ui/pull/357) - Issue 13 disable role lint [`#351`](https://github.com/sociomantic-tsunami/nessie-ui/pull/351) - Added inputRef prop to Slider #337 [`#344`](https://github.com/sociomantic-tsunami/nessie-ui/pull/344) - Fixes the Switch driver’s toggle() method #347 [`#349`](https://github.com/sociomantic-tsunami/nessie-ui/pull/349) - Removed broken driver pattern that overwrites event target #346 [`#348`](https://github.com/sociomantic-tsunami/nessie-ui/pull/348) - added the touch events + removed the weired effect while focus#341 [`#345`](https://github.com/sociomantic-tsunami/nessie-ui/pull/345) - Issue #289 combo box driver [`#338`](https://github.com/sociomantic-tsunami/nessie-ui/pull/338) - Issue #298 list box driver [`#331`](https://github.com/sociomantic-tsunami/nessie-ui/pull/331) - Added component Dropdown with tests #285 [`#332`](https://github.com/sociomantic-tsunami/nessie-ui/pull/332) - Adds minHeight prop/functionality to CodeEditor [`#334`](https://github.com/sociomantic-tsunami/nessie-ui/pull/334) - Used update-contributors to... wait for it... update contributors! #19 [`#336`](https://github.com/sociomantic-tsunami/nessie-ui/pull/336) - Issue #339 switch add props [`#340`](https://github.com/sociomantic-tsunami/nessie-ui/pull/340) - Issue 330 combo box label [`#335`](https://github.com/sociomantic-tsunami/nessie-ui/pull/335) - Issue #288 date picker driver [`#333`](https://github.com/sociomantic-tsunami/nessie-ui/pull/333) - labeltext css selector fix #320 [`#320`](https://github.com/sociomantic-tsunami/nessie-ui/issues/320) - LochNess as GitHub Pages [`848c6fe`](https://github.com/sociomantic-tsunami/nessie-ui/commit/848c6fe088c9afebbbf448726a92bfd7b75163df) - compiled styles and sprite [`8a00e86`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8a00e86307dd84a9d7ad880432d6581a162fdac4) - Tidy up .eslintrc file #13 [`909b43e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/909b43ef541a345752c4ad6a9efe4379a5a67166) - Add InputContainer props (label, etc.) to ComboBox; rejigger exports to make it happen #330 [`b9ab211`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b9ab211c12cc25929c5643e3135ef4b2089a420d) - Added onClick and onMouse driver methods #298 [`d3dc84c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d3dc84c349506479eabb079513925116563bf852) - Added onMouse props and tests #339 [`b7ce82f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b7ce82f72568a5d6adf2d136f8eb5d40363f7245) - resolved the PR comments #275 [`32eed7e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/32eed7e6d2aa8c9aeb675ebd68884fdb27b088ff) - Added clickItem, clickNext and clickPrev #288 [`7270483`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7270483bf1996caf445b4d99e89c5ffbbbfb5cea) - Added clickOption and mouseOption(s) methods #289 [`9573ee3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9573ee3668985bb1d1a123bfcdda0c761f609959) - update icons #320 [`7aa68bd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7aa68bd75a0510ec866abcf8ca871bad8cecb3b3) - Release 5.12.0 [`2b3ff5e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2b3ff5eaae1d3ab67967eb85c8b979b5546f3e62) - Created driver and tests #289 [`6162cf1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6162cf14baa9648116c7e9d2bc33ca37e325dc07) - update icons sprite map [`3925194`](https://github.com/sociomantic-tsunami/nessie-ui/commit/392519456ef89be6a95d745ae803c9a958106b8f) - updated test and drive #350 [`044e912`](https://github.com/sociomantic-tsunami/nessie-ui/commit/044e91279969d16d6d3e1d4b96d211c4878f9589) - Added blur, mouseOut and mouseOver #289 [`bc85b15`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bc85b150103da4f3a4bde246a437090f1244daff) - Grid/Table spacing fixes [`ba7ae34`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ba7ae3418582b3ff26a10e7b03f3854076c16d16) - Updated driver; added onChangeInput #289 [`a55b87d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a55b87dca4684e456ddf2454984be2148b0495fb) - remove label wrapping icon with tooltip #320 [`f9c6e05`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f9c6e05cf35d546b73bc5ae1d18342a26e8f00db) - Release 5.13.0 [`070004f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/070004fa6495c55730852231ef9ba1f3e82a7297) - slider styling updates #320 [`d57d2e9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d57d2e9f9f1d1941424282d8437c357882bea0ba) - Added blur/focus props and tests #339 [`96a3bfa`](https://github.com/sociomantic-tsunami/nessie-ui/commit/96a3bfab0c3522e376a37c396b8e08b308032950) - fixed the listBox multiselectable behavior [`7121d38`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7121d38cfdb474527d00a3023e6ab6e96d4b9e47) - update slider component styling #320 [`3e18fc6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3e18fc63ff96f359adff849c711b3e9e5ec2352c) - Fixed PR issue part 2 #289 [`6c77d13`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6c77d139983b2d9de155b21917fdd911fda78524) - Added onClick to InputField #289 [`9e05768`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9e05768abc62dcaa4fd2742bddac99089ede227b) - update flounderdropdown icons #320 [`979ac16`](https://github.com/sociomantic-tsunami/nessie-ui/commit/979ac166be3218c4087991c3a035ed3997546c95) - Added keyPress method #298 [`83fe292`](https://github.com/sociomantic-tsunami/nessie-ui/commit/83fe292fddf33756545db2409ae631020dd58a23) - Updated driver methods #288 [`8fdc8a8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8fdc8a886cfbe757e7c00ae760348d8e65736ae1) - replaced the name of handlers + fixed the indenting of .css #341 [`cf80b61`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cf80b6188ac7188d25642fa04dd0a37dfcd9bbe7) - Added errors to ListBoxOption methods #289 [`c436218`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c436218e3411b72eae9f0af60f516ea9f0c453fc) - Fixed PR issue #298 [`6250269`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6250269134b6b085cd4ea333de3e8834384d259d) - Added scroll method #289 [`50da4de`](https://github.com/sociomantic-tsunami/nessie-ui/commit/50da4de2bf02f99ba33963292357a17bfdd46066) - added the missing props #350 [`4581151`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4581151606ac0ce2af4988ed5931b2f59988fb10) - Slider inputRef code reorg #337 [`80c0f6f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/80c0f6f31668b99149e37c639153a740c0c578ce) - updated the tests and driver #341 [`08da45d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/08da45d9c22eb97e40849e48fb298884bd14f8c9) - Added descriptions of props (incomplete) #298 [`a070f87`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a070f873b5c417fbb4df5aa4d02e67162e85273d) - Icon component updates #320 [`246266e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/246266ef45476681c94df3ee31ad1d4543b4eca0) - Fixed clickOption method #298 [`54b463b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/54b463bc2466444e4a7d2ffadf07fb175cb23796) - fix error/disabled states in checkable #320 [`67bb1a5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/67bb1a5801f5828858b251c7ccb4a48b0e8a5f27) - hover state for subtle button #320 [`ad2ad91`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ad2ad910d74f43a1a868dafbd168a45cb437b52e) - Fixed PR issue part 1 #289 [`13f8fc8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/13f8fc845a363d74ac7811050b38ade35061cb42) - Grid/Table fix [`d877410`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d87741080588ad8042011c34815bb4ef73dfe43e) - Created driver and tests #288 [`ce64f8e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ce64f8ec618dec69ac2a009c9516ab0b5515c9ff) - Fix syntax error .eslintrc #13 [`808fd0a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/808fd0ae6e5b912aacf9d7373311f7e70743151f) - update tagInput height #320 [`53a8a35`](https://github.com/sociomantic-tsunami/nessie-ui/commit/53a8a3505cec5bcd001f5cf74befc0e735cd5a3c) - fix icon position in iconWithTooltip #320 [`1b3a0b4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1b3a0b4fb1f32c356a1acaf861c720d0cf6a53f1) - removing variants in ModalDialog #320 [`31b78ac`](https://github.com/sociomantic-tsunami/nessie-ui/commit/31b78ac74b794e8e343222bef2f9683c6755cf08) - update paginator styling #320 [`6670b54`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6670b54ca7a6bd431c384177c05ca07aeb958517) - update scrollbox arrow icon #320 [`c2441fb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c2441fb3e08a1bb0bb5a644e7227af3d0f3a4dd9) - update default icon color #320 [`5b0a095`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5b0a0956ec0f7bc9032006c63645b6f9877f8890) - Add ignoreNonDOM to jsx-a11y/aria-role lint rule #13 [`3ce6719`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3ce671983191a6a1bdfcace754c64ef1e354755d) - page content Header updates #320 [`6a0948b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6a0948ba973463832121d8ecc9d69abbed3273ef) - Added onClick to TextInputWithDropdown #342 [`c37d4a4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c37d4a4eb911e7adf980de3151333f0b3f217887) - Make the TextInputWithIcon tests work again #330 [`5b6c5b6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5b6c5b608b9019443a3789f0eba66fab7cf05cab) - Try that again [`3a20606`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3a206068d9ccbd38b168df38df2dac49ecb17136) - Fix failing test [`7eb3a4f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7eb3a4f835373fd1c08d546d80f93a354595ca1a) - Re-attach input refs after inputRef callback function changes #337 [`ee9ac19`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ee9ac193b9c496a7b0f2e98ee0e85836989d8d0b) - fix hover icon color when hover in combobox listoptions #320 [`b99a774`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b99a7743b08e19380075d1d5be619ba2dcaefda9) - Set up ew addons.js bundle containing withDropdown #354 [`da2cd08`](https://github.com/sociomantic-tsunami/nessie-ui/commit/da2cd08dfa11711f799394cdf1a57c3cdd99eb31) - update model dialog border-radius and shadow #320 [`e6d879d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e6d879d4829a8deb232bfe43be692fc3237b918c) - update boxShadow with correct color #320 [`8aab39f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8aab39ff2049da81e58d153bf237bcd8962adff6) - Ignore lint warning; add missing semicolon #344 [`380f004`](https://github.com/sociomantic-tsunami/nessie-ui/commit/380f0045c0fdca4055195e0c0d155ac77cc149d2) - blue color for info icon #320 [`29db82a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/29db82ad0b2f571263d8dc51fcc71905ad2ed5ae) - Tweaked ComboBox inputRef decription #337 [`b78248a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b78248a505d1f83e675c042338fc1a0964cbc4c3) - update icon position in iconbutton #320 [`e7fbcba`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e7fbcbabf5b8a270baeeeb43e3f7563031fb9cac) - update subtle text color #320 [`4c342ec`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4c342ecebc8577b2706df52cc995d1fa96d6bc7c) - fix color variable name [`9e0fc78`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9e0fc78dd5d781e008236dff457ccfb9d80fe78b) - fixed bug in the ComboBox addPrefix util [`e47f8c6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e47f8c667ecbde6375e1aac414ed2d707f7aada8) - reduce flounderdropdown options wrapper height to avoid issues on the footer #320 [`7e657a3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7e657a3aa9cec45c78532448821c4d6bdaa9ead6) - Fixed PR issue #285 [`a77c8cf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a77c8cf5cbfeb93f20b4c28f10ed803ae03eda04) - CodeEditor padding tweak [`f5849bc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f5849bce40819f369d776ea337001c924b14b083) - page content header z-index ajustments #320 [`1818410`](https://github.com/sociomantic-tsunami/nessie-ui/commit/18184101bea8e4faa9b8987522f1855daf6056eb) #### [5.12.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.11.2...5.12.0) > 18 April 2018 - Minor changes giraffe [`#329`](https://github.com/sociomantic-tsunami/nessie-ui/pull/329) - Mouse events fixes [`#325`](https://github.com/sociomantic-tsunami/nessie-ui/pull/325) - Issue #291 tabs driver [`#327`](https://github.com/sociomantic-tsunami/nessie-ui/pull/327) - compiled styles and sprite [`d0fb9c5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d0fb9c586474638c520014d002b24f801885b749) - Release 5.12.0 [`e8b2d99`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e8b2d9942b7d48b1722f841e668eb8a79cd74c75) - update place holders #320 [`fb33485`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fb3348542bb766de68fb7bdb8ef12d3c301d3b4f) - Release 5.11.2 [`9ca4457`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9ca4457c41a1fc76d59536da4a8d479e0ecca23b) - WrapperDriver tweak [`5ad12ef`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5ad12ef02fa7a82937aa4d42d078c197eb562034) - Fixes TagInputDriver mouseOver/mouseOut tests [`aff2978`](https://github.com/sociomantic-tsunami/nessie-ui/commit/aff2978e791ecfc0d5508e98cf13f64ba4579bff) #### [5.11.2](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.11.1...5.11.2) > 17 April 2018 - increased the z-index of the loadingOverlay#322 [`#328`](https://github.com/sociomantic-tsunami/nessie-ui/pull/328) - Issue #296 scroll box driver [`#314`](https://github.com/sociomantic-tsunami/nessie-ui/pull/314) - Issue 287 required tests [`#305`](https://github.com/sociomantic-tsunami/nessie-ui/pull/305) - Issue #324 tab button driver [`#326`](https://github.com/sociomantic-tsunami/nessie-ui/pull/326) - Issue 286 fieldset tests [`#307`](https://github.com/sociomantic-tsunami/nessie-ui/pull/307) - Issue #297 sorter driver [`#321`](https://github.com/sociomantic-tsunami/nessie-ui/pull/321) - Issue #294 uploader driver [`#318`](https://github.com/sociomantic-tsunami/nessie-ui/pull/318) - Issue #295 slider group driver [`#323`](https://github.com/sociomantic-tsunami/nessie-ui/pull/323) - Issue #293 tag input driver [`#316`](https://github.com/sociomantic-tsunami/nessie-ui/pull/316) - Issue #292 tag driver [`#319`](https://github.com/sociomantic-tsunami/nessie-ui/pull/319) - Issue #290 paginator driver [`#317`](https://github.com/sociomantic-tsunami/nessie-ui/pull/317) - Passed value to simulate change #309 [`#312`](https://github.com/sociomantic-tsunami/nessie-ui/pull/312) - Fixed getContent bug #306 [`#310`](https://github.com/sociomantic-tsunami/nessie-ui/pull/310) - Issue #284 drag n drop tests [`#308`](https://github.com/sociomantic-tsunami/nessie-ui/pull/308) - Issue 282 input field tests [`#304`](https://github.com/sociomantic-tsunami/nessie-ui/pull/304) - Extended InputComponentDriver to other components in drivers.js #281 [`#301`](https://github.com/sociomantic-tsunami/nessie-ui/pull/301) - Issue 283 wrapper driver [`#300`](https://github.com/sociomantic-tsunami/nessie-ui/pull/300) - changed the style of the scroll indicator arrows #277 [`#313`](https://github.com/sociomantic-tsunami/nessie-ui/pull/313) - compiled styles and sprite [`29340f8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/29340f85877482e8108486c37025a685e6188b6b) - Release 5.11.2 [`66ad534`](https://github.com/sociomantic-tsunami/nessie-ui/commit/66ad534426f322d4aef2225b12fd243d55bf1328) - created the toggleButton component #275 [`88945f9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/88945f9a341911017b14aa70b4f56a0c9a64bca9) - Fixes/normalizes mouseOver/mouseOut behavior [`7452491`](https://github.com/sociomantic-tsunami/nessie-ui/commit/74524912cd929dac5c7c11f1d4ffbe788e0d626e) - Added mouseOverIcon/mouseOutIcon driver methods; tests [`3745b39`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3745b3918ed69817c14dfe891edd0eff9a2f2641) - Added driver and tests #290 [`cfa28d4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cfa28d44eae0698300dbc5047a7e3248de94b56b) - Added TabButton driver and tests #324 [`6fc0588`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6fc0588c5cc54e53d0fc8c101623fadfb719d7f1) - Added get/set methods for height/width #296 [`b362b9d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b362b9dd552e6ca3dbbb144358e2048718d21506) - added the test cases #275 [`d8bdfcf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d8bdfcf9de0fc20919da127eeeee1c8ea47bfe7b) - Added driver/tests for height and mouse events #293 [`4032fd4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4032fd481d89ae02c867124e89d03ebe09573fa6) - updated minors lines #275 [`7d9ab99`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7d9ab993bf22d52b843a602733e50f0a012fcbfd) - Code cleanup #290 [`2df7bf1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2df7bf1f648ff10ed4085406f6682dbcb30de590) - Merged #292; changed target of clickClose() in driver #293 [`7381d03`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7381d03e08e92aabaf2a4e3e756a322fabd97967) - Added tests for Fieldset #286 [`52fe827`](https://github.com/sociomantic-tsunami/nessie-ui/commit/52fe827f00eb4bb37766628c56adf5aeae8ddb54) - Merged with #324 TabButton driver [`8ca5a59`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8ca5a590c1e4ddd1189249edb6b0de4de5721ac1) - Added error messages #296 [`3468ee7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3468ee7bf56d4d5f2532232066f13cc19cd619fb) - Added tests for scroll onClick #296 [`12de94d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/12de94d3453d838ffcb995dbdb6e5af3be7719af) - created inital driver #275 [`28c3788`](https://github.com/sociomantic-tsunami/nessie-ui/commit/28c3788d4fed604b1fb96b9b7ce72c1e878521c1) - Added clickPrev and clickNext methods #290 [`5236ada`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5236adad29dfe5add40e583e7b7c17573f0bdffc) - Added SliderGroup driver #295 [`9216f6d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9216f6d925dd997631b49b96f845cad1497d4957) - Added Tag driver #292 [`ffedec2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ffedec27ded20cffeafbf35dd9928dabe7fb8a85) - Added check for scrollOffset tests #296 [`ba356ad`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ba356ad38c883123c523d3ded2bd3271e8deecce) - Release 5.11.1 [`ca8847a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ca8847ad9ea91fc97331e24c526922124f6dd067) - Added set() and get() for start and end page #290 [`4e64052`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4e64052f93154169ce94cb142e50a41f9d0ebfb6) - Added onScroll driver #296 [`d638d76`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d638d76a5cdd5da5e94ac4ff4f5496865b0ff0a2) - Added ScrollBox driver #296 [`6304706`](https://github.com/sociomantic-tsunami/nessie-ui/commit/630470635cef54c8d4494ab9bebc6104fd986c4f) - Added Sorter driver #297 [`8ee76ca`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8ee76ca53324aa2a3d98f1c99a9ff2d22779e987) - Adds specific onMouseOverIcon/onMouseOutIcon props to IconWithTooltip [`b286560`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b286560f8f4fafd5133aa969018ed6a46d09e0db) - Code cleanup #293 [`a9fa21f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a9fa21f8ea55090a5784147e00d9a10f082ce17f) - ListBox added to index and created driver and tests #298 [`25b7669`](https://github.com/sociomantic-tsunami/nessie-ui/commit/25b7669e274cfcd724ee00fad463ad6955778082) - Added onChange test #294 [`561c969`](https://github.com/sociomantic-tsunami/nessie-ui/commit/561c969918d1ca8ca3688d4202ad7771154802a5) - Added Tabs driver; getTabButtons #291 [`13af662`](https://github.com/sociomantic-tsunami/nessie-ui/commit/13af662ce29a95e63bd895d7734ff0f189650065) - Added clickClose driver #293 [`642903b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/642903bd30bff34d18ee8cf0c8dd68b73310fa05) - temporary fix for uploader component [`d4effbc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d4effbcb4a60976b2019055d345c9f8be33f6730) - Added changeActiveTab part 1 #291 [`c8ac5a3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c8ac5a36c9784b8b0746d5d14cc5ee1620b1381c) - Fixed PR issue #324 [`34dae52`](https://github.com/sociomantic-tsunami/nessie-ui/commit/34dae5220294d90be3805ca6692360abd5930d3c) - Updated getTabButton and removed changeActiveTabs methods #291 [`a5f53ca`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a5f53ca54eafc5ca50fc7b4536e5538c0b70e516) - correct color for datepicker item hover #320 [`f1a8dc7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f1a8dc7f612582ad2246c2a53259199788f2e373) - Added UploaderDriver tests #294 [`b5d84de`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b5d84de2ab6aaa5788607547059ec4bcc17f03ab) - Fixed PR issue #286 [`44680b3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/44680b3fbc4bc6e257ed23cd98f36d344028a735) - updated the tests.jsx with the remaining test cases #275 [`955750b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/955750bcc2ae8ab4a51473215f6650981346313b) - Fixed Wrapper Driver; added getTabContent method #291 [`155972a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/155972a690a2801f12c1ba543a0edddfd338b7db) - Removed commented lines #290 [`3e97a18`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3e97a1868e622213ef5de58e9b0881ff6e238685) - Fixed PR issue #296 [`35d97e5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/35d97e5a66cb4d9beb2f2e4d7198afa85dcee7ef) - Code cleanup #324 [`a9411aa`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a9411aac842b551112c451c3c76ff85e965627b6) - Updated getTabButtonsByIndex method #291 [`4dae15f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4dae15fc1743c64fb965ad11e857b06bfa23dd01) - Created driver.js #294 [`d7dde64`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d7dde646371b4972f3c892892c2a3aedc7be8ee8) - Added changeActiveTab part 2 #291 [`3cac2bd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3cac2bd213d56e7504353a56acfae0e650d0c562) - Added clickPage() test #290 [`afedb2e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/afedb2e40fdebd05d0b190d2ea6afe7d6b7fa1b1) - Fixed PR issue #287 [`35f0bdb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/35f0bdb0a28ed47315da4a92f4d6bd3c18568c60) - Code cleanup #292 [`b96af6c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b96af6ca9bd17214c50c65732e916cec3a717c54) - Added test for children prop #296 [`e651b06`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e651b06bc96d9d1494e547858db1d746cec248ef) - Added test for getSlider #295 [`2194164`](https://github.com/sociomantic-tsunami/nessie-ui/commit/21941649e2b6b64e265f2ff64d06604bc5301ba0) - add broder radius tu dropdown content #320 [`e60fc31`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e60fc31aadd931dad693cceffa039dcdbadcec7b) - update columm heaader styling #320 [`f4ec981`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f4ec98171763b5035aa24f07fd4776d1720fe595) - Updated getSlider method #295 [`313501f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/313501f7f5022ef0dc48674ee5653b2ea8241454) - update datepicker style #320 [`76089e8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/76089e85245f89303aa66216bd83ce08af737eb5) - update box default boxshadow #320 [`62536e1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/62536e10fd6338b64a4be5e02d6bd3c154797779) - added README [`5f1e49d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5f1e49d0f3bba2962672e2ae060d9c0d1d6b7ab1) - DragNDrop tests #284 [`0351a70`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0351a7003975c7f7381f43694a9dee784909d700) - Changed selectors in driver #290 [`b979b71`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b979b71b47807b0ba3b5f951cf62cca234d31af7) - updated the binder of the onClick #275 [`44be5ef`](https://github.com/sociomantic-tsunami/nessie-ui/commit/44be5ef4e7edda60128c61f39df248fa136fb5fd) - changed the size of the indicator arrow #277 [`5b007e2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5b007e28d182e603a3c235a12421e7b72c332b4b) - Fixed PR issue #293 [`fb994c5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fb994c512436db44f66886c28e7c917c88b0078e) - updating module header [`660776f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/660776fa69ed15d621b1cb91ed4435701482d51a) - update label color in valuedTextinput when disabled #320 [`1727642`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1727642f58eb72b9859ea2f1f188ccb2587db067) - add nessie light font in nessie #320 [`7da1417`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7da141753e39599ed42204afbf53f82dd8e5903f) - revert Icon fill and added it into scrollbox #277 [`fb00b67`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fb00b67e6254d9e3093586b2a0dd0d1d4492af56) - scroll box idicators color update #320 [`c6c457b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c6c457b77c3885d1a44b1fbc2550c980c0692649) - Added driver to drivers.js #294 [`8317937`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8317937fb0cc3eb86714af77f9b50274545f51db) - added descreption for ToggleBtnProps #275 [`e772958`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e7729587fceeb0a541fd280190c707180a75fcbe) - remove white bg for iconWithTooltip [`e0183ee`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e0183eefa2acc82eb8defb4a450e47cddd6ff2bc) - Changed testing values for variety #290 [`004758b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/004758bf36dc36e98b2017b867bff41d0addfaaa) - update fonts definitions to use normal values [`5660611`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5660611fdffe45b350c712d050c2001f462761b1) - Added change() method #294 [`2d2f0e4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2d2f0e4d4a2b862434ee1070495ed9d15177f535) - avoid text transform for text component #320 [`b70f08e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b70f08ebd69090164988b3f2ff1760b1808a27bb) - Code cleanup #291 [`ad76db8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ad76db8d0146b6bcc33efc033b634dfa6213ce2d) - Fixed PR issue #292 [`a607caf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a607caf975777082d37d6a6cf18a90e66fdf9585) - Fixed PR issue #292 [`935044d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/935044d1099baedfb0950313b4f3b0ebd77ee6ad) - font weight normal for h2 #320 [`2cb7637`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2cb763760797081825994534312d3fea1fb281bd) - Correctly added attribute to wrapper #296 [`722c072`](https://github.com/sociomantic-tsunami/nessie-ui/commit/722c072d3032714391b2e6537113d6cc53d5ab87) - Code cleanup part2 #324 [`ca8c408`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ca8c4088bcd4dd113d7e4c9425bfd890d265da04) - Fixed PR issue #287 [`82c2533`](https://github.com/sociomantic-tsunami/nessie-ui/commit/82c253320feca33b45621d26e53123d1b92b0790) - Renamed description of test #296 [`3a82b26`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3a82b26e3e772992e72a40225870c3249a422f7a) - Cleaned tests code #296 [`a0a4c2e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a0a4c2ebc2f80c68fa80e7a5e5be25a74fb34f41) - Removed .only from tests #290 [`6a35827`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6a358277c80c4b8bc189a077433c5007328736ed) - Changed target of toggle() #297 [`e1ef2a2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e1ef2a2257c59791a044300566b20323e93a97c0) - updating boxshadow for flounderdropdown #320 [`65cafaa`](https://github.com/sociomantic-tsunami/nessie-ui/commit/65cafaa4cff5e57ba32b35307070346fbac12611) - Slider component default id value fix [`bb191a9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bb191a913a8f490bd23c4aa192af0ceb24d789ba) - transparent bg for secondary button when disabled [`c940643`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c940643e3ed550ecc7c988b5160c1c67e8905536) - Removed .only from tests #295 [`9cebf7c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9cebf7c9c8ed6e4b0b7ce18460af7c0a94930dd5) - Removed .only from tests #296 [`a158982`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a1589828f52964b9f152c19a759e74af082f705f) - Removed console.log from driver #296 [`d825a74`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d825a743b07070851f6dde47a3957144bd0f7518) - add tooltip boxshadow #320 [`f042471`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f0424710d6bc704c82ed02c414f4c11739650410) - updated the style of the secondary state #275 [`d6c7940`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d6c79403f99210691e6785e2e57ae00acfd34aad) #### [5.11.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.11.0...5.11.1) > 27 March 2018 - compiled styles and sprite [`821b760`](https://github.com/sociomantic-tsunami/nessie-ui/commit/821b760d25842bfad5089b8f45c1e9cb91b99b3e) - Added tests for InputField #282 [`b6e68f9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b6e68f95a5a416247a2fe3d84657f48c78d18a81) - Commented drivers that are still unused #283 [`de64cf8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/de64cf8d440c8fd91ab4021ba50604a0a408e7e3) - Added components to driver.js #283 [`909c1da`](https://github.com/sociomantic-tsunami/nessie-ui/commit/909c1dafda126bd3a847d98406054a99452dc6ce) - Added drivers for components using WrapperDriver #283 [`8ca2b2f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8ca2b2f319733c56b9549a25b1ea2f340f1fb2d5) - Release 5.11.0 [`ed415c3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ed415c3a435968bc4ff12ff2483e7d5b3d1c81ed) - Release 5.11.1 [`3462bef`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3462bef0b359a20e6546587bad1a8a2fabd59f60) - Added tests for Required #287 [`8fd3e2f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8fd3e2f533cbf40104eb21f0c7e1ff37bf87324b) - Flounder search styling fix [`626d484`](https://github.com/sociomantic-tsunami/nessie-ui/commit/626d4844b3a3a6322d875a5983afc19a730f4007) - Created tests.jsx #284 [`ed7f03e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ed7f03e95a8d7e4868fd237b6bcf565e6ffb5411) - update NavItem and ToolTip test Drivers #302 [`82d24b1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/82d24b12f81c2ea326fa8329122bed42b80235ba) - Created WrapperDriver #283 [`5bcf863`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5bcf863ab1a8f0ae534392743b4d1524f775c6c3) - Extended InputComponentDriver to other components in drivers.js #281 [`05e73d1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/05e73d181935c7bf10617156d219136479e159f5) - Removed from tests #282 [`85f31e5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/85f31e5fab8dbd4db7cc646737b67e8f41cc00a0) - Removed from tests #287 [`7c49bf4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7c49bf4faf3f1d7c03c6276e2f1f1e9210a244c1) #### [5.11.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.10.2...5.11.0) > 23 March 2018 - Minor changes ferret [`#299`](https://github.com/sociomantic-tsunami/nessie-ui/pull/299) - Issue 221 table row clickable [`#250`](https://github.com/sociomantic-tsunami/nessie-ui/pull/250) - Issue 268 date time input driver [`#280`](https://github.com/sociomantic-tsunami/nessie-ui/pull/280) - Issue 271 checkbox group driver [`#278`](https://github.com/sociomantic-tsunami/nessie-ui/pull/278) - Issue 243 slider add driver [`#263`](https://github.com/sociomantic-tsunami/nessie-ui/pull/263) - Stop React from complaining about checked/defaultChecked #265 [`#279`](https://github.com/sociomantic-tsunami/nessie-ui/pull/279) - Issue 256 time input refs [`#257`](https://github.com/sociomantic-tsunami/nessie-ui/pull/257) - Deprecate “space-around” option for “verticalAlign” prop #253 [`#254`](https://github.com/sociomantic-tsunami/nessie-ui/pull/254) - Issue 269 checkbox driver [`#273`](https://github.com/sociomantic-tsunami/nessie-ui/pull/273) - Fixed on hover bug #135 [`#238`](https://github.com/sociomantic-tsunami/nessie-ui/pull/238) - Issue 248 mouse events fix [`#262`](https://github.com/sociomantic-tsunami/nessie-ui/pull/262) - Issue 226 icon svg updates [`#264`](https://github.com/sociomantic-tsunami/nessie-ui/pull/264) - Fixed warnings for tests #249 [`#258`](https://github.com/sociomantic-tsunami/nessie-ui/pull/258) - SliderDriver mouseUp fix #243 [`#243`](https://github.com/sociomantic-tsunami/nessie-ui/issues/243) - Mouse events fix #248 [`#248`](https://github.com/sociomantic-tsunami/nessie-ui/issues/248) - compiled styles and sprite [`fe2243e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fe2243edbc6e1a8fa3cb92f25742201111453e3e) - re-add all new icons with correct transform #226 [`be68dff`](https://github.com/sociomantic-tsunami/nessie-ui/commit/be68dffea7e6dcac2434459c5b571bf816e956b4) - SliderDriver simplifications #243 [`21b385a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/21b385ae304c14495d65b59b60d2117014274446) - Added tests for DateTimeInput #268 [`b1793c9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b1793c9e13b94c05462812c998e966e566c68f05) - Mouse events ix part 1 #248 [`ac36687`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ac36687934eab8adfcb6824b2ca787b12a0bb880) - WIP [`31de480`](https://github.com/sociomantic-tsunami/nessie-ui/commit/31de48080cf4f1b69bcbcd64eebc937d52e3f9bd) - Added driver and tests for Checkbox #269 [`3349a58`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3349a5890928b42bf2695d6497fa4adc9574b710) - More SliderDriver tests #243 [`c68c72b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c68c72b97b10ced9dff2411c4849c3e4c42b1176) - Added driver and tests for checkable groups #271 [`fccf23b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fccf23b2acf92dbb6e3fb83ef3c5cf1130e9f8ce) - Remove duplicate TimeInput from DatePicker folder #256 [`067a8df`](https://github.com/sociomantic-tsunami/nessie-ui/commit/067a8df0da7c8727870247cfa26a9da03720da31) - Slider driver basic functionality #243 [`eba216f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/eba216f123f16fea0386e2c7130a02889c1b6a29) - update broken icons #226 [`fb1aeeb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fb1aeebae10595b178801c5df96a6450f46add21) - Updated SliderDriver tests #243 [`1e36b13`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1e36b1323557454fb42eab1e298a8344aa998042) - fixes after PR review [`e5db7c9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e5db7c94e347eaef5dae33995ad57b56df2abdeb) - Release 5.10.2 [`7ab5ef9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7ab5ef9c40996907bf26de1f35852e06971e19df) - Additional SliderDriver tests #243 [`8f4a255`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8f4a255193dc9161a52dc3cce78f511ff451a4bf) - Release 5.11.0 [`dca139b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/dca139b4cb494e299d33f534d5367149b5f43390) - Test disabled slider error, event targets #243 [`f15ace5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f15ace51610b2b510df84e50a96261fdbfc2f4f6) - update naming for some icons and add white background for error icon #226 [`81915b0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/81915b0271878d845bf48828bdd7893dfa0b674b) - Fixed PR issues #248 [`4bfc9c7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4bfc9c7c9b0797a429e52b703d5f662a1fc27e58) - Added “hourInputRef”, “minuteInputRef” to TimeInput/DateTimeInput #256 [`7a5d81d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7a5d81d5ecade4eda8549b26974dfd1a156804f7) - Added tests for selecting from array #271 [`ba2aa75`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ba2aa75b09dba9b5f66a8263c2fa04ec3099adce) - Slider setInputValue driver method; improved error handling #243 [`2b3015d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2b3015df6d6aff0ac0868379aea1129f472bc2ed) - Fix bad merge drivers.js [`44ac9ca`](https://github.com/sociomantic-tsunami/nessie-ui/commit/44ac9ca1741653ffe73b9e331a954c74e67f7ba2) - Added tests for DateTimeInput #268 [`9453d53`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9453d53001f7b8c06385ac3fcf12e554e6f9942f) - Created driver and test for CheckboxGroup #271 [`7c1da2d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7c1da2d0911eda76cecbfd54f3b86359e61537cf) - Checkable Group driver part 1 #271 [`3499587`](https://github.com/sociomantic-tsunami/nessie-ui/commit/349958759477d2699f5858a8c7aa7b105f52ae98) - Created driver and tests #268 [`27ddb1f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/27ddb1f9ae038b562e418fe97739db2ba5cb0be1) - Implemented a wild and zany setValueByKeys driver function #243 [`2ddd69a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2ddd69a2811b14cce2f280046f5d0858a08dc2e3) - fix value label hover errorfor ValuedTextInput [`e8b628b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e8b628b5543f5d382aa5ad296b73f3f1e0a4cb04) - Fixed PR issue #269 [`1754e23`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1754e23ca76ecbd401ce3967d1d8e6be4620d1de) - SliderDriver test tweaks #243 [`74b807a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/74b807a31001ddcb8db7678a2864b3c074965e05) - update module styling & H1,H2,H3,H4 font color [`b50b014`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b50b014d454ca9b7a514bd0005cebd98a9579c22) - Generalized disabled slider error #243 [`7b2cee2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7b2cee290e07ba04ae2ce4c267fa3d9c1b47a157) - update header colors in defualt class and remove after for submodules [`08b1086`](https://github.com/sociomantic-tsunami/nessie-ui/commit/08b10863d24a6474ca95cdbea2be45ece4831ba8) - Fixed PR issues #249 [`25bfcdb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/25bfcdbaa6ba06f47d112fb74ab458fcfb93f7fd) - add running status icon #226 [`0a5564c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0a5564cd20d6b333009e9da7636b365662d993cb) - Fixed PR issue #135 [`869d269`](https://github.com/sociomantic-tsunami/nessie-ui/commit/869d26959cc76ad70aab1525d1d28418b2a102d7) - Fixed indentations #248 [`34ed600`](https://github.com/sociomantic-tsunami/nessie-ui/commit/34ed60012f0828c1d393c9cf8e5bc74581faaad5) - remove uppercase from menu [`e669b8e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e669b8e8300239482c75c6b03f07f5eb7dc44e6d) - Removed unused KEYS constant from Slider driver.js #243 [`ca557dc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ca557dcd1763a3eb714dff069aabd90345c053b2) - Remove unused KEYS const from Slider tests.jsx #243 [`bedd8e5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bedd8e541977b0e940bd4846f076d75718a3764b) - Fixed PR issue #268 [`161f2c8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/161f2c843934ae879b805edd3939be3afe5a625c) - update duplicate icon [`761fad4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/761fad4da3d15f2da3c6da54203b046510bac842) - Add SliderDriver to driver suite #243 [`c5d639c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c5d639c1f6810f851a25eab1b167c0fd5303604f) - fix width in Page/PageContent/codeEditor components [`51c6889`](https://github.com/sociomantic-tsunami/nessie-ui/commit/51c688906b2f39e04ab8902080513288474d355e) - Removed “isCurrentPage” PropTypes def from NavItem [`84a303f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/84a303f7a57c358879ed2e0994a742926b817b3d) - 'nessie' -> 'nessie-ui' in README.md [`94687f0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/94687f078f1e44e91e783d380f196b1659b5e6d8) - Pass a default dummy event for Slider handleMouseUp #243 [`87e8d0c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/87e8d0cac5624619b09cf218d2ce1039efb49599) - update icon readme [`31b7319`](https://github.com/sociomantic-tsunami/nessie-ui/commit/31b73197a18c116bb34eeb9d7be6264867101dcb) - add border radius for module [`df658c4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/df658c4fcd2c3f53b3aa875086e32e8d570d612c) - Removed .only from test #271 [`71830ab`](https://github.com/sociomantic-tsunami/nessie-ui/commit/71830ab715a9ed0fc955938203fdcdf03b136beb) - Slider tests decsribe correction #243 [`772669d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/772669dc23404a8c57ac968d4646ff384064226f) - Add missing return to SliderDriver setInputValue #243 [`98a935e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/98a935e100012f3a1cd4a325b888f14e2c31eae8) - Slider driver describe correction #243 [`279294a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/279294a16ae09adcbbeb8ae7fcb242ba68429309) - Removed from #269 [`517b513`](https://github.com/sociomantic-tsunami/nessie-ui/commit/517b513b766163c1d98d4e332d39083bba93f7a9) - Fixed TableCell size prop for 1/13 [`b7c34ef`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b7c34efe421d3c17b006aa81d5993302745ed594) - Remove options arg from SliderDriver setInputValue #243 [`bb9381a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bb9381a34b0dd496c770d2eee48a4f1b84e87e5d) - error state styling should overrides other styling [`2f56025`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2f56025f268184ef0f5b04c567ea7c4b3266bea6) - add correct label color [`9f743e4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9f743e43214fd295c2bcf09b85785e337a2d9908) - default color for info icon [`7fe53dc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7fe53dc69925586b9a36bff0867b30ca064b3f01) #### [5.10.2](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.10.1...5.10.2) > 14 March 2018 - Issue 233 slider events [`#255`](https://github.com/sociomantic-tsunami/nessie-ui/pull/255) - Issue 102 slider transitions fix [`#219`](https://github.com/sociomantic-tsunami/nessie-ui/pull/219) - Deprecate Grid “hasMinHeight” prop #251 [`#252`](https://github.com/sociomantic-tsunami/nessie-ui/pull/252) - compiled styles and sprite [`71f18ae`](https://github.com/sociomantic-tsunami/nessie-ui/commit/71f18ae0e33ee9ff5498ffcff82ad4afcfd1b09d) - Add updated spacing prop options to Grid/Row components #221 [`2698d43`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2698d43062553295b691528b3ddde8ffcbce940b) - Release 5.10.2 [`b2129b5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b2129b5cb2447041d1e4cc940c19cec3915e7580) - Implemented “isActive”, “isClickable”, “onClick”, “spacing” in TableRow component #221 [`642339e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/642339ef56b46535d569d889f85d505250979690) - Implemented onMouseOver/onMouseOut in Grid/Row/TableRow #221 [`2935b33`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2935b333d06e73eecc1109de3c15644c6e13712a) - Fix failing tests #233 [`3f9e526`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3f9e5268abe5ca90793ed15666bceb3ec80e6f05) - Warn about deprecated Grid “spacing” prop options #221 [`843124a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/843124aa91e9fa12b8a8a6bc0cb0772667835799) - Use CSS variables in grid.css #221 [`113963d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/113963db50224fe270db0442536bba69648ae171) - Added “spacing” prop; implement “rows” prop #221 [`cc6a703`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cc6a7037afe29d2d3bc876a2a8ab6de5f25e645e) - Use buildClassName instead of <Css> in Column component #221 [`ab19863`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ab19863866d4c3a95ea3ef07a3a05f5137ce16c4) - Bugfix FlounderDropdown not updating Flounder value when null [`51b3f32`](https://github.com/sociomantic-tsunami/nessie-ui/commit/51b3f32268a4f1ee7e81c8e1e3baf35d7822b8b0) - Implement configurable borders (“cells”, “rows” or “none”) #221 [`4b95a21`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4b95a21509816d30033f8532391c5a5ac8a8cf1d) - Implemented onMouseOver/onMouseOut in Table #221 [`e2ede79`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e2ede7990640d0f3f4b7256aaefb56577fa07148) - Improved implementation of table header row styling #221 [`9e6b808`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9e6b8087573225d324af8ef90bb259b48ae5fc41) - Implemented “hasBorders” prop on Table #221 [`6ff9351`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6ff9351be636a31b662455fe3e099ce37370471e) - Deprecate “space-around” option for “verticalAlign” prop #253 [`b9e5a6e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b9e5a6e8829ad1c1d17a8f53798361bcd5d6f1f5) - Add missing PropType specs to Grid #221 [`fdf0547`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fdf0547b08f7c9a2d053bdcfc5beaca540e836b3) - Release 5.10.1 [`cec8015`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cec801532aaaaec50f1e379523a4852b9a26fcdb) - Simplify TableCell implementation #221 [`1339c85`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1339c85fd2593b4b0cde9c3c6c573e62dcd0f42c) - Restore table padding for Tables with “isZebra” or “borders !== 'none'” #221 [`a631150`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a631150997c6d8c04e17aa9b1f93c65069ae2ab3) - Make active row class override zebra background #221 [`8eaa788`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8eaa788617e5861d7a5ae2c2365227c857015ef6) - TableRow no longer adds its own padding #221 [`387e6b3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/387e6b39ed2d1e5c99dcab1678d4fda67485eecb) - Don’t set cell background color on header row #221 [`291b42c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/291b42cd343ae37d60720628c8e90d7a62891b06) - Simplify props passthru in TableRow component #221 [`560ede7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/560ede7d9d16b5bc7c2602774ca237b8bf2cf8d1) - Don’t call getStep inside getValue #233 [`a7c9068`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a7c9068c1dbda77842ed66d520720f54022a54a6) - merge fixup [`6593a39`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6593a3908bc210d21c162ff9b5c6271e05f1bdc5) - merge fixup [`352877e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/352877ee902b563163b45ec456ee57cf79e2bdc3) - “hasWrap” class name should be “wrap” #221 [`9beb4de`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9beb4deeda801b5f605d0429b798a5eff2b3b69e) - Remove commented lines #102 [`40bab40`](https://github.com/sociomantic-tsunami/nessie-ui/commit/40bab4052cc1cbc9d92e115a39ba2421171a02cd) - Row “role” prop tweak #221 [`e827dd4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e827dd4bf9a394dae18dbaf2e2cf0ac249f028d7) - Fix isZebra styling #221 [`e2edda3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e2edda37d04d9306705128ca73c06486533f1141) #### [5.10.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.10.0...5.10.1) > 13 March 2018 - Fix for nested Grid alignment (with IE-specific hack) #237 [`#241`](https://github.com/sociomantic-tsunami/nessie-ui/pull/241) - Add deprecation warning to Divider #142 [`#240`](https://github.com/sociomantic-tsunami/nessie-ui/pull/240) - Fixes CheckboxGroup isChecked override behavior #242 [`#244`](https://github.com/sociomantic-tsunami/nessie-ui/pull/244) - Issue 31 cleanup package json [`#245`](https://github.com/sociomantic-tsunami/nessie-ui/pull/245) - Issue 207 switch update style [`#222`](https://github.com/sociomantic-tsunami/nessie-ui/pull/222) - compiled styles and sprite [`124a2dd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/124a2dd7644db0e17482943e77332d5624fb46f6) - Release 5.10.0 [`5abd723`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5abd723c6c9e2502f3884efc25a5f774db16849a) - Release 5.10.1 [`3dd0305`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3dd0305c426d238bd6c1b34779c53b6fb1eaac94) - Added check for deprecation warning #142 [`65725cf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/65725cf9884227c1b75fea8d551933df2a3b31e5) #### [5.10.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.9.4...5.10.0) > 12 March 2018 - Issue 173 combo box style update [`#231`](https://github.com/sociomantic-tsunami/nessie-ui/pull/231) - CodeEditor - Added Drivers [`#232`](https://github.com/sociomantic-tsunami/nessie-ui/pull/232) - Tooltip design Updates #140 [`#224`](https://github.com/sociomantic-tsunami/nessie-ui/pull/224) - design button updates #116 [`#225`](https://github.com/sociomantic-tsunami/nessie-ui/pull/225) - Updated Date Picker styles #152 [`#230`](https://github.com/sociomantic-tsunami/nessie-ui/pull/230) - Removed unused packages from package.json #31 [`61e723b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/61e723b79c0a7590b056b3049d86603ebb3e0921) - compiled styles and sprite [`364b555`](https://github.com/sociomantic-tsunami/nessie-ui/commit/364b55537991247939421282a22392a4f7cf78ef) - Moved packages devDependencies -> dependencies #31 [`c5c7d15`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c5c7d157da2a499cc1eec14806e6b46cfa35b9d1) - Filter non-primary mouse button; allow preventDefault #233 [`14583fd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/14583fd0262d09ec34d79bde9b8d2f44e1962430) - Fixed PR issue #173 [`1e5765c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1e5765cfc653269cf63d36f632ad06327d299ede) - Release 5.10.0 [`b4cc927`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b4cc92773f2bbe212114a415a1466f8b3d3052f7) - Add deprecation warning to Divider #142 [`a5e4104`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a5e4104b364cb60502a79266bea1301ef2265bbd) - Fixed PR issue #207 [`748e156`](https://github.com/sociomantic-tsunami/nessie-ui/commit/748e156aaccc737786d35b23aa0d7b066a64401f) - Release 5.9.4 [`4ba9ab5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4ba9ab5cc3112f696caaeec5f888209f6c08e850) - Fixed on hover bug #135 [`667c621`](https://github.com/sociomantic-tsunami/nessie-ui/commit/667c6213d06a819164d7da59173ccb92c1832d2c) - Fixes CheckboxGroup isChecked override behavior #242 [`be62776`](https://github.com/sociomantic-tsunami/nessie-ui/commit/be62776462cf6f237ea43ff979a487a2eded73d7) #### [5.9.4](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.9.3...5.9.4) > 9 March 2018 - compiled styles and sprite [`802713a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/802713aeadabf905f215b53903d6eb797dfb1dd6) - Bugfix IconButton sizing [`9cb50cf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9cb50cf3188289953458c7f59494a8c37e4facae) - Release 5.9.3 [`7fc5e30`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7fc5e30aebb2ccdfc32faf965d89d0cb5cb0d334) - Release 5.9.4 [`bc3ec21`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bc3ec210f550869443c0055454672366282461c5) #### [5.9.3](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.9.2...5.9.3) > 9 March 2018 - Issue 214 slider input refs [`#235`](https://github.com/sociomantic-tsunami/nessie-ui/pull/235) - Fixes Slider input ref error #214 [`#218`](https://github.com/sociomantic-tsunami/nessie-ui/pull/218) - Add missing events to Slider + general cleanup #233 [`6f25dd1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6f25dd17e5f79c2e2479ac2b8f867132988c1fe4) - compiled styles and sprite [`f06fd9b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f06fd9bc6c0db0a23f4813056e87036ee689fdb8) - Fixed methods for adding extra classes #173 #151 [`d069e1e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d069e1ed90d952c028f5b8c82c9b459f8ff1bc71) - Flounder fix and style update #173 #151 [`ed00ade`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ed00ade92f22539dd1362f19220720a5437ec906) - adding main icons ( 1st part ) #226 [`71f8bab`](https://github.com/sociomantic-tsunami/nessie-ui/commit/71f8babdbf4377c8f6deeb7e271241f0399748eb) - remove old status icons #226 [`1c8e984`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1c8e9845cab68762090b5d73a8760201c8c42453) - CodeEditor - Added Drivers [`7165815`](https://github.com/sociomantic-tsunami/nessie-ui/commit/71658158650371b497c30e8e10a136e2cf58e328) - added 6 of the new icons ( new status icons ) #226 [`917d0bd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/917d0bdce3bac52cee7da269cc648b8bc62cfefb) - adding new menu icons #226 [`d33c276`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d33c27608beba619378bc60d89aad916682ae092) - Changed CodeEditorDriver test names to be more readable [`31acc11`](https://github.com/sociomantic-tsunami/nessie-ui/commit/31acc112c9285ae209ee4133a011bd3db7377e0b) - Made CodeEditor driver tests names more human-readable [`a206ba0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a206ba0a84870e7835768f8443196c7f22c2c7c7) - Bugfix Column icon sizes CSS implementation [`db229e0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/db229e0866a8e204e24d1b73edc93bf97ff43194) - Add mouseOver/mouseOut #233 [`da10e41`](https://github.com/sociomantic-tsunami/nessie-ui/commit/da10e41cb19790af3dea9ec7cd91f01a5ff0a55d) - Release 5.9.3 [`576a61a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/576a61a3602cb38eadf466d32dacdb181f9b974d) - Release 5.9.2 [`a965076`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a9650760d3c073aae35d5009287fb1ee36bcaccc) - ComboBox/Flounder style updates #173 #151 [`b3385f4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b3385f4e158d26a46214cb17d25771a747501857) - Fix the blur method in CodeEditor drivers [`32d15de`](https://github.com/sociomantic-tsunami/nessie-ui/commit/32d15de7399bddf75e4156e7ba2d331b76be68fa) - Fix driver for CodeEditor when mounted as a descendant of another component [`939c019`](https://github.com/sociomantic-tsunami/nessie-ui/commit/939c01994c07e578884ac30f01a23dd1578e951b) - Fixed failing test for CodeEditor driver [`64c1db2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/64c1db228d341253079d74f5686036753b59878d) - Fix typo #233 [`6145f36`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6145f36cbe10e2f44d02648d1ab6559e35b85aa1) - Added missing defaultValue for value prop #233 [`3ff1ed5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3ff1ed56348d61ddd4e2640fddeaa7b93af35e51) #### [5.9.2](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.9.1...5.9.2) > 7 March 2018 - FlounderDropdownDriver call clickByIndex with index + 1 #227 [`#229`](https://github.com/sociomantic-tsunami/nessie-ui/pull/229) - FlounderDropdown check if placeholder is truthy before setting #223 [`#228`](https://github.com/sociomantic-tsunami/nessie-ui/pull/228) - Added TextDriver with getContent method #216 [`#217`](https://github.com/sociomantic-tsunami/nessie-ui/pull/217) - compiled styles and sprite [`68d1078`](https://github.com/sociomantic-tsunami/nessie-ui/commit/68d1078b61be6fd709e5d2396fa11f1e71118c46) - Tooltip design Updates #140 [`3b3d049`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3b3d049e5021b5fe4ca0e6ed65c6fa95fda509e0) - design button updates #116 [`55f522a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/55f522ab6d3950f7eba31cb0655c52c07b53a7aa) - Updated switch styles part2 #207 [`d63b375`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d63b375ba7ad8e2aea778756de3f80c968302eb4) - Updated Date Picker styles #152 [`6d9d260`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6d9d260105864b2fed43d6b7a849031992b709fc) - Added class for removing transition when grabbing handles #102 [`f1203cc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f1203cc55fd8831d270751ef434b57776c7508fa) - Updated switch styles #207 [`e806e30`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e806e30374305d84db4436d9342b781b114bbe94) - Release 5.9.2 [`813e676`](https://github.com/sociomantic-tsunami/nessie-ui/commit/813e6768488bc0072aa21e53a16ce7c2e6f56d53) - Release 5.9.1 [`aca0c5e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/aca0c5e450877becb602dcbff28286fe922c6508) - Added transition to handle and trackfill #102 [`f11afc3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f11afc317c64be4aaeeb1af17ad86deed1882017) #### [5.9.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.9.0...5.9.1) > 6 March 2018 - Fixed button icon's size and spacing #116 [`#210`](https://github.com/sociomantic-tsunami/nessie-ui/pull/210) - Fixed checkable alignment issue #212 [`#213`](https://github.com/sociomantic-tsunami/nessie-ui/pull/213) - compiled styles and sprite [`c839218`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c839218b3b3f290151eea29d247dfd0db6caebc8) - Release 5.9.0 [`e312fc1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e312fc186bcaa7af6c0374b32181c31456929574) - ScrollBox overscroll-behavior tweak [`05e6699`](https://github.com/sociomantic-tsunami/nessie-ui/commit/05e6699bf102999520598773f89cba6fe3f34626) - Release 5.9.1 [`689f831`](https://github.com/sociomantic-tsunami/nessie-ui/commit/689f8318cce3d7c545c458be672047a8e0f8a4d6) #### [5.9.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.8.4...5.9.0) > 5 March 2018 - Minor changes emu [`#209`](https://github.com/sociomantic-tsunami/nessie-ui/pull/209) - compiled styles and sprite [`1c54cd3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1c54cd36820058988b8ebd673b87ce931590e359) - Release 5.9.0 [`e01cb48`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e01cb48e6630b85bea69eba9738fcd9c291df1fc) - Release 5.8.4 [`0f2f061`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0f2f06162c39b1147010f959ae5cf12230f18149) - Update yarn.lock [`17d25ca`](https://github.com/sociomantic-tsunami/nessie-ui/commit/17d25ca2666058b4f090e997918dccbbd74c5c88) - Fix stacked nested Module margin [`87e6520`](https://github.com/sociomantic-tsunami/nessie-ui/commit/87e65200f74a0868b6622e9bf70f462656dea332) #### [5.8.4](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.8.3...5.8.4) > 1 March 2018 - Added transparent to default #149 [`#211`](https://github.com/sociomantic-tsunami/nessie-ui/pull/211) - Convert all rem’s to px’s #146 [`#202`](https://github.com/sociomantic-tsunami/nessie-ui/pull/202) - switch styling update #207 [`#208`](https://github.com/sociomantic-tsunami/nessie-ui/pull/208) - Issue 36 focus in all components [`#205`](https://github.com/sociomantic-tsunami/nessie-ui/pull/205) - Release 5.8.4 [`3283cc5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3283cc55ac86106ad5f50787f2e3ab1d91159dcf) - compiled styles and sprite [`ac26b69`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ac26b6985d861d1b39b4e93bd496764654351f03) - CheckableGroup calls both group onChange and item onChange [`5a419f1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5a419f127ce2f57ae59cfe4b936e1adbd144d77f) - Release 5.8.3 [`92093d9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/92093d9dd8286b44e2502daf20e4d4dbcc48e90e) #### [5.8.3](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.8.2...5.8.3) > 28 February 2018 - Release 5.8.3 [`f82b1ce`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f82b1ceb7fc44aa9542aae96f9ff5a3cf9e056c7) - compiled styles and sprite [`4630fa5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4630fa57f02b528212b0ca07d17755087e2f9fd7) - Release 5.8.2 [`8b873d1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8b873d131ced32e430e13625b8672fcf3e5a543d) - Bugfix Table default gutters should be L [`dba6a81`](https://github.com/sociomantic-tsunami/nessie-ui/commit/dba6a812f0c975ba42aeaea560611d82a61ea5bd) #### [5.8.2](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.8.1...5.8.2) > 28 February 2018 - compiled styles and sprite [`740ba1a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/740ba1a7585c0d355db9ad0e029de8e8ac9dea84) - Release 5.8.2 [`9b7cc62`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9b7cc623a9f23d2dc14587ec00d2f7d7a6f9a9b1) - Release 5.8.1 [`1f4dc71`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1f4dc71dcf60a2d51eb3b123b037b832d64259c0) - Bugfix Table columns.length conditional [`ad7dcb2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ad7dcb2a87418cbd8ebf3cb88b5008cd5627524f) #### [5.8.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.8.0...5.8.1) > 27 February 2018 - Text input with dropdown update [`#193`](https://github.com/sociomantic-tsunami/nessie-ui/pull/193) - Updated DimensionsInput styling + general clean-up #137 [`#191`](https://github.com/sociomantic-tsunami/nessie-ui/pull/191) - Issue 188 style lint update [`#189`](https://github.com/sociomantic-tsunami/nessie-ui/pull/189) - Flounder tweaks [`#185`](https://github.com/sociomantic-tsunami/nessie-ui/pull/185) - update codeeditor style #186 [`#187`](https://github.com/sociomantic-tsunami/nessie-ui/pull/187) - add TagInput styling #183 [`#184`](https://github.com/sociomantic-tsunami/nessie-ui/pull/184) - Revert breaking changes to H1-4 [`c0c72f2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c0c72f2906acc33ff1e988313e1129c6ee45b774) - Updated Module styling [`ea56777`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ea56777a14cc70eb971f4538e3b650367caa500e) - compiled styles and sprite [`19139ac`](https://github.com/sociomantic-tsunami/nessie-ui/commit/19139ace5fc20c221f69d8a6b6341795d2b0cb77) - Revert breaking changes to Row spacing prop; adjust spacings [`692a27e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/692a27ea807b4bd8adc8bb0b77fc48bad54ca41c) - Update error icon position (IconWithTooltip) [`44f36cd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/44f36cd487127a356553c925abff562c39dc3506) - Revert "Update error icon position (IconWithTooltip)" [`0571fca`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0571fca9bddc99d3b172356ca7daa75884db60bc) - Overscroll behavior tweaks [`8fc6d0d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8fc6d0d0a737c304c539a36b66da04da144b1bcd) - Always use Text components in defaults.json examples [`54706c7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/54706c735eaa0cae0f7c743c6688c09387140933) - Release 5.8.0 [`2d96378`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2d9637851e6c6d1d9bf706b33a24e76210467a46) - Release 5.8.1 [`926a8b6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/926a8b61ee32e439b6e3d3dad19a7bcf668eae83) - Module collapsed styling fix [`2770ef2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2770ef2446c9ace1f708dd30956bb76c5ed4bdb0) - TableCell spacing adjustment [`d914dc5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d914dc5094344717c622ed899a2e0c10371e12a0) - Row default gutters M [`b4a9758`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b4a975838b196222192fddabd53fb25de6e85778) - More robust getScrollParent util func [`98a07d8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/98a07d8d755a91fff53cb6a80e10f5060037a3ac) - Flounder backgound color tweak [`49111bf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/49111bf0e2adc0f128bbb0d5c87eebcf6cad1c96) #### [5.8.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.7.3...5.8.0) > 22 February 2018 - Issue 159 dropdown position [`#163`](https://github.com/sociomantic-tsunami/nessie-ui/pull/163) - Stop Table props overriding TableRow/TableCell props #136 [`#171`](https://github.com/sociomantic-tsunami/nessie-ui/pull/171) - compiled styles and sprite [`b55a512`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b55a5122b56840020f48e78b37723aebf55a0c3f) - Release 5.8.0 [`914138d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/914138d615bde0bfb037bd4ccf1d2117ec7637c4) - Release 5.7.3 [`a780fc9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a780fc95bee5b6e6163c3a5aec4a4c1c2bf96438) #### [5.7.3](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.7.2...5.7.3) > 21 February 2018 - Modal Dialog styles update #181 [`#182`](https://github.com/sociomantic-tsunami/nessie-ui/pull/182) - Button tweaks [`#179`](https://github.com/sociomantic-tsunami/nessie-ui/pull/179) - Issue 175 slider update styling [`#180`](https://github.com/sociomantic-tsunami/nessie-ui/pull/180) - Issue 174 nav bar styling update [`#177`](https://github.com/sociomantic-tsunami/nessie-ui/pull/177) - List box option tweaks [`#178`](https://github.com/sociomantic-tsunami/nessie-ui/pull/178) - Updated Imports for all components #154; corrected props for DatePicker #152 [`#172`](https://github.com/sociomantic-tsunami/nessie-ui/pull/172) - Issue 173 combo box update styling [`#176`](https://github.com/sociomantic-tsunami/nessie-ui/pull/176) - Issue 151 dropdown update styling [`#166`](https://github.com/sociomantic-tsunami/nessie-ui/pull/166) - Issue 152 date picker update styling [`#170`](https://github.com/sociomantic-tsunami/nessie-ui/pull/170) - ListBoxOption stylesheet tweaks [`8314597`](https://github.com/sociomantic-tsunami/nessie-ui/commit/831459708be9f26ca52f6bb1e6ffb831d7c52e3f) - Release 5.7.3 [`c30ee1e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c30ee1e223db01b1de77ee1b75a115f90f02295f) - Release 5.7.2 [`0cef428`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0cef428d94ff8ebad18ec628dda5da8c830d4311) - Fixes ambiguous iconSize conditional [`ad89cb1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ad89cb122b8eb24c73869b456c81e77a073e3677) - compiled styles and sprite [`a89cb70`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a89cb701d347a469cf9c7ae41538ac024b068ba0) - LochNess bump [`06ad82a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/06ad82aa3ac9f5e64f2840c3910ee76ba45ce0a0) #### [5.7.2](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.7.1...5.7.2) > 19 February 2018 - Fixing some react warnings (with propTypes and keys) [`#169`](https://github.com/sociomantic-tsunami/nessie-ui/pull/169) - compiled styles and sprite [`791a009`](https://github.com/sociomantic-tsunami/nessie-ui/commit/791a009890d9791cd8c68396c5ff4a13e1a75b2d) - Release 5.7.1 [`1740f32`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1740f3267690cf04a9d0dbef209d8aa70f02b1cc) - Release 5.7.2 [`bfb6a98`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bfb6a9873f4e43dc544f917cee80a22619c73ab7) #### [5.7.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.7.0...5.7.1) > 14 February 2018 - Added check for array of tabs and test #158 [`#160`](https://github.com/sociomantic-tsunami/nessie-ui/pull/160) - Added overscroll-behavior to Scrollbox #132 [`#161`](https://github.com/sociomantic-tsunami/nessie-ui/pull/161) - Updated Tabs Styling #149 [`#165`](https://github.com/sociomantic-tsunami/nessie-ui/pull/165) - Updated Pagination Styling #150 [`#164`](https://github.com/sociomantic-tsunami/nessie-ui/pull/164) - Issue 148 tag component update style [`#162`](https://github.com/sociomantic-tsunami/nessie-ui/pull/162) - Issue 153 text update styling [`#157`](https://github.com/sociomantic-tsunami/nessie-ui/pull/157) - update ValuedTextInput #138 [`#144`](https://github.com/sociomantic-tsunami/nessie-ui/pull/144) - Remove dist [`2679475`](https://github.com/sociomantic-tsunami/nessie-ui/commit/26794750189fa2e25e60f1d499fe8fcfdaf5bca7) - compiled styles and sprite [`39805d1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/39805d11f6e352c90a962584a4d80923467daa22) - remove font baseline adjusment for components in Typography [`075739c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/075739cbd018b298aa339e59d81be6675969abad) - update h4 and label fonts #153 [`72fd7f8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/72fd7f89b981bba2b03a26ccc9e910471d852057) - tag component default style update #148 [`ecfe7dc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ecfe7dcdf9f54b664639613bf24aceb0adf4300c) - Release 5.7.1 [`d7c9fa4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d7c9fa47db5543cb5e35fc83257012318b19077b) - Fixed indentation [`cb405e7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cb405e733348ac3f2c948332cee598928296f31b) - Release 5.7.0 [`d13718e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d13718e54c11c9a0fa2b80286636dd9e1ec6fe7c) - Fixed text-transform value; reverted px to rem [`54331c6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/54331c678b41baf1ed68817e2e296ba464aa2a7f) - Fixed padding inside pageButton [`dd67b03`](https://github.com/sociomantic-tsunami/nessie-ui/commit/dd67b0311f70947073636880d0b152bf08a9a6ff) - update tag color and disbled state #148 [`b132457`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b13245723fdccd2dc634cd52d67fa61565e982e2) - font updates in valued text input [`a946fa4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a946fa49df20380fb85646d8535d138c5ea94047) - Updated Nessie-* font definitions [`b605a0c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b605a0cdd882976ead25d59a5e3f14c442daf55b) - gitignore dist [`222ae93`](https://github.com/sociomantic-tsunami/nessie-ui/commit/222ae93f66e464f8a35a4e3168f1bbe70951d667) - Remove dist from .gitignore [`0493400`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0493400d20341b16007f5376f6482f2ca81b987c) - Define Nessie-SemiBold as font-weight: normal [`715a604`](https://github.com/sociomantic-tsunami/nessie-ui/commit/715a60474b837bbe69907579edfcc28d9938ec87) - Fixed mouse cursor over disabled [`7adcc3e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7adcc3e4b180d40dce694c356a1a445c82bb91c9) #### [5.7.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.6.0...5.7.0) > 1 February 2018 - [Switch] adds test driver (with `toggle` possibility) [`#155`](https://github.com/sociomantic-tsunami/nessie-ui/pull/155) - Issue 140 tooltip update style [`#145`](https://github.com/sociomantic-tsunami/nessie-ui/pull/145) - update font size variables #153 [`f911d42`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f911d4270a5f24d22417ab50b58b1c6a3fc069e3) - compiled styles and sprite [`3e1495d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3e1495dc1b33f009bc91699dc0c9e32f8c866f6f) - tooltip updates #140 [`654a590`](https://github.com/sociomantic-tsunami/nessie-ui/commit/654a59036fdc95c1b66b72a4f5049aaf7ab0dbfd) - update H1, H2, H3 font sizes to new ones #153 [`e0444d1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e0444d104c0163f9c0352521e918fb7300edec0d) - updates post PR review [`a2344c1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a2344c161510786a75b66b0e29db3060c8e2a09a) - PR updates and fix for Value label paddings [`120aa63`](https://github.com/sociomantic-tsunami/nessie-ui/commit/120aa638f33709bba16e6877e823fcf6eb470b21) - update Text component fonts #153 [`200ab67`](https://github.com/sociomantic-tsunami/nessie-ui/commit/200ab6796a2a02462a3eeb6b151e81237392181b) - update line-height variables #153 [`9b6584c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9b6584cd6ad54024a15daecaa883810e78be2c03) - Release 5.6.0 [`26cd149`](https://github.com/sociomantic-tsunami/nessie-ui/commit/26cd149f8d20a0ab3e27141a25312981b02efbe1) - Release 5.7.0 [`0197c16`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0197c164aaa3de58d2bec38ef69df8df7b3a0429) - update line-heigh variable [`3dcb2d4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3dcb2d4ab22cf1bec2c33113e8bdb09894306c77) - Revert "including dist files - gitignore" [`b8ecd66`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b8ecd662abff99ced839399d308ee20595944f8d) - delete font definition from base #153 [`1361491`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1361491fdaa4f843d7b678c71bd10259c8c148e4) - fix checkable icon position [`a71b110`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a71b110bcfc77036d667518679cdba016f016b03) - delete text component hacks for line-height [`5d7cdc9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5d7cdc90d6e97ba5cffcfa4bf602ed71bdd2ebb1) - Fix typos in Column size prop definition [`3038ecd`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3038ecd2bf9d11ee79041bdbbb49b34121c26c39) - delete line height for tooltip message text [`488a101`](https://github.com/sociomantic-tsunami/nessie-ui/commit/488a1014b5ce9c4b856ec7a7a238dcf61f0a234c) #### [5.6.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.5.2...5.6.0) > 30 January 2018 - Issue 120 input field update styling [`#134`](https://github.com/sociomantic-tsunami/nessie-ui/pull/134) - compiled styles and sprite [`5d8e7e4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5d8e7e45de106d152dcbe9e8c7f975627c65e539) - Release 5.5.3 [`d8b1aca`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d8b1aca2fb99f980293e3bb7f3a38f87675c63a5) - icon color corrections [`75ba014`](https://github.com/sociomantic-tsunami/nessie-ui/commit/75ba01479aa351f00a6d6ec5b9067f7dbb3cdd6d) - compiled styles and sprite [`e20f986`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e20f986006903c50ca170f824a2264f15ad9b907) - update ValuedTextInput #138 [`bf67e45`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bf67e45c4792225518db43f4ec587b1f6582b452) - LochNess bump 2.2.1 [`9191485`](https://github.com/sociomantic-tsunami/nessie-ui/commit/91914859f2d11855d13dfb0ac68c565cf67e8ce8) - update import of variables [`7384d88`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7384d88c316b5423ee6b603f17175e216a710816) - Added textRef prop to Text component [`58581fe`](https://github.com/sociomantic-tsunami/nessie-ui/commit/58581fea5a7efaf1879a5be47488878b2856cdc9) - Release 5.6.0 [`aa143bb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/aa143bb525d8ec4ac8d3bff8cf79ccebfd1de0a0) - using/updating global variables [`adcb4cb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/adcb4cb55365db492c037fee37d1356286de1dfb) - update outline for inputFields [`6433b49`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6433b49861028abd49d664fa4eb8c1bc7439b8e6) #### [5.5.2](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.2.2...5.5.2) > 25 January 2018 - Issue 93 add missing callbacks [`#139`](https://github.com/sociomantic-tsunami/nessie-ui/pull/139) - update color palette with new swatches #126 [`16647ec`](https://github.com/sociomantic-tsunami/nessie-ui/commit/16647ec8f1504cdc35b0c843bd13788639f935f1) - button updates after color palette changes #116 [`0886e7b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0886e7baa4e45c041cb607fe4725030d6df44b54) - update spacing global variables [`90f9ea5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/90f9ea57d60ece9f3e6cd77347b232fc08ad939d) - Release 5.5.2 [`3ae2362`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3ae2362abc47305a671f921a9469bf9ca7feb92d) - update checkable and inputfield after color update [`f73d474`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f73d474c4f442a37e1f8c7be3cc120e5d1ace425) - adjustment for loading spinner [`0dd63e0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0dd63e06bd256ceed410a0384deec20b5e257bdc) #### [5.5.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.5.0...5.5.1) > 18 January 2018 - Issue 130 color palette [`#133`](https://github.com/sociomantic-tsunami/nessie-ui/pull/133) - Issue 115 update gutters and spacing [`#125`](https://github.com/sociomantic-tsunami/nessie-ui/pull/125) - compiled styles and sprite [`b9ec88b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b9ec88b2bac9387b74d1a3448c62cfd7549814f2) - update color palette with all the scales #130 [`826d247`](https://github.com/sociomantic-tsunami/nessie-ui/commit/826d2478a1e1b2faad9d94d945aa69df557255e4) - input field style update #120 [`6886714`](https://github.com/sociomantic-tsunami/nessie-ui/commit/68867144185cce8a6c481428aa1ce9ab950ffeb1) - Release 5.5.1 [`64e271f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/64e271f86f60632b35089deede91f62c35cd64e2) - Release 5.5.0 [`4a4ad94`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4a4ad945f5a8e636ae946408db98baf38cedccdb) - remove fundations.css and update general font-size [`b4cec27`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b4cec2792a8286b7f35a51428bd8c4d3d5472071) - Tooltip z-index fix [`36f4df9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/36f4df9a31b43687ce9febde62d98fc2caa8f878) #### [5.5.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.4.5...5.5.0) > 16 January 2018 - update for scroll indicators #124 [`#127`](https://github.com/sociomantic-tsunami/nessie-ui/pull/127) - compiled styles and sprite [`9a733f3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9a733f303adebf914cdb1da4e25f574e1f30284c) - Release 5.5.0 [`d96077b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d96077bfaac5450b117305fecfd35599158a7c9f) - Release 5.4.5 [`04c6c97`](https://github.com/sociomantic-tsunami/nessie-ui/commit/04c6c972b2eebfb059079a16a3a34b99bed0d673) #### [5.4.5](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.4.4...5.4.5) > 9 January 2018 - compiled styles and sprite [`4264a1c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4264a1c16172fb8cbbc0c7deb900ab132522b299) - Release 5.4.4 [`6907c0a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6907c0aad0ab06ed359b0233370316bd2dc65f42) - Release 5.4.5 [`4d7b99f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4d7b99fb3783df256e5e503c5e50ba0789bf6363) - Sorter fix [`dbd9447`](https://github.com/sociomantic-tsunami/nessie-ui/commit/dbd9447b8d421b0851213dd4ee9d9d0bcec28d31) #### [5.4.4](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.4.3...5.4.4) > 8 January 2018 - compiled styles and sprite [`ffe8b27`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ffe8b279b44210c0d280b044cfdec6329221e133) - Add missing scrollBoxRef prop to ScrollBox [`9ccb65c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/9ccb65c53eb2783c17563509a4b3d1ec07a4a19c) - Release 5.4.4 [`ccb2d12`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ccb2d124cdfab409432a333fc0b7f28419e1e8c6) - Release 5.4.3 [`8984958`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8984958bc02a6fc5d105c0143d296369376ad14f) - Fixes IconWithTooltip CSS variable name [`207e92e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/207e92e23dbc206186555a84043f4a21fabcb154) - Text overflowIsHidden fix [`a1e6a52`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a1e6a52c28225097c72c2123fec54b7219d48ca4) #### [5.4.3](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.4.2...5.4.3) > 4 January 2018 - compiled styles and sprite [`32616f9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/32616f9b9e2acc7001e11de93c9aee8274439553) - Don’t use tranform in IconWithTooltip. Prevents new stacking context. [`30c1226`](https://github.com/sociomantic-tsunami/nessie-ui/commit/30c1226b28daea31684ed090efb8277538847dee) - Release 5.4.2 [`fd7514d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fd7514dfc17ed6d3f455b43d3873c68e215d9a39) - Release 5.4.3 [`5a343c8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5a343c8b4a8bbd625edc3deaa868538c1d9a1372) - Flounder bump 1.3.5 [`e72af5c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e72af5c9c0563eda2e6361a253bda2a9bcf0fd5e) #### [5.4.2](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.4.1...5.4.2) > 2 January 2018 - button new styling, new colors #116 [`#118`](https://github.com/sociomantic-tsunami/nessie-ui/pull/118) - Issue 126 color palette [`#129`](https://github.com/sociomantic-tsunami/nessie-ui/pull/129) - compiled styles and sprite [`3e64123`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3e64123f99ecdb83e5374c1e39f1c6f65f92fd45) - Table fixes/improvements [`334f8e9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/334f8e9584d585890615a401537a4a162c97e050) - correction to color palette #130 [`c3d4142`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c3d4142017fe3b269cf10f458f2965f7346be93e) - adding proper disable colors to role promoted and critical #116 [`d43b314`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d43b314eebeeaa5dd2056403649a60aa188d468e) - Release 5.4.2 [`5eb543b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5eb543be50f70966dfcb788ab6f39f34aef4b2bb) - Release 5.4.1 [`86c0be1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/86c0be1b0009bffbb4d3ab23c0be9343353d0acc) - Re-add Row calc’d widths for non-zebra tables [`ef17f22`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ef17f22568715f9ee5c26879f10ac07d62be2e3a) - Update module.css [`54d47eb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/54d47eba770fdc3b60823f6cb01e41ffcc0f3e24) - Restore tooltip z-index to tooltip itself [`2d6284b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2d6284bb505113e92b8ea8237b4d27f24196739d) #### [5.4.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.4.0...5.4.1) > 19 December 2017 - compiled styles and sprite [`96be275`](https://github.com/sociomantic-tsunami/nessie-ui/commit/96be275bf0ab4131a6ad0bb305193e5e0c3bc4c6) - Remove console warnings [`2d935f7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2d935f7939ad20c4e773f8df7671a978d977e601) - Release 5.4.0 [`4f4c760`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4f4c760a6a53eb8b51d0574447ddcd86ed3a2f70) - Release 5.4.1 [`e569c79`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e569c79c7d3d57f9427969199d90755a21ac5f5b) #### [5.4.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.3.1...5.4.0) > 19 December 2017 - Minor changes doberman [`#128`](https://github.com/sociomantic-tsunami/nessie-ui/pull/128) - Tooltip before content [`#109`](https://github.com/sociomantic-tsunami/nessie-ui/pull/109) - Don't use calc inside tranform (IE fix) [`#110`](https://github.com/sociomantic-tsunami/nessie-ui/pull/110) - grey header background just for nested modules#113 [`#117`](https://github.com/sociomantic-tsunami/nessie-ui/pull/117) - compiled styles and sprite [`97362ff`](https://github.com/sociomantic-tsunami/nessie-ui/commit/97362ff84aff8f5b9a5164904af99551737fde87) - New colors #126 [`1dafbe2`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1dafbe2199c0e08f5510a44307d1c52dc3bd2f57) - Grid/Table layout improvements [`aab42b5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/aab42b5877d4de9414195365cdca8bc3e4d2662d) - Release 5.3.1 [`d957d87`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d957d87e90283c58d39b1ab98b21a2759fe5ba06) - Release 5.4.0 [`d47ce21`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d47ce211b0ce43b51381dc08f7ffbb94dae6a8bd) - simplify grey-scale #126 [`a003324`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a003324abec7e6514de9c80180ffacf88f79887c) - Module styling tweaks/fixes [`a89fe52`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a89fe5297b70b9b38d917cc922ee55a81ff174c7) - typo error #126 [`c8dbe53`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c8dbe5362c39e09fa06a7877392e4fce3b57aedc) - Table tweaks; update example props for ScrollBox [`7e11f5e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7e11f5ecece0385b9ba052d1ea0acc6c17faff35) - contrast 30% to 35% #126 [`e0317c7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e0317c77bbf4e5fea0041070abb4731abeb1077b) - icon color for disable #116 [`aa6cd27`](https://github.com/sociomantic-tsunami/nessie-ui/commit/aa6cd277c9c5a6781e408a6b3f3624744d30a5e0) - grey scale adjust #126 [`af9287c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/af9287c75c73099902d18d1c90a5b8d102925cdf) - contrast adjust 13% - 15% #126 [`93dd90e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/93dd90e3a7a337ff23a0636a7a201f7ff2357613) - New colors adding corresponding --GS-11 #126 [`eca66a9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/eca66a9e33c745951974c1e16a4e782047585a58) - Flounder bump 1.3.3 [`bb98c9f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bb98c9f33fdcb492a66e679c07a51514b17c311c) - ScrollBox can accept any string as contentWidth [`cab86b0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cab86b019e9e107f56536595b40fcffad00add57) - Removing commented code [`34a6941`](https://github.com/sociomantic-tsunami/nessie-ui/commit/34a6941f7884693771be8e1b897d32727de32e5c) - Tooltip z-index tweak [`37adbc1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/37adbc18e6e4a6daa84f13c3c304b70fd5921443) - revert last commit 30% #126 [`b80bfcf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b80bfcff80335777e46a047037d3c9b11571b931) - --GS-10 90% to 95% #126 [`7af881b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7af881b3454c22a20dc142287915e924044829c4) #### [5.3.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.3.0...5.3.1) > 7 December 2017 - compiled styles and sprite [`821b121`](https://github.com/sociomantic-tsunami/nessie-ui/commit/821b121caf542f408d9a7f720b927886e9695418) - button new styling, new colors #116 [`76bb816`](https://github.com/sociomantic-tsunami/nessie-ui/commit/76bb8161ef6961e29b012ad49731d08646cd3faa) - Release 5.3.0 [`d1582b3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d1582b3498daf5b0823a5428733f48d29773fdd3) - Release 5.3.1 [`b1ace28`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b1ace28cfb89d5c916fb91f80add157260f5c963) - fix left glitch in table sticky [`104766f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/104766fd9a462dee0843214e07959a5c5a9ad22e) - ComboBox tweaks/fixes [`2e9f281`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2e9f28137a1097a0f7bbaabe7afe423e946244d1) - NavItem fix [`6815488`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6815488ca661c89e826ff980051d1e4b0af18df8) - correction on direction #116 [`8e0cdc6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8e0cdc6b0ab91cc5262922c5d24f889ed6120789) - InputField: set autocomplete="off" #119 [`f98f380`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f98f38053b442d7f2fcfca14ddce3c35c117a39a) #### [5.3.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.2.0...5.3.0) > 5 December 2017 - Issue 43 combo box [`#90`](https://github.com/sociomantic-tsunami/nessie-ui/pull/90) - Stacked submodules should not have spacing #96 [`#106`](https://github.com/sociomantic-tsunami/nessie-ui/pull/106) - Issue 98 fixing rowword wrap [`#101`](https://github.com/sociomantic-tsunami/nessie-ui/pull/101) - adjusting padding #97 [`#105`](https://github.com/sociomantic-tsunami/nessie-ui/pull/105) - Issue 99 content width prop add [`#100`](https://github.com/sociomantic-tsunami/nessie-ui/pull/100) - compiled styles and sprite [`b36b992`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b36b992dac0bdcd381379b148b7ed00aec94da62) - Release 5.3.0 [`6e77761`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6e777618d512df9b31bb57827ea139875d6e0e3f) - datatable padding fixes [`f6b2c0c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f6b2c0ca33e94344a5273d83ff42c4edbe6ec56c) - allowing selective trunkating #98 [`bf21196`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bf21196a6e51f473c31ae73fb5ea61873b6761db) - changing prop to noWrap #98 [`4773bb4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4773bb42d26af97bd74f650f16fb558e20dbbea2) - erasing word-break & word-wrap #98 [`7b48b28`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7b48b28323087e092c93a73f8c0053cb74641ff6) - add contentWidth prop for scrollbox component #99 [`78d7c02`](https://github.com/sociomantic-tsunami/nessie-ui/commit/78d7c02f5ee26131e1a284772d35e8e67955ca0c) - fixing cells padding [`d443a06`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d443a06c10e51b040234d574e937239ef484b1dc) - correction old css implementation for stacked modules #96 [`99e1863`](https://github.com/sociomantic-tsunami/nessie-ui/commit/99e18632fd0230fb13628b6519f509f871ee5beb) - add content class to cssMap #99 [`c02e9fb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c02e9fb7926e36ac97bb6c65fb5d41e9829eac34) - fix z-index #95 [`1015fb5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1015fb5a4625bab6a43831972cc72f4af8566a1b) - remove position styling for header cells, correct styling will be applied by the text component [`1afcef9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1afcef92c137aa0ee6f7525f57c83ff4f89d4779) - correction unset to normal #98 [`fcfef97`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fcfef9795844429bfc0fb648badad91c9c91e355) - erasing noWrap fromd default props #98 [`34d966c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/34d966c0603a0a7be37c986eb13a876fb370d728) - remove padding form table row, to avoid weird jump when scrolling [`09e0874`](https://github.com/sociomantic-tsunami/nessie-ui/commit/09e0874638a172fb4313e36e22b3516c0f353ba5) #### [5.2.2](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.5.1...5.2.2) > 22 January 2018 - compiled styles and sprite [`198325f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/198325fd6487f1725d6a019d41028e7aeff751a5) - Release 5.5.2 [`5baabc5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5baabc5ca1dc5d024aab7c2f93c56d4caa815c64) - checkbox styling updates #121 [`96de22e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/96de22e73d721cb46247f07a63082f4c5d262d94) - Release 5.5.1 [`1f5a34c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1f5a34ca9c14b44b106ed7283154af0bf99e4d42) - Radio button Updates #122 [`09f51a9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/09f51a9496c294aba1e115cf6881846320a8a7e0) - general updates for fonts size [`7ef9d6b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7ef9d6b2a7b7d07fa474d0f31e2d84b7c6cae56d) - ComboBox only scrolls y axis [`ac59bcc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ac59bccdba6edd623c10152e7d969c9963aaad79) #### [5.2.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.1.2...5.2.0) > 23 November 2017 - fixed sizes s,m,l,xl,xxl for column #47 [`#73`](https://github.com/sociomantic-tsunami/nessie-ui/pull/73) - moving zebra background to tableCell #78 [`#81`](https://github.com/sociomantic-tsunami/nessie-ui/pull/81) - erasing filters and adding warning instead #65 [`#88`](https://github.com/sociomantic-tsunami/nessie-ui/pull/88) - New Module nested styling #85 [`#91`](https://github.com/sociomantic-tsunami/nessie-ui/pull/91) - zebra tableRow fix #78 [`#78`](https://github.com/sociomantic-tsunami/nessie-ui/issues/78) - compiled styles and sprite [`d0c5a34`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d0c5a34c70e0ada192a0f09aa3ca41014cc1c6d7) - update yarn.lock [`3bf4176`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3bf4176434022951bd84005efe75203d4b24de90) - table sticky support updates #80 [`f9b7709`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f9b770909dd01b1517917ddfedf4b3465ac857e6) - Release 5.2.0 [`8ba985f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8ba985f0043c506b7ace31726c616ebcf17c7027) - Release 5.1.3 [`8a3d4d0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8a3d4d02baf8c17beb2bf6aef7c54e541aa6c324) - Release 5.1.2 [`f5d37b1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f5d37b11109438d51dff93fc40f6423a1a2a4d82) - merge AddSupportForSticky [`d207e94`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d207e94062b6523595ce377c53fbecea19ee0b04) - PR corrections #65 [`da776e3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/da776e3e7371559f167f4a1eb5a679af4be018c6) - Release 5.2.0 [`844fbaf`](https://github.com/sociomantic-tsunami/nessie-ui/commit/844fbaf7406af62cb8440be94210abb795a20e2a) - PR corrections #47 [`1b38038`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1b38038f4fade00489b7fe65857a1c869f9ea21f) - sticky row header updates #80 [`3443413`](https://github.com/sociomantic-tsunami/nessie-ui/commit/34434139d5e978a5fc1e7837441796aacb41c04f) - zebra tableRow PR corrections #78 [`5147826`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5147826d82a60a4ad49ed7b9b6e2ccaf51e9b264) - merge MinorChanges-Capybara [`64a576a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/64a576ab56ec97a6eca273bed39091dc9f15be54) - compiled styles and sprite [`390544f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/390544f31bd96eec25e93f9a2826a0bce752da74) - PR corrections #85 [`e3ff966`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e3ff966774abff34af88559765ed8e60857b47e9) - delet magic margin/padding in scrollbox [`fa111d4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fa111d49408f4e2031f7d4d3f79a88c67f9d5154) #### [5.1.2](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.1.1...5.1.2) > 17 November 2017 - Release 5.1.1 [`35ad5c5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/35ad5c56280571a0d04e93e4293543dab363408e) - compiled styles and sprite [`b38a218`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b38a218dd8cc133611259ccd17ed6c533552db46) - Release 5.1.2 [`1b3b39d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1b3b39df5ba0b02a0867f9ddc771067d9d05181d) - further corrections #85 [`dd25818`](https://github.com/sociomantic-tsunami/nessie-ui/commit/dd25818a676866645cdd5385f32c8a483325dcd3) - Fixes typos in Slider CSS [`51e78aa`](https://github.com/sociomantic-tsunami/nessie-ui/commit/51e78aa93af7cb1ee6b400f5c29f52eeaa0378e3) - Fixes SliderGroup label positions broken #94 [`1a41904`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1a419044e2b0e0b5c486a8cdee3dc63751f530d4) #### [5.1.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.1.0...5.1.1) > 16 November 2017 - Prevent unnecessary updates of CodeMirror contents [`#84`](https://github.com/sociomantic-tsunami/nessie-ui/pull/84) - Return value instead of CodeMirror instance [`#87`](https://github.com/sociomantic-tsunami/nessie-ui/pull/87) - Release 5.1.1 [`3f73fd6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3f73fd6b6a8898be944b1546ff46ff92d8580ce4) - corrections for new Module nested styling #85 [`0b0211c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0b0211c707ee7750f87d965e26f76ca45a69bd9e) - Release 5.1.0 [`99f53f6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/99f53f6160e3873b211274a8bef43296efe2aa7a) - New Module nested styling #85 [`a64c950`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a64c95052d270e984bdf7d85b26b89f00eea7c92) - add auto-changelog npm package [`e3d5cff`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e3d5cff7a3148eb0ab035861c8ec20e60ea8fa1b) - add proper changelog generator in release and fix release-it configuration [`555356d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/555356d18a3add803838732dcfd7cb84a4fbd9f6) - compiled styles and sprite [`88d92f7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/88d92f74eec5ad2513288a6896b4e74e8985da47) #### [5.1.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.0.2...5.1.0) > 14 November 2017 - sticky colunm for table #80 [`c1f35ac`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c1f35ac120aa0117a81292f4d007e6e4c95f6b66) - Release 5.1.0 [`562c4f4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/562c4f4da52c28150232ea2f63df9f493d838c2f) - erasing filters and adding warning instead #65 [`704ffb8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/704ffb8eab39202b59d18121b7df66ee2f8d5cee) - moving zebra background to tableCell #78 [`ea73151`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ea731518e07ee7eca1fa0d4d6e3caab0b5133bcd) - support for sticky column and row headers #80 [`c924b48`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c924b48a4acd5091b913a87af9fcbeeec5bff876) - compiled styles and sprite [`e0ee5b3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e0ee5b30736f0c0d4c29b44c36d15932f8e10b32) - last updates for sticky fixed cell #80 [`b48df7f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b48df7f0bcd2cd7773cfec91a71d341e6c28397b) - add command hooks [`8f94fac`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8f94fac104fdfb68069c8f551d8b8a572b0543d2) - Release 5.0.2 [`0e56001`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0e56001e1548af47e5a648aac240225630d57911) #### [5.0.2](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.0.1...5.0.2) > 8 November 2017 - readme, package.json updates [`0e0f317`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0e0f317a3abc3fa1421860bc356f3c370a413f48) - compiled styles and sprite [`004da5a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/004da5a68988aa16b008e1faee56375a7775e996) - Release 5.0.2 [`6b86e5e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6b86e5e24d741c50c6dcb8942080970e706708eb) - Release 5.0.1 [`8e74a60`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8e74a604add334825d7616f321417e9c569757fe) #### [5.0.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/5.0.0...5.0.1) > 8 November 2017 - compiled styles and sprite [`2d80c69`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2d80c6959022d631d60b660e751c264d098ddeea) - Release 5.0.1 [`f6cdaf8`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f6cdaf89cf79f47389e3f77ca820c429c7aeb711) - Release 5.0.0 [`78fcaf4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/78fcaf4d5eb930b037e437069602578f5d9b3268) ### [5.0.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/4.2.3...5.0.0) > 7 November 2017 - Travis integration [`#75`](https://github.com/sociomantic-tsunami/nessie-ui/pull/75) - NavItem correction to isCurrent and warning #1 [`#69`](https://github.com/sociomantic-tsunami/nessie-ui/pull/69) - erasing deprecated iconButtonIsVisible #55 [`#63`](https://github.com/sociomantic-tsunami/nessie-ui/pull/63) - Missing CSS imports warnings fix #62 [`#67`](https://github.com/sociomantic-tsunami/nessie-ui/pull/67) - erasing 1px bottom border #64 [`#68`](https://github.com/sociomantic-tsunami/nessie-ui/pull/68) - compiled styles and sprite [`2e67634`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2e67634a1e8dd8f08f201a796e23390a22bd0cf6) - update yarn lock [`3b16d09`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3b16d09f3ec46818601b67d29ccd6fcad219e29d) - compiled styles and sprite [`39b9360`](https://github.com/sociomantic-tsunami/nessie-ui/commit/39b9360ee27c7acc8e1188cd8657950041c40ee2) - compiled styles and sprite [`5c16f89`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5c16f89db1a3e77db519e887793ba485ac290850) - fixed sizes s,m,l,xl,xxl for column #47 [`0dc903b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0dc903be0f44903cfff667967a619453028724df) - some fixes for npm release [`78bbf94`](https://github.com/sociomantic-tsunami/nessie-ui/commit/78bbf94d9a413bb63d1d7da460de684066640f93) - preparation for npm [`2f296a5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2f296a5b56824972fd2bc107fa85acfc7f510431) - add travis [`a02fd75`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a02fd755b513f608c5538fd18858287032fc15de) - Replacing version with Release-it package and adding shields.io dinamic tags #44 [`753b5d7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/753b5d7538d4152af63004ba51777a912628bc4f) - Erasing filter #65 [`7878a91`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7878a91b99a00b1651b0493535d65721a69da260) - Erasing filter #65 [`b93e782`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b93e782a3c5deff4bae076e7bd2ea093f5ae3b5c) - Keep Flounder open on rebuild [`ff7528f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ff7528f0505d9f182e3f6c51f439faa1661413b7) - update flounder 1.3.1 [`0bc1858`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0bc18580dfced251aa6f3afa1187b3bf5077b006) - update bump script [`a8093bc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a8093bcf9d19fb1934140c63c43591f2e1fedee3) - nessie ui [`8f00ccc`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8f00ccc45c75f059884121fee1839e022722b4a2) - Erasing PropType isCurrentPage #1 [`af5378f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/af5378f953c34c0cb08c2d36515cfd6d0e4bad54) - Release 4.2.3 [`3076051`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3076051499bd650f817ad90cfe0830639af67b69) - update ravis slack encryp [`dd8a61c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/dd8a61c8cf986dd9d9fd738a14cbd4b6a5629145) - Erasing PropType isCurrentPage #1 [`7718394`](https://github.com/sociomantic-tsunami/nessie-ui/commit/77183945ba166cf765c36aa964733aead51b19ec) - erasing prepush and correcting coma #44 [`740a21b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/740a21be2884f8e15e92f1d2b3122a962036312e) - Erasing filter children #1 [`d106f99`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d106f998a21de426a850ecd9bce9071b6244d7bc) - Erasing filter children #1 [`3507409`](https://github.com/sociomantic-tsunami/nessie-ui/commit/3507409d3078c41a231674df728acf3beb2488f5) - Release 4.2.4 [`8df7031`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8df70310cff372ff47f851a3608305b00416ca7a) - Release 4.2.4 [`d4bd2f6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d4bd2f6e7e93c9c458b5fcd184201bd17b3536ef) - Release 4.2.5 [`66bdf9c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/66bdf9c3cd19bb46e5a2f98ff6cabd52f7980beb) - Release 4.2.5 [`bd1a781`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bd1a7810f891d5566f944d3304ed907b2169902a) - Release 5.0.0 [`b26f2d5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b26f2d5d14330c988b118e016020c996db523b41) #### [4.2.3](https://github.com/sociomantic-tsunami/nessie-ui/compare/4.2.2...4.2.3) > 27 October 2017 - Update dist [`816b7fb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/816b7fb580336318f6d4fdcb157d0bceef9d83f8) - Release 4.2.3 [`faaee07`](https://github.com/sociomantic-tsunami/nessie-ui/commit/faaee0728a2ebfc7f68cdd7803712cb8aec0eefe) #### [4.2.2](https://github.com/sociomantic-tsunami/nessie-ui/compare/4.2.1...4.2.2) > 27 October 2017 - Bump Flounder 1.3.0 [`6ba8fc5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6ba8fc57513d0975d62c30adc0f35a827d95983a) - Release 4.2.2 [`254f0b6`](https://github.com/sociomantic-tsunami/nessie-ui/commit/254f0b6799a34e1ecb59b7821e9e0daa2f4f9d7f) - Release 4.2.1 [`461935f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/461935f065afffa9bf5045205a61f7b9304e9f90) #### [4.2.1](https://github.com/sociomantic-tsunami/nessie-ui/compare/4.2.0...4.2.1) > 26 October 2017 - Remove postinstall; run loch:build on yarn start #59 [`5b78048`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5b78048ee57a9dee13b43fb2147c3a68f8ef20a0) - Release 4.2.1 [`d4b3795`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d4b3795303ee5fb08df146778cdfbc8ee44db79b) - Release 4.2.0 [`4a23486`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4a234864d58286f7bb24b45c8ee44bea251092a9) #### [4.2.0](https://github.com/sociomantic-tsunami/nessie-ui/compare/4.1.0...4.2.0) > 26 October 2017 - Minor changes buffalo [`#58`](https://github.com/sociomantic-tsunami/nessie-ui/pull/58) - Issue 38 date picker [`#57`](https://github.com/sociomantic-tsunami/nessie-ui/pull/57) - Issue 2 29 new positions [`#50`](https://github.com/sociomantic-tsunami/nessie-ui/pull/50) - Updated dist [`6d98726`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6d98726830c79002fadb3fb0c483d6eee873eefb) - Split DatePicker and DateTimeInput [`9839183`](https://github.com/sociomantic-tsunami/nessie-ui/commit/98391834e943a6def41a5a2e1330f0394dbfb187) - Tweaks and Fixes [`b230e79`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b230e79b74e61b1e5940043f1080cbce36d4481a) - Update yarn.lock [`770a7ae`](https://github.com/sociomantic-tsunami/nessie-ui/commit/770a7ae36259d069e28f781f0c2b7238ce288e99) - Convert string refs to callback refs in flounderDropdown #21 [`762bbc9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/762bbc966536f4c3ed367d03cb03c844744053c5) - Build lochness on postinstall [`89f74be`](https://github.com/sociomantic-tsunami/nessie-ui/commit/89f74be5ba666d389a138d2773695497bc406244) - Support inputRef on DateTimeInput #34 [`959aec7`](https://github.com/sociomantic-tsunami/nessie-ui/commit/959aec79029718ba5afdee8bac68b045a6f4b639) - package.json script fixes [`048c601`](https://github.com/sociomantic-tsunami/nessie-ui/commit/048c60184d1ad8655057fa9374011d59db9413f5) - Release 4.2.0 [`d42c694`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d42c694239dfe7c21d3420e33232169f3a67e18a) - Readme to 4.0.1 [`5c08b45`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5c08b45a32a9ce81eeec06c033be6998636eec5b) - Readme to 4.0.1 [`bce7a03`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bce7a03ec7ca73f2e8a1d633fc3b4e53601fec54) - Release 4.1.0 [`76d84a5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/76d84a5b67830f06d4716d89bc76ba90d18d4801) #### 4.1.0 > 13 October 2017 - Issue 5 optimize flounder css [`#11`](https://github.com/sociomantic-tsunami/nessie-ui/pull/11) - Issue 18 functional components [`#28`](https://github.com/sociomantic-tsunami/nessie-ui/pull/28) - PR linting fix #7 [`#7`](https://github.com/sociomantic-tsunami/nessie-ui/issues/7) - Release 4.1.0 [`8ee21f0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/8ee21f0fdaaa1b44a41ea23be1910e190b0b879c) - dist files for 4.1.0 [`d070ec3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d070ec3f08ab206462fae10b377df50e18b78340) - Replace react-codemirror with our own CodeMirror wrapper #8 [`e59ea22`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e59ea2209f8461854f665859fd64736855e0b503) - adding Release it dependency dev #40 [`5513ea4`](https://github.com/sociomantic-tsunami/nessie-ui/commit/5513ea4963a617691d0d2f8a063b23eccf4138e2) - Update yarn.lock [`3089470`](https://github.com/sociomantic-tsunami/nessie-ui/commit/308947021bc6c3b3db9c17be758c32b0a5de470f) - Update FlounderDropdown disabled CSS #3 [`397109c`](https://github.com/sociomantic-tsunami/nessie-ui/commit/397109c8838d44f74a4234b88e85bcfd7c568d61) - Divider fix removing left margin #10 [`a7d8d71`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a7d8d71bf0d33d44e22567c9cfaceaa717a29434) - fix children & message props #9 [`0dd6e8d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0dd6e8daefdfe47e0925a2cdcd90b4b1ac4e94d0) - fixing test #8 [`844f867`](https://github.com/sociomantic-tsunami/nessie-ui/commit/844f8676b925e0a0cdece7dad8a3d7dfa4892a21) - Linting and handleRef function #8 [`941aca0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/941aca0edbd8d5f2d355cdea456dc9673099a774) - corrections reverting role change #7 [`f049f12`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f049f12aedba53bb9be362784dff94049eef5c58) - Readme from IconButton to Spinner #7 [`2931a52`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2931a522ccdc030b1a1b7a30b9fa6537c4ba2d37) - including dist files - gitignore [`4c39a65`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4c39a653240dcd2bb2a09e28f05ead61114f96b7) - handle ref name update for slider #21 [`6ab3d4b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6ab3d4befe270409a6603067fc8225b120f82270) - Delete the deprecated keyInput() from 'inputComponentDriver' #20 [`ffdfe51`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ffdfe51fc27491d5ee96eae97cfc8e5e3c25e897) - update driver test for flounder #21 [`2d60e07`](https://github.com/sociomantic-tsunami/nessie-ui/commit/2d60e07aa947eb1068ed8ad10c780c0bd584c848) - Convert string refs to callback refs in slider #21 [`cb38deb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/cb38debec7cb7c788ebbb664e7c1d99345d14766) - Text functional #18 [`19fa01e`](https://github.com/sociomantic-tsunami/nessie-ui/commit/19fa01e0ad17161b25b1a99bb0168346ff2876b1) - Tag functional #18 [`f90e073`](https://github.com/sociomantic-tsunami/nessie-ui/commit/f90e07307066c1857cecfa85aa9de067b2bf3a60) - TableRow functional #18 [`ee20a7a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ee20a7a03825d77ff0f428693c4d41441fd4a3a9) - TableCell functional #18 [`e4c5615`](https://github.com/sociomantic-tsunami/nessie-ui/commit/e4c5615aba35e52abcd65d470394aca1ff679e67) - Table functional #18 [`89b4386`](https://github.com/sociomantic-tsunami/nessie-ui/commit/89b4386e026d538c30f3365f216c6712e2ff9b79) - TabButton functional #18 [`50ee4c9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/50ee4c962e58a95cc6fa263abe81abc00cb54bcd) - StatusIndicator functional #18 [`a0ec9b0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/a0ec9b09656b9c600dca5bdcc9b4dad90848baa3) - Spinner functional #18 [`c34cd5a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c34cd5ac1122e93917562910610474c1ae099126) - SliderGroup functional #18 [`c7f34df`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c7f34df5ff05e74c88f123e84558e0bfa3f9783c) - ScrollBox functional #18 [`258d924`](https://github.com/sociomantic-tsunami/nessie-ui/commit/258d9242606e3cbd666f1efc546783c36f70e207) - Row functional #18 [`d602839`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d6028397899a6f0c47a65bdfb6fcaf224ec4d7ef) - Required functional #18 [`568bd78`](https://github.com/sociomantic-tsunami/nessie-ui/commit/568bd78e8712d899c22694501b4a58a29ffcd91b) - Radio functional #18 [`87803ac`](https://github.com/sociomantic-tsunami/nessie-ui/commit/87803aca31067e9bf9fa7ab73e7be504f223232d) - ProgressIndicator functional #18 [`339f035`](https://github.com/sociomantic-tsunami/nessie-ui/commit/339f035d5156bea0b47bcb09c59a914aea6caecb) - ProgressBar functional #18 [`d2f9341`](https://github.com/sociomantic-tsunami/nessie-ui/commit/d2f93415c497546dc550efd303abfccb6fa8c5f5) - Paginator functional #18 [`0c6d621`](https://github.com/sociomantic-tsunami/nessie-ui/commit/0c6d621c471aecb3e4463ffea15bde3de93db93f) - PageHeader functional #18 [`527eade`](https://github.com/sociomantic-tsunami/nessie-ui/commit/527eadec7d7b3e657e02354f9d9a6460728bd0b4) - PageFooter functional #18 [`c8287e1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c8287e14f1391ccecaa9aabcbc5da95d62b0515c) - PageContentHeader functional #18 [`ba4e98b`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ba4e98ba8682ff3c3e9243777faf7a3249b5f390) - PageContent functional #18 [`be49b0d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/be49b0d38c40d3c6b3eb317aba97fba6e3b8ea5f) - Page functional #18 [`318fae9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/318fae9a73f12320e011126b614ae41ccf15251a) - NotificationBar functional #18 [`88a0a83`](https://github.com/sociomantic-tsunami/nessie-ui/commit/88a0a83fbcdbc46f99628dbd44d8180ba6f4b1e8) - NessieLogo functional #18 [`4af15a9`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4af15a9865e7f54f1772d49063bcf622f550bd8a) - NavList functional #18 [`bd28502`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bd285027cee21fe897f051cd6a7973c04430afe5) - NavItem functional #18 [`c33c5d3`](https://github.com/sociomantic-tsunami/nessie-ui/commit/c33c5d37d4d5d79fabcd5bb4d37d91e8c46f0e90) - NavBarDropdown functional #18 [`8652744`](https://github.com/sociomantic-tsunami/nessie-ui/commit/865274469274357003445166c56505027fcc47a2) - NavBar functional #18 [`1b8a89f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1b8a89f7b975b438c54ac32ef56c1470d95ae6ee) - Checkbox functional #18 [`1ebd9f5`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1ebd9f5c9b636ef6a0338c07ebed5b3e86689bbf) - ModalDialog functional #18 [`7403ece`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7403ece9fdd67ce49ffac7cb5bbe49b8f9ce2a51) - MessageBox functional #18 [`ba0ca3d`](https://github.com/sociomantic-tsunami/nessie-ui/commit/ba0ca3d78e3afb22bcada74f70035fb19e00aeb1) - Label functional #18 [`4b522e0`](https://github.com/sociomantic-tsunami/nessie-ui/commit/4b522e0270133fff5e185958f6504441a8aa40be) - IconWithTooltip functional #18 [`be21d2a`](https://github.com/sociomantic-tsunami/nessie-ui/commit/be21d2aae533619fd28cabcf48b35e14f6f9992e) - Icon functional #18 [`fc6da0f`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fc6da0f0efd474d844559ff1b7042d6a1e084171) - Css functional #18 [`fa933d1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/fa933d106691ea81f52b99e89ac6b8172652c77a) - H4 functional #18 [`93b2852`](https://github.com/sociomantic-tsunami/nessie-ui/commit/93b2852687701a05854363b003187bb63018463e) - H3 functional #18 [`b720cca`](https://github.com/sociomantic-tsunami/nessie-ui/commit/b720cca8527962eb2b28dadd61b1917b6a7bb6d8) - H2 functional #18 [`66b5082`](https://github.com/sociomantic-tsunami/nessie-ui/commit/66b5082b93e8543010bc2e6b1f2ec88ba1648549) - Form functional #18 [`acd5882`](https://github.com/sociomantic-tsunami/nessie-ui/commit/acd58821bb6f633f0ad81816e96b3306a26a2249) - Fieldset functional #18 [`51dfccb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/51dfccb69ba244d96d1776352a8b4a98a9339509) - Divider functional #18 [`6b8adc1`](https://github.com/sociomantic-tsunami/nessie-ui/commit/6b8adc15e6614397310bc995180c7f6dfd1e2eed) - Column functional #18 [`bed9784`](https://github.com/sociomantic-tsunami/nessie-ui/commit/bed97848663a7f881986c30ec92007864e6dd8eb) - H1 functional #18 [`98aec21`](https://github.com/sociomantic-tsunami/nessie-ui/commit/98aec213cb5ecb262aa7ea31113d6751b1e7fd3b) - Animate functional #18 [`7897a38`](https://github.com/sociomantic-tsunami/nessie-ui/commit/7897a383dd924b89cb0618f71baf6036e11b17e8) - Init of repo for open sourcery [`1fce1fb`](https://github.com/sociomantic-tsunami/nessie-ui/commit/1fce1fb4115485307f0af0179923cc357a094737)
119.086268
210
0.813508
yue_Hant
0.187706
a15ce013e91c889a71e7091cde7c3924f786f0d2
176
md
Markdown
markdown/tutorials/gtk-brickout/06.md
kion-dgl/DashGL-Pages
144cea1463217d719a8d54692667a71f2ee38fe7
[ "MIT" ]
null
null
null
markdown/tutorials/gtk-brickout/06.md
kion-dgl/DashGL-Pages
144cea1463217d719a8d54692667a71f2ee38fe7
[ "MIT" ]
null
null
null
markdown/tutorials/gtk-brickout/06.md
kion-dgl/DashGL-Pages
144cea1463217d719a8d54692667a71f2ee38fe7
[ "MIT" ]
null
null
null
--- index : 6 author : Kion title : Draw a Ball slug : gtk-brickout source : https://github.com/kion-dgl/DashGL-GTK-Brickout-Tutorial/tree/master/06_Draw_a_Ball length : 18 ---
22
92
0.732955
kor_Hang
0.18526
a15d0d02386aea9d47731d1af701f5872cfcd2e3
9,466
md
Markdown
developer/help/examples-of-comment-based-help.md
UsamiRenko04/powerShell-Docs.zh-cn
f13365267eb4ace010e43d62278c145d58008e18
[ "CC-BY-4.0", "MIT" ]
null
null
null
developer/help/examples-of-comment-based-help.md
UsamiRenko04/powerShell-Docs.zh-cn
f13365267eb4ace010e43d62278c145d58008e18
[ "CC-BY-4.0", "MIT" ]
null
null
null
developer/help/examples-of-comment-based-help.md
UsamiRenko04/powerShell-Docs.zh-cn
f13365267eb4ace010e43d62278c145d58008e18
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: 基于注释的帮助的示例 |Microsoft Docs ms.custom: '' ms.date: 09/12/2016 ms.reviewer: '' ms.suite: '' ms.tgt_pltfrm: '' ms.topic: article ms.assetid: 868194a2-17e9-4184-bc36-c04a33f26494 caps.latest.revision: 4 ms.openlocfilehash: dbccaf5b8e48a1c4d924bc0ec4ea09b25e10adf0 ms.sourcegitcommit: b6871f21bd666f9cd71dd336bb3f844cf472b56c ms.translationtype: MT ms.contentlocale: zh-CN ms.lasthandoff: 02/03/2019 ms.locfileid: "56857963" --- # <a name="examples-of-comment-based-help"></a>基于注释的帮助的示例 本主题包括示例,演示如何使用脚本和函数基于注释的帮助。 ## <a name="example-1-comment-based-help-for-a-function"></a>示例 1:有关某个函数基于注释的帮助 以下示例函数包含基于注释的帮助。 ```powershell function Add-Extension { param ([string]$Name,[string]$Extension = "txt") $name = $name + "." + $extension $name <# .SYNOPSIS Adds a file name extension to a supplied name. .DESCRIPTION Adds a file name extension to a supplied name. Takes any strings for the file name or extension. .PARAMETER Name Specifies the file name. .PARAMETER Extension Specifies the extension. "Txt" is the default. .INPUTS None. You cannot pipe objects to Add-Extension. .OUTPUTS System.String. Add-Extension returns a string with the extension or file name. .EXAMPLE C:\PS> extension -name "File" File.txt .EXAMPLE C:\PS> extension -name "File" -extension "doc" File.doc .EXAMPLE C:\PS> extension "File" "doc" File.doc .LINK Online version: http://www.fabrikam.com/extension.html .LINK Set-Item #> } ``` 以下输出显示了用于显示有关添加扩展函数的帮助的 Get-help 命令的结果。 ```powershell C:\PS> get-help add-extension -full ``` ```output NAME Add-Extension SYNOPSIS Adds a file name extension to a supplied name. SYNTAX Add-Extension [[-Name] <String>] [[-Extension] <String>] [<CommonParameters>] DESCRIPTION Adds a file name extension to a supplied name. Takes any strings for the file name or extension. PARAMETERS -Name Specifies the file name. Required? false Position? 0 Default value Accept pipeline input? false Accept wildcard characters? -Extension Specifies the extension. "Txt" is the default. Required? false Position? 1 Default value Accept pipeline input? false Accept wildcard characters? <CommonParameters> This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -WarningAction, -WarningVariable, -OutBuffer and -OutVariable. For more information, type "get-help about_commonparameters". INPUTS None. You cannot pipe objects to Add-Extension. OUTPUTS System.String. Add-Extension returns a string with the extension or file name. -------------------------- EXAMPLE 1 -------------------------- C:\PS> extension -name "File" File.txt -------------------------- EXAMPLE 2 -------------------------- C:\PS> extension -name "File" -extension "doc" File.doc -------------------------- EXAMPLE 3 -------------------------- C:\PS> extension "File" "doc" File.doc RELATED LINKS Online version: http://www.fabrikam.com/extension.html Set-Item ``` ## <a name="example-2-comment-based-help-for-a-script"></a>示例 2:基于注释的帮助的脚本 以下示例函数包含基于注释的帮助。 请注意,结束之间的空行**#>** 和`Param`语句。 在脚本中不具有`Param`语句,帮助主题中的最后一个注释和第一个函数声明之间必须有至少两个空白行。 而无需这些空行,获取帮助将与函数,而不是脚本关联的帮助主题。 ```powershell <# .SYNOPSIS Performs monthly data updates. .DESCRIPTION The Update-Month.ps1 script updates the registry with new data generated during the past month and generates a report. .PARAMETER InputPath Specifies the path to the CSV-based input file. .PARAMETER OutputPath Specifies the name and path for the CSV-based output file. By default, MonthlyUpdates.ps1 generates a name from the date and time it runs, and saves the output in the local directory. .INPUTS None. You cannot pipe objects to Update-Month.ps1. .OUTPUTS None. Update-Month.ps1 does not generate any output. .EXAMPLE C:\PS> .\Update-Month.ps1 .EXAMPLE C:\PS> .\Update-Month.ps1 -inputpath C:\Data\January.csv .EXAMPLE C:\PS> .\Update-Month.ps1 -inputpath C:\Data\January.csv -outputPath C:\Reports\2009\January.csv #> param ([string]$InputPath, [string]$OutPutPath) function Get-Data { } ``` 以下命令将获取脚本的帮助。 由于该脚本不是 n Path 环境变量获取脚本的帮助的 Get-help 命令中列出的目录必须指定脚本路径。 ```powershell C:\PS> get-help c:\ps-test\update-month.ps1 -full ``` ```output NAME C:\ps-test\Update-Month.ps1 SYNOPSIS Performs monthly data updates. SYNTAX C:\ps-test\Update-Month.ps1 [-InputPath] <String> [[-OutputPath] <String>] [<CommonParameters>] DESCRIPTION The Update-Month.ps1 script updates the registry with new data generated during the past month and generates a report. PARAMETERS -InputPath Specifies the path to the CSV-based input file. Required? true Position? 0 Default value Accept pipeline input? false Accept wildcard characters? -OutputPath Specifies the name and path for the CSV-based output file. By default, MonthlyUpdates.ps1 generates a name from the date and time it runs, and saves the output in the local directory. Required? false Position? 1 Default value Accept pipeline input? false Accept wildcard characters? <CommonParameters> This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -WarningAction, -WarningVariable, -OutBuffer and -OutVariable. For more information, type, "get-help about_commonparameters". INPUTS None. You cannot pipe objects to Update-Month.ps1. OUTPUTS None. Update-Month.ps1 does not generate any output. -------------------------- EXAMPLE 1 -------------------------- C:\PS> .\Update-Month.ps1 -------------------------- EXAMPLE 2 -------------------------- C:\PS> .\Update-Month.ps1 -inputpath C:\Data\January.csv -------------------------- EXAMPLE 3 -------------------------- C:\PS> .\Update-Month.ps1 -inputpath C:\Data\January.csv -outputPath C:\Reports\2009\January.csv RELATED LINKS ``` ## <a name="example-3-parameter-descriptions-in-a-param-statement"></a>示例 3:Param 语句中的参数说明 此示例演示如何插入中的 parameterdescriptions`Param`函数或脚本的语句。 简要参数说明时,此格式是最有用。 ```powershell function Add-Extension { param ( [string] # Specifies the file name. $name, [string] # Specifies the file name extension. "Txt" is the default. $extension = "txt" ) $name = $name + "." + $extension $name <# .SYNOPSIS Adds a file name extension to a supplied name. ... #> ``` 结果是相同的结果如 1。 获取帮助解释参数说明,就好像它们伴随着`.Parameter`关键字。 ## <a name="example-4--redirecting-to-an-xml-file"></a>示例 4:将重定向到一个 XML 文件 您可以编写基于 XML 的函数和脚本的帮助主题。 尽管基于注释的帮助更轻松地实现,但,如果想要更精确地控制帮助内容,或如果您要翻译为多种语言的帮助主题,则需要基于 XML 的帮助。下面的示例演示更新 Month.ps1 脚本的前几行。 该脚本使用`.ExternalHelp`关键字来指定有关该脚本基于 XML 的帮助主题的路径。 ```powershell # .ExternalHelp C:\MyScripts\Update-Month-Help.xml param ([string]$InputPath, [string]$OutPutPath) function Get-Data { } ``` 下面的示例演示如何使用`.ExternalHelp`在函数中的关键字。 ```powershell function Add-Extension { param ([string] $name, [string]$extension = "txt") $name = $name + "." + $extension $name # .ExternalHelp C:\ps-test\Add-Extension.xml } ``` ## <a name="example-5--redirecting-to-a-different-help-topic"></a>示例 5:将重定向到不同的帮助主题 下面的代码是一段摘录的内置开头`Help`在 Windows PowerShell 中,一次显示一个屏幕的帮助文本的函数。 Get-help cmdlet 的帮助主题介绍了帮助函数,因为该帮助函数使用`.ForwardHelpTargetName`和`.ForwardHelpCategory`关键字来将用户重定向到 Get-help cmdlet 帮助主题。 ```powershell function help { <# .FORWARDHELPTARGETNAME Get-Help .FORWARDHELPCATEGORY Cmdlet #> [CmdletBinding(DefaultParameterSetName='AllUsersView')] param( [Parameter(Position=0, ValueFromPipelineByPropertyName=$true)] [System.String] ${Name}, ... ``` 以下命令使用此功能。 当用户键入帮助函数的 Get-help 命令时,获取帮助显示 Get-help cmdlet 的帮助主题。 ```powershell C:\PS> get-help help ``` ```output NAME Get-Help SYNOPSIS Displays information about Windows PowerShell cmdlets and concepts. ... ```
27.437681
180
0.579231
yue_Hant
0.694005
a15d8178231aeff528ea0b0b5ff247f1e1931d91
885
md
Markdown
40/README.md
weierstrass/project-euler
3fe8b1e7c6ee483e9d49c79606caff9c7348a077
[ "MIT" ]
1
2018-03-16T20:24:28.000Z
2018-03-16T20:24:28.000Z
40/README.md
weierstrass/project-euler
3fe8b1e7c6ee483e9d49c79606caff9c7348a077
[ "MIT" ]
null
null
null
40/README.md
weierstrass/project-euler
3fe8b1e7c6ee483e9d49c79606caff9c7348a077
[ "MIT" ]
null
null
null
# [Problem 40](https://projecteuler.net/problem=40) C++ ## Solution approach Build the whole decimal fraction as a string, this is possible since it is not an incredible big string ~5MB. Depending on which compiler you are using, there is a risk of overflowing the stack, if that is the case you can allocate it on the heap instead or further optimise the solution (see below), Then construct the product asked in the question. 85% of the run time is for converting integers to strings. Further optimisations would be to not build the full decimal fraction but rather compute the product "on the fly". ## Result 300 ms to run on a 2007 MacBook. Compiled with clang 6.0. ## Compile in debug mode ```cmake . -DCMAKE_BUILD_TYPE=Debug && make``` ## Compile in release mode ```cmake . -DCMAKE_BUILD_TYPE=Release && make``` ## Run ```./problem_40 --gtest_filter=problem_40.full```
38.478261
350
0.749153
eng_Latn
0.998181
a15e4d0ce5f01133ca22d8cca4348567912a7be4
6,187
md
Markdown
articles/active-directory-b2c/basic-age-gating.md
changeworld/azure-docs.cs-cz
cbff9869fbcda283f69d4909754309e49c409f7d
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/active-directory-b2c/basic-age-gating.md
changeworld/azure-docs.cs-cz
cbff9869fbcda283f69d4909754309e49c409f7d
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/active-directory-b2c/basic-age-gating.md
changeworld/azure-docs.cs-cz
cbff9869fbcda283f69d4909754309e49c409f7d
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Povolení věkového nárůstu ve službě Azure Active Directory B2C | Dokumenty společnosti Microsoft description: Přečtěte si, jak pomocí aplikace identifikovat nezletilé. services: active-directory-b2c author: msmimart manager: celestedg ms.service: active-directory ms.workload: identity ms.topic: conceptual ms.date: 11/13/2018 ms.author: mimart ms.subservice: B2C ms.openlocfilehash: 56cbeb8e8fe21f4b39c2f5c6af43e83ae330e5d5 ms.sourcegitcommit: 2ec4b3d0bad7dc0071400c2a2264399e4fe34897 ms.translationtype: MT ms.contentlocale: cs-CZ ms.lasthandoff: 03/28/2020 ms.locfileid: "78189969" --- # <a name="enable-age-gating-in-azure-active-directory-b2c"></a>Povolení věkového gazeření ve službě Azure Active Directory B2C >[!IMPORTANT] >Tato funkce je ve verzi Public Preview. Nepoužívejte funkci pro produkční aplikace. > Věkové gating v Azure Active Directory B2C (Azure AD B2C) umožňuje identifikovat nezletilé osoby, které chtějí používat vaši aplikaci. Můžete zablokovat nezletilého z přihlášení do aplikace. Uživatelé se také mohou vrátit k aplikaci a identifikovat svou věkovou skupinu a stav souhlasu rodičů. Azure AD B2C můžete blokovat nezletilé osoby bez souhlasu rodičů. Azure AD B2C můžete také nastavit tak, aby aplikace mohla rozhodnout, co dělat s nezletilými. Po povolení věkového omezení v [toku uživatelů](user-flow-overview.md)jsou uživatelé dotázáni, kdy se narodili a v jaké zemi nebo oblasti žijí. Pokud se uživatel přihlásí, který informace ještě nezadal, bude je muset zadat při příštím přihlášení. Pravidla se použijí při každém přihlášení uživatele. Azure AD B2C používá informace, které uživatel zadá k identifikaci, zda jsou nezletilé. Pole **ageGroup** se pak aktualizuje v jejich účtu. Hodnota může `null`být `Undefined` `Minor`, `Adult`, `NotAdult`, a . Pole **ageGroup** a **consentProvidedForMinor** se pak používají k výpočtu hodnoty **legalAgeGroupClassification**. Věkové změny zahrnují dvě věkové hodnoty: věk, kdy někdo již není považován za nezletilou osobu, a věk, ve kterém musí mít nezletilá osoba souhlas rodičů. V následující tabulce jsou uvedena věková pravidla, která se používají k definování nezletilé a nezletilé osoby vyžadující souhlas. | Země/region | Název země nebo oblasti | Věk menšího souhlasu | Nezletilý věk | | -------------- | ------------------- | ----------------- | --------- | | Výchozí | Žádný | Žádný | 18 | | AE | Spojené arabské emiráty | Žádný | 21 | | AT | Rakousko | 14 | 18 | | BE | Belgie | 14 | 18 | | BG | Bulharsko | 16 | 18 | | BH | Bahrajn | Žádný | 21 | | CM | Kamerun | Žádný | 21 | | CY | Kypr | 16 | 18 | | CZ | Česká republika | 16 | 18 | | DE | Německo | 16 | 18 | | DK | Dánsko | 16 | 18 | | EE | Estonsko | 16 | 18 | | EG | Egypt | Žádný | 21 | | ES | Španělsko | 13 | 18 | | FR | Francie | 16 | 18 | | GB | Spojené království | 13 | 18 | | GR | Řecko | 16 | 18 | | HR | Chorvatsko | 16 | 18 | | HU | Maďarsko | 16 | 18 | | IE | Irsko | 13 | 18 | | IT | Itálie | 16 | 18 | | KR | Korejská republika | 14 | 18 | | LT | Litva | 16 | 18 | | LU | Lucembursko | 16 | 18 | | LV | Lotyšsko | 16 | 18 | | MT | Malta | 16 | 18 | | Není k dispozici | Namibie | Žádný | 21 | | NL | Nizozemsko | 16 | 18 | | PL | Polsko | 13 | 18 | | PT | Portugalsko | 16 | 18 | | RO | Rumunsko | 16 | 18 | | SE | Švédsko | 13 | 18 | | SG | Singapur | Žádný | 21 | | SI | Slovinsko | 16 | 18 | | SK | Slovensko | 16 | 18 | | TD | Čad | Žádný | 21 | | TH | Thajsko | Žádný | 20 | | TW | Tchaj-wan | Žádný | 20 | | USA | Spojené státy | 13 | 18 | ## <a name="age-gating-options"></a>Možnosti věkového vzpěračů ### <a name="allowing-minors-without-parental-consent"></a>Povolení nezletilých osob bez souhlasu rodičů Pro toky uživatelů, které umožňují registraci, přihlášení nebo obojí, můžete povolit nezletilé osoby bez souhlasu do vaší aplikace. Nezletilí bez souhlasu rodičů se mohou přihlásit nebo zaregistrovat jako normální a Azure AD B2C vydá token ID s **deklarací legalAgeGroupClassification.** Toto tvrzení definuje prostředí, které uživatelé mají, jako je například shromažďování souhlasu rodičů a aktualizace **pole ConsentProvidedForMinor.** ### <a name="blocking-minors-without-parental-consent"></a>Blokování nezletilých bez souhlasu rodičů Pro toky uživatelů, které umožňují registraci, přihlášení nebo obojí, můžete blokovat nezletilé osoby bez souhlasu aplikace. Následující možnosti jsou k dispozici pro zpracování blokovaných uživatelů v Azure AD B2C: - Odeslat JSON zpět do aplikace - tato možnost odešle odpověď zpět do aplikace, která byla blokována nezletilého. - Zobrazit chybovou stránku – uživateli se zobrazí stránka informující, že nemá přístup k aplikaci. ## <a name="set-up-your-tenant-for-age-gating"></a>Nastavení tenanta pro věkové nastavení Chcete-li použít věkové gazece v toku uživatele, musíte nakonfigurovat klienta mít další vlastnosti. 1. Ujistěte se, že používáte adresář, který obsahuje vašeho klienta Azure AD B2C výběrem directory **+ předplatné** filtr v horní nabídce. Vyberte adresář, který obsahuje vašeho klienta. 2. V levém horním rohu portálu Azure vyberte **Všechny služby,** vyhledejte a vyberte **Azure AD B2C**. 3. V nabídce vlevo vyberte **Vlastnosti** pro vašeho tenanta. 2. V části **Age gating** klikněte na **Configure**. 3. Počkejte na dokončení operace a váš tenant bude nastaven pro věkové nastavení. ## <a name="enable-age-gating-in-your-user-flow"></a>Povolení věkového omezení v uživatelském toku Po nastavení vašeho tenanta pro použití věkové hodu můžete tuto funkci použít v [tocích uživatelů,](user-flow-versions.md) kde je povolena. Můžete povolit věkové vzponí ní s následujícími kroky: 1. Vytvořte tok uživatele, který má povoleno věkové gating. 2. Po vytvoření toku uživatele vyberte **vlastnosti** v nabídce. 3. V části **Věk gatingu** vyberte **Povoleno**. 4. Poté se rozhodnete, jak chcete spravovat uživatele, kteří se identifikují jako nezletilí. V **případě registrace nebo přihlášení**vyberete `Block minors from accessing your application` `Allow minors to access your application` nebo . Pokud je vybrána možnost `Send a JSON back to the application` blokování `Show an error message`nezletilých osob, vyberete nebo .
55.738739
453
0.738807
ces_Latn
0.999892
a15f28dfc751cb3293b0d7c29142082d868dd85b
8,227
md
Markdown
articles/storsimple/storsimple-8000-power-cooling-module-replacement.md
changeworld/azure-docs.cs-cz
cbff9869fbcda283f69d4909754309e49c409f7d
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/storsimple/storsimple-8000-power-cooling-module-replacement.md
changeworld/azure-docs.cs-cz
cbff9869fbcda283f69d4909754309e49c409f7d
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/storsimple/storsimple-8000-power-cooling-module-replacement.md
changeworld/azure-docs.cs-cz
cbff9869fbcda283f69d4909754309e49c409f7d
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Výměna PCM na zařízení řady StorSimple 8000 | Dokumenty společnosti Microsoft description: Vysvětluje, jak odstranit a vyměnit napájecí a chladicí modul (PCM) na zařízení StorSimple services: storsimple documentationcenter: '' author: alkohli manager: timlt editor: '' ms.assetid: '' ms.service: storsimple ms.devlang: NA ms.topic: article ms.tgt_pltfrm: NA ms.workload: TBD ms.date: 06/02/2017 ms.author: alkohli ms.openlocfilehash: 42561570e24aec5edd33248ef1738e53175e480e ms.sourcegitcommit: 2ec4b3d0bad7dc0071400c2a2264399e4fe34897 ms.translationtype: MT ms.contentlocale: cs-CZ ms.lasthandoff: 03/27/2020 ms.locfileid: "60632416" --- # <a name="replace-a-power-and-cooling-module-on-your-storsimple-device"></a>Výměna napájecího a chladicího modulu na zařízení StorSimple ## <a name="overview"></a>Přehled Modul napájení a chlazení (PCM) ve vašem zařízení Microsoft Azure StorSimple se skládá z napájecích a chladicích ventilátorů, které jsou řízeny prostřednictvím primárních skříní a skříní EBOD. Existuje pouze jeden model PCM, který je certifikován pro každou skříň. Primární skříň je certifikována pro PCM o 764 W a skříň EBOD je certifikována pro PCM o 580 W. Přestože pcms pro primární skříň a skříň EBOD se liší, postup nahrazení je totožný. Tento kurz vysvětluje následující postupy: * Odebrání pcm * Instalace náhradního pcm > [!IMPORTANT] > Před odebráním a výměnou pcm zkontrolujte bezpečnostní informace v [nahrazení hardwarové součásti StorSimple](storsimple-8000-hardware-component-replacement.md). ## <a name="before-you-replace-a-pcm"></a>Před výměnou PCM Než počítač PCM nahradíte, mějte na paměti následující důležité problémy: * Pokud dojde k výpadku napájení pcm, nechte vadný modul nainstalovaný, ale vyjměte napájecí kabel. Ventilátor bude i nadále přijímat energii z krytu a nadále zajišťovat správné chlazení. Pokud ventilátor selže, pcm je třeba okamžitě vyměnit. * Před vyjmutím PCM odpojte napájení od PCM vypnutím hlavního vypínače (pokud je k dispozici) nebo fyzickým vyjmutím napájecího kabelu. To poskytuje upozornění pro váš systém, že vypnutí napájení je bezprostřední. * Před výměnou vadného pcm se ujistěte, že je druhý pcm funkční pro pokračování v provozu systému. Vadný PCM musí být co nejdříve nahrazen plně funkčním PCM. * Výměna modulu PCM trvá jen několik minut, ale musí být dokončena do 10 minut od odstranění neúspěšného PCM, aby se zabránilo přehřátí. * Všimněte si, že náhradní 764 W PCM moduly dodávané z továrny neobsahují záložní bateriový modul. Před provedením výměny budete muset vyjmout baterii z vadného pcm a poté ji vložit do náhradního modulu. Další informace naleznete v tématu [jak vyjmout a vložit záložní bateriový modul](storsimple-8000-battery-replacement.md). ## <a name="remove-a-pcm"></a>Odebrání pcm Až budete připraveni odebrat power and cooling module (PCM) ze zařízení Microsoft Azure StorSimple, postupujte podle těchto pokynů. > [!NOTE] > Před odebráním pcm ověřte, zda máte správnou náhradu (764 W pro primární skříň nebo 580 W pro skříň EBOD). #### <a name="to-remove-a-pcm"></a>Odebrání pcm 1. Na klasickém portálu Azure klikněte na **Nastavení > monitorování > stavu hardwaru**. Zkontrolujte stav součástí PCM v části **Sdílené součásti** a zjistěte, které pcm selhaly: * Pokud došlo k selhání napájení v počítači PCM 0, bude stav **napájení v počítači PCM 0** červený. * Pokud došlo k selhání napájení v počítači PCM 1, bude stav **napájení v pcm 1** červený. * Pokud ventilátor v PCM 1 selhal, stav **chlazení 0 pro PCM 0** nebo Chlazení 1 pro **PCM 0** bude červený. 2. Vyhledejte neúspěšný počítač PCM na zadní straně primární skříně. Pokud používáte model 8600, identifikujte primární skříň podle identifikačního čísla systémové jednotky zobrazeného na LED displeji na předním panelu. Výchozí ID jednotky zobrazené v primární skříni je **00**, zatímco výchozí ID jednotky zobrazené ve skříni EBOD je **01**. Následující schéma a tabulka vysvětlují přední panel LED displeje. ![ID systému na předním panelu OPS](./media/storsimple-power-cooling-module-replacement/IC740991.png) **Obrázek 1** Přední panel zařízení | Popisek | Popis | |:--- |:--- | | 1 |Tlačítko Ztlumit | | 2 |Napájení systému | | 3 |Porucha modulu | | 4 |Logická chyba | | 5 |Zobrazení ID jednotky | 3. Indikátorledy monitorování v zadní části primárního krytu lze také použít k identifikaci vadného PCM. Informace o tom, jak pomocí LED diod najít vadný PCM, naleznete v následujícím diagramu a tabulce. Pokud například rozsvítí led dioda odpovídající **selhání ventilátoru,** ventilátor selhal. Podobně platí, že pokud svítí LED dioda odpovídající **ac fail,** napájení selhalo. ![Zadní rovina indikátoru monitorování PCM zařízení LED](./media/storsimple-power-cooling-module-replacement/IC740992.png) **Obrázek 2** Zadní část PCM s indikátorovými LED diodami | Popisek | Popis | |:--- |:--- | | 1 |Výpadku napájení střídavého proudu | | 2 |Selhání ventilátoru | | 3 |Porucha baterie | | 4 |PCM je v pořádku | | 5 |Selhání napájení stejnosměrného proudu | | 6 |Baterie zdravá | 4. Vyhledejte vadný modul PCM na zadní straně zadní části zařízení StorSimple. PCM 0 je vlevo a PCM 1 je vpravo. Následující tabulka vysvětluje moduly. ![Zadní rovina primárních modulů skříně zařízení](./media/storsimple-power-cooling-module-replacement/IC740994.png) **Obrázek 3** Zadní část zařízení se zásuvnými moduly | Popisek | Popis | |:--- |:--- | | 1 |PCM 0 | | 2 |PCM 1 | | 3 |Kontroler 0 | | 4 |Kontroler 1 | 5. Vypněte vadný PCM a odpojte napájecí kabel. Nyní můžete odebrat PCM. 6. Uchopte západku a stranu rukojeti PCM mezi palcem a ukazováčkem a stlačte je k sobě, abyste ji otevřeli. ![Otevření rukojeti PCM](./media/storsimple-power-cooling-module-replacement/IC740995.png) **Obrázek 4** Otevření rukojeti PCM 7. Uchopte rukojeť a vyjměte PCM. ![Odebrání pcm zařízení](./media/storsimple-power-cooling-module-replacement/IC740996.png) **Obrázek 5** Odebrání PCM ## <a name="install-a-replacement-pcm"></a>Instalace náhradního pcm Podle těchto pokynů nainstalujte pcm do zařízení StorSimple. Před instalací náhradního pcm (platí pouze pro pcm s výkonem 764 W) se ujistěte, že jste vložili záložní bateriový modul. Další informace naleznete v tématu [jak vyjmout a vložit záložní bateriový modul](storsimple-8000-battery-replacement.md). #### <a name="to-install-a-pcm"></a>Instalace pcm 1. Ověřte, zda máte pro tuto přílohu správný náhradní počítač PCM. Primární skříň potřebuje 764 W PCM a skříň EBOD potřebuje 580 W PCM. Neměli byste se pokoušet použít 580 W PCM v primární skříni nebo 764 W PCM ve skříni EBOD. Následující obrázek ukazuje, kde identifikovat tyto informace na štítku, který je připojen k PCM. ![Popisek PCM zařízení](./media/storsimple-power-cooling-module-replacement/IC740973.png) **Obrázek 6** Popisek PCM 2. Zkontrolujte, zda není poškozen a nevěnuje se zejména konektorům. > [!NOTE] > **Neinstalujte modul, pokud jsou ohnuté kolíky konektorů.** > > 3. S rukojetí PCM v otevřené poloze zasuňte modul do krytu. ![Instalace pcm zařízení](./media/storsimple-power-cooling-module-replacement/IC740975.png) **Obrázek 7** Instalace PCM 4. Ručně zavřete úchyt PCM. Měli byste slyšet cvaknutí, jak se západka rukojeti zapíná. > [!NOTE] > Chcete-li zajistit, aby se kolíky konektoru zatáhly, můžete jemně tahat za rukojeť bez uvolnění západky. Pokud pcm vyklouzne, znamená to, že západka byla uzavřena před zapojením konektorů. 5. Připojte napájecí kabely ke zdroji napájení a k PCM. 6. Zajistěte balíky odlehčení tahu. 7. Zapněte pcm. 8. Ověřte, zda byla výměna úspěšná: na portálu Azure služby StorSimple Device Manager přejděte do zařízení a potom do **nastavení > monitorování > stavu hardwaru**. V části **Sdílené součásti**by měl být stav PCM zelený. > [!NOTE] > Může trvat několik minut, než se náhradní pcm zcela inicializuje. ## <a name="next-steps"></a>Další kroky Další informace o [výměně hardwarových komponent StorSimple](storsimple-8000-hardware-component-replacement.md).
56.737931
443
0.758357
ces_Latn
0.999872
a15f4ca9a27ea907e58f59ca686fb9a08f93ba4a
3,137
md
Markdown
src/lib/xkcdparse/README.md
icmx/xv
39da211e4faae66db959b3fa9c9068555b383d9a
[ "MIT" ]
1
2021-04-26T12:15:59.000Z
2021-04-26T12:15:59.000Z
src/lib/xkcdparse/README.md
icmx/xv
39da211e4faae66db959b3fa9c9068555b383d9a
[ "MIT" ]
44
2021-02-19T00:18:25.000Z
2022-03-16T01:48:11.000Z
src/lib/xkcdparse/README.md
icmx/xv
39da211e4faae66db959b3fa9c9068555b383d9a
[ "MIT" ]
null
null
null
# xkcdparse xv internal library to destruct an xkcd comic JSON data and transform into nice plain text or HTML strings. ## How it works xkcdparse has "destructors" API which are actually functions that takes xkcd comic JSON data. The following example will explain it better. Suppose there's [xkcd #927](https://xkcd.com/927/) JSON: ```js import xkcdparse from '~/somewhere/xkcdparse'; // (multiline for readability) const comic = { "num": 927, "title": "Standards", "alt": `Fortunately, the charging one has been solved now that we've all standardized on mini-USB. Or is it micro-USB? Shit.`, "transcript": ` HOW STANDARDS PROLIFERATE(See: A\nC chargers, character encodings, instant messaging, etc.)\n\nSITUATION:↵There are 14 competing standards.\n\nGeek: 14?! Ridiculous! We need to develop one universal standard that covers everyone's use cases.\nFellow Geek: Yeah!\n\nSoon:\nSITUATION:\nThere are 15 competing standards.\n\n {{Title text: Fortunately, the charging one has been solved now that we've all standardized on mini-USB. Or is it micro-USB? Shit.}}`, // ...rest props } const a = xkcdparse.title(comic); // -> title destructor: // // Standards const b = xkcdparse.alt(comic); // -> alt destructor: // // (multiline for readability) // “Fortunately, the charging one has been solved now that we've all // standardized on mini-USB. Or is it micro-USB? Shit.“ const c = xkcdparse.date(comic); // -> date destructor: // // Saturday, August 20, 2011 const d = xkcdparse.transcript(comic); // -> transcript destructor: // // (multiline for readability) // HOW STANDARDS PROLIFERATE // <br /><br/> // (See: A // <br /><br /> // C chargers, character encodings, instant messaging, etc.) // <br /><br /> // SITUATION: // <br /><br /> // There are 14 competing standards. // <br /><br /> // Geek: 14?! Ridiculous! We need to develop one universal standard // that covers everyone's use cases. // <br /><br /> // Fellow Geek: Yeah! // <br /><br /> // Soon: // <br /><br /> // SITUATION: // <br /><br />There are 15 competing standards. ``` ## Syntax rules I've realised that there are simple syntax rules used in comic `title`, `alt` and `transcript` properties. There are some tokens: - `{{ hidden text }}`, used in `transcript`, actually a copy of `alt` property - `[[ coursive text ]]`, used for current comic frame description - `(( coursive text also ))`, same, but for more extra-context description - `<<bold text>>` - `*bold also*` - `_underline text_` Typography rules: - `\n` breaks paragraphs - `--` means em dash - `-` is em dash also, but only when surrounded by spaces - `...` is ellipsis - `"` is quote mark There are some extra rules also: - **Tokes cannot be nested**. That is, there could not be something like `[[ hello *bold* world ]]`. Note: this makes parsing WAY easier and I don't need to actually *parse* it into AST - There are should not be double paragraph breaks, as well as leading or trailing paragraph breaks. Same for spaces - Literal `<` and `>` should be replaced by escape entities `&lt;` and `&gt;`.
32.677083
187
0.678674
eng_Latn
0.985209
a15facf1c7d9b2d65e4168d1aa93987630b66018
272
md
Markdown
README.md
jrenner/chip-8-nim-interpreter
e7577998ff78e911947937189aecdf5718a43ba9
[ "Apache-2.0" ]
4
2015-09-19T03:08:26.000Z
2019-06-23T16:19:11.000Z
README.md
jrenner/chip-8-nim-interpreter
e7577998ff78e911947937189aecdf5718a43ba9
[ "Apache-2.0" ]
null
null
null
README.md
jrenner/chip-8-nim-interpreter
e7577998ff78e911947937189aecdf5718a43ba9
[ "Apache-2.0" ]
1
2020-04-13T08:09:42.000Z
2020-04-13T08:09:42.000Z
# Chip-8 Interpreter implemented in Nim ![screen](screen.png) ![screen2](screen2.png) ### Not implemented - input (keyboard) - sound - timers (delay, sound) ## Dependencies - nim (compiler) - sdl2 To build: ``` nim c emulate.nim ``` To run: ``` emulate <romfile> ```
11.333333
39
0.658088
eng_Latn
0.611488
a15fde66e52ad4e58fb78238655658f1f1e038cf
6,158
md
Markdown
docs/auto-tracking.md
sundayayandele/keen-tracking.js
a3823d3cb34a5ecb7fb309d9c58a6dec738f0a88
[ "MIT" ]
262
2015-06-04T16:42:50.000Z
2022-03-24T19:26:08.000Z
docs/auto-tracking.md
sundayayandele/keen-tracking.js
a3823d3cb34a5ecb7fb309d9c58a6dec738f0a88
[ "MIT" ]
120
2015-05-17T00:45:46.000Z
2022-03-02T00:09:41.000Z
docs/auto-tracking.md
sundayayandele/keen-tracking.js
a3823d3cb34a5ecb7fb309d9c58a6dec738f0a88
[ "MIT" ]
96
2015-05-22T16:41:09.000Z
2021-12-29T09:58:29.000Z
# Automated Event Tracking (browser-only) Automatically record pageviews, clicks, form submissions and element_views, with a robust data model. ### Installation Install this package from NPM *Recommended* ```ssh npm install keen-tracking --save ``` Or load it from public CDN ```html <script crossorigin src="https://cdn.jsdelivr.net/npm/keen-tracking@5"></script> <script> KeenTracking.ready(function(){ const client = new KeenTracking({ projectId: 'YOUR_PROJECT_ID', writeKey: 'YOUR_WRITE_KEY' }); client.initAutoTracking(); }); </script> ``` ### Configuration options The following configuration options are available to let you specify which types of events to track (defaults shown): ```javascript const client = new KeenTracking({ projectId: 'YOUR_PROJECT_ID', writeKey: 'YOUR_WRITE_KEY' }); client.initAutoTracking({ // record on page load recordPageViews: true, // OR // record on leaving the page - this ways you will get the time spent on this page recordPageViewsOnExit: true, recordScrollState: true, // see how far people scrolled recordClicks: true, // record clicks on A links recordClicksPositionPointer: false, // record pointer position for clicks // FORMS recordFormSubmits: true, ignoreDisabledFormFields: false, ignoreFormFieldTypes: ['password'], // GDPR related options collectIpAddress: true, // default collectUuid: true, // default // share UUID cookies across subdomains shareUuidAcrossDomains: false, // default // catchError: myCustomErrorHandler //Track HTML elements views recordElementViews: true // see if an element was seen }); ``` ### Request types We make requests using the [BeaconAPI](https://developer.mozilla.org/en-US/docs/Web/API/Beacon_API). It's the fastest non-invasive way to track user behaviour. Due its nature, BeaconAPI runs requests in the background, with no possibility to handle errors. If you want to handle errors, you need to use the [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API). ```javascript const client = new KeenTracking({ projectId: 'YOUR_PROJECT_ID', writeKey: 'YOUR_WRITE_KEY', requestType: 'beaconAPI' // beaconAPI, fetch }); ``` ### Error Handling [Handling connection problems](https://github.com/keen/keen-tracking.js#handling-connection-problems) ```javascript const client = new KeenTracking({ projectId: 'YOUR_PROJECT_ID', writeKey: 'YOUR_WRITE_KEY', requestType: 'fetch' }); function myCustomErrorHandler(someError){ console.error('Error reported:', someError); } client.initAutoTracking({ recordPageViews: true, catchError: myCustomErrorHandler }); ``` ### Upgrading from the Web Auto Collector The interface and behaviors of this feature are a little different, but the data models produced are backward compatible. One notable change is that `clicks` are only recorded for `<a>` tags now. Previously any click any element was recorded. If you would like to specify listeners for other DOM elements, check out the [DOM listener docs](./listeners.md) or the [`.initAutoTracking()` method source](../lib/browser-auto-tracking.js) for insight into how to set up your own listeners. Any additional events recorded from the `client` instance below will use the same robust data models once auto-tracking is enabled. Scroll state tracking powered by the `getScrollState()` helper and a `window` scroll listener. This scroll listener can be removed by calling `KeenTracking.utils.listener('window').off('scroll');`. ### Customization Add additional properties to any or all events with [`extendEvent` or `extendEvents` methods](./extend-events.md): ```javascript const client = new KeenTracking({ projectId: 'YOUR_PROJECT_ID', writeKey: 'YOUR_WRITE_KEY' }); client.extendEvents(function(){ return { app: { version: '4.1.5' }, user: { display_name: 'Johnny 5', email_address: 'example@domain.com' } /* Custom properties for all events */ }; }); client.extendEvent('pageviews', function(){ return { page: { author_id: 'f123109vb1231200312bb', author_name: 'John Doe', last_updated: '2017-09-13T12:00:00-07:00' } /* Custom properties for pageviews event */ }; }); client.initAutoTracking(); ``` ### Track views of the HTML elements All HTML elements with a class `.track-element-view` will be observed by the browser. If any of them appears on the screen, an event will be recorded. The event will contain specific attributes from the visible element and nest them in the `element` property. Note: This feature works only on the [browsers that support Intersection Observer](https://caniuse.com/#search=IntersectionObserver). ```javascript { "element": { "title": "Track element view", "text": null, "class": "track-element-view", "event_key": null, "node_name": "DIV", "href": null, "x_position": 8, "y_position": 830, "selector": "body > div:eq(1)", "id": null } } ``` **Want to record custom events?** Any additional events recorded from the `client` instance below will use the same robust data models once auto-tracking is enabled. ### Block bots and improve device recognition Install [mobile-detect.js](https://github.com/hgoebl/mobile-detect.js) to identify basic device types and block noisy bots and crawlers. ```html <script src="https://cdnjs.cloudflare.com/ajax/libs/mobile-detect/1.4.2/mobile-detect.min.js"></script> <script crossorigin src="https://cdn.jsdelivr.net/npm/keen-tracking@5"></script> <script> Keen.ready(function(){ const md = new MobileDetect(window.navigator.userAgent); // for Node.js example go https://github.com/hgoebl/mobile-detect.js#nodejs--express if (md.is('bot')) { return false; } const client = new Keen({ projectId: 'YOUR_PROJECT_ID', writeKey: 'YOUR_WRITE_KEY' }); client.extendEvents(function(){ return { tech: { device_type: md.tablet() ? 'tablet' : md.mobile() ? 'mobile' : 'desktop' } /* Custom properties for all events */ }; }); client.initAutoTracking(); }); </script> ```
29.184834
616
0.714355
eng_Latn
0.838733
a1608693d5aa5e6ea776ed6f6a1e054ad0762a73
2,303
md
Markdown
README.md
HarryStevens/-DEPRECATED-arrays
21773bc5bf7296e03e72e8a1273b16fef215b54b
[ "BSD-3-Clause" ]
null
null
null
README.md
HarryStevens/-DEPRECATED-arrays
21773bc5bf7296e03e72e8a1273b16fef215b54b
[ "BSD-3-Clause" ]
null
null
null
README.md
HarryStevens/-DEPRECATED-arrays
21773bc5bf7296e03e72e8a1273b16fef215b54b
[ "BSD-3-Clause" ]
null
null
null
This project is deprecated. Please use [jsz](https://github.com/harrystevens/jsz) instead. # arrays.js arrays.js is a Javascript library for manipulating arrays. Javascript has many [built-in methods for manipulating arrays](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array). The functions in this library are meant to supplement those. To use this library, download `arrays.js` or `arrays.min.js` from the `src` directory and include it in your HTML file as `<script src="path/to/arrays.js"></script>` or `<script src="path/to/arrays.min.js"></script>`. ## API Reference * [Math](#math) * [Queries](#queries) * [Transformations](#transformations) * [Other](#other) ### <a name="math" href="#math">Math</a> Functions for doing math with arrays of numbers. <a name="average" href="#average">#</a> arrays.<b>average</b>(<i>array</i>) Returns the average of an array of numbers. <a name="extent" href="#extent">#</a> arrays.<b>extent</b>(<i>array</i>) Returns the minimum and maximum values of an array of numbers as the array [min, max]. <a name="max" href="#max">#</a> arrays.<b>max</b>(<i>array</i>) Returns the maximum value of an array of numbers. <a name="median" href="#median">#</a> arrays.<b>median</b>(<i>array</i>) Returns the median of an array of numbers. <a name="min" href="#min">#</a> arrays.<b>min</b>(<i>array</i>) Returns the minimum value of an array of numbers. <a name="sum" href="#sum">#</a> arrays.<b>sum</b>(<i>array</i>) Returns the sum of an array of numbers. ### <a name="queries" href="#queries">Queries</a> Functions for testing arrays for certain properties. Return booleans. <a name="is" href="#is">#</a> arrays.<b>is</b>(<i>array</i>) Tests whether an element is an array. Returns *true* or *false*. ### <a name="transformations" href="#transformations">Transformations</a> Functions for transforming arrays. <a name="shuffle" href="#shuffle">#</a> arrays.<b>shuffle</b>(<i>array</i>) Shuffles an array. <a name="sortNumbers" href="#sortNumbers">#</a> arrays.<b>sortNumbers</b>(<i>array</i>) Sorts an array of numbers. ### <a name="other" href="#other">Other</a> Miscellaneous functions. <a name="random" href="#random">#</a> arrays.<b>random</b>(<i>array</i>) Returns a random item from an array.
30.706667
271
0.689535
eng_Latn
0.849972
a161297ced0927bdbfd9c4458894686ce557683e
2,906
md
Markdown
content/blog/ps-boj-1647/index.md
zhsks528/neulsang
c952892547bc2db5fb7f0cadb3b49096a8d62948
[ "MIT" ]
null
null
null
content/blog/ps-boj-1647/index.md
zhsks528/neulsang
c952892547bc2db5fb7f0cadb3b49096a8d62948
[ "MIT" ]
null
null
null
content/blog/ps-boj-1647/index.md
zhsks528/neulsang
c952892547bc2db5fb7f0cadb3b49096a8d62948
[ "MIT" ]
null
null
null
--- title: "백준알고리즘 - 1647. 도시 분할 계획" date: "2020-08-05T14:47:51.112Z" category: "ps" emoji: "🏙️" --- ## 백준알고리즘 - 1647. 도시 분할 계획 - 관련된 알고리즘 : 최소 스패닝 트리(MST) ### 문제 동물원에서 막 탈출한 원숭이 한 마리가 세상구경을 하고 있다. 그러다가 평화로운 마을에 가게 되었는데, 그곳에서는 알 수 없는 일이 벌어지고 있었다. 마을은 N개의 집과 그 집들을 연결하는 M개의 길로 이루어져 있다. 길은 어느 방향으로든지 다닐 수 있는 편리한 길이다. 그리고 각 길마다 길을 유지하는데 드는 유지비가 있다. 마을의 이장은 마을을 두 개의 분리된 마을로 분할할 계획을 가지고 있다. 마을이 너무 커서 혼자서는 관리할 수 없기 때문이다. 마을을 분할할 때는 각 분리된 마을 안에 집들이 서로 연결되도록 분할해야 한다. 각 분리된 마을 안에 있는 임의의 두 집 사이에 경로가 항상 존재해야 한다는 뜻이다. 마을에는 집이 하나 이상 있어야 한다. 그렇게 마을의 이장은 계획을 세우다가 마을 안에 길이 너무 많다는 생각을 하게 되었다. 일단 분리된 두 마을 사이에 있는 길들은 필요가 없으므로 없앨 수 있다. 그리고 각 분리된 마을 안에서도 임의의 두 집 사이에 경로가 항상 존재하게 하면서 길을 더 없앨 수 있다. 마을의 이장은 위 조건을 만족하도록 길들을 모두 없애고 나머지 길의 유지비의 합을 최소로 하고 싶다. 이것을 구하는 프로그램을 작성하시오. ### 입력 첫째 줄에 집의 개수N, 길의 개수M이 주어진다. N은 2이상 100,000이하인 정수이고, M은 1이상 1,000,000이하인 정수이다. 그 다음 줄부터 M줄에 걸쳐 길의 정보가 A B C 세 개의 정수로 주어지는데 A번 집과 B번 집을 연결하는 길의 유지비가 C (1 ≤ C ≤ 1,000)라는 뜻이다. ### 출력 첫째 줄에 없애고 남은 길 유지비의 합의 최솟값을 출력한다. ### 예제 ``` Input : 7 12 1 2 3 1 3 2 3 2 1 2 5 2 3 4 4 7 3 6 5 1 5 1 6 2 6 4 1 6 5 3 4 5 3 6 7 4 Output : 8 ``` ### 해결 ```python import sys v, e = map(int, sys.stdin.readline().split()) vertices = list() data = list() for i in range(v): vertices.append(i + 1) for _ in range(e): node_a, node_b, weight = map(int, sys.stdin.readline().split()) data.append((node_a, node_b, weight)) mygraph = dict() mygraph['vertices'] = vertices mygraph['edges'] = data parents = dict() ranks = dict() def make_set(node): parents[node] = node ranks[node] = 0 def find(node): if parents[node] != node: parents[node] = find(parents[node]) return parents[node] def union(node_a, node_b): root1= find(node_a) root2 = find(node_b) if ranks[root1] > ranks[root2]: parents[root2] = root1 else: parents[root1] = root2 if ranks[root1] == ranks[root2]: ranks[root2] += 1 def kruskal(graph): mst = list() for node in graph['vertices']: make_set(node) edges = graph['edges'] edges.sort(key=lambda x: x[2]) for edge in graph['edges']: node_a, node_b, weight = edge if find(node_a) != find(node_b): union(node_a, node_b) mst.append(edge) sum = 0 max_edge = 0 for i in range(len(mst)): sum += mst[i][2] max_edge = max(max_edge, mst[i][2]) min_price = sum - max_edge return min_price result = kruskal(mygraph) print(result) ``` ### 설명 1. 유지비가 최소가 되도록하려면 최소 스패닝 트리를 적용해야 구할 수 있으므로 오름차순으로 가중치를 기준으로 잡아서 오름차순정렬을 한다. 2. 크루스칼 알고리즘을 이용하였다. 3. 유지비가 최소가 되도록 두 마을로 분리한다는 뜻 = 가장 유지비가 많이 드는 길을 제거한다는 의미 4. 최소 유지비에서 가장 큰 유지비를 빼면 문제를 해결할 수 있다. - https://www.acmicpc.net/problem/1647
22.015152
227
0.584652
kor_Hang
1.00001
a1619158b226a21b968d890888b0264c65acd206
7,437
md
Markdown
articles/postgresql/concepts-hyperscale-choose-distribution-column.md
Microsoft/azure-docs.cs-cz
1e2621851bc583267d783b184f52dc4b853a058c
[ "CC-BY-4.0", "MIT" ]
6
2017-08-28T07:43:21.000Z
2022-01-04T10:32:24.000Z
articles/postgresql/concepts-hyperscale-choose-distribution-column.md
MicrosoftDocs/azure-docs.cs-cz
1e2621851bc583267d783b184f52dc4b853a058c
[ "CC-BY-4.0", "MIT" ]
428
2018-08-23T21:35:37.000Z
2021-03-03T10:46:43.000Z
articles/postgresql/concepts-hyperscale-choose-distribution-column.md
Microsoft/azure-docs.cs-cz
1e2621851bc583267d783b184f52dc4b853a058c
[ "CC-BY-4.0", "MIT" ]
16
2018-03-03T16:52:06.000Z
2021-12-22T09:52:44.000Z
--- title: Výběr distribučních sloupců – Citus (Velká měřítko) – Azure Database for PostgreSQL description: Naučte se, jak vybrat distribuční sloupce v běžných scénářích Azure Database for PostgreSQL – Citus (škálování). author: jonels-msft ms.author: jonels ms.service: postgresql ms.subservice: hyperscale-citus ms.topic: conceptual ms.date: 05/06/2019 ms.openlocfilehash: 129eff8c954c0c5469d3607e6ae16ce3202630ed ms.sourcegitcommit: f28ebb95ae9aaaff3f87d8388a09b41e0b3445b5 ms.translationtype: MT ms.contentlocale: cs-CZ ms.lasthandoff: 03/29/2021 ms.locfileid: "91929332" --- # <a name="choose-distribution-columns-in-azure-database-for-postgresql--hyperscale-citus"></a>Výběr distribučních sloupců v Azure Database for PostgreSQL – Citus (škálování) Výběr distribučního sloupce tabulky představuje jedno z nejdůležitějších rozhodnutí při modelování. Azure Database for PostgreSQL – Citus () ukládá řádky v horizontálních oddílů na základě hodnoty distribučního sloupce řádky. Správné skupiny voleb vztahující se k datům společně na stejných fyzických uzlech, které urychlují dotazy a přidávají podporu pro všechny funkce SQL. Nesprávná volba způsobí, že systém pracuje pomalu a nepodporuje všechny funkce SQL napříč uzly. Tento článek obsahuje popisy pro distribuční sloupce dvou nejběžnějších scénářů Citus (s větším měřítkem). ### <a name="multi-tenant-apps"></a>Aplikace s více tenanty Architektura s více klienty používá formu hierarchického modelování databáze pro distribuci dotazů mezi uzly ve skupině serverů. Horní část hierarchie dat se označuje jako *ID tenanta* a musí se ukládat do sloupce v každé tabulce. Citus () kontroluje dotazy, aby se zobrazilo, které ID tenanta zahrnuje a vyhledá vyhovující tabulku horizontálních oddílů. Směruje dotaz na jeden pracovní uzel, který obsahuje horizontálních oddílů. Spuštění dotazu se všemi relevantními daty umístěnými na stejném uzlu se nazývá společné umístění. Následující diagram znázorňuje společné umístění v datovém modelu s více klienty. Obsahuje dvě tabulky, účty a kampaně, z nichž každý distribuuje `account_id` . Šedivá pole reprezentují horizontálních oddílů. Zelený horizontálních oddílů je uložen společně na jednom pracovním uzlu a modrý horizontálních oddílů je uložený na jiném pracovním uzlu. Všimněte si, jak dotaz spojení mezi účty a kampaněmi obsahuje všechna data potřebná na jednom uzlu, pokud jsou obě tabulky omezené na stejné \_ ID účtu. ![Souběžné umístění pro více tenantů](media/concepts-hyperscale-choosing-distribution-column/multi-tenant-colocation.png) Chcete-li tento návrh použít ve vašem vlastním schématu, určete, co v aplikaci znamená klienta. Mezi běžné instance patří společnost, účet, organizace nebo zákazník. Název sloupce bude něco podobného `company_id` nebo `customer_id` . Prověřte jednotlivé dotazy a položte si je, kdyby fungovaly, pokud měly další klauzule WHERE k omezení všech tabulek zahrnutých do řádků se stejným ID tenanta? Dotazy v modelu víceklientské architektury jsou vymezeny na tenanta. Například dotazy na prodej nebo inventář jsou vymezeny v rámci určitého úložiště. #### <a name="best-practices"></a>Osvědčené postupy - **Rozdělení distribuovaných tabulek pomocí společného \_ sloupce ID tenanta** Například v aplikaci SaaS, kde jsou vzdálení klienti, se ID tenanta \_ pravděpodobně považuje za \_ ID společnosti. - **Převod malých tabulek pro více tenantů na referenční tabulky.** Pokud více klientů sdílí malou tabulku informací, distribuujte ji jako referenční tabulku. - **Omezí filtrování všech dotazů aplikace podle \_ ID tenanta.** Každý dotaz by měl požadovat informace pro jednoho klienta v jednom okamžiku. Příklad, jak tento druh aplikace sestavit, najdete v [kurzu pro více tenantů](./tutorial-design-database-hyperscale-multi-tenant.md) . ### <a name="real-time-apps"></a>Aplikace v reálném čase Architektura víceklientské architektury zavádí hierarchickou strukturu a používá společné umístění dat ke směrování dotazů na tenanta. Naproti tomu architektury v reálném čase závisí na konkrétních vlastnostech distribuce jejich dat k dosažení vysoce paralelního zpracování. Jako termín pro distribuční sloupce v modelu reálného času používáme "ID entity". Typickými entitami jsou uživatelé, hostitelé nebo zařízení. Dotazy v reálném čase obvykle požadují číselné agregace seskupené podle data nebo kategorie. Citus () odesílá dotazy do každého horizontálních oddílů pro částečné výsledky a sestaví konečnou odpověď na uzel koordinátora. Dotazy budou spouštěny nejrychleji, když co je možné co nejvíce přispívat, a pokud žádný jeden uzel nemůže provést neúměrný objem práce. #### <a name="best-practices"></a>Osvědčené postupy - **Vyberte sloupec s vysokou mohutnosti jako distribuční sloupec.** Pro porovnání je pole stav v tabulce Order s hodnotami New, placed a expedováno špatným výběrem distribučního sloupce. Předpokládá jenom několik hodnot, které omezují počet horizontálních oddílů, která můžou uchovávat data, a počet uzlů, které ho můžou zpracovat. Mezi sloupci s vysokou mohutnosti je také vhodné zvolit tyto sloupce, které se často používají v klauzulích Group by nebo as JOIN. - **Vyberte sloupec s ještě distribucí.** Pokud rozšíříte tabulku na sloupec zkosených na určité běžné hodnoty, data v tabulce budou v určitých horizontálních oddílůch sečtena. Uzly, které obsahují tyto horizontálních oddílů, končí více práce než jiné uzly. - **Rozdělte tabulky faktů a dimenzí na své společné sloupce.** Tabulka faktů může mít pouze jeden distribuční klíč. Tabulky, které se připojují k jinému klíči, nebudou společně umístěny v tabulce faktů. Vyberte jednu dimenzi, která se bude hledat na základě toho, jak často je připojená, a velikosti spojovacích řádků. - **Změňte některé tabulky dimenzí na referenční tabulky.** Pokud tabulka dimenze nemůže být společně umístěná v tabulce faktů, můžete zlepšit výkon dotazu distribucí kopií tabulky dimenzí do všech uzlů ve formě referenční tabulky. Příklad vytvoření tohoto typu aplikace najdete v [kurzu řídicího panelu v reálném čase](./tutorial-design-database-hyperscale-realtime.md) . ### <a name="time-series-data"></a>Data časové řady V rámci úlohy časových řad aplikace při archivaci starých informací dotazují poslední informace. Nejběžnější Chyba při modelování informací o datové řadě v Citus () je použití samotného časového razítka jako distribučního sloupce. Rozdělení hodnoty hash na základě času distribuuje náhodné časy do různých horizontálních oddílů A neudržuje rozsahy času společně v horizontálních oddílů. Dotazy, které zahrnují čas obvykle odkazují na časové rozsahy, například nejnovější data. Tento typ distribuce hodnoty hash vede k zatížení sítě. #### <a name="best-practices"></a>Osvědčené postupy - **Nevybírejte jako distribuční sloupec časové razítko.** Vyberte jiný distribuční sloupec. V aplikaci s více klienty použijte ID tenanta nebo v aplikaci v reálném čase použijte ID entity. - **Místo toho použijte dělení tabulky PostgreSQL.** Pomocí dělení tabulky můžete rozdělit velkou tabulku časově uspořádaných dat do několika zděděných tabulek s každou tabulkou, která obsahuje různé časové rozsahy. Distribuce tabulky Postgres-partition v Citus () vytvoří horizontálních oddílů pro zděděné tabulky. ## <a name="next-steps"></a>Další kroky - Přečtěte si, jak společné [umístění](concepts-hyperscale-colocation.md) mezi distribuovanými daty pomáhá rychle spustit dotazy.
96.584416
500
0.812962
ces_Latn
1.000001
a161dd8d056d78fb0add53a85335cd1ca1a6d966
4,046
md
Markdown
docs/vsto/how-to-programmatically-group-rows-in-a-worksheet.md
1DanielaBlanco/visualstudio-docs.es-es
9e934cd5752dc7df6f5e93744805e3c600c87ff0
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/vsto/how-to-programmatically-group-rows-in-a-worksheet.md
1DanielaBlanco/visualstudio-docs.es-es
9e934cd5752dc7df6f5e93744805e3c600c87ff0
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/vsto/how-to-programmatically-group-rows-in-a-worksheet.md
1DanielaBlanco/visualstudio-docs.es-es
9e934cd5752dc7df6f5e93744805e3c600c87ff0
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Procedimiento Agrupar filas en una hoja de cálculo mediante programación ms.date: 02/02/2017 ms.topic: conceptual dev_langs: - VB - CSharp helpviewer_keywords: - worksheets, creating groups - groups, creating in worksheets - ranges, creating groups - worksheets, clearing groups - groups - groups [Office development in Visual Studio], clearing in worksheets - worksheets, ungrouping rows and columns - rows [Office development in Visual Studio], ungrouping - columns [Office development in Visual Studio], ungrouping author: John-Hart ms.author: johnhart manager: jillfra ms.workload: - office ms.openlocfilehash: 5249edccaed24dbdc6eb42b5da3e78825f1a2053 ms.sourcegitcommit: c0202a77d4dc562cdc55dc2e6223c062281d9749 ms.translationtype: MT ms.contentlocale: es-ES ms.lasthandoff: 01/24/2019 ms.locfileid: "54874423" --- # <a name="how-to-programmatically-group-rows-in-a-worksheet"></a>Procedimiento Agrupar filas en una hoja de cálculo mediante programación Puede agrupar uno o más filas completas. Para crear un grupo en una hoja de cálculo, use un <xref:Microsoft.Office.Tools.Excel.NamedRange> control o un objeto nativo de rango de Excel. [!INCLUDE[appliesto_xlalldocapp](../vsto/includes/appliesto-xlalldocapp-md.md)] ## <a name="use-a-namedrange-control"></a>Usar un control NamedRange Si agrega un <xref:Microsoft.Office.Tools.Excel.NamedRange> control a un proyecto de nivel de documento en tiempo de diseño, puede utilizar el control para crear mediante programación un grupo. En el siguiente ejemplo se da por supuesto que hay tres <xref:Microsoft.Office.Tools.Excel.NamedRange> controles en la misma hoja de cálculo: `data2001`, `data2002`, y `dataAll`. Cada rango con nombre hace referencia a una fila completa en la hoja de cálculo. ### <a name="to-create-a-group-of-namedrange-controls-on-a-worksheet"></a>Para crear un grupo de controles NamedRange en una hoja de cálculo 1. Tres rangos con nombre de grupo mediante una llamada a la <xref:Microsoft.Office.Tools.Excel.NamedRange.Group%2A> método de cada rango. Este código se debe colocar en una clase Sheet, no en la clase `ThisWorkbook` . [!code-csharp[Trin_VstcoreExcelAutomation#32](../vsto/codesnippet/CSharp/Trin_VstcoreExcelAutomationCS/Sheet1.cs#32)] [!code-vb[Trin_VstcoreExcelAutomation#32](../vsto/codesnippet/VisualBasic/Trin_VstcoreExcelAutomation/Sheet1.vb#32)] > [!NOTE] > Para desagrupar filas, llame a la <xref:Microsoft.Office.Tools.Excel.NamedRange.Ungroup%2A> método. ## <a name="use-native-excel-ranges"></a>Utilice los rangos de Excel nativos El código supone que tiene tres rangos de Excel denominados `data2001`, `data2002`, y `dataAll` en una hoja de cálculo. ### <a name="to-create-a-group-of-excel-ranges-in-a-worksheet"></a>Para crear un grupo de rangos de Excel en una hoja de cálculo 1. Tres rangos con nombre de grupo mediante una llamada a la <xref:Microsoft.Office.Interop.Excel.Range.Group%2A> método de cada rango. En el siguiente ejemplo se da por supuesto que hay tres <xref:Microsoft.Office.Interop.Excel.Range> controles denominados `data2001`, `data2002`, y `dataAll` en la misma hoja de cálculo. Cada rango con nombre hace referencia a una fila completa en la hoja de cálculo. [!code-csharp[Trin_VstcoreExcelAutomation#33](../vsto/codesnippet/CSharp/Trin_VstcoreExcelAutomationCS/Sheet1.cs#33)] [!code-vb[Trin_VstcoreExcelAutomation#33](../vsto/codesnippet/VisualBasic/Trin_VstcoreExcelAutomation/Sheet1.vb#33)] > [!NOTE] > Para desagrupar filas, llame a la <xref:Microsoft.Office.Interop.Excel.Range.Ungroup%2A> método. ## <a name="see-also"></a>Vea también [Trabajar con hojas de cálculo](../vsto/working-with-worksheets.md) [NamedRange (control)](../vsto/namedrange-control.md) [Cómo: Agregar controles NamedRange a hojas de cálculo](../vsto/how-to-add-namedrange-controls-to-worksheets.md) [Parámetros opcionales en las soluciones de Office](../vsto/optional-parameters-in-office-solutions.md)
61.30303
456
0.7652
spa_Latn
0.772094
a162670f389e27cd7288d6bcd07077d1e184d310
870
md
Markdown
README.md
xiajunhust/tinywheel
0ca8ca57e98bd7af3283e4c6e2434f5bcfdf6162
[ "MIT" ]
18
2022-02-14T01:17:33.000Z
2022-03-29T07:12:16.000Z
README.md
xiajunhust/tinywheel
0ca8ca57e98bd7af3283e4c6e2434f5bcfdf6162
[ "MIT" ]
1
2022-03-29T05:43:58.000Z
2022-03-29T05:43:58.000Z
README.md
xiajunhust/tinywheel
0ca8ca57e98bd7af3283e4c6e2434f5bcfdf6162
[ "MIT" ]
3
2022-03-02T08:52:34.000Z
2022-03-22T04:35:36.000Z
# tinywheel ## 手把手教你项目实战 - 还在为没有项目经验而烦恼吗? - 还在开发哪些烂大街的XXX管理系统吗? - 还在为看不懂动则数万行代码的开源项目而苦恼么? 给大家带来各种分布式框架动手实现「徒手撸轮子」。使用Java技术栈。 力求用最少的代码实现一个完整项目的核心功能,麻雀虽小五脏俱全。让大家通过学习源码更深刻理解Java、分布式基础知识,以及掌握项目的开发流程,积累项目经验。 内容包括**源码+PPT+视频讲解**。 ppt下载: 链接:https://share.weiyun.com/pSVAiQZw 密码:关注公众号<b>「编程学习指南」</b>回复javappt获取。 ![ppt内容](https://github.com/xiajunhust/tinywheel/blob/main/javappt.png) 项目明细: 1. 利用原生Java nio实现cs通信程序 2. 基于Netty实现RPC框架 3. 分布式消息队列设计与实现 4. 基于Netty实现http server 5. 基于netty websocket实现聊天工具 6. 实现Spring IOC容器 7. 基于顺序日志的KV数据库 8. 从0实现数据库连接池 ## **面试资料大合集(高频面试题、HR面试题、技术终面面试题、模拟面试服务)** [面试资料面经](https://github.com/xiajunhust/tinywheel/tree/main/interv) --- 致力于分享干货,为每一位计算机CS学子学习道路上带来帮助。 也欢迎大家关注我的公众号「编程学习指南」,***获取更多计算机干货~提供大厂(阿里、字节、美团、快手、网易等)内推、简历修改、面试咨询、毕设咨询等服务***。 ![欢迎大家关注我的公众号](https://github.com/xiajunhust/awosome-cs/blob/main/QR-CODE.jpg)
22.307692
79
0.763218
yue_Hant
0.503926
a1632fff8bc357ee47e25d3e0c39709384d59cf9
2,552
md
Markdown
mip-jia-infinite/README.md
lxhmm921/mip-extensions-platform
9d2f4aa8d4708812c902b81469fa1d056c2bbabc
[ "MIT" ]
35
2017-07-07T01:15:46.000Z
2020-06-28T06:26:57.000Z
mip-jia-infinite/README.md
izzhip/mip-extensions-platform
d84c2297d6b3ced1d4cd4415ba6df03dad251609
[ "MIT" ]
48
2017-02-15T11:01:58.000Z
2019-05-22T03:05:38.000Z
mip-jia-infinite/README.md
izzhip/mip-extensions-platform
d84c2297d6b3ced1d4cd4415ba6df03dad251609
[ "MIT" ]
86
2017-03-02T06:39:22.000Z
2020-11-02T06:49:31.000Z
# mip-jia-infinite mip-jia-infinite 无限加载数据 标题|内容 ----|---- 类型|通用 支持布局|responsive,fixed-height,fill,container,fixed 所需脚本|https://c.mipcdn.com/static/v1/mip-jia-infinite/mip-jia-infinite.js ## 示例 ### 基本用法 ```html <mip-jia-infinite> <script type="application/json"> { "request": { "isJsonp": true, "resultType": "json", "url": "//test.m.jia.com/JiaZhuangxiu/ajaxGetSjList", "method": "get", "init": { "timeout": "10000" }, "headers": { "Content-type": "application/json" }, "body": { "format": "stringify", "data": { "page": 2, "user_id": 0, "mip": 1 } } }, "response": { "textIdCard": "diary-house-item", "parentBox": ".parent", "Datatier": "info", "size": 5, "pageSizeKey": "page", "event": "click", "button": ".button", "bottomDistance": 10, "loadingBox": ".loading" } } </script> <template type="mip-mustache"> {{{.}}} </template> </mip-jia-infinite> <div class="parent"></div> <button class="button">button</button> <div class="loading">loading...</div> <script src="https://c.mipcdn.com/static/v1/mip-mustache/mip-mustache.js"></script> ``` ## 属性 ### isJsonp 说明:是否为jsonp(接口) 必选项:是 类型:boolean 取值范围:true || false ### timeout 说明:请求连接超时时间 必选项:否 类型:number 单位:ms ### resultType 说明:返回数据类型(接口) 必选项:是 类型:string 取值范围:"json" || "text" ### url 说明:接口url 必选项:是 类型:string ### method 说明:请求方式(接口) 必选项:是 类型:string 取值范围:"get" || "post" ### init 说明:请求参数(接口) 必选项:是 类型:json对象 ### headers 说明:请求头(接口) 必选项:是 类型:json对象 ### body 说明:请求体(接口) 必选项:是 类型:json对象 ### format 说明:请求体传输格式(接口) 必选项:是 类型:string 取值范围:"string" || "stringify" || "json" 默认值:"json" ### parentBox 说明:父类元素(html都将append到改元素内部) 必选项:是 类型:string 取值范围:"#id" || ".class" ### pageSizeKey 说明:页码的key值 必选项:是 类型:number ### size 说明:每次请求的内容条数 必选项:是 类型:number ### event 说明:事件触发 必选项:是 类型:string 取值范围:"click" || "scroll" 默认值:"scroll" ### Datatier 说明:返回数据层级(用于找到需要的数据), 例如:{a:{b:{c:[]}}},要c的值,传递"a.b.c" 必选项:是 类型:string 默认值:空 ## 注意事项 需引入template模版: https://c.mipcdn.com/static/v1/mip-mustache/mip-mustache.js
14.021978
83
0.499216
yue_Hant
0.176375
a1637fb3198d81d4bd04409d16b229d9e3444ca5
1,799
md
Markdown
_posts/2013/dont-accept-the-status-quo.md
fharper/articles
8a1e2f5fc3609b285bcaea25f37c6816379d9a7b
[ "CC-BY-4.0" ]
null
null
null
_posts/2013/dont-accept-the-status-quo.md
fharper/articles
8a1e2f5fc3609b285bcaea25f37c6816379d9a7b
[ "CC-BY-4.0" ]
null
null
null
_posts/2013/dont-accept-the-status-quo.md
fharper/articles
8a1e2f5fc3609b285bcaea25f37c6816379d9a7b
[ "CC-BY-4.0" ]
null
null
null
--- ID: 2691 post_title: 'Don&#8217;t accept the status quo' post_name: dont-accept-the-status-quo author: Frédéric Harper post_date: 2013-12-28 19:31:21 layout: post link: > https://fred.dev/dont-accept-the-status-quo/ published: true tags: [ ] categories: - Brainer - English - FIX ANTIDOTE - FIX IMAGE - FIX LANGUAGE - FIX TAGS - FIX URL --- <figure><img alt="Creative Commons: https://j.mp/JA0Teb" src="http://fred.dev/wp-content/uploads/2013/12/dontbeaverage.jpg" width="600" height="410"/><figcaption> Creative Commons: https://j.mp/JA0Teb</figcaption></figure><p>Yesterday evening, I was watching the <a href="https://www.imdb.com/title/tt2357129/" target="_blank" rel="noopener noreferrer">movie Jobs</a>, about Steve Jobs. No matter if you are a fan of this man or Apple, we can agree on two things: he was a jerk, but he never accepted the status quo as a show stopper. I really enjoyed the movie as I recognized myself in it: don't get me wrong, I'm no way near to be the man he was, but I caught myself nod a couple of times like when Kutcher was reading this amazing quote:</p><blockquote>Here’s to the crazy ones. The misfits. The rebels. The trouble-makers. The round pegs in the square holes. The ones who see things differently…they change things. They push the human race forward. And while some may see them as the crazy ones, we see genius.</blockquote><p>I often see myself as a crazy one, someone who doesn't accept the status quo, a person who doesn't want to be average, a man who wants to make things happen, and to do epic shit... The status quo is a prison for your creativity: it's the limit that we collectively set to feel safe, but it's probably the less safe place to be. Starting now, be part of the crazy ones who push the human race forward...</p>
85.666667
1,438
0.743747
eng_Latn
0.990326
a16432ae9d562dae945e1f458db7bd131d654f72
5,103
md
Markdown
articles/resource-management/resource-reconciliation-overview.md
MicrosoftDocs/dynamics-365-project-operations-pr.pl-PL
7bb1c9bd4da2b21673789080ce3d8697f3179d70
[ "CC-BY-4.0", "MIT" ]
2
2020-05-18T17:15:57.000Z
2021-04-20T21:13:46.000Z
articles/resource-management/resource-reconciliation-overview.md
MicrosoftDocs/dynamics-365-project-operations-pr.pl-PL
7bb1c9bd4da2b21673789080ce3d8697f3179d70
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/resource-management/resource-reconciliation-overview.md
MicrosoftDocs/dynamics-365-project-operations-pr.pl-PL
7bb1c9bd4da2b21673789080ce3d8697f3179d70
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Omówienie uzgadniania zasobów description: Ten temat zawiera informacje o sprawdzaniu, czy rezerwazcje zasobów i przypsiania do projektów zawierają zgodne dane. author: ruhercul manager: AnnBe ms.date: 09/23/2020 ms.topic: article ms.prod: '' ms.service: dynamics-365-customerservice ms.technology: '' audience: Application User ms.reviewer: kfend ms.search.scope: '' ms.custom: '' ms.assetid: '' ms.search.region: Global ms.search.industry: Service industries ms.author: ruhercul ms.dyn365.ops.version: '' ms.search.validFrom: 2020-10-01 ms.openlocfilehash: 1b60ed9d15f51ff01f27bcc231f5db27513a838f ms.sourcegitcommit: a2c3cd49a3b667b8b5edaa31788b4b9b1f728d78 ms.translationtype: HT ms.contentlocale: pl-PL ms.lasthandoff: 09/28/2020 ms.locfileid: "3897464" --- # <a name="resource-reconciliation-overview"></a>Omówienie uzgadniania zasobów _**Ma zastosowanie do:** Project Operations dotyczące scenariuszy z zasobami i zasobami niemagazynowanymi, lekkiego wdrażania — od transakcji do fakturowania proforma_ Członkowie zespołu, rezerwacje i przydziały są luźno sprzężone. Innymi słowy, zasoby mogą mieć przydziały, ale mogą nie mieć rezerwacji lub mogą mieć rezerwacje bez przypisań. Najlepiej, kiedy rezerwacje i przypisania w projekcie są zgodne, bo wtedy zasoby mają zatwierdzoną dyspozycyjność do wykonania przypisanych im zadań. Jednak rezerwacje mogą być oparte na dostępności, a czasy zadań mogą ulec zmianie w miarę kontynuowania projektu. Z tego względu swobodne powiązanie rezerwacji i przypisań zapewnia elastyczność. Karta **Uzgadnianie** w formularzu **Projekt** pozwala menedżerom projektu uzgadniać rezerwacje członków zespołu i ich przypisania w zespołach projektów. Na karcie **Uzgadnianie** są także wyświetlane rezerwacje i przypisania na wszystkich poziomach szczegółowości, aż do poszczególnych zadań. Widać także godziny, które reprezentują okresy od miesięcy aż po dni. Na karcie przedstawiono również ogólną sumę netto projektu wraz z kolumną **Suma**. Dla każdego zasobu karta oblicza różnicę między rezerwacjami członka zespołu w projekcie a zestawieniem zadań przypisanych temu członkowi zespołu. Najlepiej, aby różnica wynosiła 0 (zero). Innymi słowy nie powinno być żadnej różnicy między rezerwacjami zasobu a jego przypisaniami zadań. Różnice są oznaczone kolorami i zacienione, aby zwrócić uwagę na dwa warunki: - **Niedobór rezerwacji** — niedobory rezerwacji powstają wtedy, gdy zasób ma więcej przypisań, niż rezerwacji. Ponieważ dyspozycyjność nie została zarezerwowana, menedżer projektu może naprawić tę sytuację poprzez rozszerzenie rezerwacji zasobu w sposób pokrywający niedobór. - **Nadmiarowe rezerwacje** — nadmierne rezerwacje występują, gdy zasób zarezerwowano do projektu, ale nie przypisano go do zadań. Ten warunek może być akceptowalny w przypadkach, gdy zasób został zarezerwowany w projekcie przed przydziałem zadania. Jednak w innych przypadkach być może nie jest planowane przypisanie zasobu do zadań. Wtedy menedżer projektu powinien rozważyć anulowanie rezerwacji zasobu, tak aby jego dyspozycyjność można było wykorzystać w innym projekcie. W niektórych przypadkach, kiedy oglądasz czas na wyższym poziomie niż poziom dnia (np. na poziomie miesiąca), może się pojawić różnica netto zasobu równa zero (innymi słowy, rezerwacje = przydziały). Natomiast w poziomie Tydzień można zauważyć, że istnieją przypisania równe 0 (zero) godzin i rezerwacje 40 godzin w pierwszym tygodniu miesiąca oraz przypisania 40 godzin i rezerwacje równe 0 (zero) godzin w drugim tygodniu miesiąca. Ogólnie rzecz biorąc, rezerwacje i przydziały są uzgadniane, ale różnią się od siebie między tygodniami. Po wyświetleniu wyższych poziomów czasu na karcie **Uzgadnianie** widać wskaźnik komórki informujący o różnicach na niższych poziomach czasu. Dwukrotne kliknięcie komórki umożliwia powiększenie i wyświetlenie różnicy. Następnie kliknij prawym przyciskiem myszy, aby pomniejszyć. Zaznaczając zasób, a następnie korzystając z przycisku **Następna różnica** z paska narzędzi siatki można przejść do następnej różnicy między rezerwacjami a przydziałami danego zasobu. Następnie można skorzystać z opcji **Poprzednia różnica**, aby wrócić. Istnieje również możliwość wyłączenia wskaźnika różnic i zachowania nawigacji w obszarze **ustawienia.** W sytuacjach, gdy istnieją przypisania zadań dla zasobu, ale nie ma rezerwacji, na stronie **Projekty** na karcie **Uzgadnianie** można wybrać niedobór rezerwacji, a następnie kliknąć przycisk **Rozszerz rezerwację**. Zostanie wyświetlone okno dialogowe **Rozszerz rezerwację**, w którym przedstawiono rezerwację potrzebną do wyeliminowania problemu niedoboru zasobu. Okno to pokazuje również istniejące rezerwacje zasobu we wszystkich projektach lub innych encjach zaplanowania. W przypadku wybrania opcji **OK**, aby utworzyć rezerwację zasobu niezależnie od dostępności tego zasobu, może wystąpić rezerwacja ponad dyspozycyjność. Następnie menedżer projektu lub menedżer zasobów może za pomocą tablicy harmonogramu rozwiązać sytuację, w której zasób został zarezerwowany ponad jego dyspozycyjność.
94.5
639
0.826181
pol_Latn
0.999995
a1643d843f13b8fbabb537ebc8a1c9fbfda13aad
9,637
md
Markdown
_includes/stats/it/feat/Person.md
fginter/docs-fginterfork
1012563e049f1ad57548bb71908c632b23ee64f9
[ "Apache-2.0" ]
null
null
null
_includes/stats/it/feat/Person.md
fginter/docs-fginterfork
1012563e049f1ad57548bb71908c632b23ee64f9
[ "Apache-2.0" ]
null
null
null
_includes/stats/it/feat/Person.md
fginter/docs-fginterfork
1012563e049f1ad57548bb71908c632b23ee64f9
[ "Apache-2.0" ]
null
null
null
-------------------------------------------------------------------------------- ## Treebank Statistics (UD_Italian) This feature is universal. It occurs with 3 different values: `1`, `2`, `3`. 22997 tokens (8%) have a non-empty value of `Person`. 3579 types (14%) occur at least once with a non-empty value of `Person`. 1285 lemmas (7%) occur at least once with a non-empty value of `Person`. The feature is used with 3 part-of-speech tags: [it-pos/VERB]() (12172; 4% instances), [it-pos/AUX]() (6412; 2% instances), [it-pos/PRON]() (4413; 2% instances). ### `VERB` 12172 [it-pos/VERB]() tokens (46% of all `VERB` tokens) have a non-empty value of `Person`. The most frequent other feature values with which `VERB` and `Person` co-occurred: <tt><a href="VerbForm.html">VerbForm</a>=Fin</tt> (12172; 100%), <tt><a href="Gender.html">Gender</a>=EMPTY</tt> (12172; 100%), <tt><a href="Mood.html">Mood</a>=Ind</tt> (11118; 91%), <tt><a href="Tense.html">Tense</a>=Pres</tt> (9514; 78%), <tt><a href="Number.html">Number</a>=Sing</tt> (9132; 75%). `VERB` tokens may have the following values of `Person`: * `1` (697; 6% of non-empty `Person`): <em>siamo, credo, sono, abbiamo, so, ho, vediamo, desidero, ricordo, spero</em> * `2` (451; 4% of non-empty `Person`): <em>v., Nomina, Dimmi, vedi, fai, Elenca, hai, ricevi, Dammi, crei</em> * `3` (11024; 91% of non-empty `Person`): <em>è, sono, ha, era, trova, hanno, fa, sia, fu, chiama</em> * `EMPTY` (14330): <em>essere, far, fatto, visto, fare, stato, vedere, stata, tenuto, avuto</em> <table> <tr><th>Paradigm <i>essere</i></th><th><tt>1</tt></th><th><tt>2</tt></th><th><tt>3</tt></th></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Cnd|<a href="Number.html">Number</a>=Sing|<a href="Tense.html">Tense</a>=Pres</tt></td><td><em>sarei</em></td><td></td><td><em>sarebbe</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Cnd|<a href="Number.html">Number</a>=Plur|<a href="Tense.html">Tense</a>=Pres</tt></td><td><em>saremmo</em></td><td></td><td><em>sarebbero</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Imp|<a href="Number.html">Number</a>=Sing|<a href="Tense.html">Tense</a>=Pres</tt></td><td></td><td><em>sii</em></td><td></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Ind|<a href="Number.html">Number</a>=Sing|<a href="Tense.html">Tense</a>=Fut</tt></td><td><em>sarò</em></td><td><em>sarai</em></td><td><em>sarà</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Ind|<a href="Number.html">Number</a>=Sing|<a href="Tense.html">Tense</a>=Imp</tt></td><td><em>ero</em></td><td></td><td><em>era</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Ind|<a href="Number.html">Number</a>=Sing|<a href="Tense.html">Tense</a>=Past</tt></td><td></td><td></td><td><em>fu</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Ind|<a href="Number.html">Number</a>=Sing|<a href="Tense.html">Tense</a>=Pres</tt></td><td><em>sono</em></td><td><em>sei</em></td><td><em>è, e', É, E’, E`</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Ind|<a href="Number.html">Number</a>=Plur|<a href="Tense.html">Tense</a>=Fut</tt></td><td><em>saremo</em></td><td></td><td><em>saranno</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Ind|<a href="Number.html">Number</a>=Plur|<a href="Tense.html">Tense</a>=Imp</tt></td><td><em>eravamo</em></td><td><em>eravate</em></td><td><em>erano</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Ind|<a href="Number.html">Number</a>=Plur|<a href="Tense.html">Tense</a>=Past</tt></td><td></td><td></td><td><em>furono</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Ind|<a href="Number.html">Number</a>=Plur|<a href="Tense.html">Tense</a>=Pres</tt></td><td><em>siamo</em></td><td><em>siete</em></td><td><em>sono, È</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Sub|<a href="Number.html">Number</a>=Sing|<a href="Tense.html">Tense</a>=Imp</tt></td><td><em>fossi</em></td><td></td><td><em>fosse</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Sub|<a href="Number.html">Number</a>=Sing|<a href="Tense.html">Tense</a>=Pres</tt></td><td></td><td></td><td><em>sia</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Sub|<a href="Number.html">Number</a>=Plur|<a href="Tense.html">Tense</a>=Imp</tt></td><td><em>fossimo</em></td><td></td><td><em>fossero</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Sub|<a href="Number.html">Number</a>=Plur|<a href="Tense.html">Tense</a>=Pres</tt></td><td></td><td></td><td><em>siano</em></td></tr> </table> ### `AUX` 6412 [it-pos/AUX]() tokens (86% of all `AUX` tokens) have a non-empty value of `Person`. The most frequent other feature values with which `AUX` and `Person` co-occurred: <tt><a href="VerbForm.html">VerbForm</a>=Fin</tt> (6412; 100%), <tt><a href="Mood.html">Mood</a>=Ind</tt> (5644; 88%), <tt><a href="Tense.html">Tense</a>=Pres</tt> (5478; 85%), <tt><a href="Number.html">Number</a>=Sing</tt> (4570; 71%). `AUX` tokens may have the following values of `Person`: * `1` (378; 6% of non-empty `Person`): <em>ho, abbiamo, siamo, possiamo, sono, vorrei, devo, stiamo, dobbiamo, avevo</em> * `2` (72; 1% of non-empty `Person`): <em>puoi, devi, hai, avete, sei, vuoi, Dovevi, Volete, abbiate, avevate</em> * `3` (5962; 93% of non-empty `Person`): <em>è, ha, sono, può, hanno, deve, possono, era, viene, aveva</em> * `EMPTY` (1046): <em>essere, stato, stata, stati, aver, state, poter, dovuto, potuto, voluto</em> <table> <tr><th>Paradigm <i>essere</i></th><th><tt>1</tt></th><th><tt>2</tt></th><th><tt>3</tt></th></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Cnd|<a href="Number.html">Number</a>=Sing|<a href="Tense.html">Tense</a>=Pres</tt></td><td></td><td></td><td><em>sarebbe</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Cnd|<a href="Number.html">Number</a>=Plur|<a href="Tense.html">Tense</a>=Pres</tt></td><td><em>saremmo</em></td><td></td><td><em>sarebbero</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Ind|<a href="Number.html">Number</a>=Sing|<a href="Tense.html">Tense</a>=Fut</tt></td><td></td><td></td><td><em>sarà</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Ind|<a href="Number.html">Number</a>=Sing|<a href="Tense.html">Tense</a>=Imp</tt></td><td><em>ero</em></td><td></td><td><em>era</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Ind|<a href="Number.html">Number</a>=Sing|<a href="Tense.html">Tense</a>=Past</tt></td><td><em>Fui</em></td><td></td><td><em>fu</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Ind|<a href="Number.html">Number</a>=Sing|<a href="Tense.html">Tense</a>=Pres</tt></td><td><em>sono</em></td><td><em>sei</em></td><td><em>è, E'</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Ind|<a href="Number.html">Number</a>=Plur|<a href="Tense.html">Tense</a>=Fut</tt></td><td></td><td></td><td><em>saranno</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Ind|<a href="Number.html">Number</a>=Plur|<a href="Tense.html">Tense</a>=Imp</tt></td><td><em>eravamo</em></td><td></td><td><em>erano</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Ind|<a href="Number.html">Number</a>=Plur|<a href="Tense.html">Tense</a>=Past</tt></td><td></td><td></td><td><em>furono</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Ind|<a href="Number.html">Number</a>=Plur|<a href="Tense.html">Tense</a>=Pres</tt></td><td><em>siamo</em></td><td><em>siete</em></td><td><em>sono, son</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Sub|<a href="Number.html">Number</a>=Sing|<a href="Tense.html">Tense</a>=Imp</tt></td><td><em>fossi</em></td><td></td><td><em>fosse</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Sub|<a href="Number.html">Number</a>=Sing|<a href="Tense.html">Tense</a>=Pres</tt></td><td></td><td></td><td><em>sia</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Sub|<a href="Number.html">Number</a>=Plur|<a href="Tense.html">Tense</a>=Imp</tt></td><td></td><td></td><td><em>fossero</em></td></tr> <tr><td><tt><a href="Mood.html">Mood</a>=Sub|<a href="Number.html">Number</a>=Plur|<a href="Tense.html">Tense</a>=Pres</tt></td><td></td><td></td><td><em>siano</em></td></tr> </table> ### `PRON` 4413 [it-pos/PRON]() tokens (41% of all `PRON` tokens) have a non-empty value of `Person`. The most frequent other feature values with which `PRON` and `Person` co-occurred: <tt><a href="PronType.html">PronType</a>=Clit</tt> (3729; 85%), <tt><a href="Gender.html">Gender</a>=EMPTY</tt> (3288; 75%), <tt><a href="Number.html">Number</a>=EMPTY</tt> (2409; 55%). `PRON` tokens may have the following values of `Person`: * `1` (535; 12% of non-empty `Person`): <em>mi, ci, noi, io, me, I, ce, m', ve</em> * `2` (160; 4% of non-empty `Person`): <em>ti, vi, te, tu, voi</em> * `3` (3718; 84% of non-empty `Person`): <em>si, lo, la, gli, li, lui, l', le, loro, se</em> * `EMPTY` (6450): <em>che, chi, cui, ne, qual, ci, quanto, c', quale, quello</em> <table> <tr><th>Paradigm <i>vi</i></th><th><tt>1</tt></th><th><tt>2</tt></th></tr> <tr><td><tt></tt></td><td><em>ve</em></td><td><em>vi</em></td></tr> </table> `Person` seems to be **lexical feature** of `PRON`. 98% lemmas (39) occur only with one value of `Person`. ## Relations with Agreement in `Person` The 10 most frequent relations where parent and child node agree in `Person`: <tt>VERB --[<a href="../dep/conj.html">conj</a>]--> VERB</tt> (677; 61%), <tt>VERB --[<a href="../dep/expl:impers.html">expl:impers</a>]--> PRON</tt> (488; 78%), <tt>AUX --[<a href="../dep/expl:impers.html">expl:impers</a>]--> PRON</tt> (5; 100%), <tt>AUX --[<a href="../dep/conj.html">conj</a>]--> AUX</tt> (3; 100%).
90.915094
384
0.598838
yue_Hant
0.793159
a16461da75c4ad7f0d1b40772c81e245a01409d7
2,664
md
Markdown
README.md
lehostert/Stats_Workshop_SEL
f1767f7096573f719b3722193b72bdbf2fe86bde
[ "BSD-3-Clause" ]
1
2019-03-15T11:25:51.000Z
2019-03-15T11:25:51.000Z
README.md
lehostert/Stats_Workshop_SEL
f1767f7096573f719b3722193b72bdbf2fe86bde
[ "BSD-3-Clause" ]
1
2018-12-18T04:41:36.000Z
2018-12-21T02:53:13.000Z
README.md
lehostert/Stats_Workshop_SEL
f1767f7096573f719b3722193b72bdbf2fe86bde
[ "BSD-3-Clause" ]
1
2018-12-18T03:32:33.000Z
2018-12-18T03:32:33.000Z
# INHS Stream Ecology Lab R Stats Workshop ## References ### Random Forest - D. Cutler _et al._, "[Random Forests for Classification in Ecology](https://esajournals.onlinelibrary.wiley.com/doi/abs/10.1890/07-0539.1)," Ecology, 10.1890/07-0539.1, (2783-2792), (2007). - R. Genuera, J. Poggiab, and C. Tuleau-Malot, "[Variable selection using random forests](https://www.sciencedirect.com/science/article/abs/pii/S0167865510000954)", Pattern Recognition Letters, 10.1016/j.patrec.2010.03.014, (2225-2236), (2010). - Cosma Shalizi, [Statistics 36-350: Data Mining](https://www.stat.cmu.edu/~cshalizi/350/), Lecture 22: [Classification and Regression Trees](https://www.stat.cmu.edu/~cshalizi/350/lectures/22/lecture-22.pdf) ### AIC - R. MacNally _et al._, "[Model selection usning information cirteria, but is the "best" model any good?] (https://besjournals.onlinelibrary.wiley.com/doi/full/10.1111/1365-2664.13060)," Journal of Applied Ecology, 10.1111/1365-2664.13060 (2017). ### Ordination Techniques - Y. Cao _et al._, "[A method for measuring the comparibility of different sampling methods used in biological surveys: implications for data integration and synthesis](https://onlinelibrary.wiley.com/doi/full/10.1111/j.1365-2427.2005.01377.x)," Freshwater Biology, 10.1111/j.1365-2427.2005.01377.x, (1105-1115), (2005) - Y. Cao & C.P. Hawkins, "[Weighting effective number of species measure by abundance weakens detection of diversity responses](https://onlinelibrary.wiley.com/doi/full/10.1111/j.1365-2427.2005.01377.x)," Journal of Applied Ecology, 10.1111/1365-2664.13345, (2019) ## Software References - [tree](https://cran.r-project.org/web/packages/tree/index.html): Classification and Regression Trees [![rdrr.io badge](https://img.shields.io/badge/view%20on-rdrr.io-blue.svg)](https://rdrr.io/cran/tree/man/tree.html) - [randomForest](https://cran.r-project.org/web/packages/randomForest/index.html): Classification and Regression with Random Forest [![rdrr.io badge](https://img.shields.io/badge/view%20on-rdrr.io-blue.svg)](https://rdrr.io/cran/randomForest/man/randomForest.html) - [VSURF](https://cran.r-project.org/web/packages/VSURF/index.html): Variable Selection Using Random Forests [![rdrr.io badge](https://img.shields.io/badge/view%20on-rdrr.io-blue.svg)](https://rdrr.io/cran/VSURF/man/VSURF.html) - [vegan](https://cran.r-project.org/web/packages/vegan/index.html): Community Ecology Package [![rdrr.io badge](https://img.shields.io/badge/view%20on-rdrr.io-blue.svg)](https://rdrr.io/rforge/vegan/) ## Authors Primary Author: Lauren E. Hostert Contributed Tutorials and Scripts: Dr. Yong Cao, Jared Parker, and Dr. Tyler Schartel
95.142857
319
0.755631
yue_Hant
0.246126
a16475ab147620d0603665c7ec9d17bb5d79ad57
580
md
Markdown
docs/visual-basic/misc/bc30034.md
stjeong/docs
0536ac547edb5de3c2f67ea1d632f480d50b1066
[ "CC-BY-4.0", "MIT" ]
1
2020-09-04T07:40:02.000Z
2020-09-04T07:40:02.000Z
docs/visual-basic/misc/bc30034.md
stjeong/docs
0536ac547edb5de3c2f67ea1d632f480d50b1066
[ "CC-BY-4.0", "MIT" ]
1
2019-10-18T18:30:39.000Z
2019-10-18T18:30:39.000Z
docs/visual-basic/misc/bc30034.md
stjeong/docs
0536ac547edb5de3c2f67ea1d632f480d50b1066
[ "CC-BY-4.0", "MIT" ]
1
2019-11-12T04:31:34.000Z
2019-11-12T04:31:34.000Z
--- title: "Bracketed identifier is missing closing ']'" ms.date: 07/20/2015 f1_keywords: - "bc30034" - "vbc30034" helpviewer_keywords: - "BC30034" ms.assetid: 46f25ddb-0d9f-48f8-8656-1a880ba8a1ba --- # Bracketed identifier is missing closing ']' Brackets in an escaped name must occur in matching pairs. **Error ID:** BC30034 ## To correct this error - Place a closing bracket at the end of the escaped name. ## See also - [Declared Element Names](../../visual-basic/programming-guide/language-features/declared-elements/declared-element-names.md)
26.363636
126
0.712069
eng_Latn
0.93169
a1649ee9bad15a1e28f6224fa7ed82aa9bc6e834
1,613
md
Markdown
AlchemyInsights/commercial-dialogues/microsoft-365-enterprise-plan-differences.md
isabella232/OfficeDocs-AlchemyInsights-pr.hr-HR
558012843738ad9ca3fdd26aa6c9f99eb46a16b0
[ "CC-BY-4.0", "MIT" ]
1
2020-05-19T19:06:40.000Z
2020-05-19T19:06:40.000Z
AlchemyInsights/commercial-dialogues/microsoft-365-enterprise-plan-differences.md
MicrosoftDocs/OfficeDocs-AlchemyInsights-pr.hr-HR
82a9de1b7009fd4a1fd9411da08a63cbb1e6c89a
[ "CC-BY-4.0", "MIT" ]
4
2020-06-02T23:32:03.000Z
2022-02-09T06:53:04.000Z
AlchemyInsights/commercial-dialogues/microsoft-365-enterprise-plan-differences.md
isabella232/OfficeDocs-AlchemyInsights-pr.hr-HR
558012843738ad9ca3fdd26aa6c9f99eb46a16b0
[ "CC-BY-4.0", "MIT" ]
3
2019-10-11T19:14:05.000Z
2021-10-09T10:52:06.000Z
--- title: Microsoft 365 Enterprise plan razlike ms.author: v-jmathew author: v-jmathew manager: dansimp audience: Admin ms.topic: article ms.service: o365-administration ROBOTS: NOINDEX, NOFOLLOW localization_priority: Normal ms.collection: Adm_O365 ms.custom: - "9000760" - "7391" ms.openlocfilehash: 1f89ef2bc4b477ea9071b7f6eb9e5982a77a2fbe5099a633908b5026ccaf26b1 ms.sourcegitcommit: b5f7da89a650d2915dc652449623c78be6247175 ms.translationtype: MT ms.contentlocale: hr-HR ms.lasthandoff: 08/05/2021 ms.locfileid: "54119240" --- # <a name="microsoft-365-enterprise-plan-differences"></a>Microsoft 365 Enterprise plan razlike Microsoft 365 Enterprise E5 obuhvaća sve značajke sustava Microsoft 365 Enterprise E3 te napredne sigurnosne mjere kao što su: - Zaštita od prijetnji - Napredno upravljanje podacima - Customer Lockbox - Microsoft 365 Cloud App Security - Advanced eDiscovery - Rights Management Services - Azure Key Vault Microsoft 365 Enterprise E5 sadrži i napredne analitičke i glasovne mogućnosti, kao što su: - Live Dashboards - Izvješća s dodatkom Power BI - Modern Voice - Audiokonferencije - Mrežni sastanci Dodatne informacije o Microsoft 365 Enterprise E5 ili registraciji za probnu pretplatu potražite u [članku Isprobajte ili kupite Microsoft 365 pretplatu](https://go.microsoft.com/fwlink/?linkid=2099673). Da biste usporedili značajke u sklopu tarife Enterprise, pogledajte [usporedbu tarife Enterprise](https://go.microsoft.com/fwlink/?linkid=2097200). Cijenili bismo vaše povratne informacije, pa odaberite Da/Ne na pitanje koje će se pojaviti, a zatim ocijenite svoje iskustvo.
34.319149
203
0.815251
hrv_Latn
0.604075
a16576a733157680111c65c98a12a498fd6fff8d
3,113
md
Markdown
_posts/2017-07-31-5_reasons_why_you_need_a_website.md
rahulkrishna412/rahulkrishna412.github.io
907298604ee3b2fd392c62426e6cd9c816495362
[ "MIT" ]
null
null
null
_posts/2017-07-31-5_reasons_why_you_need_a_website.md
rahulkrishna412/rahulkrishna412.github.io
907298604ee3b2fd392c62426e6cd9c816495362
[ "MIT" ]
null
null
null
_posts/2017-07-31-5_reasons_why_you_need_a_website.md
rahulkrishna412/rahulkrishna412.github.io
907298604ee3b2fd392c62426e6cd9c816495362
[ "MIT" ]
null
null
null
--- layout: post title: 5 Reasons why you need a website categories: website-development topic: Announcement thumb: 5_reasons_why_you_need_a_website_thumb.jpg cover: http://res.cloudinary.com/rahulkrishna/image/upload/c_crop,g_center,h_1043,w_1600/v1501567179/rahulkrishna.xyz/5_reasons.jpg abstract: Website is a basic necessity for any business - Just like food, cloth and shelter for normal human being. Why? Read this article to find out. --- There are so many people you will meet who will motivate you, urge you and even persuade you to get a website. A couple of Google searches and you will start viewing advertisements about it - everywhere, and marketing people hunting you down. It can get frustrating! So, this question will definitely come to your mind - Why should I have a website? Do I really need it? Well, a simple answer to the question is - Yes, you need it. Because.. ## #5 You’ll show up in Google search results. Everyone has got a nice smart phone with Internet connection in it. In this busy world, expecting someone to come to your office by looking at your address in your visiting card seems far fetched. Most often than not, they will search for you - online. If you haven't got a website you are in bad luck, because they won't find you. When they won't find you, your credibility will take a deep plunge. ## #4 A website builds credibility. When people discover that you have a website, they perceive you as a company that is serious about business. If you have got a great professional looking website with up-to-date informations, your potential customer will feel assured and satisfied about your business. ## #3 A website sells your products/services online 24/7. With your website, you can showcase your products and services 24/7. Whenever someone comes to your website, he/she can see what you are offering and get information about it. All this without you having to spend money on a marketing person. You can sell your products even when you are sleeping. You never know - Some of your clients may like shopping late-night when it is quieter. ## #2 A website helps you connect with new customers. Local business have geographical constraints. There are limited number of people living nearby, hence limited customers. Come online and you get almost unlimited market. You get access to customers living far and wide. All you need to do is to tap into this market and see your business shine! ## #1 Websites are affordable. If we consider all the benefits of having a website and the cost involved in having one, you will find that having a website is cheap, very cheap. It all depends on how much you are willing to spend. If you low on budget - you can get a basic website at just 10-15k(in India). If you can spend some more bucks - you can have custom made, designer website under 50k. These are one time rates. Going ahead you just need to renew the domain name and hosting package which may cost you around 2-3k per year. Think about it.. Even a decent mobile phone costs more! **If you are ready to get a website, I can make you one at very affordable price.**
115.296296
559
0.785416
eng_Latn
0.99976
a1663f5b8e207b6c27d29c5acf301d4bcde81efb
1,950
markdown
Markdown
_posts/2019-05-12-Plotting.markdown
melissakendall/author-website
3aeb8c31b85ae91c25c5416fd1a3bb805e3ee417
[ "MIT" ]
null
null
null
_posts/2019-05-12-Plotting.markdown
melissakendall/author-website
3aeb8c31b85ae91c25c5416fd1a3bb805e3ee417
[ "MIT" ]
null
null
null
_posts/2019-05-12-Plotting.markdown
melissakendall/author-website
3aeb8c31b85ae91c25c5416fd1a3bb805e3ee417
[ "MIT" ]
null
null
null
--- layout: post title: "Plotting" date: 2019-05-12 categories: [ Writing ] tags: [ Writing ] thumbnail: Writing1.png --- I heard it again and again as I was preparing to start my first novel for NaNoWriMo, but it never truly registered. Writing is HARD. Here is a timeline of the major events of the past few months. * October, 2018 - Discover NaNoWriMo. Commit to writing a novel, start writing without any research or planning (pantsing!). * November, 2018 - Struggle through 50,000 words of a meandering, unstructured novel. * December, 2018 - Read dozens of books on story structure, plotting, characters, mystery writing, etc * January, 2019 - Spend over a hundred hours editing. Watch many blogs from writers on YouTube getting advice. * February, 2019 - Very stupidly submit to a small publisher, naturally they never respond because what I submitted, while much better then October's work, was missing most crucial story elements and didn't follow any of the proper beats and flat character arcs. * March, 2019 - Reading! I dive into the genre I want to write for and read 20-30 books, from this point on I read at least an hour every night of my target genre. Very little editing occurs because I am so exhausted with editing. This is what happens when you don't outline! * April, 2019 - Big time research. Another hundred hours analyzing some of my favourite books. Learning to recognize why some books are good and others are not. Dissecting books to identify their character arcs, major plot points, etc. Participate in Camp NaNoWriMo mostly to get myself back into writing. * May, 2019 - Developing an outline for the trilogy. Reading and writing at least an hour each every night. The outline is finally starting to come together. It has been quite the journey, and if this were a novel, this would be the "Midpoint", where I change from passive to active, and shift the goal from "publish something" to "write a story I love."
81.25
305
0.774359
eng_Latn
0.99975
a16668e74239add19c4a9081e5c736f7f7ad90e9
2,472
md
Markdown
docs/index.md
GilmanLab/docs
3254962139f8d93854fba581a9a147d4d959153e
[ "MIT" ]
null
null
null
docs/index.md
GilmanLab/docs
3254962139f8d93854fba581a9a147d4d959153e
[ "MIT" ]
null
null
null
docs/index.md
GilmanLab/docs
3254962139f8d93854fba581a9a147d4d959153e
[ "MIT" ]
null
null
null
# Welcome to Gilman Lab Gilman Lab (glab for short) is a personal project started by Joshua Gilman in order to learn and apply best practices for managing a modern application deployment environment. Much of the project is heavily influenced by DevOps practices and is geared towards "automation first" where applicable. The infrastructure for the project is provided by a homelab environment and is primarily powered by [VMWare vSphere](https://www.vmware.com/products/vsphere.html). The primary purpose of this documentation is to provide a reference for the architecture of the lab, provide additional details for internal workings, and provide useful procedures for performing day-to-day in the lab environment. The secondary purpose of this documentation is to provide a learning opportunity for others (especially those in the homelab community) as well as document the project for parties who have been directed here from a resume. This documentation is broken up into logical segments to ease the process of finding the desired information. Additionally, the search box located in the header can be used for locating specific information by keyword. The documentation is automatically generated by [MkDocs](https://www.mkdocs.org/) and uses the popular [material](https://squidfunk.github.io/mkdocs-material/) theme. It is hosted via [Github Pages](https://pages.github.com/) and the source code for the documentation can be found in its [repository](https://github.com/GilmanLab/docs). # Project Structure All components of glab have been incorporated into the "Gilman Lab" Github organization. The repositories held within combine to form the source code and configuration of the entire project. Currently, the project is organized as follows: - [GilmanLab/cluster](https://github.com/GilmanLab/cluster) - Currently consists of a Kapitan inventory used to build and deploy the glab k8s clusters. This portion is evolving frequently and will likely change in the future. - [GilmanLab/dev](https://github.com/GilmanLab/dev) - Configuration files for setting up a dev environment to work on glab - [GilmanLab/docs](https://github.com/GilmanLab/docs) - The source code for this documentation - [GilmanLab/images](https://github.com/GilmanLab/images) - Packer configurations for the base images that form the glab infrastructure - [GilmanLab/precommit](https://github.com/GilmanLab/precommit) - Custom pre-commits to enforce consistency across files
56.181818
80
0.802184
eng_Latn
0.997912
a166c60876b47bdc750ea7935139f309e3628d2f
605
md
Markdown
README.md
yvan-burrie/ensemble-win-reg
f63aafb25eef3b67a2e0b9342b0bb4d9aaf24493
[ "MIT" ]
null
null
null
README.md
yvan-burrie/ensemble-win-reg
f63aafb25eef3b67a2e0b9342b0bb4d9aaf24493
[ "MIT" ]
null
null
null
README.md
yvan-burrie/ensemble-win-reg
f63aafb25eef3b67a2e0b9342b0bb4d9aaf24493
[ "MIT" ]
null
null
null
# Ensemble Windows Registry A simple [Win32 Registry](https://docs.microsoft.com/en-us/windows/win32/sysinfo/structure-of-the-registry) encapsulation. ## Usage Include the `Registry` class. ```c++ #include <ensemble/registry.cpp> using Ensemble::Registry; ``` We create an instance of `Registry` with a key representing our software. ```c++ Registry* registry = new Registry("Software\\Sample"); ``` We can add an integer into the registry. ```c++ registry->RegSetInt(TRUE, "sample-integer", 101); ``` We can retrieve the integer. ```c++ int i = registry->RegGetInt(TRUE, "sample-integer"); ```
19.516129
122
0.712397
eng_Latn
0.532566
a166d475981af4f262f7dda58a2d4b594f616be3
879
md
Markdown
docs/framework/unmanaged-api/alink/getalinkmessagedll-function.md
RickAcb/docs
837f804b43e983b5bd9419939e8fcc1fd250d8e5
[ "CC-BY-4.0", "MIT" ]
32
2017-11-09T20:29:45.000Z
2021-11-22T15:54:00.000Z
docs/framework/unmanaged-api/alink/getalinkmessagedll-function.md
RickAcb/docs
837f804b43e983b5bd9419939e8fcc1fd250d8e5
[ "CC-BY-4.0", "MIT" ]
2
2018-12-03T20:19:56.000Z
2019-06-12T17:48:50.000Z
docs/framework/unmanaged-api/alink/getalinkmessagedll-function.md
RickAcb/docs
837f804b43e983b5bd9419939e8fcc1fd250d8e5
[ "CC-BY-4.0", "MIT" ]
22
2017-11-27T00:38:36.000Z
2021-03-12T06:51:43.000Z
--- title: "GetALinkMessageDll Function" ms.date: "03/30/2017" api_name: - "GetALinkMessageDll" api_location: - "alink.dll" api_type: - "DLLExport" f1_keywords: - "GetALinkMessageDll" helpviewer_keywords: - "Alink API, GetALinkMessageDll function" - "GetALinkMessageDll function" ms.assetid: 67985a22-88a2-4c54-8d99-4bcde9d6213e topic_type: - "apiref" author: "mairaw" ms.author: "mairaw" --- # GetALinkMessageDll Function Finds and loads the message DLL. Returns 0 if the message DLL could not be located or loaded. The message DLL should be either in a subdirectory whose name is a language ID, or in the current directory. ## Syntax ```cpp HINSTANCE WINAPI GetALinkMessageDll(); ``` ## Requirements **Header:** alink.h **Library**: alink.dll ## See also - [Al.exe (Assembly Linker)](../../tools/al-exe-assembly-linker.md)
23.131579
204
0.704209
eng_Latn
0.463838
a166dc463325b0cb7fb96990c53a904dde207b97
7,587
md
Markdown
tests/functional-tests/README.md
tychristensen/ibm-spectrum-scale-csi
acbeb8e396622cba028b6cafe0d013e251385f64
[ "Apache-2.0" ]
null
null
null
tests/functional-tests/README.md
tychristensen/ibm-spectrum-scale-csi
acbeb8e396622cba028b6cafe0d013e251385f64
[ "Apache-2.0" ]
null
null
null
tests/functional-tests/README.md
tychristensen/ibm-spectrum-scale-csi
acbeb8e396622cba028b6cafe0d013e251385f64
[ "Apache-2.0" ]
null
null
null
# Functional Test Automation Suite This Functional Test Automation Suite exercises and tests the IBM Spectrum Scale CSI functionality. ### Tested Testbed environment - IBM Spectrum Scale Cluster - 5.1.0.1+ Version (**IBM Spectrum Scale supported kernel version**) - Kubernetes Cluster Version 1.19 - 1.22 - Openshift Version 4.8.x, 4.9.x - IBM Spectrum Scale Cluster CSI Version - 2.4.0+ ### How to run IBM Spectrum Scale CSI test automation using container Note: Use `oc` command instead of `kubectl` in case of Openshift Container Platform #### In case IBM Spectrum Scale CSI operator and driver is already deployed - Configuring parameters such as uid/gid, secret username/password, cacert path & remote/local filesystem name, you must modify relevant fields in [test.config](./config/test.config) file. - Create config map using [test.config](./config/test.config) & kubeconfig file (default location `~/.kube/config`) ``` kubectl create configmap test-config --from-file=test.config=<test.config file path> --from-file=kubeconfig=<kubeconfig file path> ``` ``` eg. kubectl create configmap test-config --from-file=test.config=/root/ibm-spectrum-scale-csi/tests/functional-tests/config/test.config --from-file=kubeconfig=/root/.kube/config ``` #### In case IBM Spectrum Scale CSI operator and driver is not deployed - Configure parameters in [csiscaleoperators.csi.ibm.com_cr.yaml](../../operator/config/samples/csiscaleoperators.csi.ibm.com_cr.yaml) file. - Configuring parameters such as uid/gid, secret username/password, cacert path & remote/local filesystem name, you must modify relevant fields in [test.config](./config/test.config) file. - Create config map using [test.config](./config/test.config),[csiscaleoperators.csi.ibm.com_cr.yaml](../..//operator/config/samples/csiscaleoperators.csi.ibm.com_cr.yaml) & kubeconfig file (default location `~/.kube/config`) ``` kubectl create configmap test-config --from-file=test.config=<test.config file path> --from-file=csiscaleoperators.csi.ibm.com_cr.yaml=<csiscaleoperators.csi.ibm.com_cr.yaml file path> --from-file=kubeconfig=<kubeconfig file path> ``` ``` eg. kubectl create configmap test-config --from-file=test.config=/root/ibm-spectrum-scale-csi/tests/functional-tests/config/test.config --from-file=csiscaleoperators.csi.ibm.com_cr.yaml=/root/ibm-spectrum-scale-csi/operator/config/samples/csiscaleoperators.csi.ibm.com_cr.yaml --from-file=kubeconfig=/root/.kube/config ``` - To run the tests in namespace other than ibm-spectrum-scale-csi-driver (default) , please use --testnamespace parameter - If operator is not running in namespace ibm-spectrum-scale-csi-driver (default) , please use --operatornamespace with value where operator is already running - If operator yaml file is not at ../../generated/installer/ibm-spectrum-scale-csi-operator-dev.yaml (default), please use --operatoryaml with value of operator yaml file path - if you want to use SSL=enable, for cacert configmap use following command and change the path in test.config file as `config/local.crt` ``` kubectl create configmap test-config --from-file=test.config=<test.config filepath> --from-file=csiscaleoperators.csi.ibm.com_cr.yaml=<csiscaleoperators.csi.ibm.com_cr.yaml file path> --from-file=kubeconfig=<kubeconfig file path> --from-file=local.crt=<local.crt file path> ``` Note : for remote crt, pass remote.crt file in the same configmap and user in the test.config file - Configure sample [csi-test-pod.yaml](./csi-test-pod.yaml) file ``` kind: Pod apiVersion: v1 metadata: name: ibm-spectrum-scale-csi-test-pod spec: containers: - name: csi-test image: quay.io/jainbrt/ibm-spectrum-scale-csi-test:x86 #container iamge for x86 # image: quay.io/jainbrt/ibm-spectrum-scale-csi-test:ppcle64 #container iamge for ppcle64 # image: quay.io/jainbrt/ibm-spectrum-scale-csi-test:s390x #container iamge for s390x securityContext: privileged: true command: [ "/bin/sh", "-c", "--" ] args: [ "while true; do sleep 120; done;" ] imagePullPolicy: "Always" volumeMounts: - mountPath: /data name: report - mountPath: /ibm-spectrum-scale-csi/tests/functional-tests/config name: test-config volumes: - configMap: defaultMode: 420 name: test-config name: test-config - hostPath: path: /ibm/gpfs0 #local path for saving the test reports files on node of running pod name: report restartPolicy: "Never" nodeSelector: kubernetes.io/hostname: <Worker Node name> #node selector for scheduling the test pod ``` - Create test pod ``` kubectl apply -f <test-pod-yaml-file> eg. kubectl apply -f csi-test-pod.yaml ``` - For changing the name of html report, pass the `--html` with remote file name (optional).For example : ### Run driver tests on primary cluster using driver_test.py as shown below - ``` #Run all testcases in driver testsuite using: kubectl exec -it <csi-test-pod-name> -- pytest driver_test.py --html=/data/<report-name>.html #Run any specific testcase in testsuite using: kubectl exec -it <csi-test-pod-name> -- pytest driver_test.py::<test_name> --html=/data/<report-name>.html eg. kubectl exec -it <csi-test-pod-name> -- pytest driver_test.py::test_driver_dynamic_pass_1 --html=/data/<report-name>.html ``` ### Run operator tests using operator_test.py as shown below - ``` #Run all testcases in operator testsuite using: kubectl exec -it <csi-test-pod-name> -- pytest operator_test.py --html=/data/<report-name>.html #Run any specific testcase in testsuite using: kubectl exec -it <csi-test-pod-name> -- pytest operator_test.py::<test_name> --html=/data/<report-name>.html eg. kubectl exec -it <csi-test-pod-name> -- pytest operator_test.py::test_operator_deploy --html=/data/<report-name>.html ``` ### Run driver tests on remote cluster using remote_test.py as shown below - ``` #Run all testcases in driver testsuite using: kubectl exec -it <csi-test-pod-name> -- pytest remote_test.py --html=/data/<report-name>.html #Run any specific testcase in testsuite using: kubectl exec -it <csi-test-pod-name> -- pytest remote_test.py::<test_name> --html=/data/<report-name>.html eg. kubectl exec -it <csi-test-pod-name> -- pytest remote_test.py::test_driver_dynamic_pass_1 --html=/data/<report-name>.html ``` ### List available Driver & Operator tests Available functional tests list for driver & operator can be collected using following command ``` kubectl exec -it <csi-test-pod-name> -- pytest --collect-only ``` ### For running full testsuite with the tests which take long time, use `--runslow` parameter ( these tests are being marked with @pytest.mark.slow). For example : ``` kubectl exec -it <csi-test-pod-name> -- pytest snapshot_test.py --runslow --html=/data/<report-name>.html #This will run all testcases including those marked with slow kubectl exec -it <csi-test-pod-name> -- pytest snapshot_test.py::test_snapshot_dynamic_multiple_snapshots_256 --runslow --html=/data/<report-name>.html ``` ### Run specific testcases using marker ``` pytest driver_test.py -m marker_name eg. kubectl exec -it <csi-test-pod-name> -- pytest driver_test.py -m regression --html=/data/<report-name>.html ``` ### Run Stress/Load testcases using stresstest marker and runslow ``` pytest driver_test.py -m "stresstest" --runslow --workers 6 #(ensure driver is already deployed before using --workers) eg. kubectl exec -it <csi-test-pod-name> -- pytest driver_test.py -m "stresstest" --runslow --workers 6 --html=/data/<report-name>.html ```
45.704819
321
0.738368
eng_Latn
0.630098
a16799e1c54e6c3a0924f591cbd9c3521a4719ef
5,025
md
Markdown
docs/build/reference/yl-inject-pch-reference-for-debug-library.md
Mdlglobal-atlassian-net/cpp-docs.cs-cz
803fe43d9332d0b8dda5fd4acfe7f1eb0da3a35e
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/build/reference/yl-inject-pch-reference-for-debug-library.md
Mdlglobal-atlassian-net/cpp-docs.cs-cz
803fe43d9332d0b8dda5fd4acfe7f1eb0da3a35e
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/build/reference/yl-inject-pch-reference-for-debug-library.md
Mdlglobal-atlassian-net/cpp-docs.cs-cz
803fe43d9332d0b8dda5fd4acfe7f1eb0da3a35e
[ "CC-BY-4.0", "MIT" ]
1
2020-05-28T15:53:26.000Z
2020-05-28T15:53:26.000Z
--- title: /Yl (Vložit referenci PCH do ladicí knihovny) ms.date: 01/29/2018 f1_keywords: - /yl helpviewer_keywords: - -Yl compiler option [C++] - Yl compiler option [C++] - /Yl compiler option [C++] ms.assetid: 8e4a396a-6790-4a9f-8387-df015a3220e7 ms.openlocfilehash: 816ba66c94e616407a8891cd149a41e44e29358d ms.sourcegitcommit: 6b749db14b4cf3a2b8d581fda6fdd8cb98bc3207 ms.translationtype: MT ms.contentlocale: cs-CZ ms.lasthandoff: 05/05/2020 ms.locfileid: "82825714" --- # <a name="yl-inject-pch-reference-for-debug-library"></a>/Yl (Vložit referenci PCH do ladicí knihovny) Možnost **/yl** vygeneruje v souboru předkompilované hlavičky jedinečný symbol a odkaz na tento symbol je vložen ve všech objektových souborech, které používají předkompilovanou hlavičku. ## <a name="syntax"></a>Syntaxe >**/Yl**\ >**/Yl**_Název_ /yl\ >**Parametr/yl-** ### <a name="arguments"></a>Argumenty *Jméno*<br/> Volitelný název, který se používá jako součást jedinečného symbolu. *\-*<br/> Pomlčka (-) explicitně zakáže možnost kompilátoru **/yl** . ## <a name="remarks"></a>Poznámky Možnost kompilátoru **/yl** vytvoří jedinečnou definici symbolu v souboru předkompilované hlavičky vytvořené pomocí možnosti [/YC](yc-create-precompiled-header-file.md) . Odkazy na tento symbol jsou automaticky vloženy do všech souborů, které obsahují předkompilovanou hlavičku pomocí možnosti kompilátoru [/Yu](yu-use-precompiled-header-file.md) . Možnost **/yl** je ve výchozím nastavení povolená, když se **/YC** používá k vytvoření předkompilovaného hlavičkového souboru. Možnost **/Yl**_název_ /yl se používá k vytvoření identifikovatelné značky v souboru předkompilované hlavičky. Kompilátor používá argument *název* jako součást názvu upraveného symbolu, který vytvoří, podobně jako `__@@_PchSym_@00@...@name`, kde tři tečky (...) představují jedinečný řetězec znaků generovaných kompilátorem. Pokud je argument *Name* vynechán, kompilátor automaticky vygeneruje název symbolu. Obvykle není nutné znát název symbolu. Pokud však váš projekt používá více než jeden soubor předkompilované hlavičky, možnost_názvu_ **/yl**může být užitečná k určení, které objekty soubory používají danou předkompilovanou hlavičku. Pokud chcete najít odkaz na symbol v souboru s výpisem paměti, můžete použít *název* jako hledaný řetězec. **Parametr/yl-** zakáže výchozí chování a nevloží identifikační symbol do souboru předkompilované hlavičky. Zkompilované soubory, které obsahují tuto předkompilovanou hlavičku, nezískají společný odkaz na symbol. Pokud není zadán parametr **/YC** , nebude mít žádná možnost **/yl** žádný vliv, ale pokud je zadaný, musí se shodovat s možností **/yl** předané při zadání **/YC** . Použijete-li možnosti **parametr/yl-**, **/YC** a [/Z7](z7-zi-zi-debug-information-format.md) k sestavení předkompilovaného hlavičkového souboru, informace o ladění jsou uloženy v souboru objektu pro zdrojový soubor, který slouží k vytvoření předkompilované hlavičky, nikoli samostatného souboru PDB. Je-li tento soubor objektu následně součástí knihovny, může dojít k chybám [linkerů LNK1211](../../error-messages/tool-errors/linker-tools-error-lnk1211.md) nebo k upozornění [linkerů lnk4206](../../error-messages/tool-errors/linker-tools-warning-lnk4206.md) v sestaveních, která používají tuto knihovnu a soubor předkompilované hlavičky, pokud zdrojový soubor použitý k vytvoření souboru předkompilované hlavičky nedefinuje žádné symboly. Linker může vyloučí soubor objektu z odkazu spolu s přidruženými ladicími informacemi, pokud není v klientském souboru odkazováno na žádný objekt v objektu Library. Chcete-li tento problém vyřešit, zadejte **/yl** (nebo odeberte možnost **parametr/yl-** ) při použití **/YC** k vytvoření souboru předkompilované hlavičky. Tím se zajistí, že se soubor objektu z knihovny, která obsahuje ladicí informace, bude v sestavení propojen. Další informace o předkompilovaných hlavičkách naleznete v tématu: - [/Y (předkompilované hlavičky)](y-precompiled-headers.md) - [Předkompilované hlavičkové soubory](../creating-precompiled-header-files.md) ### <a name="to-set-this-compiler-option-in-the-visual-studio-development-environment"></a>Nastavení tohoto parametru kompilátoru ve vývojovém prostředí Visual Studio 1. Otevřete dialogové okno **stránky vlastností** projektu. Podrobnosti najdete v tématu [nastavení kompilátoru C++ a vlastností sestavení v sadě Visual Studio](../working-with-project-properties.md). 1. Vyberte stránku vlastností **Konfigurace** > **příkazového řádku** **C/C++** > . 1. Přidejte možnost kompilátoru_název_ **/yl**do pole **Další možnosti** . Kliknutím na **tlačítko OK** uložte změny. ### <a name="to-set-this-compiler-option-programmatically"></a>Programové nastavení tohoto parametru kompilátoru - Viz třída <xref:Microsoft.VisualStudio.VCProjectEngine.VCCLCompilerTool.AdditionalOptions%2A>. ## <a name="see-also"></a>Viz také [Parametry kompilátoru MSVC](compiler-options.md)<br/> [Syntaxe příkazového řádku kompilátoru MSVC](compiler-command-line-syntax.md)
71.785714
1,171
0.783682
ces_Latn
0.999572
a1679a96e26ea0e7f7e92fe318d09b6c8d1ae4c6
9,657
md
Markdown
README.md
Devolutions/devolutions-gateway
80d83f7a07cd7a695f1f5ec30968efd59161b513
[ "Apache-2.0", "MIT" ]
18
2021-01-16T21:13:04.000Z
2022-03-23T21:54:06.000Z
README.md
Devolutions/devolutions-gateway
80d83f7a07cd7a695f1f5ec30968efd59161b513
[ "Apache-2.0", "MIT" ]
19
2020-10-20T14:41:28.000Z
2022-03-09T14:58:12.000Z
README.md
Devolutions/devolutions-gateway
80d83f7a07cd7a695f1f5ec30968efd59161b513
[ "Apache-2.0", "MIT" ]
null
null
null
# devolutions-gateway [![Build Status](https://travis-ci.com/vaffeine/devolutions-jet.svg?token=FxErzCAno8oL7CSUGoD1&branch=rdp)](https://travis-ci.com/vaffeine/devolutions-jet) [![codecov](https://codecov.io/gh/vaffeine/devolutions-jet/branch/rdp/graph/badge.svg?token=eXgEoo0BnD)](https://codecov.io/gh/vaffeine/devolutions-jet) A blazing fast relay server adaptable to different protocols and desired levels of traffic inspection. Use `cargo run` to build and run devolutions-gateway locally with default options. ## Command-line Interface ``` USAGE: devolutions-gateway [FLAGS] [OPTIONS] FLAGS: -h, --help Prints help information --service Enable service mode -v, --version Prints version information OPTIONS: --api-key <KEY> The API key used by the server to authenticate client queries. [env: DGATEWAY_API_KEY=] --capture-path <PATH> Path to the pcap files. If not set, no pcap files will be created. WaykNow and RDP protocols can be saved. [env: DGATEWAY_CAPTURE_PATH=] --certificate-data <DATA> Certificate data, base64-encoded X509 DER. [env: DGATEWAY_CERTIFICATE_DATA=] --certificate-file <FILE> Path to the certificate file. [env: DGATEWAY_CERTIFICATE_FILE=] --delegation-private-key-data <DATA> Private key data, base64-encoded PKCS10. [env: DGATEWAY_DELEGATION_PRIVATE_KEY_DATA=] --delegation-private-key-file <FILE> Path to the private key file. [env: DGATEWAY_DELEGATION_PRIVATE_KEY_FILE=] --farm-name <FARM-NAME> Farm name [env: DGATEWAY_FARM_NAME=] --hostname <HOSTNAME> Specific name to reach that instance of Devolutions Gateway. [env: DGATEWAY_HOSTNAME=] -l, --listener <URL>... An URL on which the server will listen on. The external URL returned as candidate can be specified after the listener, separated with a comma. <scheme>://<local_iface_ip>:<port>,<scheme>://<external>:<port> If it is not specified, the external url will be <scheme>://<hostname>:<port> where <hostname> is the value of the hostname parameter. [env: DGATEWAY_LISTENERS=] --log-file <LOG_FILE> A file with logs --private-key-data <DATA> Private key data, base64-encoded PKCS10. [env: DGATEWAY_PRIVATE_KEY_DATA=] --private-key-file <FILE> Path to the private key file. [env: DGATEWAY_PRIVATE_KEY_FILE=] --provisioner-public-key-data <DATA> Public key data, base64-encoded PKCS10. [env: DGATEWAY_PROVISIONER_PUBLIC_KEY_DATA=] --provisioner-public-key-file <FILE> Path to the public key file. [env: DGATEWAY_PROVISIONER_PUBLIC_KEY_FILE=] -r, --routing-url <URL> An address on which the server will route all packets. Format: <scheme>://<ip>:<port>. Supported schemes: tcp, tls. If it is not specified, the JET protocol will be used. ``` ## Sample Usage ### Routing to a specific URL 1. Run Wayk Now on 2 hosts to be able to open a Wayk session between those 2 hosts. * Download Wayk Now [here](https://wayk.devolutions.net/home/download) 1. Start devolutions-gateway and specify the routing URL where x.x.x.x is the IP of your Wayk server host. ``` $ cargo run -- -l 'tcp://0.0.0.0:10000,tcp://*:10000' -l 'ws://0.0.0.0:7171,wss://*:443' -r tls://x.x.x.x:4489 ``` * If you want to save the network traffic in a PCAP file, you can add the pcap-files-path parameter. The command will look to something like this: ``` $ cargo run -- -l 'tcp://0.0.0.0:10000,tcp://*:10000' -l 'ws://0.0.0.0:7171,wss://*:443' -r tls://x.x.x.x:4489 --capture-path c:\waykTraffic\ -p wayk ``` 1. On the same host where devolutions-gateway is running, open wayk and connect to 127.0.0.1:10000 * The connection should start. A dummy certificate will be shown. You can accept it and the Wayk connection should start. ### RDP routing The Jet can redirect RDP traffic authorized by a JWT (Json Web Token) both signed (JWS) and encrypted (JWE). The key used to sign must be known by the Jet. You can provide the Jet with the public key to use using `--provisioner-public-key-file` with a path to a PEM file; or `--provisioner-public-key-data` with a base64-encoded pkcs10 value. The provisioner can then use its private key to sign a JWT and authorize Jet RDP routing. The key used for token encryption is provided to Jet using `--delegation-private-key-data` or `--delegation-private-key-file` similarly to the provisioner key. The public counter part of the delegation key must then be used for token encryption. #### JWT structure and claims The Jet is expecting a nested JWT. 1. A set of claims are signed using JWS (Json Web Signature) into a compact JWT. Use of RSASSA-PKCS-v1_5 using SHA-256 (`RS256`) is recommended. 2. This signed token is then wrapped inside another token using JWE (Json Web Encryption) in compact form as well. Use of RSAES OAEP using SHA-256 and MGF1 with SHA-256 (`RSA-OAEP-256`) and AES GCM using 256-bit key (`A256GCM`) is recommended. Required claims for both RDP-TCP and RDP-TLS modes: - `dst_hst` (String): target RDP host - `jet_cm` (String): identity connection mode used for Jet association This must be set to `fwd`. - `jet_ap` (string): application protocol used over Jet transport. This must be set to `rdp`. - `exp` (Integer): a UNIX timestamp for "expiration" - `nbf` (Integer): a UNIX timestamp for "not before" Required claims for RDP-TLS mode: - Proxy credentials (client ↔ jet) - `prx_usr` (String): proxy username, - and `prx_pwd` (String): proxy password - Target credentials (jet ↔ server) - `dst_usr`: (String): host username, - and `dst_pwd`: (String): host password If any claim required for RDP-TLS is missing RDP routing will start in **RDP-TCP** mode with no TLS inspection and thus no credentials proxying. If all the optional claims are provided RDP routing will start in **RDP-TLS** mode with TLS inspection and credentials proxying (⚠ currently _instable_). #### Token generation utilities JWT generation should be facilitated by a provider (such as the [WaykDen](https://github.com/Devolutions/WaykDen-ps)). However, you can easily generate a JWT for testing purposes by using CLI tools provided in `/tools` folder. ##### tokengen A native CLI. No binary provided; you will need a Rust toolchain to build yourself. See [Install Rust](https://www.rust-lang.org/tools/install). ``` $ cargo build --package tokengen --release ``` The binary is produced inside a `target/release` folder. RDP-TCP example: ``` $ ./tokengen --dst-hst 192.168.122.70 --provider-private-key /path/to/private/provisioner/private/key.pem rdp-tcp ``` RDP-TLS example: ``` $ ./tokengen --dst-hst 192.168.122.70 --provider-private-key /path/to/private/provisioner/private/key.pem rdp-tls --jet-public-key /path/to/public/delegation/public/key.pem --prx-usr proxy_username --prx-pwd proxy_password --dst-usr host_username --dst-pwd host_password ``` ##### rdp_token.sh A bash script. Requires [smallstep CLI's tool](https://github.com/smallstep/cli). Check out the [installation](https://github.com/smallstep/cli#installation) section. RDP-TCP example: ``` $ ./rdp_token.sh 15 /path/to/private/provisioner/private/key.pem /path/to/public/delegation/public/key.pem 192.168.122.70 ``` RDP-TLS example: ``` $ ./rdp_token.sh 15 /path/to/private/provisioner/private/key.pem /path/to/public/delegation/public/key.pem 192.168.122.70 proxy_username proxy_password host_username host_password ``` #### Inject token in RDP connection using MSTSC 1. Open MSTSC 2. Enter a JET address in the "computer" field 3. Press the "Save As..." button under the "Connection settings" panel to save ".RDP" file to you PC 4. Open saved ".RDP" file with a text editor 5. Append string "pcb:s:" to the end of the file (e.g: pcb:s:eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOj...) 6. Save file 7. In MSTSC press "Open..." and select your edited file 8. Done. You can start the connection #### Inject token in RDP connection using FreeRdp Using FreeRDP, token can be provided using `/pcb` argument with `xfreerdp`. (e.g: /pcb:eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOj...) ## Troubleshooting ### Connection from Microsoft Windows 7/8/8.1/Server 2008/Server 2012 clients 1. For Window 7 and Windows Server 2008: Install latest updates. Make sure to install the update that adds [support for TLS 1.1 and TLS 1.2](https://support.microsoft.com/en-au/help/3080079/update-to-add-rds-support-for-tls-1-1-and-tls-1-2-in-windows-7-or-wind). This is not required for newer Windows editions - they support TLS 1.1 and TLS 1.2 by default. 1. Add following cipher suites to the SSL Cipher Suite order: - TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256; - TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384. To add cipher suites, use the group policy setting SSL Cipher Suite Order under Computer Configuration > Administrative Templates > Network > SSL Configuration Settings. [TLS Cipher Suites in Windows 7](https://docs.microsoft.com/en-us/windows/win32/secauthn/tls-cipher-suites-in-windows-7). ### Redirection to Microsoft Windows 7/8/8.1/Server 2008/Server 2012 server Unfortunately, Microsoft Windows 7/8/8.1/Server 2008/Server 2012 machines cannot accept connections from [rustls](https://crates.io/crates/rustls) client. Support for required cipher suits was not implemented until Windows 10.
41.093617
270
0.71109
eng_Latn
0.875646
a1679c17b7572f64882cef0f875fde3590f647fa
1,286
md
Markdown
.github/ISSUE_TEMPLATE/bug_report.md
webmandman/kendo-themes
a8da9de95486a155bf8a4085d37e9852a0fff19e
[ "Apache-2.0" ]
97
2018-02-07T08:22:40.000Z
2022-02-23T14:38:23.000Z
.github/ISSUE_TEMPLATE/bug_report.md
webmandman/kendo-themes
a8da9de95486a155bf8a4085d37e9852a0fff19e
[ "Apache-2.0" ]
1,630
2018-02-05T09:42:04.000Z
2022-03-30T15:31:10.000Z
.github/ISSUE_TEMPLATE/bug_report.md
isonme2018/telerik-kendo-themes
a55a1407be7ec0e18ef9e4f1b280298d085ab15b
[ "Apache-2.0" ]
64
2018-02-09T19:56:54.000Z
2022-03-02T10:09:41.000Z
--- name: Bug Report about: Create a report to help us improve the product title: '' labels: bug assignees: '' --- **Describe the bug** A clear and concise description of what the bug is. **To reproduce** Steps to reproduce the behavior: 1. Go to '...' 1. Click '...' 1. Scroll down to '...' 1. See error '...' **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem. **Affected package (please remove the unneeded items)** * theme-default * theme-bootstrap * theme-material * theme-tasks **Affected suites (please remove the unneeded items)** * Kendo UI for jQuery * Kendo UI for Angular * Kendo UI for React * Kendo UI for Vue * Telerik UI for Blazor **Affected browsers (please remove the unneeded items)** * All * Not Applicable * Firefox version: [for example, 72, lts] * Chrome version: [for example, 80] * Edge version: [for example, 80] * Safari version: [for example, 13] * IE version: [for example, 11] **Build system information (please remove the unneeded items)** * Not Applicable * OS: [for example, Windows, Linux, Mac] * Node version: [for example, 10.15.3] * NPM version: [for example, 6.4.1] **Additional context** Add any other context about the bug.
22.964286
63
0.711509
eng_Latn
0.972477
a167db1b9b57c8995009cb5f8b048c8c4c90fe4b
2,137
md
Markdown
dynamicsax2012-technet/deletestockcountrequest-constructor-string-boolean-microsoft-dynamics-commerce-runtime-messages.md
RobinARH/DynamicsAX2012-technet
d0d0ef979705b68e6a8406736612e9fc3c74c871
[ "CC-BY-4.0", "MIT" ]
null
null
null
dynamicsax2012-technet/deletestockcountrequest-constructor-string-boolean-microsoft-dynamics-commerce-runtime-messages.md
RobinARH/DynamicsAX2012-technet
d0d0ef979705b68e6a8406736612e9fc3c74c871
[ "CC-BY-4.0", "MIT" ]
null
null
null
dynamicsax2012-technet/deletestockcountrequest-constructor-string-boolean-microsoft-dynamics-commerce-runtime-messages.md
RobinARH/DynamicsAX2012-technet
d0d0ef979705b68e6a8406736612e9fc3c74c871
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: DeleteStockCountRequest Constructor (String, Boolean) (Microsoft.Dynamics.Commerce.Runtime.Messages) TOCTitle: DeleteStockCountRequest Constructor (String, Boolean) ms:assetid: M:Microsoft.Dynamics.Commerce.Runtime.Messages.DeleteStockCountRequest.#ctor(System.String,System.Boolean) ms:mtpsurl: https://technet.microsoft.com/en-us/library/microsoft.dynamics.commerce.runtime.messages.deletestockcountrequest.deletestockcountrequest(v=AX.60) ms:contentKeyID: 62210880 ms.date: 05/18/2015 mtps_version: v=AX.60 dev_langs: - vb - csharp - c++ --- # DeleteStockCountRequest Constructor (String, Boolean) Initializes a new instance of the [DeleteStockCountRequest](deletestockcountrequest-class-microsoft-dynamics-commerce-runtime-messages.md) class. **Namespace:**  [Microsoft.Dynamics.Commerce.Runtime.Messages](microsoft-dynamics-commerce-runtime-messages-namespace.md) **Assembly:**  Microsoft.Dynamics.Commerce.Runtime.Messages (in Microsoft.Dynamics.Commerce.Runtime.Messages.dll) ## Syntax ``` vb 'Declaration Public Sub New ( _ journalId As String, _ isCascadeJournalDelete As Boolean _ ) 'Usage Dim journalId As String Dim isCascadeJournalDelete As Boolean Dim instance As New DeleteStockCountRequest(journalId, _ isCascadeJournalDelete) ``` ``` csharp public DeleteStockCountRequest( string journalId, bool isCascadeJournalDelete ) ``` ``` c++ public: DeleteStockCountRequest( String^ journalId, bool isCascadeJournalDelete ) ``` #### Parameters - journalId Type: [System.String](https://technet.microsoft.com/en-us/library/s1wwdcbf\(v=ax.60\)) <!-- end list --> - isCascadeJournalDelete Type: [System.Boolean](https://technet.microsoft.com/en-us/library/a28wyd50\(v=ax.60\)) ## See Also #### Reference [DeleteStockCountRequest Class](deletestockcountrequest-class-microsoft-dynamics-commerce-runtime-messages.md) [DeleteStockCountRequest Overload](deletestockcountrequest-constructor-microsoft-dynamics-commerce-runtime-messages.md) [Microsoft.Dynamics.Commerce.Runtime.Messages Namespace](microsoft-dynamics-commerce-runtime-messages-namespace.md)
29.273973
157
0.785213
yue_Hant
0.382317
a1683131f38384f3d61a11d5ac97900a1921e9f0
365
md
Markdown
src/algorithms/randomness/rand-choose.md
jamesgraves/rust-cookbook
1489f5acfe144277903309d321ef5f445beeaeda
[ "CC0-1.0" ]
null
null
null
src/algorithms/randomness/rand-choose.md
jamesgraves/rust-cookbook
1489f5acfe144277903309d321ef5f445beeaeda
[ "CC0-1.0" ]
null
null
null
src/algorithms/randomness/rand-choose.md
jamesgraves/rust-cookbook
1489f5acfe144277903309d321ef5f445beeaeda
[ "CC0-1.0" ]
null
null
null
## Create random passwords from a set of user-defined characters [![rand-badge]][rand] [![cat-os-badge]][cat-os] Randomly generates a string of given length ASCII characters with custom user-defined bytestring, with [`gen_range`]. ```rust {{#include examples/generate_password.rs}} ``` [`gen_range`]: https://docs.rs/rand/*/rand/trait.Rng.html#method.gen_range
28.076923
74
0.736986
eng_Latn
0.748763
a1685bf85156f52320c80ed6db49dd9743a23329
1,942
md
Markdown
README.md
matvelloso/presenterBot
2812709dc2c9d5bdb0cd82e013dca08ee4030c7b
[ "MIT" ]
49
2016-10-28T16:52:38.000Z
2021-01-25T10:09:08.000Z
README.md
matvelloso/presenterBot
2812709dc2c9d5bdb0cd82e013dca08ee4030c7b
[ "MIT" ]
1
2017-04-03T13:48:09.000Z
2017-04-03T14:06:54.000Z
README.md
matvelloso/presenterBot
2812709dc2c9d5bdb0cd82e013dca08ee4030c7b
[ "MIT" ]
27
2016-10-28T16:03:42.000Z
2017-10-13T02:43:10.000Z
# presenterBot A bot that presents about bots using Microsoft Bot Framework This was built for a presentation and demonstrates the use of: 1-Microsoft Bot Framework 2-Direct Line via a custom TypeScript client 3-A bot that can traverse multiple channels (custom web channel and skype) carrying the user's context with it 4-The use of LUIS (the language model is in the source as well) 5-The use of Bing Speech API from the bot UI 6-The use of custom, rich controls in the bot UI You can watch it working here: https://channel9.msdn.com/Series/Explain/Meet-the-presenter-bot-a-bot-that-presents-about-bots Setting it up: There are a few steps you need to follow so you can run it: 1-You need to setup your own LUIS model (and import the LUIS model that it's in there). All of that is done at www.luis.ai 2-Then setup the LUIS keys in the web service so it can reach out to LUIS. 3-You need to deploy the web service and register it in bot framework, then get the key, secret and bot id you get there and put in the web.config (remember you will likely need to deploy it again after that). 4-You need to enable direct line in the bot framework portal, get the keys and use them in the web client. 5-You also need to enable a Bing Speech API subscription and use those subscription keys on the client as well (in the bing speech client typescript file). So basically most of the setup work involves getting yourself keys, registering your bot and then running it. The sample uses the Microsoft Cognitive Services, see https://www.microsoft.com/cognitive-services/. Developers using this are expected to follow the “Developer Code of Conduct for Microsoft Cognitive Services” at http://go.microsoft.com/fwlink/?LinkId=698895. Data submitted may be retained by Microsoft for service improvement purposes, along with the other stipulations noted in the following documents: Cognitive Services TOU, Developer Code of Conduct
47.365854
260
0.785273
eng_Latn
0.998104
a168fed29b2518eb8bf20275ab89432e4ca0b477
19,067
md
Markdown
docs/antipatterns/extraneous-fetching/index.md
OtacilioN/architecture-center.pt-br
ccefae434b398bb134edd3fb2f67f99fa0b055f2
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/antipatterns/extraneous-fetching/index.md
OtacilioN/architecture-center.pt-br
ccefae434b398bb134edd3fb2f67f99fa0b055f2
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/antipatterns/extraneous-fetching/index.md
OtacilioN/architecture-center.pt-br
ccefae434b398bb134edd3fb2f67f99fa0b055f2
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Antipadrão de busca externa description: Recuperar mais dados que o necessário para uma operação de negócios pode resultar em sobrecarga de E/S desnecessária e reduzir a capacidade de resposta. author: dragon119 ms.date: 06/05/2017 ms.openlocfilehash: 7a72bfd3e4b2e206f3266a046fac2083224ecb4f ms.sourcegitcommit: e67b751f230792bba917754d67789a20810dc76b ms.translationtype: HT ms.contentlocale: pt-BR ms.lasthandoff: 04/06/2018 ms.locfileid: "30846596" --- # <a name="extraneous-fetching-antipattern"></a>Antipadrão de busca externa Recuperar mais dados que o necessário para uma operação de negócios pode resultar em sobrecarga de E/S desnecessária e reduzir a capacidade de resposta. ## <a name="problem-description"></a>Descrição do problema Este antipadrão pode ocorrer se o aplicativo tentar minimizar as solicitações de E/S, recuperando todos os dados que ele *possa* precisar. Isso geralmente é um resultado de sobrecompensação para antipadrão de [E/S informais][chatty-io]. Por exemplo, um aplicativo pode buscar os detalhes de cada produto em um banco de dados. Mas o usuário pode ter apenas um subconjunto dos detalhes (alguns podem não ser relevantes para os clientes) e provavelmente não precisa ver *todos* os produtos de uma vez. Mesmo se o usuário estiver navegando pelo catálogo inteiro, faria sentido paginar os resultados &mdash; mostrando 20 ao mesmo tempo, por exemplo. Outra fonte desse problema é seguir práticas de programação ou design ruins. Por exemplo, o código a seguir usa o Entity Framework para buscar os detalhes completos de todos os produtos. Em seguida, ele filtra os resultados para retornar apenas um subconjunto dos campos, descartando o restante. Você pode encontrar o exemplo completo [aqui][sample-app]. ```csharp public async Task<IHttpActionResult> GetAllFieldsAsync() { using (var context = new AdventureWorksContext()) { // Execute the query. This happens at the database. var products = await context.Products.ToListAsync(); // Project fields from the query results. This happens in application memory. var result = products.Select(p => new ProductInfo { Id = p.ProductId, Name = p.Name }); return Ok(result); } } ``` No exemplo a seguir, o aplicativo recupera dados para executar uma agregação que pode ser feita pelo banco de dados. O aplicativo calcula o total de vendas obtendo todos os registros para todos os pedidos de venda e, em seguida, calculando a soma sobre esses registros. Você pode encontrar o exemplo completo [aqui][sample-app]. ```csharp public async Task<IHttpActionResult> AggregateOnClientAsync() { using (var context = new AdventureWorksContext()) { // Fetch all order totals from the database. var orderAmounts = await context.SalesOrderHeaders.Select(soh => soh.TotalDue).ToListAsync(); // Sum the order totals in memory. var total = orderAmounts.Sum(); return Ok(total); } } ``` O exemplo a seguir mostra um problema sutil causado pelo modo como o Entity Framework utiliza o LINQ to Entities. ```csharp var query = from p in context.Products.AsEnumerable() where p.SellStartDate < DateTime.Now.AddDays(-7) // AddDays cannot be mapped by LINQ to Entities select ...; List<Product> products = query.ToList(); ``` O aplicativo está tentando localizar produtos com um `SellStartDate` com mais de uma semana. Na maioria dos casos, o LINQ to Entities converterá uma cláusula `where` para uma instrução SQL que é executada pelo banco de dados. No entanto, nesse caso, o LINQ to Entities não consegue mapear o método `AddDays` para SQL. Em vez disso, cada linha da tabela `Product` será retornada e os resultados serão filtrados na memória. A chamada para `AsEnumerable` é uma dica de que há um problema. Este método converte os resultados para uma interface `IEnumerable`. Embora `IEnumerable` ofereça suporte à filtragem, ela é feita pelo *cliente*, e não pelo banco de dados. Por padrão, o LINQ to Entities usa `IQueryable`, que passa a responsabilidade da filtragem para a fonte de dados. ## <a name="how-to-fix-the-problem"></a>Como corrigir o problema Evite a busca de grandes volumes de dados que rapidamente podem ficar desatualizados ou ser descartados e busque somente os dados necessários para a operação que está sendo executada. Em vez de obter todas as colunas de uma tabela e, em seguida, filtrá-las, selecione as colunas que você precisa do banco de dados. ```csharp public async Task<IHttpActionResult> GetRequiredFieldsAsync() { using (var context = new AdventureWorksContext()) { // Project fields as part of the query itself var result = await context.Products .Select(p => new ProductInfo {Id = p.ProductId, Name = p.Name}) .ToListAsync(); return Ok(result); } } ``` Da mesma forma, execute a agregação no banco de dados e não na memória do aplicativo. ```csharp public async Task<IHttpActionResult> AggregateOnDatabaseAsync() { using (var context = new AdventureWorksContext()) { // Sum the order totals as part of the database query. var total = await context.SalesOrderHeaders.SumAsync(soh => soh.TotalDue); return Ok(total); } } ``` Ao usar o Entity Framework, verifique se as consultas do LINQ são resolvidas usando a interface `IQueryable` e não `IEnumerable`. Talvez seja necessário ajustar a consulta para usar apenas as funções que podem ser mapeadas para a fonte de dados. O exemplo anterior pode ser refatorado para remover o método `AddDays` da consulta, permitindo que a filtragem seja feita pelo banco de dados. ```csharp DateTime dateSince = DateTime.Now.AddDays(-7); // AddDays has been factored out. var query = from p in context.Products where p.SellStartDate < dateSince // This criterion can be passed to the database by LINQ to Entities select ...; List<Product> products = query.ToList(); ``` ## <a name="considerations"></a>Considerações - Em alguns casos, você pode melhorar o desempenho através do particionamento horizontal de dados. Se operações diferentes acessam atributos diferentes dos dados, o particionamento horizontal pode reduzir a contenção. Geralmente, a maioria das operações são executadas em relação a um pequeno subconjunto dos dados, para que a difusão desse carregamento possa melhorar o desempenho. Confira o [Particionamento de dados][data-partitioning]. - Para operações que oferecem suporte a consultas não associadas, implemente a paginação e busque apenas um número limitado de entidades por vez. Por exemplo, se um cliente estiver navegando por um catálogo de produtos, você pode mostrar uma página de resultados de cada vez. - Quando possível, aproveite os recursos incluídos no armazenamento de dados. Por exemplo, bancos de dados SQL normalmente fornecem funções de agregação. - Se você estiver usando um armazenamento de dados que não oferece suporte a uma função específica, como a agregação, poderia armazenar o resultado calculado em outro lugar, atualizando o valor conforma os registros são adicionados ou atualizados, para que o aplicativo não precise recalcular o valor sempre que necessário. - Se você observar que as solicitações estão recuperando um grande número de campos, examine o código-fonte para determinar se todos esses campos são realmente necessários. Às vezes, essas solicitações são o resultado de uma consulta `SELECT *` mal projetada. - Da mesma forma, as solicitações que recuperam um grande número de entidades podem ser sinal de que o aplicativo não está filtrando os dados corretamente. Verifique se todas essas entidades são realmente necessárias. Se possível, use o banco de dados da filtragem, por exemplo, usando cláusulas `WHERE` no SQL. - O processamento de descarregamento para o banco de dados nem sempre é a melhor opção. Só use essa estratégia quando o banco de dados for criado ou otimizado para fazer isso. A maioria dos sistemas de banco de dados são altamente otimizados para determinadas funções, mas não são projetados para atuar como mecanismos de uso geral do aplicativo. Para obter mais informações, confira o [Antipadrão de Banco de Dados Ocupado][BusyDatabase]. ## <a name="how-to-detect-the-problem"></a>Como detectar o problema Os sintomas de busca externa incluem latência alta e baixa taxa de transferência. Se os dados são recuperados a partir de um armazenamento de dados, uma maior contenção também é provável. É provável que os usuários finais relatem tempos de resposta estendidos ou falhas causadas por serviços atingindo o tempo limite. Essas falhas podem retornar erros HTTP 500 (Servidor Interno) ou erros HTTP 503 (Serviço Indisponível). Examine os logs de eventos para o servidor Web, que provavelmente contêm informações mais detalhadas sobre as causas e as circunstâncias dos erros. Os sintomas desse antipadrão e alguns de telemetria obtida podem ser muito semelhantes àqueles do [Antipadrão de Persistência Monolítica][MonolithicPersistence]. Você pode executar as etapas a seguir para ajudar a identificar a causa: 1. Identifique as transações ou cargas de trabalho lentas realizando teste de carga, monitoramento de processos ou outros métodos de captura de dados de instrumentação. 2. Observe os padrões comportamentais apresentados pelo sistema. Há limites específicos em termos de transações por segundo ou volume de usuários? 3. Correlacione as instâncias de cargas de trabalho lentas com padrões comportamentais. 4. Identifique os armazenamentos de dados que estão sendo usados. Para cada fonte de dados, execute a telemetria de baixo nível para observar o comportamento das operações. 6. Identifique as consultas de execução lenta que fazem referência a essas fontes de dados. 7. Execute uma análise específica do recurso de consultas de execução lenta e determine como os dados são usados e consumidos. Procure esses sintomas: - Solicitações de E/S grandes e frequentes feitas para o mesmo recurso ou armazenamento de dados. - Contenção em um armazenamento de dados ou recurso compartilhado. - Uma operação que recebe frequentemente grandes volumes de dados através da rede. - Aplicativos e serviços gastando tempo significativo aguardando a conclusão da E/S. ## <a name="example-diagnosis"></a>Diagnóstico de exemplo As seções a seguir se aplicam a estas etapas para os exemplos anteriores. ### <a name="identify-slow-workloads"></a>Identificar as cargas de trabalho lentas Este gráfico mostra os resultados de desempenho de um teste de carga que simulou até 400 usuários simultâneos executando o método `GetAllFieldsAsync` mostrado anteriormente. A taxa de transferência lenta diminui à medida que a carga aumenta. O tempo médio de resposta aumenta conforme a carga de trabalho aumenta. ![Resultados do teste de carga para o método GetAllFieldsAsync][Load-Test-Results-Client-Side1] Um teste de carga para a operação `AggregateOnClientAsync` mostra um padrão semelhante. O volume das solicitações é razoavelmente estável. O tempo médio de resposta aumenta com a carga de trabalho, embora mais lentamente do que o gráfico anterior. ![Resultados do teste de carga para o método AggregateOnClientAsync][Load-Test-Results-Client-Side2] ### <a name="correlate-slow-workloads-with-behavioral-patterns"></a>Correlacione as cargas de trabalho lentas com os padrões comportamentais Qualquer correlação entre períodos normais de alto uso e diminuindo o desempenho pode indicar áreas de interesse. Examine atentamente o perfil de desempenho da funcionalidade suspeita de lenta execução para determinar se ele corresponde ao teste de carga executado anteriormente. Utilize um teste de carga com a mesma funcionalidade usando cargas de usuário com base na etapa para localizar o ponto em que o desempenho cai significativamente ou falha completamente. Se esse ponto está dentro dos limites de seu uso real esperado, examine como a funcionalidade é implementada. Uma operação lenta não é necessariamente um problema, se ela não estiver sendo executada quando o sistema estiver sob carga excessiva, não é um tempo crítico e não afeta de forma negativa o desempenho de outras operações importantes. Por exemplo, a geração de estatísticas operacionais mensais pode ser uma operação de longa execução, mas provavelmente pode ser executada como um processo em lote e executada como um trabalho de baixa prioridade. Por outro lado, os clientes consultando o catálogo de produtos é uma operação de negócios crítica. Se concentre na telemetria gerada por essas operações críticas para ver como o desempenho varia durante os períodos de alto uso. ### <a name="identify-data-sources-in-slow-workloads"></a>Identificar as fontes de dados em cargas de trabalho lentas Se você suspeitar que um serviço está com um desempenho ruim devido à forma como recupera os dados, investigue como o aplicativo interage com os repositórios que ele usa. Monitore o sistema ao vivo para ver quais fontes são acessadas durante períodos de baixo desempenho. Para cada fonte de dados, instrumente o sistema para capturar o seguinte: - A frequência com a qual cada armazenamento de dados é acessado. - O volume de dados entrando e saindo do armazenamento de dados. - O tempo dessas operações, especialmente a latência de solicitações. - A natureza e a taxa de erros que ocorrem durante o acesso a cada armazenamento de dados sob carga típica. Compare essas informações com o volume de dados que está sendo retornado pelo aplicativo para o cliente. Acompanhe a taxa do volume de dados retornado pelo armazenamento de dados contra o volume de dados retornado para o cliente. Se não houver nenhuma diferença grande, investigue para determinar se o aplicativo está buscando dados que não precisa. Você poderá capturar esses dados ao observar o sistema ao vivo e o rastreamento de ciclo de vida de cada solicitação de usuário, ou pode modelar uma série de cargas de trabalho sintéticas e executá-las em um sistema de teste. Os gráficos a seguir mostram a telemetria capturada usando [APM do New Relic][new-relic] durante um teste de carga do método `GetAllFieldsAsync`. Observe a diferença entre os volumes de dados recebidos do banco de dados e as respostas HTTP correspondentes. ![Telemetria para o método 'GetAllFieldsAsync'][TelemetryAllFields] Para cada solicitação, o banco de dados retornou 80,503 bytes, mas a resposta ao cliente continha somente 19,855 bytes, cerca de 25% do tamanho da resposta de banco de dados. O tamanho dos dados retornados ao cliente pode variar dependendo do formato. Para este teste de carga, o cliente solicitou dados JSON. O teste separado usando XML (não mostrado) tinha um tamanho de resposta de 35,655 bytes ou 44% do tamanho da resposta de banco de dados. O teste de carga para o método `AggregateOnClientAsync` mostra mais resultados extremos. Neste caso, cada teste executou uma consulta que recuperou mais de 280Kb de dados do banco de dados, mas a resposta JSON foi apenas 14 bytes. A grande diferença é porque o método calcula um resultado agregado de um grande volume de dados. ![Telemetria para o método 'AggregateOnClientAsync'][TelemetryAggregateOnClient] ### <a name="identify-and-analyze-slow-queries"></a>Identificar e analisar consultas lentas Procure por consultas de banco de dados que consomem a maioria dos recursos e levam mais tempo para executar. Você pode adicionar a instrumentação para localizar os horários de início e conclusão para várias operações de banco de dados. Vários armazenamentos de dados também oferecem informações detalhadas sobre como as consultas são executadas e otimizadas. Por exemplo, o painel de Desempenho da Consulta no portal de gerenciamento de banco de Dados SQL do Azure permite-lhe selecionar uma consulta e exibir informações detalhadas do desempenho de tempo de execução. Aqui está a consulta gerada pela operação `GetAllFieldsAsync`: ![O painel de Detalhes da Consulta no portal de gerenciamento de banco de dados SQL do Windows Azure][QueryDetails] ## <a name="implement-the-solution-and-verify-the-result"></a>Implementar a solução e verificar o resultado Depois de alterar o método `GetRequiredFieldsAsync` para usar uma instrução SELECT no lado do banco de dados, os testes de carga mostraram os seguintes resultados. ![Resultados do teste de carga para o método GetRequiredFieldsAsync][Load-Test-Results-Database-Side1] Este teste de carga utilizou a mesma implantação e a mesma carga de trabalho simulada de 400 usuários simultâneos que antes. O gráfico mostra uma latência muito mais baixa. O tempo de resposta aumenta com a carga aproximadamente 1,3 segundos, comparada a 4 segundos no caso anterior. A taxa de transferência também é superior a 350 solicitações por segundo comparada a 100 anteriormente. O volume de dados recuperado do banco de dados agora intimamente corresponde ao tamanho das mensagens de resposta HTTP. ![Telemetria para o método 'GetRequiredFieldsAsync'][TelemetryRequiredFields] Os testes de carga usando o método `AggregateOnDatabaseAsync` geram os seguintes resultados: ![Resultados do teste de carga para o método AggregateOnDatabaseAsync][Load-Test-Results-Database-Side2] O tempo médio de resposta é agora mínimo. Esse é um aprimoramento de ordem de magnitude no desempenho, causado principalmente pela grande redução da E/S do banco de dados. Aqui está a telemetria correspondente para o método `AggregateOnDatabaseAsync`. Foi reduzida consideravelmente a quantidade de dados recuperados do banco de dados, de 280Kb por transação a 53 bytes. Como resultado, o número máximo prolongado de solicitações por minuto foi aumentado de cerca de 2.000 para mais de 25.000. ![Telemetria para o método 'AggregateOnDatabaseAsync'][TelemetryAggregateInDatabaseAsync] ## <a name="related-resources"></a>Recursos relacionados - [Antipadrão de Banco de Dados Ocupado][BusyDatabase] - [Antipadrão de E/S informais][chatty-io] - [Práticas recomendadas de particionamento de dados][data-partitioning] [BusyDatabase]: ../busy-database/index.md [data-partitioning]: ../../best-practices/data-partitioning.md [new-relic]: https://newrelic.com/application-monitoring [sample-app]: https://github.com/mspnp/performance-optimization/tree/master/ExtraneousFetching [chatty-io]: ../chatty-io/index.md [MonolithicPersistence]: ../monolithic-persistence/index.md [Load-Test-Results-Client-Side1]:_images/LoadTestResultsClientSide1.jpg [Load-Test-Results-Client-Side2]:_images/LoadTestResultsClientSide2.jpg [Load-Test-Results-Database-Side1]:_images/LoadTestResultsDatabaseSide1.jpg [Load-Test-Results-Database-Side2]:_images/LoadTestResultsDatabaseSide2.jpg [QueryPerformanceZoomed]: _images/QueryPerformanceZoomed.jpg [QueryDetails]: _images/QueryDetails.jpg [TelemetryAllFields]: _images/TelemetryAllFields.jpg [TelemetryAggregateOnClient]: _images/TelemetryAggregateOnClient.jpg [TelemetryRequiredFields]: _images/TelemetryRequiredFields.jpg [TelemetryAggregateInDatabaseAsync]: _images/TelemetryAggregateInDatabase.jpg
75.363636
674
0.793518
por_Latn
0.999073
a1692e0852ba9997a4ed6c4fd7686ef5f846ab97
71
md
Markdown
README.md
RikardOledal/Guestlist
e6bc795ffc3ac5141505c3dab835a8f840bbccff
[ "MIT" ]
null
null
null
README.md
RikardOledal/Guestlist
e6bc795ffc3ac5141505c3dab835a8f840bbccff
[ "MIT" ]
null
null
null
README.md
RikardOledal/Guestlist
e6bc795ffc3ac5141505c3dab835a8f840bbccff
[ "MIT" ]
null
null
null
# Guestlist Invite guests to your event and administrate the guestlist
23.666667
58
0.830986
eng_Latn
0.99975
a16a73bffd45e6f0feb205074df2f1a0c9616244
361
md
Markdown
README.md
davechapman3/gle
2371c68d239b362dbf0d9b21d2c10fd1d0f632c1
[ "Apache-2.0" ]
null
null
null
README.md
davechapman3/gle
2371c68d239b362dbf0d9b21d2c10fd1d0f632c1
[ "Apache-2.0" ]
null
null
null
README.md
davechapman3/gle
2371c68d239b362dbf0d9b21d2c10fd1d0f632c1
[ "Apache-2.0" ]
null
null
null
# GLE repository This repository contains scripts and extended functionality for the GLE (4.2.5) scientific plotting software (see: https://glx.sourceforge.io/). ## Contents: * Mathematical and physical constants * Implementations of special functions not included with the standard GLE distribution * Customised colour palettes for contour and surface plots
40.111111
144
0.806094
eng_Latn
0.991053
a16ab9788cd52fca7d25dcee19728bd8671a9eb9
504
md
Markdown
.github/ISSUE_TEMPLATE/bug_report.md
Megasix/follow_up_app
c67f2633ce057a343da3877c4f6bd0919cf3f101
[ "MIT" ]
4
2021-04-15T17:37:20.000Z
2022-01-31T19:08:23.000Z
.github/ISSUE_TEMPLATE/bug_report.md
Megasix/follow_up_app
c67f2633ce057a343da3877c4f6bd0919cf3f101
[ "MIT" ]
19
2021-02-25T19:45:56.000Z
2021-10-30T04:46:58.000Z
.github/ISSUE_TEMPLATE/bug_report.md
Megasix/follow_up_app
c67f2633ce057a343da3877c4f6bd0919cf3f101
[ "MIT" ]
1
2021-09-01T21:32:04.000Z
2021-09-01T21:32:04.000Z
### Bug Report * **What is the current behavior?** * **What is the expected behavior?** * **Please provide the steps to reproduce and if possible a minimal demo of the problem:** 1. _Click on..._ 2. _Select the..._ 3. _..._ * **Please tell us about your environment:** - Version: 2.0.0-beta.X - Platform: [all | Android XX | iOS XX.X ] * **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, etc.)
24
140
0.656746
eng_Latn
0.979939
a16b066f63e67d8bd6508c2511c6943899c5af2f
73,340
md
Markdown
README.md
koseoyoung/iotex-docs
b2657b0aad4673cf0dc994dcc146322e2c98f4ad
[ "MIT" ]
null
null
null
README.md
koseoyoung/iotex-docs
b2657b0aad4673cf0dc994dcc146322e2c98f4ad
[ "MIT" ]
null
null
null
README.md
koseoyoung/iotex-docs
b2657b0aad4673cf0dc994dcc146322e2c98f4ad
[ "MIT" ]
null
null
null
--- id: guides title: Get Started --- ## Introduction Founded as an open-source project in 2017, IoTeX is building the world's leading auto-scalable and privacy-centric blockchain platform for the Internet of Things (IoT). Our mission is to build a decentralized trust fabric for the era of collaboration and data exchange among devices, applications and people. We are developing several innovative technologies in-house, including the blockchain-in-blockchain architecture for heterogeneous computing, fast and robust Roll-DPoS consensus scheme, and efficient trusted computing protocols. More details can be found [here](https://iotex.io/academics). IoTeX core team is continuously working hard to bring the community more cool features. ### Grand Design The overall design of IoTeX Network employs Separation of Powers,a term coined by Charles-Louis de Secondat which states that democratic political authority should be divided into legislative, executive and judicial powers. Generally speaking, IoTeX Network is a decentralized trust fabric consisting of multiple blockchains to connect humans, machines, applications, arranged hierarchically and serving different purposes. ![IoTeX Rootchain Architecture](https://cdn-images-1.medium.com/max/2600/1*D6GiPlh9TdikW82c8j1jrA.png) * Governance layer, instantiated by the Gravity Chain is the layer that acts as a decentralized government for the IoTeX network. It exclusively focuses on decentralization and security, a liveness-oriented consensus scheme (e.g., PoS variant) to facilitate tasks such as staking, voting, slashing, protocol-related proposals, and more. Before the launch of the gravity chain Q3/Q4 2019, Ethereum mainnet will be used as the governance layer. * Orchestration layer, instantiated by the Root Chain, is the general manager and coordinator for all subchains. It is powered by our safety-oriented Roll-DPoS consensus mechanism and aims for reasonable throughput, reliability and transparency. It is being launched in April 2019 (a.k.a, Mainnet Alpha) as the first blockchain within IoTeX Network. * Operational layer, instantiated by various layer2 subchains, is the concrete unit that handles business logic related to specific use cases/applications. Different subchains can interoperate with each other via cross-chain communication. The first IoTeX subchain is expected to be launched in Q2/Q3 2019 focusing on trusted computing. * Execution layer, is an optional layer to which specific subchains can offload concrete computation/storage tasks. The segregation of verification & ordering of states from generation of states is extremely helpful to improve scalability, functionality and usability of a decentralized system. In our design, all blockchains share the same pool of delegate resource which produces consensus to secure the entire network and is the cornerstone of the collective trust. With the collective trusted being provided, one can easily spin up a subchain as effortlessly as spinning up an EC2 instance on AWS Cloud. Thanks to the abstraction of EDR, subchains running within IoTeX Network can have dramatically different state transition and execution layers as well as the underlying crypto economics. The reason why we separate duties across multiple blockchain layers we firmly believe in decentralized governance. Many DPoS blockchain manage governance tasks (i.e.,. staking/voting) on the core operational layer blockchain - IoTeX believes governance tasks should not be grouped with operational tasks on the same chain. For example, elected Delegates, as a vested interest group, may disregard staking/voting transactions in the block production process to mitigate being de-elected (i.e., conflict of interest). Furthermore, elected Delegates may enforce protocol upgrades (by upgrading their software without consent from other users) that are not favorable to the rest of the ecosystem. ### Root Chain The root chain will be launched in Q1 2019 (a.k.a, Mainnet Alpha), which is consisted of the four layered components: * Networking layer enables the peer-to-peer communication between IoTex nodes, and provide blockchain services (through [grpc](https://grpc.io/)) to other applications and users * Consensus layer runs Roll-DPoS to select the active block producers among a pool of block producer candidates (who are elected via staking and voting), using a decentralized randomized algorithm (DKG + BLS). * State transition layer is composed of five subprotocols and is responsible for transiting the states of the blockchain from one to the other. * Programing layer implements the business logics for state transition. Currently it supports Ethereum virtual machine (EVM) with smart contracts written in Solidity. Developers could seamlessly port existing DApps onto it. ![IoTeX Rootchain Architecture](https://cdn-images-1.medium.com/max/2000/0*cPrsvVa1wIE0cqnS) ### Subprotocols and Actions The state transition layer of IoTex root chain is flexible enough that any subprotocol can be plugged in without hustling. * Account subprotocol provides the functionality for bookkeeping balances of accounts living on this blockchain. * Execution subprotocol manages the execution of smart contracts and roll forward/back of the states. * Poll subprotocol syncs with our staking/voting contracts living on Ethereum (which plays the role of Gravity chain before its ready), and instructs the delegates promotion/demotion on IoTeX root chain. * Rewarding subprotocol is responsible for distributing block reward and epoch reward to eligible delegates and candidates. * Multichain subprotocol manages sub-chain management and cross-chain communication which is a work-in-progress. In the IoTeX network, transactions (the atomic operation unit to interact with the blockchain data) are referred to as "actions", and there are five types of actions corresponding to the five subprotocols as described. More information can be found [here](https://github.com/iotexproject/iotex-core/blob/master/proto/types/action.proto). ## Build and Run The simplest way to get started with IoTeX software package is to run it in stand-alone mode for demonstration and testing purposes. "Stand-alone" indicates a single node comprises the entire blockchain by itself, which generates new block, validates the block, and adds the block to the blockchain. This simple mode allows user to quickly launch and test a blockchain with a single computer/node, without requiring much hardware resources. ### From the source 1. setup golang environment, e.g., [on Linux](https://medium.com/@RidhamTarpara/install-go-1-11-on-ubuntu-18-04-16-04-lts-8c098c503c5f), [on MacOS](https://medium.com/golang-learn/quick-go-setup-guide-on-mac-os-x-956b327222b8) 2. ```git clone git@github.com:iotexproject/iotex-core.git``` 3. ```make run``` ### Use docker image 1. Install docker on your host machine at https://docs.docker.com/install/. Once docker is properly installed and started, download the IoTeX docker image: `docker pull iotex/iotex-core:latest` 2. Download the config file config_delegate.yaml from [iotex-core](https://github.com/iotexproject/iotex-core). Open the file and change certain parameters of the stand-alone node as you need. For instance, blockCreationInterval specifies the amount of time it takes (in seconds) to produce next block. Change it to a larger value if you want block producing at a slower pace. 3. ```sudo docker run -d -p 30100:14004 --mount type=bind,source=$PWD/config_delegate.yaml,target=/etc/iotex/config_local_delegate.yaml iotex/iotex-core:testnet iotex-server -config-path=/etc/iotex/config_local_delegate.yaml``` ## CLI (command-line interface) ioctl is a command-line interface for interacting with IoTeX blockchains. :::: tabs :options="{ useUrlFragment: false }" ::: tab bash ```bash Usage: ioctl [command] Available Commands: account Deal with accounts of IoTeX blockchain action Deal with actions of IoTeX blockchain xrc20 Operate XRC20 contracts bc Deal with block chain of IoTeX blockchain help Help about any command node Deal with nodes of IoTeX blockchain version Print the version number of ioctl Flags: -h, --help help for ioctl ``` ::: :::: ### Install Release Build ``` curl https://raw.githubusercontent.com/iotexproject/iotex-core/master/install-cli.sh | sh ``` ### Install Latest/Unstable Build ``` curl https://raw.githubusercontent.com/iotexproject/iotex-core/master/install-cli.sh | sh -s "unstable" ``` ## Usage and Examples Documentation of all ioctl commands with examples. ## Config `Variables: [endpoint, wallet, explorer, defaultacc]`\ `Explorers: [iotexscan (default), iotxplorer, custom]` #### Set Config ` Usage: ioctl config set VARIABLE VALUE` ``` ➜ ioctl config set endpoint api.iotex.one:443 endpoint is set to api.iotex.one:443 ``` #### Get Config `Usage: ioctl config get VARIABLE | all` ``` ➜ ioctl config get wallet /Users/IoTeX/.config/ioctl/default ``` #### Reset Config `Usage: ioctl config reset` ``` ➜ ioctl config reset Config reset to default values ``` ## Account #### Create Account(s) `Usage: ioctl account create` ``` ➜ ioctl account create { "accounts": [ { "address": "io12ly97a3sk94ne06qjz2vv6clv3za7mk2z2sra9", "privateKey": "bb59a2a2c21242831906e0c8d188c642fdc1324d27ac4ae0d8cbea373b22147b", "publicKey": "040780ba149d24ee5418084ee193a6be8b3b7cf5329d160fc8902270b342c4fed4b646cdd5fdaf52932eecb957297a9bf6dbb24f7faa9287a27df6b5e83781c74b" } ] } ``` ``` ➜ ioctl account create -n 3 { "accounts": [ { "address": "io1dcx2490vk2sg0f7ujv9d3gu67rpvyk5rjp854s", "privateKey": "a40ffd19150b4f3cbb1ca779862fc63b15d432c0be9bba81c56856d00e370b91", "publicKey": "04483333bf900b59a412c26a8cf287e122be5d2882d66263ce330a2c84e426fcf48dca4e189dbef15dc3511b049b7708c1e3a49e4904a6286ffcc6019bb27a4ca9" }, { "address": "io19sypnkmj6agqqgusht07m35lvlhz4ruehetagk", "privateKey": "fd49783f8687379e3eb6e5778977044cc7e464dd16df8444b8643d3d636f7ebc", "publicKey": "04bcae59b817ec2924adef52088e9295bb040d1a34fe49e64b41ca56e2cbb3be115256975d2c1472b0a3b47bea720810de092ef4d209924ce09fa896b29588a90d" }, { "address": "io1ehlhw6kedp5x8y04ddr7fl0cs68ns32hdxuvdl", "privateKey": "2c1bdc74c7ff03f08f2e2d3b65af9a54dc5addc42613670bd4bb1f0440cd9468", "publicKey": "04cd1ff13e20cbe83bc8759ce21404edc2a9b78c57f8d2ffc648f2213dfee98b61d9ebaffe03f32e7a13fbe319b1958c99ed701c3fa1046790f6af12f32262309b" } ] } ``` #### Create An Account Into Wallet `Usage: ioctl account createadd ALIAS` ``` ➜ ioctl account createadd IOsenser #IOsenser: Set password #IOsenser: Enter password again New account "IOsenser" is created. Please Keep your password, or your will lose your private key. ``` #### Import An Account With Private Key `Usage: ioctl account import ALIAS` ``` ➜ ioctl account import whale #whale: Enter your private key, which will not be exposed on the screen. #whale: Set password #whale: Enter password again New account #whale is created. Keep your password, or your will lose your private key. ``` #### Export Private Key From An Account `Usage: ioctl account export (ALIAS|ADDRESS)` ``` ➜ ioctl account export whale Enter password #whale: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ``` #### Delete An Account `Usage: ioctl account delete (ALIAS|ADDRESS)` ``` ➜ ioctl account delete whale ** This is an irreversible action! Once an account is deleted, all the assets under this account may be lost! Type 'YES' to continue, quit for anything else. yes Enter password #io1t54nfdnpldaxkpm35f2gzh3rx6cakypmp5xfz5: Account #io1t54nfdnpldaxkpm35f2gzh3rx6cakypmp5xfz5 has been deleted. ``` #### List Accounts `Usage: ioctl account list` ``` ➜ ioctl account list io1r2r0um9dw35922tptkuphseq43hq2knk3fjrlt - IOsenser io17laykjt9qgafuxj58fuspuxzlv6y4qgxf82vnm - frank io1l3wc0smczyay8xq747e2hw63mzg3ctp6uf8wsg io14gnqxf9dpkn05g337rl7eyt2nxasphf5m6n0rd - 007 ``` #### Query Balance `Usage: ioctl account balance (ALIAS|ADDRESS)` ``` ➜ ioctl account balance IOsenser io1r2r0um9dw35922tptkuphseq43hq2knk3fjrlt: 0.721 IOTX ``` ``` ➜ ioctl account balance io1l3wc0smczyay8xq747e2hw63mzg3ctp6uf8wsg io1l3wc0smczyay8xq747e2hw63mzg3ctp6uf8wsg: 4689 IOTX ``` #### Query Nonce `Usage: ioctl account nonce (ALIAS|ADDRESS)` ``` ➜ ioctl account nonce IOsenser io1r2r0um9dw35922tptkuphseq43hq2knk3fjrlt: Nonce: 0, Pending Nonce: 1 ``` #### Translate Address `Usage: ioctl account ethaddr (ALIAS|IOTEX_ADDRESS|ETH_ADDRESS)` ``` ➜ ioctl account ethaddr io14gnqxf9dpkn05g337rl7eyt2nxasphf5m6n0rd io14gnqxf9dpkn05g337rl7eyt2nxasphf5m6n0rd - 0xAA260324ad0DA6FA2231f0FfEC916A99bb00dd34 ``` ``` ➜ ioctl account ethaddr 0xAA260324ad0DA6FA2231f0FfEC916A99bb00dd34 io14gnqxf9dpkn05g337rl7eyt2nxasphf5m6n0rd - 0xAA260324ad0DA6FA2231f0FfEC916A99bb00dd34 ``` ``` ➜ ioctl account ethaddr 007 io14gnqxf9dpkn05g337rl7eyt2nxasphf5m6n0rd - 0xAA260324ad0DA6FA2231f0FfEC916A99bb00dd34 ``` #### Update Password Of An Account `Usage: ioctl account update (ALIAS|ADDRESS)` ``` ➜ ioctl account update IOsenser #IOsenser: Enter current password #IOsenser: Enter new password #IOsenser: Enter new password again Account #IOsenser has been updated. ``` ## Alias #### Set Alias `Usage: ioctl alias set ALIAS ADDRESS` ``` ➜ ioctl alias set test io1l3wc0smczyay8xq747e2hw63mzg3ctp6uf8wsg set ``` #### Remove Alias `Usage: ioctl alias remove ALIAS` ``` ➜ ioctl alias remove frank frank is removed ``` #### List Alias `Usage: ioctl alias list` ``` ➜ ioctl alias list io1r2r0um9dw35922tptkuphseq43hq2knk3fjrlt - IOsenser io1l3wc0smczyay8xq747e2hw63mzg3ctp6uf8wsg - test io14gnqxf9dpkn05g337rl7eyt2nxasphf5m6n0rd - whale ``` ## Action #### Transfer Tokens `Usage: ioctl action transfer (ALIAS|RECIPIENT_ADDRESS) AMOUNT_IOTX [DATA] -s SIGNER [-l GAS_LIMIT] [-p GAS_PRICE]` ``` ➜ ioctl action transfer IOsenser 7 pad#3212 -s whale Enter password #whale: senderAddress: io14gnqxf9dpkn05g337rl7eyt2nxasphf5m6n0rd (whale) transfer: < recipient: io1r2r0um9dw35922tptkuphseq43hq2knk3fjrlt (IOsenser) amount: 7000000000000000000 payload: pad#3212 > senderPubKey: 04f591bf3d3e233f6705c8a78823e9ea4a9a73365ca4dd1e60e5567558135778fde8b79dc883b04a98ab68a0fe9e3b7ce984fceca0466c03f93f40d32915bf1d88 signature: 64f9dc75b3406a009692cde669d3186bc29844ba70520e16fdafc14487d8d6be184c4a43f5f7e1f688d759c985a268d1a4b73b34b9e98d1db61adcb549a37d0101 Please confirm your action. Type 'YES' to continue, quit for anything else. yes Action has been sent to blockchain. Wait for several seconds and query this action by hash: iotexscan.io/action/aa56b8958d5030676876363ec054df4ac7044ea2fc09f51a1c238d22c9411c33 ``` #### Query Action `Usage: ioctl action hash ACTION_HASH` ``` → ioctl action hash 690fb07fbb5ba3b762a7a16edea35ff1c3b02b43a6331aef88c4daa1bc933ad4 version: 1 nonce: 7 gasLimit: 122222 gasPrice: 2000000000000 Rau senderAddress: io1znka733xefxjjw2wqddegplwtefun0mfdmz7dw (whale) transfer: < recipient: io18jaldgzc8wlyfnzamgas62yu3kg5nw527czg37 (nani) amount: 123000000000000000000 Rau payload: > senderPubKey: 04d0fade363080b9061844ed6b1009f35595515b31295e37e870106d3201a638856db2c3f870dbbcafc559af54574f3487dbea0d318588608d7aca8e77e4ce5ade signature: 2e10f265fdc5944fab11afaebd258292afe8f9076157fbaca6bfdd3ece9047483fb3aa10ce187fe55d2d9c591e5eda430833b744f825a6ae34c9b34461d3940f01 #This action has been written on blockchain returnValue: status: 1 (Success) actHash: 690fb07fbb5ba3b762a7a16edea35ff1c3b02b43a6331aef88c4daa1bc933ad4 gasConsumed: 10000 contractAddress: logs:0 ``` #### Deploy Contract `Usage: ioctl action deploy -s SIGNER -b BYTE_CODE -l GAS_LIMIT [-p GAS_PRICE]` ``` ➜ ioctl action deploy -b 608060405234801561001057600080fd5b5060df8061001f6000396000f3006080604052600436106049576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806360fe47b114604e5780636d4ce63c146078575b600080fd5b348015605957600080fd5b5060766004803603810190808035906020019092919050505060a0565b005b348015608357600080fd5b50608a60aa565b6040518082815260200191505060405180910390f35b8060008190555050565b600080549050905600a165627a7a7230582009e6d7025fff5ff3ba4cf7ba6b842526416df976e012a516f37e397607c1f2360029 -l 50000 -p 1 -s whale Enter password #whale: senderAddress: io14gnqxf9dpkn05g337rl7eyt2nxasphf5m6n0rd (whale) version: 1 nonce: 3 gasLimit: 50000 gasPrice: 1000000000000 execution: < contract: amount: 0 data: 608060405234801561001057600080fd5b5060df8061001f6000396000f3006080604052600436106049576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806360fe47b114604e5780636d4ce63c146078575b600080fd5b348015605957600080fd5b5060766004803603810190808035906020019092919050505060a0565b005b348015608357600080fd5b50608a60aa565b6040518082815260200191505060405180910390f35b8060008190555050565b600080549050905600a165627a7a7230582009e6d7025fff5ff3ba4cf7ba6b842526416df976e012a516f37e397607c1f2360029 > senderPubKey: 04f591bf3d3e233f6705c8a78823e9ea4a9a73365ca4dd1e60e5567558135778fde8b79dc883b04a98ab68a0fe9e3b7ce984fceca0466c03f93f40d32915bf1d88 signature: a0cbb205184c3153217bdd7e1d251a70bf8d9222b7ab9b8015254e5961f21602694477ea5bed2005fe21f47724130af173b7abe2b5f9304b09f188749c88c2f001 Please confirm your action. Type 'YES' to continue, quit for anything else. yes Action has been sent to blockchain. Wait for several seconds and query this action by hash: b49e5860c5b4154fdb6bcb808a60fbf8de2ac7807d99551ec5357d83ad2612e5 ``` #### Invoke Contract `Usage: ioctl action invoke (ALIAS|CONTRACT_ADDRESS) [AMOUNT_IOTX] -s SIGNER -b BYTE_CODE -l GAS_LIMIT [-p GAS_PRICE]` ``` ➜ ioctl action invoke io1vqzcl56vlfspyaadyxhqy07jrmalx73vdaklzn 122 -s boss -b 60fe47b10000000000000000000000000000000000000000000000000000000000000001 -l 90000 -p 3 Enter password #boss: senderAddress: io1ed52svvdun2qv8sf2m0xnynuxfaulv6jlww7ur version: 1 nonce: 2 gasLimit: 90000 gasPrice: 3000000000000 execution: < contract: io1vqzcl56vlfspyaadyxhqy07jrmalx73vdaklzn amount: 122000000000000000000 data: 60fe47b10000000000000000000000000000000000000000000000000000000000000001 > senderPubKey: 04b3fe4456876ca4c904c52dc3203e06651924d6cbd5e9f545ce990ea1289f3b8ddaff3b7e104803187f87b1e375076285e7137052260b14f2f33229a671a39a0c signature: bde6509fadfe80b707ef80e24041b4cfe7bf583c7d89a0649027090c191918b217ffae5faf1dd5f2d9e6d05f8721c8ff7a6b3b5cffb64610d3bad71c9c55e47001 Please confirm your action. Type 'YES' to continue, quit for anything else. yes Action has been sent to blockchain. Wait for several seconds and query this action by hash: 58fc6465bd3b7e33b1508064b0342dc786247b4e18859be72fea57c993dc4950 ``` #### Claim Reward `Usage: ioctl action claim AMOUNT_IOTX [DATA] -s SIGNER [-l GAS_LIMIT] [-p GASPRICE]` ``` ➜ ioctl action claim 321 happy -s whale Enter password #whale: senderAddress: io14gnqxf9dpkn05g337rl7eyt2nxasphf5m6n0rd (whale) version: 1 nonce: 6 gasLimit: 15000 gasPrice: "1000000000000" claimFromRewardingFund: < amount: "321000000000000000000" data: "happy" > senderPubKey: 04f591bf3d3e233f6705c8a78823e9ea4a9a73365ca4dd1e60e5567558135778fde8b79dc883b04a98ab68a0fe9e3b7ce984fceca0466c03f93f40d32915bf1d88 signature: 6b4022afc93901b7de420f84829e9f3e2f531a83c4c0f3a935df3694dbe09e7f068733a294207e9ee39e0d83b4fc206e9f7059592e648b8d92a0bb1eed489f4000 Please confirm your action. Type 'YES' to continue, quit for anything else. yes Action has been sent to blockchain. Wait for several seconds and query this action by hash: 59a73e24a41385005519d1d1e7f164b36b98717f2c5649785b43c2588245502d ``` ## XRC20 #### Query Total Token Supply On Erc20 Contract `Usage: ioctl xrc20 totalSupply -c ALIAS|CONTRACT_ADDRESS` ``` ➜ ioctl xrc20 totalSupply -c io1y9ndaezjrdlkw93hquqru7txh9jcsmtmrvt4yw Raw output: 0000000000000000000000000000000000000000010f73e141e95768f6bfacac Output in decimal: 328166124527934490560933036 ``` #### Query Account Balance On Erc20 Contract `Usage: ioctl xrc20 balanceOf ALIAS|ACCOUNT_ADDRESS -c ALIAS|CONTRACT_ADDRESS` ``` ➜ ioctl xrc20 balanceOf io1q4enhh0tp5pqpa6s4urhwrx32529pmyyzdgu3q -c io1y9ndaezjrdlkw93hquqru7txh9jcsmtmrvt4yw Raw output: 000000000000000000000000000000000000000000000000b469471f80170d33 Output in decimal: 13000000000000199987 ``` #### Transfer Token On Erc20 Contract `Usage: ioctl xrc20 transfer ALIAS|TARGET_ADDRESS AMOUNT -c ALIAS|CONTRACT_ADDRESS [-l GAS_LIMIT] -s SIGNER [-p GAS_PRICE]` ``` ➜ ioctl xrc20 transfer io1juvx5g063eu4ts832nukp4vgcwk2gnc5cu9ayd 4 -c io1y9ndaezjrdlkw93hquqru7txh9jcsmtmrvt4yw -s ALIAS -l 50000 Enter password #ALIAS: version: 1 nonce: 25 gasLimit: 50000 gasPrice: 1000000000000 Rau senderAddress: io1q4enhh0tp5pqpa6s4urhwrx32529pmyyzdgu3q (ALIAS) execution: < contract: io1y9ndaezjrdlkw93hquqru7txh9jcsmtmrvt4yw data: a9059cbb00000000000000000000000097186a21fa8e7955c0f154f960d588c3aca44f140000000000000000000000000000000000000000000000000000000000000004 > senderPubKey: 0420ec863f4572f6327409883d1a049e5890b7dcb36498271e19b6dcead03d515d968cb5aca91e07ca95a287275744215657802957ce6ac19ebc0c0c8aac37f8f5 signature: 1b2af5f36ec97605981553b0f02698a1760ebbdc54249eab9f0527bf42626cb923f9b22bc592f47a8176b1842a4b198a028268435b3d9c0da8df45478aa0498b00 Please confirm your action. Type 'YES' to continue, quit for anything else. yes Action has been sent to blockchain. Wait for several seconds and query this action by hash: cadb6a3944cd1941b51e2e4b350295cdd3f669f3be791a8988b7ce5c24e70a22 ``` #### Transfer Token From Another Address On Erc20 Contract `Usage: ioctl xrc20 transferFrom ALIAS|OWNER_ADDRESS ALIAS|TARGET_ADDRESS AMOUNT -c ALIAS|CONTRACT_ADDRESS [-l GAS_LIMIT] -s SIGNER [-p GAS_PRICE]` ``` ➜ ioctl xrc20 transferFrom io1q4enhh0tp5pqpa6s4urhwrx32529pmyyzdgu3q io1juvx5g063eu4ts832nukp4vgcwk2gnc5cu9ayd 4 -c io1y9ndaezjrdlkw93hquqru7txh9jcsmtmrvt4yw -s ALIAS -l 50000 Enter password #ALIAS: version: 1 nonce: 26 gasLimit: 50000 gasPrice: 1000000000000 Rau senderAddress: io1q4enhh0tp5pqpa6s4urhwrx32529pmyyzdgu3q (ALIAS) execution: < contract: io1y9ndaezjrdlkw93hquqru7txh9jcsmtmrvt4yw data: 23b872dd00000000000000000000000005733bddeb0d0200f750af07770cd1551450ec8400000000000000000000000097186a21fa8e7955c0f154f960d588c3aca44f140000000000000000000000000000000000000000000000000000000000000004 > senderPubKey: 0420ec863f4572f6327409883d1a049e5890b7dcb36498271e19b6dcead03d515d968cb5aca91e07ca95a287275744215657802957ce6ac19ebc0c0c8aac37f8f5 signature: f06725ac091df1c580c1f9d27c3e55d99c3d90d6e98bac8a9f7408ebc49fdc9d2abf90815dd1e68451cfeb08bb387db01ddea1ab91b3031582e8e6bd7a6fdde801 Please confirm your action. Type 'YES' to continue, quit for anything else. yes Action has been sent to blockchain. Wait for several seconds and query this action by hash: f3c414021df2058134f34e8c7f77d43fd67305db265f7943b4ebe13ca340aaff ``` #### Allow Spender Withdraw From Account With Limitation `Usage: ioctl approve ALIAS|SPENDER_ADDRESS XRC20_AMOUNT -c ALIAS|CONTRACT_ADDRESS -s SIGNER [-l GAS_LIMIT] ` ``` ➜ ioctl xrc20 approve io1juvx5g063eu4ts832nukp4vgcwk2gnc5cu9ayd 4 -c io1y9ndaezjrdlkw93hquqru7txh9jcsmtmrvt4yw -s ALIAS -l 50000 Enter password #ALIAS: version: 1 nonce: 27 gasLimit: 50000 gasPrice: 1000000000000 Rau senderAddress: io1q4enhh0tp5pqpa6s4urhwrx32529pmyyzdgu3q (ALIAS) execution: < contract: io1y9ndaezjrdlkw93hquqru7txh9jcsmtmrvt4yw data: 095ea7b300000000000000000000000097186a21fa8e7955c0f154f960d588c3aca44f140000000000000000000000000000000000000000000000000000000000000004 > senderPubKey: 0420ec863f4572f6327409883d1a049e5890b7dcb36498271e19b6dcead03d515d968cb5aca91e07ca95a287275744215657802957ce6ac19ebc0c0c8aac37f8f5 signature: bee99dcee1bd2e7526452e41d0759eb50ac1536c72e1834eb6fb02e158ff5d884b3ecdfc192d2473ca018d54e3dd6c3363798a259200948895ab6d84bd6e600800 Please confirm your action. Type 'YES' to continue, quit for anything else. yes Action has been sent to blockchain. Wait for several seconds and query this action by hash: a3cc433341f7d417420478d9702b9dedd376c9b6a4a9e8d590fc10bb14133e24 ``` #### Query Remaining Withdraw Amount For Spender `Usage: ioctl allowance ALIAS|OWNER_ADDRESS ALIAS|SPENDER_ADDRESS -c ALIAS|CONTRACT_ADDRESS` ``` ➜ ioctl xrc20 allowance io1q4enhh0tp5pqpa6s4urhwrx32529pmyyzdgu3q io1juvx5g063eu4ts832nukp4vgcwk2gnc5cu9ayd -c io1y9ndaezjrdlkw93hquqru7txh9jcsmtmrvt4yw Raw output: 0000000000000000000000000000000000000000000000000000000000000004 Output in decimal: 4 ``` ## Blockchain #### Query Blockchain Information `Usage: ioctl bc info` ``` ➜ ioctl bc info height:50268 numActions:50852 tps:0 epochNum:140 epochStartHeight:50041 gravityChainStartHeight:7485100 ``` #### Query Block `Usage: ioctl bc block [HEIGHT|HASH]` ``` ➜ ioctl bc block Transactions: 1 Height: 122 Total Amount: 0 Timestamp: 1553238923 Producer Public Key: io1urumju6laya40h25rx2cdseql9xm2gm8auepac Transactions Root: 8a4e41d5a183a4e12784872da4d76c32ac8d1cf11ed1543859e98000dbdf2620 Receipt Root: e8e28a529d99a70b7dab8dd6d491bdb0c20818defac307780c919a610e552d6a Delta State Digest: 82286c69c59aaff815bb888b876eed7228ea51065027dc07ac1c04e5e082ea6b Hash: 87f73c3a6e3312075a9aae70660656a9209bb11fb4d5fb1a2f21e020e20d3365 ``` ``` ➜ ioctl bc block 101 Transactions: 1 Height: 101 Total Amount: 0 Timestamp: 1553238713 Producer Public Key: io1urumju6laya40h25rx2cdseql9xm2gm8auepac Transactions Root: 8a4e41d5a183a4e12784872da4d76c32ac8d1cf11ed1543859e98000dbdf2620 Receipt Root: e8e28a529d99a70b7dab8dd6d491bdb0c20818defac307780c919a610e552d6a Delta State Digest: 999003ad9f4ea85f45a8a3ebafcb8ad03c43852fbe8cce14aaf86bed9aed8895 Hash: c9cac24ed4a782583526132cc266f3def121e34ad4c4244f8b045fdd2d82d4cc ``` ``` ➜ ioctl bc block c9cac24ed4a782583526132cc266f3def121e34ad4c4244f8b045fdd2d82d4cc Transactions: 1 Height: 101 Total Amount: 0 Timestamp: 1553238713 Producer Public Key: io1urumju6laya40h25rx2cdseql9xm2gm8auepac Transactions Root: 8a4e41d5a183a4e12784872da4d76c32ac8d1cf11ed1543859e98000dbdf2620 Receipt Root: e8e28a529d99a70b7dab8dd6d491bdb0c20818defac307780c919a610e552d6a Delta State Digest: 999003ad9f4ea85f45a8a3ebafcb8ad03c43852fbe8cce14aaf86bed9aed8895 Hash: c9cac24ed4a782583526132cc266f3def121e34ad4c4244f8b045fdd2d82d4cc ``` ## Node #### Query Delegates `Usage: ioctl node delegate [-e epoch-num|-n]` ``` ➜ ioctl node delegate Epoch: 140, Start block height: 50041, Total blocks in epoch: 238 Address Rank Alias Status Blocks Votes io1kr8c6krd7dhxaaqwdkr6erqgu4z0scug3drgja 1 active 10 55001936.845735597412152533 io108h7sa5sap44e244hz649zyk5y4rqzsvnpzxh5 2 48735653.694155983836182304 io1f0rh94m3ctkwep3rlsswwq5vxwlntx4s574l3q 3 46160987.404981007320038095 io14u5d66rt465ykm7t2847qllj0reml27q30kr75 4 45709929.504998607776485547 io1wl83n3up9w8nedf30lnyxzple0gu5pme0dyrds 5 active 10 38555248.666748708397999935 io1qqaswtu7rcevahucpfxc0zxx088pylwtxnkrrl 6 32708257.835646444877501838 io1nf0rvzgq3tqym6n3trttsrt7d4gqqsmqfzy0da 7 29712098.816122003636349154 ... ``` ``` ➜ ioctl node delegate -e 96 Epoch: 96, Start block height: 34201, Total blocks in epoch: 360 Address Rank Alias Status Blocks Votes io1kr8c6krd7dhxaaqwdkr6erqgu4z0scug3drgja 1 active 15 54541792.307642085450786008 io108h7sa5sap44e244hz649zyk5y4rqzsvnpzxh5 2 active 15 48737756.399894630566687188 io1f0rh94m3ctkwep3rlsswwq5vxwlntx4s574l3q 3 active 15 46190928.658730546519935761 io14u5d66rt465ykm7t2847qllj0reml27q30kr75 4 46085297.487903898159647528 io1wl83n3up9w8nedf30lnyxzple0gu5pme0dyrds 5 active 15 38572640.296620127370097465 io1qqaswtu7rcevahucpfxc0zxx088pylwtxnkrrl 6 active 16 32953849.701042695805874862 io1nf0rvzgq3tqym6n3trttsrt7d4gqqsmqfzy0da 7 active 15 29482829.876487336517790368 ... ``` #### Query Reward `Usage: ioctl node reward (ALIAS|DELEGATE_ADDRESS)` ``` ➜ ioctl node reward whale io1t54nfdnpldaxkpm35f2gzh3rx6cakypmp5xfz5: 45819 IOTX ``` ## Update tools #### Version `Usage: ioctl version` ``` → ioctl version Client: packageVersion:"v0.5.0" packageCommitID:"a4308fc82bea22cfaa45addef679a09f41f3a998" gitStatus:"clean" goVersion:"go version go1.11.5 darwin/amd64" buildTime:"2019-04-20-PDT/18:04:37" Server: api.iotex.one:443 packageVersion:"v0.5.0" packageCommitID:"a4308fc82bea22cfaa45addef679a09f41f3a998" gitStatus:"clean" goVersion:"go version go1.11.5 linux/amd64" buildTime:"2019-04-21-UTC/01:04:11" ``` #### Update ioctl `Usage: ioctl update [-t version-type]` ``` ➜ ioctl update Downloading the latest stable version ... Password: ioctl is up-to-date now. ``` ``` ➜ ioctl update -t unstable Downloading the latest unstable version ... Password: ioctl is up-to-date now. ``` ## Bookkeeping Bookkeeping is a GraphQL web interface for reward distributions, which collects voting status and calculates corresponding voters' reward for a given delegate within a certain epoch range. ### Get Voters' Rewards Given A Delegate Name Usage: Please refer to [Analytics Documentations](https://github.com/iotexproject/iotex-docs#bookkeeping). ### Send Out Voters' Rewards The generated bytecode can be used by `ioctl` to actually send out the voters' rewards, i.e., ``` ioctl action invoke io1sesxdghz93f4sadhu6a7242m22gphmc2aucz4g <total-amount> -l <gas-limit> -p <gas-price> -s <signer> -b <bytecode>` ``` Note that `io1sesxdghz93f4sadhu6a7242m22gphmc2aucz4g` is the pre-deployed contract for sending IOTX coins to multiple addresses. ## Action Injector Actioninjector is a simulation tool to simulate action traffic by injecting random actions to gateway node. ``` Usage: injector random [flags] Available Flags: --addr string target ip:port for grpc connection (default "127.0.0.1:14004") --aps int actions to be injected per second (default 30) --contract string smart contract address (default "io1pmjhyksxmz2xpxn2qmz4gx9qq2kn2gdr8un4xq") --duration duration duration when the injection will run (default 60h0m0s) --execution-amount int execution amount (default 50) --execution-data string execution data (default "2885ad2c") --execution-gas-limit uint execution gas limit (default 20000) --execution-gas-price int execution gas price (default 1000000000000) --injector-config-path string path of config file of genesis transfer addresses (default "./tools/actioninjector.v2/gentsfaddrs.yaml") --reset-interval duration time interval to reset nonce counter (default 10s) --retry-interval duration sleep interval between two consecutive rpc retries (default 1s) --retry-num uint maximum number of rpc retries (default 5) --transfer-gas-limit uint transfer gas limit (default 20000) --transfer-gas-price int transfer gas price (default 1000000000000) --transfer-payload string transfer payload --workers uint number of workers (default 10) -h, --help help for random ``` ### Install Release Build ``` curl --silent https://raw.githubusercontent.com/iotexproject/iotex-core/master/install-injector.sh | sh ``` ### Install Latest/Unstable Build ``` curl https://raw.githubusercontent.com/iotexproject/iotex-core/master/install-injector.sh | sh -s "unstable" ``` ## Explorer * [Github Repository](https://github.com/iotexproject/iotex-explorer) * Demo Sites: * [Mainnnet](https://iotexscan.io) * [Testnet](https://testnet.iotexscan.io) ## API ### GetAccount ``` Usage: Get Account Details Request: Address: Account Encoded Address Response: AccountMeta: Account Metadata ``` Demo: ``` ➜ ~ grpcurl -v -plaintext -d '{"address": "io1juvx5g063eu4ts832nukp4vgcwk2gnc5cu9ayd"}' 127.0.0.1:14014 iotexapi.APIService.GetAccount Resolved method descriptor: rpc GetAccount ( .iotexapi.GetAccountRequest ) returns ( .iotexapi.GetAccountResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "accountMeta": { "address": "io1juvx5g063eu4ts832nukp4vgcwk2gnc5cu9ayd", "balance": "100000000000000000000000000", "pendingNonce": 1 } } Response trailers received: (empty) Sent 1 request and received 1 response ``` ### GetActions ``` Usage: Get Actions By Index Request: ByIndex: GetActionsByIndexRequest -Start: Start Index of Actions -Count: Number of Actions Response: ActionInfo: List of Action Info ``` Demo: ``` ➜ ~ grpcurl -v -plaintext -d '{"byIndex": {"start": 0, "count": 2}}' 127.0.0.1:14014 iotexapi.APIService.GetActions Resolved method descriptor: rpc GetActions ( .iotexapi.GetActionsRequest ) returns ( .iotexapi.GetActionsResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "actionInfo": [ { "action": { "core": { "version": 1, "gasPrice": "0", "grantReward": { "height": 1 } }, "senderPubKey": "BGP1RCD6FmPHrgmDfKRMgCnTUXT0qp3Vc2lgtLgoYcR3n4bJmJFHv+WZNJqdcnJVH0jTp1rgN2675CIsNXmze7E=", "signature": "5LqZitihGMQRLnW++DQ0d7/O3zGbjyKlXGm/i9f3/nx2Z3HHwHRgOCqNAIXDAePZmWlb8ktmn2cyET8WXhowVAE=" }, "actHash": "c6f41c716b5c328fc821bd388cb73717785af91abe91c593d821332a8192ff63", "blkHash": "9631129b49d5894c738146a735f24982a59ba92bc03fbbf9b194bd51f2639cd2", "timestamp": "2019-04-16T23:37:38.925432Z" }, { "action": { "core": { "version": 1, "gasPrice": "0", "grantReward": { "height": 2 } }, "senderPubKey": "BGP1RCD6FmPHrgmDfKRMgCnTUXT0qp3Vc2lgtLgoYcR3n4bJmJFHv+WZNJqdcnJVH0jTp1rgN2675CIsNXmze7E=", "signature": "IJRc4zS1ZZy1HsKS05TRunN2zeeHNj3dlsQu5Vd8/ywGFulMXlwGzQgDfF3sVoLVFajx7IogzxVYSGdcSI6GFgE=" }, "actHash": "44807c4a778adb0ee063225e77d1a0c1f65b1acfb00c67f462d7cd6e1f50a22e", "blkHash": "3ecddc0908f6762d8d6978594f5d75529eaac2ca6618524047b5c0b88c4b3124", "timestamp": "2019-04-16T23:37:48.925676Z" } ] } Response trailers received: (empty) Sent 1 request and received 1 response ``` ### GetActions ``` Usage: Get Action By Action Hash Request: ByHash: GetActionByHashRequest -ActionHash: Hash of Action -CheckPending: Wether To Check Pending Actions in Action Pool Response: ActionInfo: Action Info ``` Demo: ``` ➜ ~ grpcurl -v -plaintext -d '{"byHash": {"actionHash": "c6f41c716b5c328fc821bd388cb73717785af91abe91c593d821332a8192ff63", "checkPending": false}}' 127.0.0.1:14014 iotexapi.APIService.GetActions Resolved method descriptor: rpc GetActions ( .iotexapi.GetActionsRequest ) returns ( .iotexapi.GetActionsResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "actionInfo": [ { "action": { "core": { "version": 1, "gasPrice": "0", "grantReward": { "height": 1 } }, "senderPubKey": "BGP1RCD6FmPHrgmDfKRMgCnTUXT0qp3Vc2lgtLgoYcR3n4bJmJFHv+WZNJqdcnJVH0jTp1rgN2675CIsNXmze7E=", "signature": "5LqZitihGMQRLnW++DQ0d7/O3zGbjyKlXGm/i9f3/nx2Z3HHwHRgOCqNAIXDAePZmWlb8ktmn2cyET8WXhowVAE=" }, "actHash": "c6f41c716b5c328fc821bd388cb73717785af91abe91c593d821332a8192ff63", "blkHash": "9631129b49d5894c738146a735f24982a59ba92bc03fbbf9b194bd51f2639cd2", "timestamp": "2019-04-16T23:37:38.925432Z" } ] } Response trailers received: (empty) Sent 1 request and received 1 response ``` ### GetActions ``` Usage: Get Actions By Address Request: ByAddr: GetActionsByAddressRequest -Address: Encoded Address -Start: Start Index of Actions -Count: Number of Actions Resposne: ActionInfo: List of Action Info ``` Demo: ``` ➜ ~ grpcurl -v -plaintext -d '{"byAddr": {"address": "io1juvx5g063eu4ts832nukp4vgcwk2gnc5cu9ayd", "start": 0, "count": 1}}' 127.0.0.1:14014 iotexapi.APIService.GetActions Resolved method descriptor: rpc GetActions ( .iotexapi.GetActionsRequest ) returns ( .iotexapi.GetActionsResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "actionInfo": [ { "action": { "core": { "version": 1, "nonce": 1, "gasLimit": 10000, "gasPrice": "10000000000000", "transfer": { "amount": "1000000000000000000", "recipient": "io1sxm6zl56um2c3ntq5fwqjar4za5ka560x53muy" } }, "senderPubKey": "BOk7WxyPumkmNlKkg61VMY5O7VtRIjFMt/2wd9jHKVCXzsku5QsRCNx0lalyDlkh5W0wSON6vmpnFtfJuRPp8uY=", "signature": "9mrqFBggiRocZhkRVUswxs83NaEFNdEYYczI8049vlovHEP4YMQz+3Isznc3CrYaJxAbc2PTIz7y2meerJ8bHAA=" }, "actHash": "060a93a4784469f9e587da0c90ed20df58b0effb50d6b8ddcd9a4c65ad55fcbd", "blkHash": "6344115bcd43b7315ffdf5338d0f97b26caed7734efea034a27208f64670f5e9", "timestamp": "2019-04-17T00:10:30.468419Z" } ] } Response trailers received: (empty) Sent 1 request and received 1 response ``` ### GetActions ``` Usage: Get Unconfirmed Actions By Address Request: UnconfirmedByAddr: GetUnconfirmedActionsByAddressRequest -Address: Encoded Address -Start: Start Index of Unconfirmed Actions -Count: Number of Unconfirmed Actions Resposne: ActionInfo: List of Action Info ``` Demo: ``` ➜ ~ grpcurl -v -plaintext -d '{"unconfirmedByAddr": {"address": "io1juvx5g063eu4ts832nukp4vgcwk2gnc5cu9ayd", "start": 0, "count": 1}}' 127.0.0.1:14014 iotexapi.APIService.GetActions Resolved method descriptor: rpc GetActions ( .iotexapi.GetActionsRequest ) returns ( .iotexapi.GetActionsResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { } Response trailers received: (empty) Sent 1 request and received 1 response ``` ### GetActions ``` Usage: Get Actions By Block Request: ByBlk: GetActionsByBlockRequest -BlkHash: Block Hash -Start: Start Index of Actions -Count: Number of Actions Resposne: ActionInfo: List of ActionInfo ``` Demo: ``` ➜ ~ grpcurl -v -plaintext -d '{"byBlk": {"blkHash": "6344115bcd43b7315ffdf5338d0f97b26caed7734efea034a27208f64670f5e9", "start": 0, "count": 1}}' 127.0.0.1:14014 iotexapi.APIService.GetActions Resolved method descriptor: rpc GetActions ( .iotexapi.GetActionsRequest ) returns ( .iotexapi.GetActionsResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "actionInfo": [ { "action": { "core": { "version": 1, "nonce": 1, "gasLimit": 10000, "gasPrice": "10000000000000", "transfer": { "amount": "1000000000000000000", "recipient": "io1sxm6zl56um2c3ntq5fwqjar4za5ka560x53muy" } }, "senderPubKey": "BOk7WxyPumkmNlKkg61VMY5O7VtRIjFMt/2wd9jHKVCXzsku5QsRCNx0lalyDlkh5W0wSON6vmpnFtfJuRPp8uY=", "signature": "9mrqFBggiRocZhkRVUswxs83NaEFNdEYYczI8049vlovHEP4YMQz+3Isznc3CrYaJxAbc2PTIz7y2meerJ8bHAA=" }, "actHash": "060a93a4784469f9e587da0c90ed20df58b0effb50d6b8ddcd9a4c65ad55fcbd", "blkHash": "6344115bcd43b7315ffdf5338d0f97b26caed7734efea034a27208f64670f5e9", "timestamp": "2019-04-17T00:10:30.468419Z" } ] } Response trailers received: (empty) Sent 1 request and received 1 response ``` ### GetBlockMetas ``` Usage: Get Block Metadata By Index Request: ByIndex: GetBlockMetasByIndexRequest -Start: Start Block Height -Count: Number of Blocks Response: BlkMetas: List of Block Metadata ``` Demo: ``` ➜ ~ grpcurl -v -plaintext -d '{"byIndex": {"start": 1, "count": 2}}' 127.0.0.1:14014 iotexapi.APIService.GetBlockMetas Resolved method descriptor: rpc GetBlockMetas ( .iotexapi.GetBlockMetasRequest ) returns ( .iotexapi.GetBlockMetasResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "blkMetas": [ { "hash": "b7754977cae0f2a45a4ae2b7f0dfc20487e5acfa93594e5eaa1e93f5ec88800f", "height": 1, "timestamp": "2019-04-17T00:08:50.466089Z", "numActions": 1, "producerAddress": "io1sxm6zl56um2c3ntq5fwqjar4za5ka560x53muy", "transferAmount": "0", "txRoot": "285ff4de28a16dafc49d8c46d24fa99433ac08f24be8962c7a01ade65068a34a", "receiptRoot": "60d78681f8e531307e9ef1916f8ff8d387d922e47d0459e14d575f40ac042195", "deltaStateDigest": "206c92297a78c59ff6fe3a6351e755fda8ae9bb40b25084e0588b0af43445ca7" }, { "hash": "47406baaee6af2775ef61c46373b6d0202b228f11e1a7a2f986f7d617f64f593", "height": 2, "timestamp": "2019-04-17T00:09:00.465902Z", "numActions": 1, "producerAddress": "io1sxm6zl56um2c3ntq5fwqjar4za5ka560x53muy", "transferAmount": "0", "txRoot": "d63be4dc98821a28410f694a4fd71179e79db638496a9510c67e5b1a0fc0dac4", "receiptRoot": "89cd1950dc9b51f8cf7078ffb38046d31e421c3add9c06abdd3cbcc99e5bf265", "deltaStateDigest": "8a7d0cee0eb6b6010088e0b4a2996668a29eb595ea83533b9e33fdecc15bf758" } ] } Response trailers received: (empty) Sent 1 request and received 1 response ``` ### GetBlockMetas ``` Usage: Get Block Metadata By Block Hash Request: ByHash: GetBlockMetaByHashRequest -BlkHash: Block Hash Response: BlkMetas: Block Metadata ``` Demo: ``` ➜ ~ grpcurl -v -plaintext -d '{"byHash": {"blkHash": "b7754977cae0f2a45a4ae2b7f0dfc20487e5acfa93594e5eaa1e93f5ec88800f"}}' 127.0.0.1:14014 iotexapi.APIService.GetBlockMetas Resolved method descriptor: rpc GetBlockMetas ( .iotexapi.GetBlockMetasRequest ) returns ( .iotexapi.GetBlockMetasResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "blkMetas": [ { "hash": "b7754977cae0f2a45a4ae2b7f0dfc20487e5acfa93594e5eaa1e93f5ec88800f", "height": 1, "timestamp": "2019-04-17T00:08:50.466089Z", "numActions": 1, "producerAddress": "io1sxm6zl56um2c3ntq5fwqjar4za5ka560x53muy", "transferAmount": "0", "txRoot": "285ff4de28a16dafc49d8c46d24fa99433ac08f24be8962c7a01ade65068a34a", "receiptRoot": "60d78681f8e531307e9ef1916f8ff8d387d922e47d0459e14d575f40ac042195", "deltaStateDigest": "206c92297a78c59ff6fe3a6351e755fda8ae9bb40b25084e0588b0af43445ca7" } ] } Response trailers received: (empty) Sent 1 request and received 1 response ``` ### GetChainMeta ``` Usage: Get Blockchain Metadata Request: N/A Response: ChainMeta: Blockchain Metadata ``` Demo: ``` ➜ ~ grpcurl -v -plaintext 127.0.0.1:14014 iotexapi.APIService.GetChainMeta Resolved method descriptor: rpc GetChainMeta ( .iotexapi.GetChainMetaRequest ) returns ( .iotexapi.GetChainMetaResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "chainMeta": { "height": 88, "numActions": 90, "epoch": { "num": 2, "height": 49, "gravityChainStartHeight": 49 } } } Response trailers received: (empty) Sent 0 requests and received 1 response ``` ### GetServerMeta ``` Usage: Get Server Metadata Request: N/A Reponse: ServerMeta: Server Metadata ``` Demo: ``` ➜ ~ grpcurl -v -plaintext 127.0.0.1:14014 iotexapi.APIService.GetServerMeta Resolved method descriptor: rpc GetServerMeta ( .iotexapi.GetServerMetaRequest ) returns ( .iotexapi.GetServerMetaResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "serverMeta": { "packageVersion": "v0.7.0-35-g3baac429", "packageCommitID": "3baac429420ae74a2d1e97a866f745ca796fc192", "gitStatus": "clean", "goVersion": "go version go1.12.5 darwin/amd64", "buildTime": "2019-06-17-PDT/16:32:37" } } Response trailers received: (empty) Sent 0 requests and received 1 response ``` ### SendAction ``` Usage: Send Action Request: Action: Action Response: ActionHash: Hash of Action ``` Demo: ``` ➜ ~ grpcurl -v -plaintext -d '{"action": {"core": {"version": 1, "nonce": 2, "gasLimit": 10000, "gasPrice": "10", "transfer": {"amount": "100", "recipient": "io1sxm6zl56um2c3ntq5fwqjar4za5ka560x53muy"}}, "senderPubKey": "BOk7WxyPumkmNlKkg61VMY5O7VtRIjFMt/2wd9jHKVCXzsku5QsRCNx0lalyDlkh5W0wSON6vmpnFtfJuRPp8uY=", "signature": "9mrqFBggiRocZhkRVUswxs83NaEFNdEYYczI8049vlovHEP4YMQz+3Isznc3CrYaJxAbc2PTIz7y2meerJ8bHAA="}}' 127.0.0.1:14014 iotexapi.APIService.SendAction Resolved method descriptor: rpc SendAction ( .iotexapi.SendActionRequest ) returns ( .iotexapi.SendActionResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "actionHash": "8890dca441898a3d942de05f7514f32c96afbcde1493ddd76aed1aaecb60af06" } Response trailers received: (empty) Sent 1 request and received 1 response ``` ### GetReceiptByAction ``` Usage: Get Action Receipt By Action Hash Request: ActionHash: Action Hash Response: Receipt: Action Receipt ``` Demo: ``` ➜ ~ grpcurl -v -plaintext -d '{"actionHash": "060a93a4784469f9e587da0c90ed20df58b0effb50d6b8ddcd9a4c65ad55fcbd"}' 127.0.0.1:14014 iotexapi.APIService.GetReceiptByAction Resolved method descriptor: rpc GetReceiptByAction ( .iotexapi.GetReceiptByActionRequest ) returns ( .iotexapi.GetReceiptByActionResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "receiptInfo": { "receipt": { "status": 1, "blkHeight": 106, "actHash": "BgqTpHhEafnlh9oMkO0g31iw7/tQ1rjdzZpMZa1V/L0=", "gasConsumed": 10000, "contractAddress": "io1enfa3p3aysdueq85vvprzzndjs4fp6z32hf7xs" }, "blkHash": "c331e7610109ab2e799b0341a57f926fe130ed6361af320a59dd8520a838e2e1" } } Response trailers received: (empty) Sent 1 request and received 1 response ``` ### ReadContract ``` Usage: Read Contract State Request: Action: Action (Must Be An Execution) Response: Data: Return Value in Execution Receipt ``` Demo: ``` ➜ ~ grpcurl -v -plaintext -d '{"action": {"core": {"version": 1, "nonce": 2, "gasLimit": 10000, "gasPrice": "10", "execution": {"amount": "0", "contract": ""}}, "senderPubKey": "BOk7WxyPumkmNlKkg61VMY5O7VtRIjFMt/2wd9jHKVCXzsku5QsRCNx0lalyDlkh5W0wSON6vmpnFtfJuRPp8uY=", "signature": "9mrqFBggiRocZhkRVUswxs83NaEFNdEYYczI8049vlovHEP4YMQz+3Isznc3CrYaJxAbc2PTIz7y2meerJ8bHAA="}}' 127.0.0.1:14014 iotexapi.APIService.ReadContract Resolved method descriptor: rpc ReadContract ( .iotexapi.ReadContractRequest ) returns ( .iotexapi.ReadContractResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "receipt": { "status": 1, "blkHeight": 26, "actHash": "2bAgDlDdF84K+XNCW95wdjMpmQqVP2b04ghyMXoN6J4=", "gasConsumed": 10000, "contractAddress": "io18vlvlj0v02yye70kpqtzhu4uek3qqz27zm7g42" } } Response trailers received: (empty) Sent 1 request and received 1 response ``` ### ReadState ``` Usage: Read State on Blockchain Request: ProtocolID: Protocol ID MethodName: Method To Be Invoked To Read State Arguments: List of Method Arguments Response: Data: State Result ``` Demo: ``` ➜ ~ grpcurl -v -plaintext -d '{"protocolID": "cmV3YXJkaW5n", "methodName": "VW5jbGFpbWVkQmFsYW5jZQ==", "arguments": "aW8xanV2eDVnMDYzZXU0dHM4MzJudWtwNHZnY3drMmduYzVjdTlheWQ="}' 127.0.0.1:14014 iotexapi.APIService.ReadState Resolved method descriptor: rpc ReadState ( .iotexapi.ReadStateRequest ) returns ( .iotexapi.ReadStateResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "data": "MA==" } Response trailers received: (empty) Sent 1 request and received 1 response ``` ### SuggestGasPrice ``` Usage: Get Suggested Gas Price Request: N/A Response: GasPrice: Gas Price ``` Demo: ``` ➜ ~ grpcurl -v -plaintext 127.0.0.1:14014 iotexapi.APIService.SuggestGasPrice Resolved method descriptor: rpc SuggestGasPrice ( .iotexapi.SuggestGasPriceRequest ) returns ( .iotexapi.SuggestGasPriceResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "gasPrice": 1 } Response trailers received: (empty) Sent 0 requests and received 1 response ``` ### EstimateGasForAction ``` Usage: Get Estimated Gas For Action Request: Action: Action Response: Gas: Gas ``` Demo: ``` ➜ ~ grpcurl -v -plaintext -d '{"action": {"core": {"version": 1, "nonce": 2, "gasLimit": 10000, "gasPrice": "10", "execution": {"amount": "0", "contract": ""}}, "senderPubKey": "BOk7WxyPumkmNlKkg61VMY5O7VtRIjFMt/2wd9jHKVCXzsku5QsRCNx0lalyDlkh5W0wSON6vmpnFtfJuRPp8uY=", "signature": "9mrqFBggiRocZhkRVUswxs83NaEFNdEYYczI8049vlovHEP4YMQz+3Isznc3CrYaJxAbc2PTIz7y2meerJ8bHAA="}}' 127.0.0.1:14014 iotexapi.APIService.EstimateGasForAction Resolved method descriptor: rpc EstimateGasForAction ( .iotexapi.EstimateGasForActionRequest ) returns ( .iotexapi.EstimateGasForActionResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "gas": 10000 } Response trailers received: (empty) Sent 1 request and received 1 response ``` ### GetEpochMeta ``` Usage: Get Epoch Metadata Given an Epoch Number Request: EpochNumber: Epoch Number Response: EpochData: Basic Epoch Information TotalBlocks: Number of Blocks in the Epoch BlockProducersInfo: List of Block Producer Information ``` Demo: ``` ➜ ~ grpcurl -v -plaintext -d '{"epochNumber": 1}' api.iotex.one:80 iotexapi.APIService.GetEpochMeta Resolved method descriptor: rpc GetEpochMeta ( .iotexapi.GetEpochMetaRequest ) returns ( .iotexapi.GetEpochMetaResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc date: Wed, 17 Apr 2019 02:31:41 GMT server: envoy x-envoy-upstream-service-time: 15 Response contents: { "epochData": { "num": 1, "height": 1, "gravityChainStartHeight": 7502300 }, "totalBlocks": 360, "blockProducersInfo": [ { "address": "io1gh7xfrsnj6p5uqgjpk9xq6jg9na28aewgp7a9v", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1scs89jur7qklzh5vfrmha3c40u8yajjx6kvzg9", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io159fv8mu9d5djk8u2t0flgw4yqmt6fg98uqjka8", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1cup9k8hl8fp40vrj29ex8djc346780dk223end", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1wv5m0xyermvr2n0wjx2cjsqwyk863drdl5qfyn", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1gf08snppu2a2wfd50pjas2j6q2kcxjzqph3pep", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1u5ff879gg2dw9vfpxr2tsmuaz07e2rea6gvl7s", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1ar5l5s268rtgzshltnqv88mua06ucm58dx678y", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1xsx5n94kg2zv64r7tm8vyz9mh86amfak9ka9xx", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1x9kjkr0qv2fa7j4t2as8lrj223xxsqt4tl7xp7", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1fks575kklxafq4fwjccmz5d3pmq5ynxk5h6h0v", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1vtm2zgn830pn6auc2cvnchgwdaefa9gr4z0s86", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io12yxdwewry70gr9fs6fphyfaky9c7gurmzk8f4f", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1c3r4th3zrk4uhv83a9gr4gvn3y6pzaj6mc84ea", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io15fqav3tugm96ge7anckx0k4gukz5m4mqf0jpv3", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io14vmhs9c75r2ptxdaqrtk0dz7skct30pxmt69d9", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1v0q5g2f8z6l3v25krl677chdx7g5pwt9kvqfpc", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1z7mjef7w528nasnsafan0rp6yuvkvq405l6r8j", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1xsdegzr2hdj5sv5ad4nr0yfgpsd98e40u6svem", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1nyjs526mnqcsx4twa7nptkg08eclsw5c2dywp4", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1du4eq4f88n4wyc026l3gamjwetlgsg4jz7j884", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io127ftn4ry6wgxdrw4hcd6gdwqlq70ujk98dvtw5", "votes": "10000000000000000000000000", "active": true, "production": 15 }, { "address": "io1jafqlvntcxgyp6e0uxctt3tljzc3vyv5hg4ukh", "votes": "10000000000000000000000000", "active": true, "production": 16 }, { "address": "io15npzu93ug8r3zdeysppnyrcdu2xssz0lcam9l9", "votes": "10000000000000000000000000", "active": true, "production": 14 } ] } Response trailers received: (empty) Sent 1 request and received 1 response ``` ### GetRawBlocks ``` Usage: Get A List of Raw Block Data Request: StartHeight: Start Block Height Count: Block Count WithReceipts: Whether to Include Action Receipts in Each Returned Block Response: Blocks: A List of Raw Block Data ``` Demo: ``` ➜ ~ grpcurl -v -plaintext -d '{"startHeight": 1, "count": 2, "withReceipts": true}' 127.0.0.1:14014 iotexapi.APIService.GetRawBlocks Resolved method descriptor: rpc GetRawBlocks ( .iotexapi.GetRawBlocksRequest ) returns ( .iotexapi.GetRawBlocksResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "blocks": [ { "block": { "header": { "core": { "version": 1, "height": 1, "timestamp": "2019-06-17T23:33:04.755448Z", "prevBlockHash": "N9XWktUXQo60gwwqV17n5trTKkbUp/Ob6UY841g+AtA=", "txRoot": "5Pn9BOMAgzj0LX9o6AD8O/FbDueiA5eS+9MUMzQ6QwY=", "deltaStateDigest": "tE9Ywa/2MvNDO7F8scFh9/4ijrGXTClVunKbp5eeU8M=", "receiptRoot": "EbGK2TCBJbVMEn04tBRy0PdceJ1O2N3IxnU7Fggjl2o=" }, "producerPubkey": "BB5cvAz6DM+BTzw9RADTmMqz0WPDofHDEGQ2kNl20p49+i0O2b5yH6Xc7EeqethWkyI8nw1BrrRleRkqfsHU9m8=", "signature": "oZxrQvUteVeq+SMCxg6I+MwJ4IkKWFzDhFi3hIQ9j9IYL69RRWsRc+pxXAjdfRCiLuCXGnkaP+nUXnR3Atm8EwA=" }, "body": { "actions": [ { "core": { "version": 1, "gasPrice": "0", "grantReward": { "height": 1 } }, "senderPubKey": "BB5cvAz6DM+BTzw9RADTmMqz0WPDofHDEGQ2kNl20p49+i0O2b5yH6Xc7EeqethWkyI8nw1BrrRleRkqfsHU9m8=", "signature": "gE9H+i0EZNTVHhoX7fq4xn6H8FqBrFKK0YyfcH16mrFT0rSvgVDb/ov2hAwgMh5kJVHaD8TG6UX7fayK5lpCXQA=" } ] }, "footer": { "timestamp": "0001-01-01T00:00:00Z" } }, "receipts": [ { "blkHeight": 1, "actHash": "5Pn9BOMAgzj0LX9o6AD8O/FbDueiA5eS+9MUMzQ6QwY=", "contractAddress": "io154mvzs09vkgn0hw6gg3ayzw5w39jzp47f8py9v" } ] }, { "block": { "header": { "core": { "version": 1, "height": 2, "timestamp": "2019-06-17T23:33:14.756354Z", "prevBlockHash": "7bI37oyjBvl+TTx5Fw089xCe8AJb7YneCsmqOLiJ88k=", "txRoot": "qQZkW9iZ+xsl0SjVJmsIDDpQ9RcWyge/sBcvHOZFgKQ=", "deltaStateDigest": "S7dJ9+p/BUNaiRFQLl6+Lc/u5B5s4jlJ5LldIFwof9c=", "receiptRoot": "S2ZBa1FtEUSDmBqTbnS4w4RfhHfyyDJofaxL1U36+9I=" }, "producerPubkey": "BB5cvAz6DM+BTzw9RADTmMqz0WPDofHDEGQ2kNl20p49+i0O2b5yH6Xc7EeqethWkyI8nw1BrrRleRkqfsHU9m8=", "signature": "s/JZHbuZaMKOqWACHsGbezciRBSS7XYU9QuY2w3BgM8pEYWtYXZYWVJiHU3r0Z1Z7PXFMKc1glpONXkLiXwReQA=" }, "body": { "actions": [ { "core": { "version": 1, "gasPrice": "0", "grantReward": { "height": 2 } }, "senderPubKey": "BB5cvAz6DM+BTzw9RADTmMqz0WPDofHDEGQ2kNl20p49+i0O2b5yH6Xc7EeqethWkyI8nw1BrrRleRkqfsHU9m8=", "signature": "gMlB2v2RwSHnNuilZX89K+EOtCKDfmfouI97GO+DcU82VHm9LE4NG1TVgUQe6z94aOSHrEwyUKtINuv5QOmNIgA=" } ] }, "footer": { "timestamp": "0001-01-01T00:00:00Z" } }, "receipts": [ { "blkHeight": 2, "actHash": "qQZkW9iZ+xsl0SjVJmsIDDpQ9RcWyge/sBcvHOZFgKQ=", "contractAddress": "io154mvzs09vkgn0hw6gg3ayzw5w39jzp47f8py9v" } ] } ] } Response trailers received: (empty) Sent 1 request and received 1 response ``` ### StreamBlocks ``` Usage: Subscribe to Block Creations Request: N/A Response: Block: Newly Created Block Data ``` Demo: ``` ➜ ~ grpcurl -v -plaintext 127.0.0.1:14014 iotexapi.APIService.StreamBlocks Resolved method descriptor: rpc StreamBlocks ( .iotexapi.StreamBlocksRequest ) returns ( stream .iotexapi.StreamBlocksResponse ); Request metadata to send: (empty) Response headers received: content-type: application/grpc Response contents: { "block": { "block": { "header": { "core": { "version": 1, "height": 365, "timestamp": "2019-06-18T00:36:41.655617Z", "prevBlockHash": "p3qrdtYuIfan08r8ZB4JFdpjaYAWUMGLrsxxn/nGO6g=", "txRoot": "F484nSOb8CVSNZiOETu1eEfgbwW9kGjX+zFv/OXaAvI=", "deltaStateDigest": "z9zsiQmR7MZh6uEBPMgPGO5snxq1YJW9ESCoZun/fD4=", "receiptRoot": "8Xb+12FYKrbN2mM4UiFd3htkyagI8U5xX8mtUJegmgY=" }, "producerPubkey": "BB5cvAz6DM+BTzw9RADTmMqz0WPDofHDEGQ2kNl20p49+i0O2b5yH6Xc7EeqethWkyI8nw1BrrRleRkqfsHU9m8=", "signature": "7qJKGnbCDJsfSWxuE9NYsFiqwxr6Urgz6NNu6KUZuWhygPDrEpD6uC4qgqplwFXXF7Zhlclwh7UQlaEcL0i5ZAE=" }, "body": { "actions": [ { "core": { "version": 1, "gasPrice": "0", "grantReward": { "height": 365 } }, "senderPubKey": "BB5cvAz6DM+BTzw9RADTmMqz0WPDofHDEGQ2kNl20p49+i0O2b5yH6Xc7EeqethWkyI8nw1BrrRleRkqfsHU9m8=", "signature": "WWDGUs/EbG1mvTc2MAD06YSZ71bnXK9BBCzTezn2aQBKZCB2PiKbuzQM43dB7AZVmmY0Q7A/JOHqgq/TyZyi1wA=" } ] }, "footer": { "timestamp": "0001-01-01T00:00:00Z" } }, "receipts": [ { "blkHeight": 365, "actHash": "F484nSOb8CVSNZiOETu1eEfgbwW9kGjX+zFv/OXaAvI=", "contractAddress": "io154mvzs09vkgn0hw6gg3ayzw5w39jzp47f8py9v" } ] } } ``` ## Analytics Analytics is a GraphQL web interface for reading the analyzed blockchain data. You can try it [here](https://analytics.iotexscan.io). ### Delegate #### Bookkeeping ``` Usage: Bookkeeping gives delegates an overview of the reward distributions to their voters within a range of epochs Request: startEpoch: starting epoch number epochCount: epoch count delegateName: delegate name percentage: percentage of reward distribution includeFoundationBonus: whether include foundation bonus as part of the reward distribution Pagination: skip: starting index of displaying reward distribution list first: number of reward distributions to display Response: exist: whether the delegate has bookkeeping information within the specified epoch range rewardDistribution: voterEthAddress: voter’s ERC20 address voterIotexAddress: voter’s IoTeX address amount: amount of reward distribution count: total number of reward distributions ``` #### Productivity ``` Usage: Productivity gives block productivity of producers within a range of epochs Request: startEpoch: starting epoch number epochCount: epoch count delegateName: producer name Response: exist: whether the delegate has productivity information within the specified epoch range production: number of block productions expectedProduction: number of expected block productions ``` #### Reward ``` Usage: Rewards provides reward detail information for candidates within a range of epochs Request: startEpoch: starting epoch number epochCount: epoch count delegateName: candidate name Response: exist: whether the delegate has reward information within the specified epoch range blockReward: amount of block rewards epochReward: amount of epoch rewards foundationBonus: amount of foundation bonus ``` #### BucketInfo ``` Usage: BucketInfo provides voting bucket detail information for candidates within a range of epochs Request: startEpoch: starting epoch number epochCount: epoch count delegateName: candidate name Response: exist: whether the delegate has voting bucket information within the specified epoch range epochNumber: epoch number bucketInfoList: voterEthAddress: voter’s ERC20 address weightedVotes: voter’s weighted votes count: total number of buckets in the given epoch for the given delegate ``` #### Staking ``` Usage: Staking provides staking information for candidates within a range of epochs Request: startEpoch: starting epoch number epochCount: epoch count delegateName: candidate name Response: exist: whether the delegate has staking information within the specified epoch range stakingInfo: epochNumber: epoch number selfStaking: candidate’s self-staking amount totalStaking: total staking amount ``` Demo: ``` Sample Request: query{ delegate(startEpoch: 1500, epochCount: 2, delegateName: "blackpool"){ bookkeeping(percentage: 90, includeFoundationBonus: true){ exist rewardDistribution(pagination: {skip: 0, first: 2}){ voterEthAddress amount } count } reward{ exist blockReward epochReward foundationBonus } productivity{ exist production expectedProduction } bucketInfo{ exist bucketInfoList{ epochNumber bucketInfo{ voterEthAddress weightedVotes } count } } staking{ exist stakingInfo{ epochNumber selfStaking totalStaking } } } } Sample Response: { "data": { "delegate": { "bookkeeping": { "exist": true, "rewardDistribution": [ { "voterEthAddress": "0x2ed3767cfcbceb42ff5f3642d4df6f851b947073", "amount": "249296733398649281" }, { "voterEthAddress": "0x6729cdc9172b00ac69f4ce3f98de2eb4d0686925", "amount": "5264917870144216244" } ], "count": 4 }, "reward": { "exist": true, "blockReward": "0", "epochReward": "329819772195117893866", "foundationBonus": "160000000000000000000" }, "productivity": { "exist": false, "production": "", "expectedProduction": "" }, "bucketInfo": { "exist": true, "bucketInfoList": [ { "epochNumber": 1500, "bucketInfo": [ { "voterEthAddress": "2ed3767cfcbceb42ff5f3642d4df6f851b947073", "weightedVotes": "12050042619210072913916" }, { "voterEthAddress": "6729cdc9172b00ac69f4ce3f98de2eb4d0686925", "weightedVotes": "254485824410815439561517" }, { "voterEthAddress": "d8e70e5029e5353e8d360365d5273ed329cc4918", "weightedVotes": "3203226341724952466266885" }, { "voterEthAddress": "d8e70e5029e5353e8d360365d5273ed329cc4918", "weightedVotes": "2838636602552620757933254" }, { "voterEthAddress": "fe7bcb3676aabe9a6b39cb23f3a5fa41eed7ad1b", "weightedVotes": "15000000000000000000000000" } ], "count": 5 }, { "epochNumber": 1501, "bucketInfo": [ { "voterEthAddress": "2ed3767cfcbceb42ff5f3642d4df6f851b947073", "weightedVotes": "12050042619210072913916" }, { "voterEthAddress": "6729cdc9172b00ac69f4ce3f98de2eb4d0686925", "weightedVotes": "254485824410815439561517" }, { "voterEthAddress": "d8e70e5029e5353e8d360365d5273ed329cc4918", "weightedVotes": "3203226341724952466266885" }, { "voterEthAddress": "d8e70e5029e5353e8d360365d5273ed329cc4918", "weightedVotes": "2838636602552620757933254" }, { "voterEthAddress": "fe7bcb3676aabe9a6b39cb23f3a5fa41eed7ad1b", "weightedVotes": "15000000000000000000000000" } ], "count": 5 } ] }, "staking": { "exist": true, "stakingInfo": [ { "epochNumber": 1500, "selfStaking": "5039748000000000000000000", "totalStaking": "21308398811307598736675572" }, { "epochNumber": 1501, "selfStaking": "5039748000000000000000000", "totalStaking": "21308398811307598736675572" } ] } } } } ``` ### Chain #### MostRecentEpoch ``` Usage: MostRecentEpoch gives the latest epoch number Request: N/A Response: mostRecentEpoch: latest epoch number ``` #### MostRecentBlockHeight ``` Usage: MostRecentBlockHeight gives the latest block height Request: N/A Response: mostRecentBlockHeight: latest block height ``` #### MostRecentTPS ``` Usage: MostRecentTPS gives the latest transactions per second Request: blockWindow: number of last blocks that are backtracked to compute TPS Response: mostRecentTPS: latest transactions per second ``` #### NumberOfActions ``` Usage: NumberOfActions gives the number of actions Request: pagination: startEpoch: starting epoch number epochCount: epoch count Response: exist: whether the starting epoch number is less than the most recent epoch number count: number of actions ``` Demo: ``` Sample Request: query{ chain{ mostRecentEpoch mostRecentBlockHeight mostRecentTPS(blockWindow: 10) numberOfActions(pagination: {startEpoch: 1, epochCount: 10}){ exist count } } } Sample Response: { "data": { "chain": { "mostRecentEpoch": 1383, "mostRecentBlockHeight": 497772, "mostRecentTPS": 0, "numberOfActions": { "exist": true, "count": 3622 } } } } ``` ### Voting ``` Usage: Voting provides metadata of voting results Request: startEpoch: starting epoch number epochCount: epoch count Reponse: exist: whether the starting epoch number is less than the most recent epoch number candidateMeta: epochNumber: epoch number consensusDelegates: number of consensus delegates in the epoch totalCandidates: number of total delegates in the epoch totalWeightedVotes: candidate total weighted votes in the epoch votedTokens: total voted tokens in the epoch ``` Demo: ``` Sample Request: query{ voting(startEpoch: 1, epochCount: 3){ exist candidateMeta{ epochNumber consensusDelegates totalCandidates totalWeightedVotes votedTokens } } } Sample Response: { "data": { "voting": { "exist": true, "candidateMeta": [ { "epochNumber": 1, "consensusDelegates": 36, "totalCandidates": 87, "totalWeightedVotes": "907521920724956720472322956", "votedTokens": "776946421831717811810000000" }, { "epochNumber": 2, "consensusDelegates": 36, "totalCandidates": 87, "totalWeightedVotes": "907524412616270399722024013", "votedTokens": "776948876231717811810000000" }, { "epochNumber": 3, "consensusDelegates": 36, "totalCandidates": 87, "totalWeightedVotes": "907486769208330536874270055", "votedTokens": "776953490231717811810000000" } ] } } } ``` ### Account #### ActiveAccounts ``` Usage: ActiveAccounts lists most recently active accounts Request: count: number of account addresses to be queried for active accounts Response: activeAccounts: list of account addresses ``` #### OperatorAddress ``` Usage: OperatorAddress finds the delegate's operator address given the delegate's alias name Request: aliasName: delegate's alias name Response: exist: whether the alias name exists operatorAddress: operator address associated with the given alias name ``` #### Alias ``` Usage: Alias finds the delegate's alias name given the delegate's operator address Request: operatorAddress: delegate's operator address Response: exist: whether the operator address exists aliasName: alias name associated with the given operator address ``` Demo: ``` Sample Request: query{ account{ activeAccounts(count: 5) operatorAddress(aliasName: "gamefantasy#"){ exist operatorAddress } alias(operatorAddress: "io1456knehzn9qup8unxlf4q06empz8lqxtp6v5vh"){ exist aliasName } } } Sample Response: { "data": { "account": { "activeAccounts": [ "io108h7sa5sap44e244hz649zyk5y4rqzsvnpzxh5", "io1jafqlvntcxgyp6e0uxctt3tljzc3vyv5hg4ukh", "io1gfq9el2gnguus64ex3hu8ajd6e4yzk3f9cz5vx", "io1qnec80ark9shjc6uzk45dhm8s50dpc27sjuver", "io12wc9ra4la98yay4cqdav5mwxxuzwpt6hk23n3z" ], "operatorAddress": { "exist": true, "operatorAddress": "io1qnec80ark9shjc6uzk45dhm8s50dpc27sjuver" }, "alias": { "exist": true, "aliasName": "pubxpayments" } } } } ``` ## Testnet The IoTeX Testnet is now fully open for community and developers! Join our Testnet and interact with IoTeX network today! ### Set up the node Our complete software is packaged in the form of a docker image plus a config file for the convenience of set-up and deployment. You can easily set up and run a node by following instructions at https://github.com/iotexproject/iotex-testnet. As of now, your node will be join as a fullnode to IoTeX network. Once we open the staking/voting on the testnet, you could promote your fullnode to a delegate and participate in block production. Expect that in the next few weeks. ### Talk to us If you encounter any technical problem when connect to the testnet, please do not hesitate to contact us via [gitter](https://gitter.im/iotex-dev-community/Lobby). In addition to this, please file issues under https://github.com/iotexproject/iotex-core/issues and we will investigate. ## Write a Smart Contract TBD ## Glossary - Delegate: the blockchain node which is elected to propose and validate new blocks, a.k.a. block producer. - [Solidity](https://en.wikipedia.org/wiki/Solidity): the contract oriented programming language. - Epoch: an epoch is composed for 8640 blocks which is responsible by the same group of delegates. - Block period: the interval in seconds that blocks are produced. During the launch of the mainnet, the block period is 10 seconds, which will be reduced as the protocol gets stabilized.
31.762668
692
0.732902
eng_Latn
0.393086
a16b4c02863ada8eec93ad83a2ceeed2533e323d
309
md
Markdown
aspnetcore/fundamentals/app-state/samples/2.x/SessionSample/README.md
dmcory/Docs.es-es
0f3889660822cf14c7cce4cadb13204643baf0fe
[ "CC-BY-4.0", "MIT" ]
null
null
null
aspnetcore/fundamentals/app-state/samples/2.x/SessionSample/README.md
dmcory/Docs.es-es
0f3889660822cf14c7cce4cadb13204643baf0fe
[ "CC-BY-4.0", "MIT" ]
null
null
null
aspnetcore/fundamentals/app-state/samples/2.x/SessionSample/README.md
dmcory/Docs.es-es
0f3889660822cf14c7cce4cadb13204643baf0fe
[ "CC-BY-4.0", "MIT" ]
null
null
null
# <a name="aspnet-core-session-sample"></a>Ejemplo de sesión de ASP.NET Core En este ejemplo se indica el uso del estado de sesión. En este ejemplo se muestran los escenarios descritos en el tema [Estado de sesión y aplicación en ASP.NET Core](https://docs.microsoft.com/aspnet/core/fundamentals/app-state).
77.25
230
0.776699
spa_Latn
0.989042
a16b669526caec940f6bb1ff3f5581826599d4f0
5,326
md
Markdown
doc/vertx-zero-tutorial/d10024-non-blocking-mode-5-async-mode-vertx-style.md
zwkjhx/vertx-zero
3d16dc3fd72dc8af984fb79c381815d914e5b117
[ "Apache-2.0" ]
454
2017-11-12T09:00:21.000Z
2022-03-10T14:26:04.000Z
doc/vertx-zero-tutorial/d10024-non-blocking-mode-5-async-mode-vertx-style.md
zwkjhx/vertx-zero
3d16dc3fd72dc8af984fb79c381815d914e5b117
[ "Apache-2.0" ]
56
2017-11-28T05:36:25.000Z
2022-03-26T14:19:57.000Z
doc/vertx-zero-tutorial/d10024-non-blocking-mode-5-async-mode-vertx-style.md
zwkjhx/vertx-zero
3d16dc3fd72dc8af984fb79c381815d914e5b117
[ "Apache-2.0" ]
103
2017-11-07T00:49:59.000Z
2022-03-31T10:22:59.000Z
# D10024 - Non-Blocking, Mode 5 Async Mode \( vert.x style \) This mode is very important in zero system, because we prefer to recommend use this mode in your development. Because vert.x is non-blocking and async, this mode is based on vert.x async multi threads, if you use this mode to do development works, you can be very smart to finish all the business requirements. From architecture of zero system, this mode contains following advantages: * [x] You can use all the native async clients that vert.x provided directly such as `MongoClient, MySqlClient, RedisClient`etc. * [x] All the request works should be async mode and the performance is better. * [x] You can do some reactive programming with `Rxjava2` instead of others. * [x] You can use `UtilityX` package that zero system provided to do complex business requirements or frequently requirements. # 1. Introduction ![](/doc/image/request-mode5.png)The workflow of this mode is the same as Mode 4, but there are some difference in programming. There are both sender and consumer in current mode, and the response will reply the processed result. ``` Request -> Agent -> @Address ( Sender ) -> EventBus -> @Address ( Consumer with MessageHandler ) -> Worker -> Response ``` Demo projects: * **Standalone - 6083**: `up-rhea` ## 2. Source Code ### 2.1. Sender ```java package up.god.micro.async; import io.vertx.core.json.JsonObject; import io.vertx.up.annotations.Address; import io.vertx.up.annotations.EndPoint; import javax.ws.rs.POST; import javax.ws.rs.Path; @EndPoint @Path("/api") public class VertxStyleActor { @POST @Path("request/vertx/handler") @Address("ZERO://ASYNC/VERTX/HANDLER") public JsonObject sayHandler(final JsonObject data) { data.put("agent", "HANDLER"); return data; } @POST @Path("request/vertx/future") @Address("ZERO://ASYNC/VERTX/FUTURE") public JsonObject sayFuture(final JsonObject data) { data.put("agent", "FUTURE"); return data; } } ``` ### 2.2. Consumer ```java package up.god.micro.async; import io.vertx.core.Future; import io.vertx.core.eventbus.Message; import io.vertx.core.json.JsonObject; import io.vertx.up.unity.Ux; import io.vertx.up.annotations.Address; import io.vertx.up.annotations.Queue; import io.vertx.up.commune.Envelop; @Queue public class VertxStyleWorker { @Address("ZERO://ASYNC/VERTX/HANDLER") public void sayMessage(final Message<Envelop> message) { final JsonObject data = Ux.getBody(message); message.reply(Envelop.success(data)); } @Address("ZERO://ASYNC/VERTX/FUTURE") public Future<JsonObject> sayFuture(final Envelop envelop) { final JsonObject data = envelop.data(); return Future.succeededFuture(data); } } ``` ### Programming Rules 1. The worker class must be annotated with `io.vertx.up.annotations.Queue`. 2. You must use `io.vertx.up.annotations.Address` annotation to set address of string type in **Sender/Consumer** both. 3. Address value should be the same shared in **Sender/Consumer**. 4. The worker method signature should be as following: 1. `void method(Message<Envelop>)` 2. `Future<T> method(Envelop)` 3. `Future<Envelop> method(Envelop)` ## 3. Console ```shell ...... [ ZERO ] ( 2 Event ) The endpoint up.god.micro.async.VertxStyleActor scanned 2 events of Event, \ will be mounted to routing system. ...... [ ZERO ] ( 6 Queue ) The Zero system has found 6 components of @Queue. ...... [ ZERO ] Addr : ZERO://ASYNC/VERTX/FUTURE [ ZERO ] Addr : ZERO://ASYNC/VERTX/HANDLER ...... [ ZERO ] ( 2 Receipt ) The queue up.god.micro.async.VertxStyleWorker scanned 2 records of Receipt, \ will be mounted to event bus. ...... [ ZERO ] ( Uri Register ) "/api/request/vertx/future" has been deployed by ZeroHttpAgent, Options = Route... [ ZERO ] ( Uri Register ) "/api/request/vertx/handler" has been deployed by ZeroHttpAgent, Options = Route... ...... ``` ## 4. Testing ### 4.1. Message Request **URL** : [http://localhost:6083/api/request/vertx/handler](http://localhost:6083/api/request/vertx/handler) **Method** : POST **Request** : ```json { "username":"lang.yu", "email":"lang.yu@hpe.com" } ``` **Response** : ```json { "data": { "username": "lang.yu", "email": "lang.yu@hpe.com", "agent": "HANDLER" } } ``` ### 4.2. Future Request **URL** : [http://localhost:6083/api/request/vertx/future](http://localhost:6083/api/request/vertx/future) **Method** : POST **Request** : ```json { "username":"lang.yu", "email":"lang.yu@hpe.com" } ``` **Response** : ```json { "data": { "username": "lang.yu", "email": "lang.yu@hpe.com", "agent": "FUTURE" } } ``` ## 5. Summary Current mode is standard vert.x mode and we recommend to use this mode in your project. Here are a java class named `Envelop` and it's Uniform Resource Model that defined by zero system, it could take many information to go through from agent to worker threads on event bus. The Uniform Resource Model will be introduced in future tutorials, it could help developers to simply the programming in web container, service specification and restful web request, then the developers could focus on business requirements only.
27.739583
120
0.687758
eng_Latn
0.855164
a16bd3329de7703cf247126a73c3938924df7129
316
md
Markdown
errors/E_UNCLOSED_CURLY_BRACE.md
edge-js/lexer
41c808ecb29c422794b01c2643f840f5d2398390
[ "MIT" ]
6
2018-11-15T16:22:54.000Z
2021-11-08T11:28:12.000Z
errors/E_UNCLOSED_CURLY_BRACE.md
thetutlage/edge-lexer
36cbaab75c32c2fda5b03159c4e689c963f7bc22
[ "MIT" ]
6
2018-11-03T14:54:16.000Z
2021-05-15T06:35:07.000Z
errors/E_UNCLOSED_CURLY_BRACE.md
poppinss/edge-lexer
36cbaab75c32c2fda5b03159c4e689c963f7bc22
[ "MIT" ]
2
2018-11-03T16:39:21.000Z
2021-12-19T14:55:11.000Z
# E_UNCLOSED_CURLY_BRACE This exception is raised when the number of `opened` and `closed` mustache braces mis-matches. #### Invalid ```edge {{ 2 + 2 } ``` ```edge {{{ `<p>${username}</p>` }} ``` Following are the valid expressions #### Valid ```edge {{ 2 + 2 }} ``` ```edge {{{ `<p>${username}</p>` }}} ```
12.153846
94
0.56962
eng_Latn
0.867202
a16c31f9d8210d559bfde0de6f9377c3c88c9ecc
2,519
md
Markdown
README.md
Premium-Fast-Network/wsgateway-php
14230c0f569d27a318a785ac7cd679aeef54592e
[ "MIT" ]
null
null
null
README.md
Premium-Fast-Network/wsgateway-php
14230c0f569d27a318a785ac7cd679aeef54592e
[ "MIT" ]
null
null
null
README.md
Premium-Fast-Network/wsgateway-php
14230c0f569d27a318a785ac7cd679aeef54592e
[ "MIT" ]
null
null
null
# PFN PHP Library WSGateway [![StyleCI](https://github.styleci.io/repos/222653815/shield?branch=master)](https://github.styleci.io/repos/222653815) [![Latest Stable Version](https://poser.pugx.org/premiumfastnet/wsgateway/v/stable)](https://packagist.org/packages/premiumfastnet/wsgateway) [![Total Downloads](https://poser.pugx.org/premiumfastnet/wsgateway/downloads)](https://packagist.org/packages/premiumfastnet/wsgateway) [![License](https://poser.pugx.org/premiumfastnet/wsgateway/license)](https://packagist.org/packages/premiumfastnet/wsgateway) This library for easy to use in PHP with composer installation. Please referer to our [REST API Documentation](https://docs.premiumfast.net/tutorials/whatsapp-gateway/rest-api) if you want to build in you're own programing langguage. ## Installation ``` composer require premiumfastnet/wsgateway ``` # How to Use ## Example You can check on folder example for easy to use. keep in mind, you need change `config.php.example` to `config.php` and fill variable on that files to work or you can make you're own combination. ## Send Message Example - Request ```php <?php require "vendor/autoload.php"; use PremiumFastNetwork\WSGateway; $wa = new WSGateway(); $wa->token('YOUR-TOKEN-HERE'); $wa->deviceid('YOUR-DEVICE-ID'); $send = $wa->sendmessage('0812xxxxxxxx', 'test send message by api'); var_dump(json_decode($send)); ``` - Response ``` class stdClass#29 (2) { public $code => int(200) public $message => string(44) "success, message will be send in background." } ``` ## Send Bulk Message Example - Request ```php <?php require "vendor/autoload.php"; use PremiumFastNetwork\WSGateway; $wa = new WSGateway(); $wa->token('YOUR-TOKEN-HERE'); $wa->deviceid('YOUR-DEVICE-ID'); $multiplenumber = array( '08xxxx', '08xxxxx' ); $send = $wa->sendmessage($multiplenumber, 'test send message by api'); var_dump(json_decode($send)); ``` - Response ``` class stdClass#29 (2) { public $code => int(200) public $message => string(37) "success, all message in waiting list." } ``` ## Send Bulk Message to Contact Group - Request ```php <?php require "vendor/autoload.php"; use PremiumFastNetwork\WSGateway; $wa = new WSGateway(); $wa->token('YOUR-TOKEN-HERE'); $wa->deviceid('YOUR-DEVICE-ID'); $send = $wa->sendgroup('xxxxx', 'test send message by api'); var_dump(json_decode($send)); ``` - Response ``` class stdClass#29 (2) { public $code => int(200) public $message => string(37) "success, all message in waiting list." } ```
24.696078
233
0.716554
eng_Latn
0.524184
a16c8daae878c257e3c91ff642a1868f10d7a9f3
2,835
md
Markdown
README.md
Astrian/Nagging-backend
a527c256bbba08ce9808e8e45f95ca86c28eb4e1
[ "MIT" ]
32
2021-07-29T17:06:43.000Z
2021-12-12T09:16:14.000Z
README.md
Astrian/Nagging-backend
a527c256bbba08ce9808e8e45f95ca86c28eb4e1
[ "MIT" ]
3
2021-08-14T12:59:38.000Z
2021-08-19T09:47:00.000Z
README.md
Astrian/Nagging-backend
a527c256bbba08ce9808e8e45f95ca86c28eb4e1
[ "MIT" ]
5
2021-08-14T13:50:19.000Z
2021-09-16T03:51:55.000Z
# Project Nagging Nagging is a personal space for your shattered thoughts. May better than Weibo or Twitter. [Demo](https://nagging.astrianzheng.com) ![Project Nagging Screenshot](https://i.loli.net/2021/08/02/fExLuZ59M2kSczJ.png) > Note: This is backend code repo for Project Nagging. The frontend code repo is [here](https://github.com/Astrian/Nagging-frontend), and you need to deploy both of them to use Nagging. ## Feature - 1 user per Nagging instance - Public naggings timeline - Post naggings with Markdown - Hyperlink to single nagging - Metatag support (with serverside rendering environment) ## What is (not) Nagging Nagging is or can be: - A personal space for shattered thoughts. - Your public but secrect (well?) blog. - A information collector with Roam Research theory. Nagging is not: - Social network. It hasn't likes, notifications, relationships and (unreasonable) sensorship. - A private notebook. All naggings posted in Project Nagging is public visible. ## Deploy ### Prepare database - Create a MongoDB database. - Create 3 collections in this database: `users`, `sessions` and `naggings`. - Generate a user and authrize it to read/write this database. ### Prepare backend part Install with Node.js v12 and above: ``` git clone https://github.com/Astrian/Nagging-backend cd Nagging-backend npm i ``` Set environment variables: - `NG_CORSDOMAIN`: Your fontend domain, warp in JSON array. - `NG_DBAUTH`: MongoDB username and password. - `NG_DBENDPOINT`: MondoDB access endpoint. - `NG_DBNAME`: The name of the database you just created. Like this: ``` export NG_CORSDOMAIN=["https://my-own-naggings.com"] export NG_DBAUTH=nagging:passwordishere export NG_DBENDPOINT=cluster7.e8kw9.mongodb.net/?retryWrites=true&w=majority export NG_DBNAME=nagging ``` Also, you can try deploy directly in Heroku. If you try so, don't forget add environment variables (“config vars” in Heroku) manually! ### Prepare frontend part Install with Node.js v12 and above: ``` git clone https://github.com/Astrian/Nagging-frontend cd Nagging-frontend npm i ``` Set environment variables: - `REACT_APP_GQLSERVER`: Your backend endpoint address, usually is your backend domain e.g. `https://api.my-own-naggings.com` - `REACT_APP_DOMAIN`: Your front end domain with `https://` Then, run `npm build`, and you can put the folder `build` to your static server. Remeber to set that all the route will return `index.html` because it is a single page application! Also, you also can deploy it directly to Netlify with Serverside Rendering. You can switch it on in `Site settings` - `Build & deploy` - `Post processing` - `Prerendering`. ### Create your account `https://my-own-naggings.com/createaccount` Once you created your account, you can try post your first nagging! The nagging composer is right on homepage.
31.5
185
0.760847
eng_Latn
0.946824
a16d98f7e70034b735746488024a61ca0fa931bb
1,272
md
Markdown
CONTRIBUTING.md
danielandastro/InterScript
8c29e9bd3e4a79bc3e132c7dabdda3a2795d3dc0
[ "MIT" ]
3
2018-06-08T18:02:24.000Z
2018-06-15T12:18:09.000Z
CONTRIBUTING.md
danielandastro/InterScript
8c29e9bd3e4a79bc3e132c7dabdda3a2795d3dc0
[ "MIT" ]
12
2018-05-31T11:21:57.000Z
2018-06-16T17:37:55.000Z
CONTRIBUTING.md
danielandastro/InterScript
8c29e9bd3e4a79bc3e132c7dabdda3a2795d3dc0
[ "MIT" ]
null
null
null
👍🎉 First off, thanks for taking the time to contribute! 🎉👍 The following is a set of guidelines for contributing to InterSharp, which are hosted in the on GitHub. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request. To start off this is a work in progress and is currently in the prototyping stage, we have a pretty good idea of how we want this to turn out, and understand that we will strictly control the quality of changes that go into this, that being said don't let that discourage you from sending in proposed changes, below is a guide to what we are looking for. ## How to contribute to the development of InterSharp We are looking for bug fixes and feature implementations based on existing cards on the project board. When submitting a pull request please include a description of what you have changed and what you are attempting to fix or implement ### In your code Make sure you do not have redundant declarations, snippets or "using" statements, feel free to use any packages or namespaces, but if these are not exisiting DOTNET namespaces please include their functionality with your pull request ## Once again thank you for contributing to the development of InterSharp
79.5
354
0.79717
eng_Latn
0.999984
a16dde5e80a0b26e13156fcaf1ab75ba61cdbcb4
1,696
md
Markdown
content/report/110_kmom01.md
marcusgsta/Anax-Flat
e808a70fae30b6603f4cdc0ba7a45cc3fa2d383f
[ "MIT" ]
null
null
null
content/report/110_kmom01.md
marcusgsta/Anax-Flat
e808a70fae30b6603f4cdc0ba7a45cc3fa2d383f
[ "MIT" ]
null
null
null
content/report/110_kmom01.md
marcusgsta/Anax-Flat
e808a70fae30b6603f4cdc0ba7a45cc3fa2d383f
[ "MIT" ]
null
null
null
Kmom01 =============================== Redovisning för kmom01. *Är du sedan tidigare van att jobba i ramverk för att bygga webbplatser? Om ja, vilka ramverk/språk har du jobbat med?* Nej, kan inte säga att jag är van. Men jag var inne på Lynda.com och gick igenom en kurs för att skapa teman med Wordpress, så lite hum har jag. Så fanns det något som heter Blueprint, som är ett slags ramverk för CSS. Det var egentligen bara en CSS-fil som man utgick ifrån. Men blev ganska snyggt och sparade en del arbete. *Det blev en del nya verktyg i labbmiljön, var de nya för dig eller kände du igen dem?* Det var en del nytt. Make-filer, YAML och Anax Flat som ramverk. Gick relativt bra att installera, även om det var lite mac-specifika saker som strulade. Node.js har jag heller inte jobbat med. *Hur kändes det att jobba med Anax Flat och bygga din me-sida?* Lite obekvämt i början. Jag var otålig och visste inte vilka filer som behövde ändras i. Nu börjar det klarna. Förhoppningsvis kommer det att kännas smidigare att jobba med efterhand. *Har du några förutfattade meningar, eller kanske en etablerad övertygelse, inom design och användbarhet för webben?* Jag ser fram emot att dyka ner djupare i dessa ämnen. Jag tror på att design inte får gå ut över användbarhet. Att design är något som både ska kännas bra och vara funktionellt. Och jag tror på KISS, keep it simple, stupid. *Det fanns videor som kompletterade artiklarna, hjälpte de dig att förstå materialet bättre?* Ja, det gjorde de. Jag fick gå tillbaka till videorna när jag fastnade i uppgiften. Bra att det finns alternativa sätt att ta till sig kunskap. Jag gjorde extrauppgiften, lade till en testsida för Markdown.
44.631579
153
0.768278
swe_Latn
1.000007
a16ea905835762ca6caa8631650b745f9f532a6e
6,603
md
Markdown
archive/resolutions2017.md
PameVls/resolutions
c8a7f03219e816f9438b9939cfd7bef550c90982
[ "WTFPL" ]
null
null
null
archive/resolutions2017.md
PameVls/resolutions
c8a7f03219e816f9438b9939cfd7bef550c90982
[ "WTFPL" ]
null
null
null
archive/resolutions2017.md
PameVls/resolutions
c8a7f03219e816f9438b9939cfd7bef550c90982
[ "WTFPL" ]
null
null
null
# 2017 Resolutions Just a convenient place to track my new year resolutions. All numbers are just the minimum. ### 30 Online courses ![Progress](http://progressed.io/bar/70) 2016 was a great year for learning a lot of new things, let's keep up learning. 1. [Learn DevOps: Scaling apps On-Premise and in the Cloud][course1] ([Certificate][certificate1]) 2. [CI and CD with AWS CodePipeline, Jenkins and AWS CodeDeploy][course2] 3. [Angular 2 (or 4) & NodeJS - The Practical MEAN Stack Guid][course3] ([Certificate][certificate2]) 4. [Getting Started with Spring and Spring Boot][course4] 5. [Introduction to encryption][course5] 6. [Getting Started with Cybersecurity Science][course6] 7. [Security Threat Detection][course7] 8. [Go Programming for Distributed Computing][course8] 9. Go Web Services 10. [Introduction to Kubernetes][course10] 11. [Getting Started with Amazon Web Services (AWS)][course11] 12. [Managing Infrastructure as Code with Terraform][course12] 13. [Building Chatbots with Node.js][course13] 14. [Designing Bots and Conversational Apps for Work][course14] 15. [Developing Angular 2 web apps with TypeScript][course15] 16. [Design Patterns Boot Camp][course16] 17. [Docker: Up and Running][course17] 18. [Building a Deployment Pipeline with Jenkins][course18] 19. [Go Programming for Microservices][course19] 20. [Deploying Applications with Ansible][course20] 21. [JavaScript: Beyond the Basics][course21] **Possible topics** 1. Leadership 2. Ruby 3. FrontEnd 4. Angular 5. Continuos Delivery 6. Continuos Integration 7. Automation 8. Security 9. IPtables 10. Penetration Testing 11. Startups 12. DevOps 13. iOS 14. Android 15. Photography 16. Health ### 6 Books ![Progress](http://progressed.io/bar/100) Not so high expectations here, I am not that fast reader. **Read** 1. [Web Development with Go: Building Scalable Web Apps and RESTful Services][bookread1] 2. [Continuous Integration and Deployment with Docker and Rancher][bookread2] 3. [The Clean Coder: A Code of Conduct for Professional Programmers][bookread3] 4. [Grokking Algorithms An Illustrated Guide For Programmers and Other Curious People][bookread4] 5. [Creativity, Inc.][bookread5] 6. [Programming Interviews Exposed][bookread6] **Reading** 1. [Building Microservices][book1] 2. [Data and Goliat][book2] 3. [Hacking: The Art of Exploitation][book3] ### 1 Drawing ![Progress](http://progressed.io/bar/100) I liked drawing a long time ago. I would like to start again so let's start with one. Well, it is an easy one but [here it is][drawing1]. ### 1000 Github contributions ![Progress](http://progressed.io/bar/36) Here is the magic. I have many things I want to code. Entrepreneurship coding, contributing at open source projects and coding for fun are Ok. Coding at work doesn't count. Originally I thought about tracking days coding per year but it is easier to track just the number of contributions since Github has [a nice UI for this][githubui]. ### 10 blog posts ### 1 Trip outside the country ![Progress](http://progressed.io/bar/100) 1. Panama (Jan 05 - Jan 13) 2. Denver, CO (Jul 12 - Jul 16) ### Weight 72,5 kg/160 lb This one is hard, my current weight is 78,5 kg and I am already on diet and excercise. [certificate1]: http://ude.my/UC-DVEVEW3R [certificate2]: https://udemy-certificate.s3.amazonaws.com/image/UC-5IEPB8KS.jpg [course1]: https://www.udemy.com/learn-devops-scaling-apps-on-premise-and-in-the-cloud [course2]: https://www.udemy.com/ci-and-cd-with-aws-codepipeline-jenkins-and-aws-codedeploy/ [course3]: https://www.udemy.com/angular-2-and-nodejs-the-practical-guide/ [course4]: https://www.safaribooksonline.com/live-training/courses/getting-started-with-spring-and-spring-boot/0636920097730/ [course5]: https://www.safaribooksonline.com/live-training/courses/introduction-to-encryption/0636920132332/ [course6]: https://www.safaribooksonline.com/live-training/courses/getting-started-with-cybersecurity-science/0636920078326/ [course7]: https://www.safaribooksonline.com/live-training/courses/security-threat-detection/0636920124856/ [course8]: https://www.safaribooksonline.com/live-training/courses/go-programming-for-distributed-computing/0636920086246/ [course10]: https://www.safaribooksonline.com/live-training/courses/introduction-to-kubernetes/0636920122340/ [course11]: https://www.safaribooksonline.com/live-training/courses/getting-started-with-amazon-web-services-aws/0636920133315/ [course12]: https://www.safaribooksonline.com/live-training/courses/managing-infrastructure-as-code-with-terraform/0636920103172/ [course13]: https://www.safaribooksonline.com/live-training/courses/building-chatbots-with-node-js/0636920057437/ [course14]: https://www.safaribooksonline.com/live-training/courses/designing-bots-and-conversational-apps-for-work/0636920081296/ [course15]: https://www.safaribooksonline.com/live-training/courses/developing-angular-2-web-apps-with-typescript/0636920068068/ [course16]: https://www.safaribooksonline.com/live-training/courses/design-patterns-boot-camp/0636920074762/ [course17]: https://www.safaribooksonline.com/live-training/courses/docker-up-and-running/0636920062028/ [course18]: https://www.safaribooksonline.com/live-training/courses/building-a-deployment-pipeline-with-jenkins/0636920067641/ [course19]: https://www.safaribooksonline.com/live-training/courses/go-programming-for-microservices/0636920087724/ [course20]: https://www.safaribooksonline.com/live-training/courses/deploying-applications-with-ansible/0636920087311/ [course21]: https://www.safaribooksonline.com/live-training/courses/javascript-beyond-the-basics/0636920084198/ [bookread1]: https://www.amazon.es/Web-Development-Go-Building-Scalable/dp/1484210530 [bookread2]: https://www.goodreads.com/book/show/32293805-continuous-integration-and-deployment-with-docker-and-rancher [bookread3]: https://www.goodreads.com/book/show/10284614-the-clean-coder [bookread4]: https://www.goodreads.com/book/show/22847284-grokking-algorithms-an-illustrated-guide-for-programmers-and-other-curio [bookread5]: https://www.amazon.es/Creativity-Inc-Overcoming-Unseen-Inspiration/dp/0812993012 [bookread6]: https://www.goodreads.com/book/show/154154.Programming_Interviews_Exposed [book1]: https://www.safaribooksonline.com/library/view/building-microservices/9781491950340 [book2]: https://www.amazon.es/Data-Goliath-Battles-Collect-Control/dp/039335217X [book3]: https://www.goodreads.com/book/show/20329201-hacking [drawing1]: https://twitter.com/gepser/status/883189699040464896 [githubui]: https://github.com/gepser?tab=overview&from=2017-12-01&to=2017-12-31
53.25
164
0.788581
yue_Hant
0.281745
a16fdf5b00bf36b3acee238cb54dc958607b7be5
13,339
md
Markdown
README.md
StratusLab/metadata
ed89b1d0fb515d5d135643714fe90dca91adfcf1
[ "Apache-2.0" ]
1
2018-11-09T00:12:41.000Z
2018-11-09T00:12:41.000Z
README.md
StratusLab/metadata
ed89b1d0fb515d5d135643714fe90dca91adfcf1
[ "Apache-2.0" ]
null
null
null
README.md
StratusLab/metadata
ed89b1d0fb515d5d135643714fe90dca91adfcf1
[ "Apache-2.0" ]
null
null
null
Metadata ======== [![Build Status](https://secure.travis-ci.org/StratusLab/metadata.png)](https://secure.travis-ci.org/StratusLab/metadata.png) Contains the utilities for the creation and verification of virtual machine metadata. These metadata descriptions are managed through the Marketplace and used by various cloud services to validate, authorize, and configure the associated images. Metadata Schema and Format -------------------------- Sharing machine and disk images requires standardized, trusted metadata to allow users to find appropriate images and to allow system administrators to judge the suitability of them. The metadata descriptions are in [RDF/XML format][rdfxml] and cryptographically signed following the [XML Signature][xmlsig] specification. The connection between the described image and the metadata description is the image identifier based on the SHA-1 hash. The following table shows the XML namespaces (and usual prefixes) in the metadata descriptions. <table> <tr> <th>Prefix</th> <th>Namespace</th> </tr> <tr> <td>rdf</td> <td>http://www.w3.org/1999/02/22-rdf-syntax-ns#</td> </tr> <tr> <td>dcterms</td> <td>http://purl.org/dc/terms/</td> </tr> <tr> <td>slreq</td> <td>http://mp.stratuslab.eu/slreq#</td> </tr> <tr> <td>slterms</td> <td>http://mp.stratuslab.eu/slterms# </td> </tr> </table> The following XML document is an unsigned example of the metadata description. The first element is the description of the image containing information about the image file, contained operating system, and location. It also contains the endorsement of the information with information on who endorsed the image and when. The email of the endorser is used as the key and is consequently a required element of the description. A digital signature element ("xmldsig:Signature") follows the "rdf:Description" element for signed metadata entries. (Relevant XML namespaces are given below.) ```xml <?xml version="1.0" encoding="UTF-8" standalone="no"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:slreq="http://mp.stratuslab.eu/slreq#" xmlns:slterms="http://mp.stratuslab.eu/slterms#" xmlns:ex="http://example.org/" xml:base="http://mp.stratuslab.eu/"> <rdf:Description rdf:about="#MMZu9WvwKIro-rtBQfDk4PsKO7_"> <dcterms:identifier>MMZu9WvwKIro-rtBQfDk4PsKO7_</dcterms:identifier> <slreq:bytes>100</slreq:bytes> <slreq:checksum rdf:parseType="Resource"> <slreq:algorithm>SHA-1</slreq:algorithm> <slreq:value>c319bbd5afc0a22ba3eaed0507c39383ec28eeff</slreq:value> </slreq:checksum> <slreq:endorsement rdf:parseType="Resource"> <dcterms:created>2011-01-24T09:59:42Z</dcterms:created> <slreq:endorser rdf:parseType="Resource"> <slreq:email>jane.tester@example.org</slreq:email> <slreq:subject>CN=Jane Tester,OU=...</slreq:subject> <slreq:issuer>CN=Jane Tester,OU=...</slreq:issuer> </slreq:endorser> </slreq:endorsement> <dcterms:type>machine</dcterms:type> <dcterms:valid>2011-07-23T10:59:42Z</dcterms:valid> <dcterms:publisher>StratusLab</dcterms:publisher> <dcterms:title>linux-with-my-apps</dcterms:title> <dcterms:description>A 32-bit ttylinux...</dcterms:description> <slterms:location>http://example.org/...</slterms:location> <slterms:serial-number>0</slterms:serial-number> <slterms:version>1.0</slterms:version> <slterms:hypervisor>kvm</slterms:hypervisor> <slterms:inbound-port>443</slterms:inbound-port> <slterms:outbound-port>25</slterms:outbound-port> <slterms:icmp>8</slterms:icmp> <slterms:os>ttylinux</slterms:os> <slterms:os-version>9.7</slterms:os-version> <slterms:os-arch>i486</slterms:os-arch> <slterms:deprecated>security issue with app</slterms:deprecated> <ex:other-info>additional metadata</ex:other-info> <ex:yet-more>still more info</ex:yet-more> <ex:relatedImages rdf:parseType="Resource"> <dcterms:identifier>MMZu9WvwKIro-rtBQfDk4PsKO7_</dcterms:identifier> <dcterms:identifier>NMZu9WvwKIro-rtBQfDk4PsKO7_</dcterms:identifier> <dcterms:identifier>OMZu9WvwKIro-rtBQfDk4PsKO7_</dcterms:identifier> <dcterms:identifier>PMZu9WvwKIro-rtBQfDk4PsKO7_</dcterms:identifier> </ex:relatedImages> </rdf:Description> </rdf:RDF> ``` The entries in the Marketplace deal with individual images. If it is desired that collections of images are signed, then one possibility is to include in each individual entry references to the other image descriptions in the collection. This allows the full collection to be reconstructed from any individual entry. One method of doing this is shown in the example metadata description. Signing and Validating StratusLab Metadata Files ------------------------------------------------ For signing and validating metadata files we are using [XML Signature][xmlsig] specification. Commands to support metadata signatures have been written in Java as recent Java virtual machines contain an API implementing this standard. Metadata files can be signed using grid certificates (in PKCS12 format), PGP key pairs, or DSA/RSA key pairs. Verification and validation automatically detects signature algorithm and type of private key used for signing metadata files, verifies the metadata file and prints, for grid certificates, the DN of the user who signed the metadata file. Metadata Elements ----------------- Where possible the [Dublin Core metadata vocabulary][dublincore] has been used for the metadata description. The following table shows the terms taken from the Dublin Core specification. <table> <tr> <th>NS</th> <th>qname</th> <th>freq.</th> <th>XSD</th> <th>Constraints</th> <th>Notes</th> </tr> <tr> <td>dcterms</td> <td>identifier</td> <td>1</td> <td>string</td> <td>valid identifier</td> <td>image identifier</td> </tr> <tr> <td>dcterms</td> <td>isReplacedBy</td> <td>?</td> <td>string</td> <td>valid identifier</td> <td>image identifier for replacement image</td> </tr> <tr> <td>dcterms</td> <td>replaces</td> <td>?</td> <td>string</td> <td>valid identifier</td> <td>image identifier for image replaced by this one</td> </tr> <tr> <td>dcterms</td> <td>isVersionOf</td> <td>?</td> <td>string</td> <td>valid identifier</td> <td>image identifier for parent image</td> </tr> <tr> <td>dcterms</td> <td>valid</td> <td>?</td> <td>dateTime</td> <td>XML DateTime format</td> <td>expiration date for image metadata</td> </tr> <tr> <td>dcterms</td> <td>title</td> <td>?</td> <td>string</td> <td></td> <td>short title for humans</td> </tr> <tr> <td>dcterms</td> <td>description</td> <td>1</td> <td>string</td> <td></td> <td>longer description of the image</td> </tr> <tr> <td>dcterms</td> <td>type</td> <td>1</td> <td>string</td> <td>'machine' or 'disk'</td> <td>type of the described image</td> </tr> <tr> <td>dcterms</td> <td>creator</td> <td>?</td> <td>string</td> <td></td> <td>name of image or metadata record creator</td> </tr> <tr> <td>dcterms</td> <td>created</td> <td>?</td> <td>dateTime</td> <td>XML DateTime format</td> <td>date when metadata record was created</td> </tr> <tr> <td>dcterms</td> <td>publisher</td> <td>?</td> <td>string</td> <td></td> <td>publisher (group, experiment, project) of image</td> </tr> <tr> <td>dcterms</td> <td>format</td> <td>1</td> <td>string</td> <td></td> <td>format of machine or disk image</td> </tr> </table> Additional terms have been defined by StratusLab to complete the metadata description. The following table shows those terms. <table> <tr> <th>NS</th> <th>qname</th> <th>freq.</th> <th>XSD</th> <th>Constraints</th> <th>Notes</th> </tr> <tr> <td>slreq</td> <td>endorsement</td> <td>1</td> <td>complex</td> <td></td> <td>endorsement information</td> </tr> <tr> <td>slreq</td> <td>endorser</td> <td>1</td> <td>complex</td> <td></td> <td>endorser information</td> </tr> <tr> <td>slreq</td> <td>bytes</td> <td>1</td> <td>positive integer</td> <td></td> <td>number of bytes in described image</td> </tr> <tr> <td>slreq</td> <td>checksum</td> <td>+</td> <td>string</td> <td>lowercase hex digits only</td> <td>checksum in hex with algorithm prefix</td> </tr> <tr> <td>slreq</td> <td>email</td> <td>1</td> <td>string</td> <td></td> <td>email address of the metadata record creator</td> </tr> <tr> <td>slreq</td> <td>subject</td> <td>1</td> <td>string</td> <td></td> <td>certificate subject</td> </tr> <tr> <td>slreq</td> <td>issuer</td> <td>+</td> <td>string</td> <td></td> <td>certificate issuer</td> </tr> <tr> <td>slterms</td> <td>disks-bus</td> <td>*</td> <td>string</td> <td></td> <td>value to use for disk device driver</td> </tr> <tr> <td>slterms</td> <td>location</td> <td>*</td> <td>URI</td> <td></td> <td>location hint for download (none if unavailable)</td> </tr> <tr> <td>slterms</td> <td>serial-number</td> <td>?</td> <td>non-negative integer</td> <td></td> <td>numeric index of image within a series</td> </tr> <tr> <td>slterms</td> <td>version</td> <td>?</td> <td>string</td> <td></td> <td>version of the image</td> </tr> <tr> <td>slterms</td> <td>hypervisor</td> <td>?</td> <td>string</td> <td></td> <td>appropriate hypervisors for machine image</td> </tr> <tr> <td>slterms</td> <td>inbound-port</td> <td>*</td> <td>unsigned short</td> <td>0 for all</td> <td>required inbound port</td> </tr> <tr> <td>slterms</td> <td>outbound-port</td> <td>*</td> <td>unsigned short</td> <td>0 for all</td> <td>required outbound port</td> </tr> <tr> <td>slterms</td> <td>icmp</td> <td>*</td> <td>unsigned byte</td> <td></td> <td>ICMP packet types</td> </tr> <tr> <td>slterms</td> <td>os-arch</td> <td>?</td> <td>string</td> <td></td> <td>OS architecture</td> </tr> <tr> <td>slterms</td> <td>os-version</td> <td>?</td> <td>string</td> <td></td> <td>OS version</td> </tr> <tr> <td>slterms</td> <td>os</td> <td>?</td> <td>string</td> <td></td> <td>OS</td> </tr> <tr> <td>slterms</td> <td>deprecated</td> <td>?</td> <td>string</td> <td></td> <td>reason that image is deprecated (missing if OK)</td> </tr> </table> Additional terms can be added to the metadata descriptions, but they should appear in their own XML namespaces. This allows for application-specific metadata and also evolution of the standard schema. These should appear after the endorsement element in the description. License ------- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Acknowledgements ---------------- This software originated in the StratusLab project that was co-funded by the European Community’s Seventh Framework Programme (Capacities) Grant Agreement INFSO-RI-261552 and that ran from June 2010 to May 2012. [rdfxml]: http://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/ [xmlsig]: http://www.w3.org/TR/2008/REC-xmldsig-core-20080610/ [dublincore]: http://dublincore.org/documents/2010/10/11/dcmi-terms/
29.061002
125
0.595097
eng_Latn
0.681391
a171717b727f6366dceea281f306ce3212ce7a21
22,956
md
Markdown
README-cs_CZ.md
aldiserg/Autodesk-Fusion-360-for-Linux
c8cbc74e21a09fed3e7a69fc23a0d352a921f173
[ "MIT" ]
null
null
null
README-cs_CZ.md
aldiserg/Autodesk-Fusion-360-for-Linux
c8cbc74e21a09fed3e7a69fc23a0d352a921f173
[ "MIT" ]
null
null
null
README-cs_CZ.md
aldiserg/Autodesk-Fusion-360-for-Linux
c8cbc74e21a09fed3e7a69fc23a0d352a921f173
[ "MIT" ]
null
null
null
[**CZ**](https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/blob/main/README-cs_CZ.md) | [DE](https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/blob/main/README-de_DE.md) | [EN](https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux) | [ES](https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/blob/main/README-es_ES.md) | [IT](https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/blob/main/README-it_IT.md) | [RU](https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/blob/main/README-ru_RU.md) ![banner-fusion360](https://user-images.githubusercontent.com/79079633/127371623-6b50b591-1b12-466d-9c96-b5b6d6314f31.png) ![GitHub last commit](https://img.shields.io/github/last-commit/cryinkfly/Fusion-360---Linux-Wine-Version-?style=for-the-badge) ![GitHub issues](https://img.shields.io/github/issues-raw/cryinkfly/Fusion-360---Linux-Wine-Version-?style=for-the-badge) ![GitHub Repo stars](https://img.shields.io/github/stars/cryinkfly/Fusion-360---Linux-Wine-Version-?style=for-the-badge) ![GitHub forks](https://img.shields.io/github/forks/cryinkfly/Fusion-360---Linux-Wine-Version-?style=for-the-badge) ![GitHub](https://img.shields.io/github/license/cryinkfly/Fusion-360---Linux-Wine-Version-?style=for-the-badge) [Autodesk Fusion 360](https://www.autodesk.com/products/fusion-360/features) je cloudová softwarová platforma pro 3D modelování, CAD, CAM a PCB pro návrh a výrobu produktů, kterou můžete použít ve Windows a macOS. Problém je ale v tom, že jsou také lidé jako já, kteří nechtějí na těchto systémech používat ani jeden z těchto dvou operačních systémů. Poté si tito uživatelé nainstalovali distribuci Linuxu, jako je openSUSE Leap, Ubuntu nebo Fedora. A tak jsem dostal nápad založit tento projekt zde, abych našel způsob, jak tento problém vyřešit. Začal jsem hledat různé nástroje a moje volba byla Víno! S tímto pěkným nástrojem nepotřebujeme delší dva operační systémy pro Fusion 360, když v budoucnu vytvoříme fantastický projekt nebo pokud chcete pracovat na projektu s dalšími lidmi. Je to skvělý nápad do budoucna? Osobně si myslím, že tento nápad je dobrý a z tohoto důvodu udělám vše pro to, abych vám dal příležitost ho použít i na Linuxu! --- Získáte více informací o tomto programu, poté můžete navštívit původní webovou stránku Autodesk Fusion 360 s tímto odkazem: https://www.autodesk.com/products/fusion-360/features --- ## Aktuální verze Autodesk Fusion 360 **Číslo verze:** 2.0.12392* *Upozornění: [Jak zkontrolovat, která verze Fusion 360 se používá?](https://knowledge.autodesk.com/support/fusion-360/troubleshooting/caas/sfdcarticles/sfdcarticles/How-to-check-what- version-of-Fusion-360-is-installed.html) --- - 📂 Stahování: <a href="https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/tree/main/files/builds/stable-branch">Stable</a> a <a href="https ://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/tree/main/files/builds/development-branch">vývojové sestavení</a> - 📔 Dokumentace: <a href="https://github.com/cryinkfly/Fusion-360---Linux-Wine-Version-/wiki/Documentation">GitHub-Documentation</a> & <a href=" https://www.youtube.com/watch?v=-BktJspJKgs&list=PLzwMdS5iu_BIsO6RTy7Hy1MbzLMrQE2xe">Videa</a> - 💬 Chtěli byste se se mnou spojit? Nebo pokud máte nějaké dotazy, návrhy nebo problémy? - 📫 Pak můžete vytvořit <a href="https://github.com/cryinkfly/Fusion-360---Linux-Wine-Version-/issues">problém</a> zde na GitHubu nebo můžete navštívit můj <a href="https://cryinkfly.com">webové stránce</a> a kontaktujte mě! - 📜 Kodex chování: [Smlouva přispěvatele](https://github.com/cryinkfly/Fusion-360---Linux-Wine-Version-/blob/main/.github/CODE_OF_CONDUCT.md) - 📖 Informace pro přispěvatele: Všechny informace o příspěvcích, pokyny ke kompilaci, plán (stále probíhá!) - ❤️ Chtěl bych poděkovat všem, kteří <a href="https://github.com/cryinkfly/Fusion-360---Linux-Wine-Version-/blob/main/COMMUNITY.md">pomohli< /a> chci zprovoznit Fusion 360 na Linuxu! - ☕️ Diskuze: https://github.com/cryinkfly/Fusion-360---Linux-Wine-Version-/discussions - 🍷 Super Application Maintainer (WineHQ): https://appdb.winehq.org/objectManager.php?sClass=application&iId=15617 - 🌍 Oficiální člen [Sítě skupiny Autodesk](https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/releases/tag/v5.1) & [Autodesk Fusion 360 Insider program](https://feedback.autodesk.com/key/Fusion360Insider)! --- ## Screenshoty <div> <img src="https://raw.githubusercontent.com/cryinkfly/Fusion-360---Linux-Wine-Version-/main/files/images/workspaces/Manufacture/%231.1_adapter-plate.png" width="300px" height="200px"> <img src="https://raw.githubusercontent.com/cryinkfly/Fusion-360---Linux-Wine-Version-/main/files/images/workspaces/Generative%20Design/%231.4_generative_design.png" width="300px" height="200px"> </div> <div> <img src="https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/blob/main/files/images/workspaces/Rendering/rpi4_case_tux-tage-2021.png" width="300px" height="200px"> <img src="https://raw.githubusercontent.com/cryinkfly/Fusion-360---Linux-Wine-Version-/main/files/images/workspaces/Simulation/%231_study_displacement.png" width="300px" height="200px"> </div> <div> <img src="https://raw.githubusercontent.com/cryinkfly/Fusion-360---Linux-Wine-Version-/main/files/images/workspaces/Drawing/drawing_oil_case.png" width="300px" height="200px"> <img src="https://raw.githubusercontent.com/cryinkfly/Autodesk-Fusion-360-for-Linux/main/files/images/workspaces/Electronics/%231_air%20quality%20sensor.png" width="300px" height="200px"> </div> --- ## Stahování K dispozici jsou některá <a href="https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/tree/main/files/builds">vydání skriptů</a> sestavená z cílů vydání . Pokud jste noví, doporučujeme vám začít se stabilními sestaveními. Vývojová sestavení jsou k dispozici zde, pokud je potřebujete, ale mohou být méně stabilní. Ve [vývojové větvi](https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/tree/main/files/scripts/development-branch) najdete například připravované verze mého průvodce nastavením a také sestavení, která běží s pomocí Flatpak nebo Docker/Podman. --- - Připojení k internetu (doporučeny rychlosti kabelu/DSL)! - Podívejte se na [Health Dashboard](https://health.autodesk.com/) Autodesk Fusion 360! - Nejnovější grafický ovladač naleznete <a href="https://github.com/cryinkfly/Fusion-360---Linux-Wine-Version-/wiki/Supported-Graphics-Cards">zde</a>! - Nejnovější verze vína (6.23 a novější), protože u některých verzí vína nefunguje připojení k internetu! - Chcete češtinu používat později v Autodesk Fusion 360, pak potřebujete [speciální rozšíření](https://apps.autodesk.com/FUSION/en/Detail/Index?id=9151466655844643882), které musíte mít koupil a stáhl, než si to budete moci nainstalovat pomocí průvodce instalací! - Můj skript nainstaluje některé balíčky (dialog, p7zip, p7zip-full, p7zip-rar, curl, wget, winbind, cabextract, wine, wine-mono, wine_gecko, winetricks, ...)! - Vyberte prosím režim DXVK, protože v režimu OpenGL jsou nějaké chyby! Režim OpenGL slouží pouze jako záložní varianta. - Podporované distribuce Linuxu: - Arch Linux, Manjaro Linux, EndeavourOS, ... - Debian 10, MX Linux 19.4, Raspberry Pi Desktop, ... - Debian 11 - Fedora 33 - Fedora 34 - Fedora 35 - openSUSE Leap 15.2 - openSUSE Leap 15.3 - openSUSE Tumbleweed - Red Hat Enterprise Linux 8.x - Solus - Ubuntu 18.04, Linux Mint 19.x, ... - Ubuntu 20.04, Linux Mint 20.x, Pop!_OS 20.04, ... - Ubuntu 21.04, Pop!_OS 21.04, ... - Ubuntu 21.10 - Void Linux - Gentoo Linux - Zkontrolujte, zda jste ve své distribuci Linuxu nainstalovali zeity a xterm: #### Systémy založené na Debian: sudo apt-get update && sudo apt-get install software-properties-common zenity #### Systémy založené na Red Hat: sudo dnf update && sudo dnf install zenity #### Systémy založené na Arch: sudo pacman -Sy --needed zenity #### Systémy založené na openSUSE: su -c 'zypper up && zypper install zenity' #### Systémy založené na Void: sudo xbps-install -Sy zenity #### Systémy založené na Solus: sudo eopkg install zenity #### Systémy založené na Gentoo: sudo emerge -av gnome-extra/zenity --- ## Začínáme Instalace klienta Fusion 360 pro Linux: 1.) Podívejte se na moji <a href="https://github.com/cryinkfly/Fusion-360---Linux-Wine-Version-/wiki/Documentation">Dokumentaci GitHub</a> a <a href= "https://www.youtube.com/watch?v=-BktJspJKgs&list=PLzwMdS5iu_BIsO6RTy7Hy1MbzLMrQE2xe">Videa</a> před instalací Autodesk Fusion 360 do vašeho systému! 2.) Zkontrolujte, zda jsou vaše [nastavení sítě](https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/tree/main/files/extras/network/etc) správně nakonfigurována! 3.) Otevřete terminál a spusťte tento příkaz: mkdir -p "$HOME/.config/fusion-360/bin" && cd "$HOME/.config/fusion-360/bin" && wget -N https://raw.githubusercontent.com/cryinkfly/Autodesk-Fusion-360-for-Linux/main/files/builds/stable-branch/bin/install.sh && chmod +x install.sh && bash install.sh && exit 4.) Nyní můžete <a href="https://github.com/cryinkfly/Fusion-360---Linux-Wine-Version-/issues/44#issuecomment-890552181">použít</a> Autodesk Fusion 360 na vašem systému Linux! *Upozornění: Zde najdete [všechny soubory](https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/tree/main/files/builds/stable-branch/.desktop), co potřebujete pro . desktop soubor! --- ## Které pracovní oblasti a funkce jsem testoval: <table> <thead> <tr> <th></th> <th>Windows</th> <th>macOS</th> <th>Linux</th> </tr> </thead> <tbody> <tr> <td>Konstrukce</td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <tr> <td>Animace</td> <td><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> </tr> <tr> <td>Produkce</td> <td><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> </tr> <tr> <td>Výroba</td> <td><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> </tr> <tr> <td>Simulace</td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> </tr> <tr> <td>Generativní design</td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> </tr> <tr> <td>Výkres</td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> </tr> <tr> <td>Elektronika</td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> </tr> <tr> <td>Online a offline móda</td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> </tr> <tr> <td>Podpora všech jazyků</td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> </tr> <tr> <td><a href="https://github.com/cryinkfly/Autodesk-Fusion-360-for-Linux/tree/main/files/docs/en-US/extensions">Skripty a doplňkové moduly</a></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td style="text-align: center;"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> </tr> <tr> <td>Streamcast-Recorder</td> <td><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> <td><g-emoji class="g-emoji" alias="heavy_multiplication_x" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2716.png"><img class="emoji" alt="heavy_multiplication_x" src="https://github.githubassets.com/images/icons/emoji/unicode/2716.png" width="20" height="20"></g-emoji></td> </tr> <tr> <td><a href="https://www.youtube.com/watch?v=YvBCIKRb_os">Hlasový Asistent</a> <td><g-emoji class="g-emoji" alias="heavy_multiplication_x" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2716.png"><img class="emoji" alt="heavy_multiplication_x" src="https://github.githubassets.com/images/icons/emoji/unicode/2716.png" width="20" height="20"></g-emoji></td> <td><g-emoji class="g-emoji" alias="heavy_multiplication_x" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2716.png"><img class="emoji" alt="heavy_multiplication_x" src="https://github.githubassets.com/images/icons/emoji/unicode/2716.png" width="20" height="20"></g-emoji></td> <td><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png"><img class="emoji" alt="heavy_check_mark" src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png" width="20" height="20"></g-emoji></td> </tr> </tbody> </table> --- ## Důležité oznámení S pomocí mého skriptu získáte způsob, jak nainstalovat Autodesk Fusion 360 na váš systém Linux. Určité balíčky a programy, které jsou vyžadovány, budou nastaveny za vás, ale je důležité vědět, že můj skript vám pouze pomáhá spustit program a nic víc! A tak si musíte zakoupit licence přímo od výrobce programu Autodesk Fusion 360! --- ## Licence Všechny mé skripty jsou vydány pod licencí MIT, viz <a href="https://github.com/cryinkfly/Fusion-360---Linux-Wine-Version-/blob/main/LICENSE.md">LICENCE. md</a> pro celý text.
87.285171
533
0.754748
ces_Latn
0.323207
a1720d2f7102b2c408908f8ffadf63f7b775a532
4,966
md
Markdown
src/fr/2019-02/04/01.md
PrJared/sabbath-school-lessons
94a27f5bcba987a11a698e5e0d4279b81a68bc9a
[ "MIT" ]
68
2016-10-30T23:17:56.000Z
2022-03-27T11:58:16.000Z
src/fr/2019-02/04/01.md
PrJared/sabbath-school-lessons
94a27f5bcba987a11a698e5e0d4279b81a68bc9a
[ "MIT" ]
367
2016-10-21T03:50:22.000Z
2022-03-28T23:35:25.000Z
src/fr/2019-02/04/01.md
PrJared/sabbath-school-lessons
94a27f5bcba987a11a698e5e0d4279b81a68bc9a
[ "MIT" ]
109
2016-08-02T14:32:13.000Z
2022-03-31T10:18:41.000Z
--- title: La solitude date: 20/04/2019 --- _Sabbat Après-Midi_ **Lecture de la semaine**: Eccles. 4:9-12, Phil. 4:11-13, 1 Corinthiens 7:25-34, Matthieu 19:8, Genèse 37:34, Ésaïe 54:5. ><p>Verset à mémoriser:</p> > « L’Éternel Dieu dit: Il n’est pas bon que l’homme soit seul; Je lui ferai une aide semblable à lui. » (Gen. 2:18, NEG). Il y a de cela quelques années, une histoire fascinante mais douloureuse, a fait la une des journaux. Une jeune femme avait été retrouvée morte dans son appartement. Bien que la mort soit déjà un fait tragique, ce qui était pire dans ce récit est que la femme était morte depuis plus de 10 ans avant d’être retrouvée. Dix ans! Ainsi, la question que les gens avaient posée, et à juste titre, était: comment dans une telle grande ville, avec tant de gens et de moyens de communication, une femme, qui n’était pas une personne de rue, était morte depuis si longtemps et personne n’a su? Bien qu’extrême, cette histoire est l’exemple d’une réalité quotidienne: beaucoup de gens souffrent de la solitude. En 2016, le New York Times a publié un article intitulé, « Les chercheurs font face à une épidémie de la solitude. » Le problème est réel. Dès le début, en tant qu’êtres humains, nous n’étions pas censés être seuls. Depuis l’Éden, nous étions sensés vivre en communion avec les autres êtres humains, à un degré ou un autre. Bien entendu, le péché est entré, et rien n’a été bon depuis lors. Cette semaine nous allons examiner la question de la compagnie et de la solitude dans les divers moments de la vie, que, peut-être, chacun d’entre nous a confronté à un moment donné. Si ce n’est pas le cas, alors il s’agit d’une exception. _* Étudiez cette leçon pour le sabbat 27 Avril._ --- #### Leçon avec citations EGW Après la création de l’homme, Dieu fit passer devant lui tous les animaux de la terre pour leur donner des noms. Adam vit bien que chacun d’eux avait sa compagne; mais, parmi toutes les créatures que Dieu avait faites, « il n’en trouva aucune qui lui ressemblât. » (Genèse 2.20.) Alors l’Éternel Dieu dit : « Il n’est pas bon que l’homme soit seul; je lui ferai une aide semblable à lui. » (Genèse 2.18.) L’homme a été fait pour vivre en société, et non pas dans la solitude. Sans compagne, ni les beautés de l’Éden, ni le charme de ses occupations, ni même ses relations avec les anges n’eussent procuré au premier homme un bonheur parfait. Sans une compagne de même nature que lui, aimante et digne d’être aimée, son besoin de sympathie et de sociabilité n’eût pas été satisfait. Cette compagne, Dieu la donna lui-même à Adam. Il lui fit « une aide semblable à lui », à savoir un être qui pût vivre auprès de lui, partager ses joies et répondre à ses affections.—_Conflict and Courage, p. 14; Patriarches et Prophètes, p. 23._ Nombreux sont ceux qui souffrent de maladies de l’âme plus que de celles du corps, et ils ne trouveront pas de soulagement jusqu’à ce qu’ils viennent à Jésus-Christ, la source de vie. Alors ils ne se plaindront plus de lassitude, de solitude et de contrariétés. Des joies renouvelées donneront de la vigueur à leur esprit, ainsi que la santé et l’énergie vitale à leur corps.—_Testimonies for the Church, vol. 4, p. 578; Pour un Bon Équilibre mental et spirituel 2, p. 415._ Les paroles, les regards, les manifestations de bonté et d'appréciation sont aussi précieuses pour beaucoup de personnes seules qu'un verre d'eau fraîche pour l'âme assoiffée, et cela les aidera à porter les fardeaux qui pèsent sur leurs épaules. Les conseils, mises en garde et avertissements sont tout aussi utiles que les effusions d'affection et les expressions de sympathie. Tout acte ou parole de bonté, dépourvue d'égoïsme, que nous adressons à ceux que nous rencontrons, est une expression de l'amour que Jésus a manifesté à la famille humaine.—_In Heavenly Places, p. 207; Dans les Lieux célestes, p. 208._ Nous devons avoir à tel point l’amour de Christ dans le cœur que notre intérêt pour les autres sera impartial et sincère. Nos affections devraient s’élargir et ne pas se centrer seulement sur quelques personnes qui nous flattent par des confidences spéciales. La tendance de telles amitiés nous conduit à négliger ceux qui ont un plus grand besoin d’amour que ceux auxquels nous accordons notre attention. Nous ne devons pas limiter notre cercle d’amis à quelques favoris parce qu’ils nous caressent et nous flattent par leur prétendue affection. (...) Nos sentiments d’inquiétude, de nostalgie ou de solitude peuvent nous être bénéfiques. Votre Père céleste entend par là vous apprendre à trouver en lui l’amitié, l’amour et le réconfort qui satisferont vos désirs et vos espoirs les plus chers... Votre seule sécurité et votre seule joie consistent à faire de Jésus-Christ votre conseiller permanent. Si vous n’avez pas d’autre ami dans ce vaste monde, vous pouvez trouver en lui votre joie.—_Our High Calling, p. 259; Pour un Bon Équilibre mental et spirituel 1, p. 132._
130.684211
623
0.774466
fra_Latn
0.99619
a1720db763d568f8e780ecce98ee4212efe01788
3,885
md
Markdown
docs/framework/unmanaged-api/hosting/iclrdebugmanager-endconnection-method.md
emrekas/docs.tr-tr
027bd2c6c93900a75cac7ac42531c89085f87888
[ "CC-BY-4.0", "MIT" ]
1
2020-01-06T07:30:24.000Z
2020-01-06T07:30:24.000Z
docs/framework/unmanaged-api/hosting/iclrdebugmanager-endconnection-method.md
emrekas/docs.tr-tr
027bd2c6c93900a75cac7ac42531c89085f87888
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/framework/unmanaged-api/hosting/iclrdebugmanager-endconnection-method.md
emrekas/docs.tr-tr
027bd2c6c93900a75cac7ac42531c89085f87888
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: ICLRDebugManager::EndConnection Yöntemi ms.date: 03/30/2017 api_name: - ICLRDebugManager.EndConnection api_location: - mscoree.dll api_type: - COM f1_keywords: - ICLRDebugManager::EndConnection helpviewer_keywords: - ICLRDebugManager::EndConnection method [.NET Framework hosting] - EndConnection method [.NET Framework hosting] ms.assetid: 89dc7363-2f29-4eb2-8f23-fccdda6a76a6 topic_type: - apiref author: rpetrusha ms.author: ronpet ms.openlocfilehash: d2af6970907eb9895750ca58065b2e0cb735cea8 ms.sourcegitcommit: 68653db98c5ea7744fd438710248935f70020dfb ms.translationtype: MT ms.contentlocale: tr-TR ms.lasthandoff: 08/22/2019 ms.locfileid: "69969403" --- # <a name="iclrdebugmanagerendconnection-method"></a>ICLRDebugManager::EndConnection Yöntemi Bir görev listesi ve tanımlayıcı ve kolay ad arasındaki ilişkiyi kaldırır. ## <a name="syntax"></a>Sözdizimi ```cpp HRESULT EndConnection ( [in] CONNID dwConnectionId ); ``` ## <a name="parameters"></a>Parametreler `dwConnectionId` 'ndaki Bağlantı için konağa özgü tanımlayıcı ve ortak dil çalışma zamanı (CLR) görevlerinin ilişkili listesi. ## <a name="return-value"></a>Dönüş Değeri |HRESULT|Açıklama| |-------------|-----------------| |S_OK|`EndConnection`başarıyla döndürüldü.| |HOST_E_CLRNOTAVAILABLE|CLR bir işleme yüklenmemiş veya CLR yönetilen kodu çalıştıramadığından veya çağrıyı başarıyla işleyemediği bir durumda.| |HOST_E_TIMEOUT|Çağrı zaman aşımına uğradı.| |HOST_E_NOT_OWNER|Çağıranın kilidi yoktur.| |HOST_E_ABANDONED|Engellenen bir iş parçacığı veya fiber üzerinde beklerken bir olay iptal edildi.| |E_FAIL|Bilinmeyen bir çok zararlı hata oluştu. Bir yöntem E_FAıL döndüğünde, CLR artık işlem içinde kullanılamaz. Barındırma yöntemlerine yapılan sonraki çağrılar HOST_E_CLRNOTAVAILABLE döndürür.| |E_INVALIDARG|[BeginConnection](../../../../docs/framework/unmanaged-api/hosting/iclrdebugmanager-beginconnection-method.md) hiçbir şekilde hiçbir şekilde `dwConnectionId`çağrılmadı veya `dwConnectionId` sıfırdır.| ## <a name="remarks"></a>Açıklamalar [ICLRDebugManager](../../../../docs/framework/unmanaged-api/hosting/iclrdebugmanager-interface.md) , görev listelerinin tanımlayıcılar `BeginConnection`ve kolay adlarla ilişkilendirilmesi için, `EndConnection` [SetConnectionTasks](../../../../docs/framework/unmanaged-api/hosting/iclrdebugmanager-setconnectiontasks-method.md)ve olmak üzere üç yöntem sağlar. > [!IMPORTANT] > Bu üç yöntemin her görev kümesi için belirli bir sırada çağrılması gerekir. `BeginConnection`İlk olarak yeni bir bağlantı kurmak için çağırılır. `SetConnectionTasks`ileri, bu bağlantıyla ilişkilendirilecek görev kümesini sağlamak için çağrılır. `EndConnection`, görev listesi ile tanımlayıcı ve kolay ad arasındaki ilişkiyi kaldırmak için son olarak adlandırılır. Ancak, farklı bağlantılara yönelik çağrılar iç içe olabilir. ## <a name="requirements"></a>Gereksinimler **Platform** Bkz. [sistem gereksinimleri](../../../../docs/framework/get-started/system-requirements.md). **Üst bilgi** MSCorEE. h **Kitaplığı** MSCorEE. dll dosyasına bir kaynak olarak dahildir **.NET Framework sürümleri:** [!INCLUDE[net_current_v20plus](../../../../includes/net-current-v20plus-md.md)] ## <a name="see-also"></a>Ayrıca bkz. - [ICLRControl Arabirimi](../../../../docs/framework/unmanaged-api/hosting/iclrcontrol-interface.md) - [ICLRDebugManager Arabirimi](../../../../docs/framework/unmanaged-api/hosting/iclrdebugmanager-interface.md) - [BeginConnection Yöntemi](../../../../docs/framework/unmanaged-api/hosting/iclrdebugmanager-beginconnection-method.md) - [SetConnectionTasks Yöntemi](../../../../docs/framework/unmanaged-api/hosting/iclrdebugmanager-setconnectiontasks-method.md) - [IHostControl Arabirimi](../../../../docs/framework/unmanaged-api/hosting/ihostcontrol-interface.md)
51.118421
428
0.765766
tur_Latn
0.98156
a172aeff6b2420b95717afc6e044446281289cbc
317
md
Markdown
Cosmere/Kjaard.md
Malthemester/CoppermindScraper
1a1d70a6a1e0aff2d8e8cf5d124da3c16c061a43
[ "MIT" ]
null
null
null
Cosmere/Kjaard.md
Malthemester/CoppermindScraper
1a1d70a6a1e0aff2d8e8cf5d124da3c16c061a43
[ "MIT" ]
null
null
null
Cosmere/Kjaard.md
Malthemester/CoppermindScraper
1a1d70a6a1e0aff2d8e8cf5d124da3c16c061a43
[ "MIT" ]
null
null
null
|**Kjaard**| |-|-| |**Nation**|[[Jaador\|Jaador]]🐱︎| |**World**|[[Sel\|Sel]]🐱︎| |**Universe**|[[Cosmere\|Cosmere]]| |**Featured In**|*Elantris*| **Kjaard** is a city in [[Jaador\|Jaador]]. It is located close to border with [[Fjorden\|Fjorden]]. It is possibly Jaador's capital. https://coppermind.net/wiki/Kjaard
24.384615
100
0.624606
eng_Latn
0.404758
a174f59b49fd4e14043a04d7e43cf02f0f4bd347
564
md
Markdown
kata/7-kyu/dont-give-me-five/README.md
Sophia-Okito/codewars-handbook
d896c766cf3347031dc3934ce18cd7a021ae2526
[ "MIT" ]
36
2020-04-16T17:53:05.000Z
2022-03-15T06:59:04.000Z
kata/7-kyu/dont-give-me-five/README.md
Sophia-Okito/codewars-handbook
d896c766cf3347031dc3934ce18cd7a021ae2526
[ "MIT" ]
8
2020-07-26T05:26:40.000Z
2022-03-01T20:03:24.000Z
kata/7-kyu/dont-give-me-five/README.md
ParanoidUser/codewars-handbook
6e9f61b671bd379d8671f2ae1b134e3cbde62ff4
[ "MIT" ]
10
2020-04-10T12:07:02.000Z
2022-01-21T12:29:39.000Z
# [Don't give me five!](https://www.codewars.com/kata/dont-give-me-five "https://www.codewars.com/kata/5813d19765d81c592200001a") In this kata you get the start number and the end number of a region and should return the count of all numbers except numbers with a 5 in it. The start and the end number are both inclusive! Examples: ``` 1,9 -> 1,2,3,4,6,7,8,9 -> Result 8 4,17 -> 4,6,7,8,9,10,11,12,13,14,16,17 -> Result 12 ``` The result may contain fives. ;-)<br> The start number will always be smaller than the end number. Both numbers can be also negative!
43.384615
191
0.721631
eng_Latn
0.994542
a17587e46022fa22a1b450cb57db6721a4490a7a
499
md
Markdown
_posts/2002/2002-03-01-street_fighter.md
elky84/review
dc5a5fa14c7b7455424e28a122d3672cc67c602d
[ "MIT" ]
1
2022-02-27T12:26:31.000Z
2022-02-27T12:26:31.000Z
_posts/2002/2002-03-01-street_fighter.md
elky84/review
dc5a5fa14c7b7455424e28a122d3672cc67c602d
[ "MIT" ]
null
null
null
_posts/2002/2002-03-01-street_fighter.md
elky84/review
dc5a5fa14c7b7455424e28a122d3672cc67c602d
[ "MIT" ]
null
null
null
--- layout: post title: 스트리트 파이터 rating: ⭐️⭐️⭐️⭐️ description: 역사의 시작 categories: [추억의 게임, 대전 액션] tags: [추억의 게임, 1989년, 스트리트 파이터, 캡콤, 아케이드] --- ![sf1_01](../../images/2002/sf1_01.jpg) ![sf1_02](../../images/2002/sf1_02.jpg) 동네 오락실 한켠에 자리잡고 있던, 스트리트 파이터1은 당시의 유일하다고도 할 수 있는 격투게임이라는 점에서 주목을 받았다. 타격감이 좋았고, 각 캐릭터별 특성도 있어 꽤 인기를 끌었다. 커맨드 입력 개념의 도입, 3판 2선승제, 게이지 개념의 완벽한 구현등으로 인하여 높은 평가를 받기도 했다. 장풍을 비롯한 각종 판정이나 커맨드 입력이 직관적이지 않고, 점프 속도나 이동 속도도 이상하긴했는데, 그럼에도 대체제가 없었다. 류가 빨간 머리였다니?!? 2편부터는 염색하고 다닌걸까?
24.95
104
0.669339
kor_Hang
1.00001
a175fd0fe77805a7f111f8ecafcc4438fe9caa1b
4,185
md
Markdown
_posts/2020-11-10-salt-locale-problem.md
utf7/utf7.github.io
13491e14642a181bb898507f295706fbe54e207c
[ "MIT" ]
3
2018-09-13T00:45:55.000Z
2020-08-06T02:34:34.000Z
_posts/2020-11-10-salt-locale-problem.md
utf7/utf7.github.io
13491e14642a181bb898507f295706fbe54e207c
[ "MIT" ]
null
null
null
_posts/2020-11-10-salt-locale-problem.md
utf7/utf7.github.io
13491e14642a181bb898507f295706fbe54e207c
[ "MIT" ]
null
null
null
--- layout: post title: salt 中关于locale的问题 description: salt 中关于locale的问题 categories: [Salt] keywords: Salt/locale excerpt: salt 中关于locale的问题 --- ## 记录一次诡异的 Hive/Spark 乱码问题 最近遇到一个诡异的事情,Hive/Spark 写入汉字乱码。 检查 Hive/Spark 的各种参数也没有发现有什么变动,客户端配置也是一样的。 有一个诡异的地方是 `spark-sql -f xxx.sql,xxx.sql` 如果 `xxx.sql` 中如果有汉字,则也会有问题。 `spark-submit client` 模式则没有问题,`cluster` 模式则会有问题。 这里面唯一区别是 `client` 的 `Driver` 在 本地,`cluster` 在 `YARN(NodeManager)` 节点。 另外 `Spark/MR` 读写数据也有问题,不过 `hive cli` 不启动 `MR` 的话,则没有问题。。。比如 `select * from t limit 10` 这种不会启动 `MR`,则是本地运行的。 分析来看,不管是 `Hive/Spark` 只要任务跑在 YARN 上面则会有问题。 所以这块感觉和 `NodeManager` 有关系,因为 `on YARN` 的进程都是 `NodeManager fork` 出来的。 因为最近在做 `Zstandard` 修改了代码,所以同事怀疑是否代码引起的。我反复check了代码,并没有涉及到字符编码相关的内容。不应该出现此类问题。 由于修改了 `Hadoop` 代码,需要重启 `NodeManager` ,最近变动就是重启了 `NodeManager`以及添加了 `Zstandard` 的支持。 登陆出现问题的主机 执行 `locale` ```shell LANG=en_US.UTF-8 LCCTYPE="en_US.UTF-8" LC_NUMERIC="en_US.UTF-8" LC_TIME="en_US.UTF-8" LC_COLLATE="en_US.UTF-8" LC_MONETARY="en_US.UTF-8" LC_MESSAGES="en_US.UTF-8" LC_PAPER="en_US.UTF-8" LC_NAME="en_US.UTF-8" LC_ADDRESS="en_US.UTF-8" LC_TELEPHONE="en_US.UTF-8" LC_MEASUREMENT="en_US.UTF-8" LC_IDENTIFICATION="en_US.UTF-8" LC_ALL= ``` 貌似也没啥问题。百思不得其解: 此时赶快将节点回滚到之前的版本,然后慢慢重启 `NodeManager`,发现确实问题渐渐修复了。 还有另外一个现象是并不是所有内容都是乱码的,这个猜测和 `Map/Reduce` 以及 `Spark Executor` 跑在不同的 `NodeManager` 节点有关系。 这时候根据多年的经验直觉,赶快保存的异常的节点 `NodeManager` 保留的 `lsof` 句柄信息, diff 一下进程加载的 fd,是不是少加载了什么导致的,比较2个进程加载的fd 发现有一个 ```shell ps -ef|grep -v grep|grep org.apache.hadoop.yarn.server.nodemanager.NodeManager|awk '{print $2}'|xargs lsof -p |sort -n > lsof_before ``` ```shell ps -ef|grep -v grep|grep org.apache.hadoop.yarn.server.nodemanager.NodeManager|awk '{print $2}'|xargs lsof -p |sort -n > lsof_after. ``` ```shell diff lsof_before lsof_after ``` 然后发现少了 `/usr/lib/locale/locale-archive` 咦,什么鬼。。。为啥没有这个,分明我登陆节点执行,`locale` 输出是正常的。 所以就把问题定位点放在 `/usr/lib/locale/locale-archive` 为什么少了这个地方。 出问题的 NodeManager 启动命令如下: ```shell salt 'nm-*' cmd.run 'sudo -u yarn bash -c "source /etc/profile;yarn-daemon.sh start nodemanager"' ``` 我在一个节点测试了一下,使用 ```shell sudo -u yarn bash -c "source /etc/profile;yarn-daemon.sh start nodemanager" ``` 启动一个 NM 测试,发现并没有什么异常。。。。太诡异了。。。 节点还没有重启完,我赶快把所有的节点检查了一下,是否都丢失 `/usr/lib/locale/locale-archive` ```shell salt "*" cmd.run " ps -ef|grep -v grep|grep org.apache.hadoop.yarn.server.nodemanager.NodeManager|awk '{print \$2}'|xargs lsof -p|grep REG|grep /usr/lib/locale/locale-archive" ``` 发现我之前启动的节点都是没有 `locale-archive` ,而同事新启动的则是没有问题的。莫不是启动方式有问题???诡异。 执行: `salt -E "nm-*" cmd.run "locale"` ``` LANG=en_US.UTF-8 LC_CTYPE=C LC_NUMERIC=C LC_TIME=C LC_COLLATE=C LC_MONETARY=C LC_MESSAGES=C LC_PAPER=C LC_NAME=C LC_ADDRESS=C LC_TELEPHONE=C LC_MEASUREMENT=C LC_IDENTIFICATION=C LC_ALL= ``` 发现 `locale` 很多输出都是`C`,这个与我之前在机器上面执行的结果是不一致的。 所以应该是 `salt` 导致的,问了一下同事是如何重启的,他是kill 掉 `NodeManager`,并没有启动,而是让监控脚本自动拉起的。 而我当时为了启动快一些,是直接使用 `salt` 批量 `stop` 然后 `start` 的。 至此原因排查出来的,原来是 `salt` 的锅。 后来去github 把salt 代码拉了下来,看了一下。问题出在这边: `salt` 默认会 `reset_system_locale`,代码截图如下: ![reset_system_locale_code1](/images/posts/salt/reset_system_locale_code1.png) ![reset_system_locale_code1](/images/posts/salt/reset_system_locale_code2.png) 个人感觉这边salt处理的很有问题,虽然提供了参数,但我仍然认为是个bug,不知道为啥会考虑默认重置locale。 很坑!!! 看了一下代码,可以执行`salt` 命令的时候,添加参数 `reset_system_locale=False` 解决: 修改 `NodeManger` 启动脚本,`Hive/Spark` 乱码问题解决 ```shell salt 'nm-*' cmd.run reset_system_locale=False 'sudo -u yarn bash -c "source /etc/profile;yarn-daemon.sh start nodemanager"' ``` 验证: ```shell salt "nm-*" cmd.run " ps -ef|grep -v grep|grep org.apache.hadoop.yarn.server.nodemanager.NodeManager|awk '{print \$2}'|xargs lsof -p|grep REG|grep /usr/lib/locale/locale-archive" ``` 如果有使用 `salt` 的同学,具体可以使用如下命令来测试 测试这个问题: ```shell salt 'nm-*' cmd.run reset_system_locale=False 'locale' ``` ``` salt 'nm-*' cmd.run 'locale' ``` PS: 关于 `locale` : 可参考如下几个链接: 1.https://wiki.archlinux.org/index.php/locale 2.https://man7.org/linux/man-pages/man1/localedef.1.html 3.https://linuxhint.com/locales_debian/
22.260638
178
0.718041
yue_Hant
0.669439
a1767cc5ae25a0f9c0fe12375990335f0bfdf921
9,248
md
Markdown
guides/Sun and Moon/RNGing Without Custom Firmware.md
RichardPaulAstley/PokemonRNGGuides
7a8b83ab5852202ebc45bc6f879b88725c80a098
[ "MIT" ]
null
null
null
guides/Sun and Moon/RNGing Without Custom Firmware.md
RichardPaulAstley/PokemonRNGGuides
7a8b83ab5852202ebc45bc6f879b88725c80a098
[ "MIT" ]
null
null
null
guides/Sun and Moon/RNGing Without Custom Firmware.md
RichardPaulAstley/PokemonRNGGuides
7a8b83ab5852202ebc45bc6f879b88725c80a098
[ "MIT" ]
null
null
null
--- title: 'RNGing without Custom Firmware' description: 'Get your perfect Pokemon without custom firmware' slug: 'retail-sm-no-cfw' --- ## Tools - Calculator: [3DSRNGTool](https://github.com/wwwwwwzx/3DSRNGTool/releases) - Timer: Any two-stage timer - [EonTimer 1.6](https://www.dropbox.com/s/tqf13ht2f4bxt66/EonTimer-1_6.zip?dl=0#download) - [Emtimer](https://emtimer.mizdra.net/SimpleTimer) - [ZomgTimer 2.21](https://www.dropbox.com/s/aurp9y34j5rdbhv/ZomgTimer-V2_21.jar#download) - If you want to RNG a shiny Pokemon - Know your TSV. You can check your TSV via Battle Videos without Homebrew. Check [here](https://www.reddit.com/r/SVExchange/wiki/keysave) - Having the Shiny Charm will give you more chance to hit the shiny frame. - At the very beginning, you may need a video camera to record the clock hands position. - 1% luck + 99% patience!!! ## Understanding mechanics ### "Frame" and "F" In this guide, let's call a row of 3DSRNGTool results "Frame". If you trigger the battle or receive the Pokemon at one frame number, we say we hit the frame. "F" refers to real time: 1F = 1/60 second, which is the notation in Gen3 and in Eontimer. ### Timer setting You can use any timer which can set two stages independently. The total time span = Pre-Timer Countdown (Part A) + Standby Time (Part B) . - Part A: The systematic error caused by loading game, some edge frame advancement and human reaction time. - Part B: The time of waiting from starting frame to target frame, which varies according to the seed and target frame. ## Step 1: Set Up EonTimer ![](https://i.imgur.com/UiEVm7w.png) We are using Gen 3 Mode of EonTimer - Pre-Timer: in milliseconds. For example, 2133 means 2.133 seconds. - For old 3DS user, the Pre-Timer should be around 3100. For new 3DS user, the Pre-Timer should be around 2500. - Target Frame: in F (1/60 seconds). For example, 3600 means 60 seconds. Note that EonTimer may not be so accurate since it's designed for Gen3 consoles. - **This is number different from the target frame in 3DSRNGTool** - We have to convert the Gen 7 frame into real time("F") using 3DSRNGTool - Lag: in milliseconds. This number will add to total time. - Frame Hit: in F. When we do calibration, we can put the frame we actually hit and click update. A new Lag will be calculated. In summary, the total time span in seconds = (Pre-Timer + Lag) / 1000 + (Target Frame) / 60. ## Step 2: Preparation 1. Prepare a Synchronize lead, some tool Pokemon will help you catch and a bunch of balls. 2. Save in front of your target Pokemon or the person who will give you the Pokemon. - For legends in Wormholes, please stand as close as possible. - For Mystery Gifts, standing behind the delivery man in the first PC (Route 1) will have the minimum NPC number. - For wilds and roaming UBs, stand at specific spots with the least NPC number. ## Step 3: Set up 3DSRNGTool 1. In the upper right, input your game version and TSV. If you have the Shiny Charm, check the Shiny Charm box. 2. Set the Pokemon you are RNGing for. - For Stationary or Wild encounters, choose the "Category", select the "Pokemon" - For most of cases, you don't have to change other settings, like delay. Some RNG noise can be absorbed in Pre-Timer, don't worry. - If you are battling the UBs in Ultra Wormholes for the first time, choose "UB(first Encounter)". But it's not recommended because of the inconsistent delay. - For Mystery Gifts, change the "Event Setting" area yourself according the event you are RNGing. - You can find the WonderCard files (a .wc7) [here](https://github.com/projectpokemon/EventsGallery) for the event you are RNGing. Simply drag-and-drop that directly into 3DSRNGTool and have it automatically populate the settings. ## Step 4: Load your game or soft-resetting 1. L+R+Select/Start to soft reset the game. 2. Once you failed, you have to start over from step 0. Since the initial seed is different when you restart the game. ## Step 5: Find initial seed via continue screen clock needles 1. Check [here](<https://pokemonrng.com/guides/sm/en/Finding%20Initial%20Seed%20with%20Clocks%20(no%20Custom%20Firmware%20RNG)/>) 2. Once you get only one seed result, the tool will update it to main window. The starting frame in Time Calculator is updated as well. (417/477 + the number of frames you saw for clocks) 3. Be sure to double check your seed, most of failures are from the wrong seed ;) 4. Do not enter your save yet. ## Step 6: Find the target frame you would like to hit 1. Set up the filters of your choosing - "Safe Frame Only": This box will appear for non-zero NPC case. Recommended for the initial pre-timer calibration purpose. - "Blink Frame Only": This box will appear for zero NPC case. Those frames can survive for around 1 seconds and super easy to hit, but they are rare. 2. Set a reasonable Frame Range, right-click on the frame you would like to hit, and Set as Target Frame. - Gen7 Main RNG Tool will update this simultaneously. ## Step 7: Calculate waiting time, set up timer 1. Go back to Gen Main RNG Tool. In the bottom right, everything should be updated. Hit the Calculate. 2. A message box will pop up with "Set EonTimer for XXXXF. (YY.YYs)\<ZF>". Set XXXX as Target Frame of EonTimer. - `Z` is how long this target frame will exist. For Blink Frame, it should be above 30. ## Step 8: Press A at continue screen, start the timer at the same time Wait at the final screen until timer ends. **Be focused!** - For gifts or battles triggered by A pressing, proceed to the [final screen](https://github.com/wwwwwwzx/3DSRNGTool/blob/master/README.md#final-screen) as soon as possible. - For battles triggered by one step, please open the X menu to freeze the character movement. - For wild encounters triggered by Honey, open the X menu and hover the cursor over Bag. ## Step 9: Trigger the battle or receive the Pokemon, once the timer ends Press A to trigger the Pokemon Generation. - If the final input is a step, quit the X menu ~2-3 seconds before timer ends and push the circle pad hard when timer ends. - If you are doing wild encounters, use the Honey item. Don't need to be rush, since the RNG will stop in bag. ## Step 10: If you didn't get the Pokemon 1. Adjust the Pre-Timer and restart from step 3. 2. Check `Using Stats`, put the stats of the Pokemon you got. Check `+-100 frames` in `RNG Info`, hit Calculate again, you will see the frames which have the spread you hit. If you can't find the Pokemon you hit, please make sure you got the initial seed correctly. 3. Check your pre-timer. Look at the `Shift/F` Column. - If the number is between -4F and 4F, you are doing good and just because of the luck. Start over again and try to find a good seed and hit frame clusters with the same spread. - If the number is way off like +12 for example. This means you hit the frame too late. There are two ways you can adjust the timer. - Decrease your pre-timer. `+ 12 / 60 * (-1000) = -200`, add that to you current Pre-Timer. - Put `Taget Frame + 12` into Frame Hit, Click Update, EonTimer will do the math and subtract 200 from lag. ``` Note: The Pre-Timer calibration is the key of Gen7 main RNG. You may need to recalibrate the Pre-Timer when you change the RNG target. ``` ## Additional notes ### QR method This is a variant of above basic steps. Sometimes, we might want to hit a high frame number for perfect IVs and shiny. We can first consume tons of frames in Festival Plaza or Hau'Oli Shopping Mall. And then check what frame you are on via the QR Scanner, since QR scanner needles also use the numbers generated from main RNG. ![](https://i.imgur.com/K8YKtQB.png) Go to `Gen7 Main RNG Tool`, check `Locate Current Frame via QR`, put the estimated current frame range below, input the needle sequence, until you get one result. The Starting Frame of Time Calculator will also be updated. So Step 4 will be press B to quit QR Scanner and start the timer at same time. ``` Note: This method is also reducing the system error of timer with long time period. ``` ### Measuring NPC count Sometimes, the results might be far away from your target, then might it's due to the NPC count required changes. Especially for Xurkitree, Magearna and standing spots of wilds. The idea is simple, change the NPC count of Time Calculator and see what number of NPCs is giving the closet actual time you was waiting. Or you can waiting a fixed amount of time and using QR method to check how many frames are used. ### Xurkitree The NPC number changes between 1 and 2 in a period of 10.7 seconds due to the wandering Xurkitree in the background. So we have to use X menu to freeze the varying NPC count. Here's the mindset: - Save while you're standing behind it - Which will allow you have long time window for 1 NPC (~7 seconds) - Find the initial seed, load the game and open the X menu as soon as possible. - Use QR needles measure NPC count to make sure there is 1 NPC. - Close X menu, wait several seconds and reopen it again to refresh background situation. - Wait with X menu opened to advance close to your target frame - Quit X menu and trigger the battle as fast as you can to avoid NPC changes.
55.377246
294
0.749243
eng_Latn
0.996005
a1772f6551295097f81b3ab6325594cd15e2e0de
613
md
Markdown
README.md
onur2677/chpasswd
8ec9c42cde7a25632cf2a6349d48de6878d5eb3e
[ "MIT" ]
1
2021-10-31T17:01:49.000Z
2021-10-31T17:01:49.000Z
README.md
onur2677/chpasswd
8ec9c42cde7a25632cf2a6349d48de6878d5eb3e
[ "MIT" ]
null
null
null
README.md
onur2677/chpasswd
8ec9c42cde7a25632cf2a6349d48de6878d5eb3e
[ "MIT" ]
null
null
null
# chpasswd This module changes password with "chpasswd" [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com) ## Install ```bash npm i chpasswd --save ``` ### Usage ```js const { chpasswd, chpasswdSync } = require('../index') const password = require('./password') // Async chpasswd(password.old, password.new, function (error) { if (error) { console.log('Error ! ', error) } else { console.log('Success !') } }) // Sync var result = chpasswdSync(password.old, password.new) console.log(result ? 'Success !' : 'Error !') ```
18.029412
117
0.663948
kor_Hang
0.397294
a177d9646a82cb7f65b00bd50a4ecfaad2890d5f
1,930
md
Markdown
docs/manual/using-opencga/command-line/README.md
mwhamgenomics/opencga
a6b521f441fbefa35f6fbaadd6dd97e33bb33e7b
[ "Apache-2.0" ]
146
2015-03-05T19:14:22.000Z
2022-03-30T03:46:48.000Z
docs/manual/using-opencga/command-line/README.md
mwhamgenomics/opencga
a6b521f441fbefa35f6fbaadd6dd97e33bb33e7b
[ "Apache-2.0" ]
1,623
2015-01-27T00:30:36.000Z
2022-03-31T14:42:33.000Z
docs/manual/using-opencga/command-line/README.md
mwhamgenomics/opencga
a6b521f441fbefa35f6fbaadd6dd97e33bb33e7b
[ "Apache-2.0" ]
93
2015-01-28T17:13:01.000Z
2022-03-09T20:46:47.000Z
# Command Line ## Overview <a id="CommandLine-Overview"></a> **opencga.sh** is the officially recommended command line tool for users. It implements most of the functionality with many different _commands_ and _subcommands._ These _commands_ are a one-to-one mapping of _Resources_ from __REST web services and _subcommands_ are mapping to end-points. All the operations that can be performed using the command line internally create one or several REST calls, so access to REST machine/cluster is required. ## Installation OpenCGA command line can be downloaded from the main GitHub repository: [https://github.com/opencb/opencga/releases/](https://github.com/opencb/opencga/releases/) For a detailed description of all the steps required to download and configure the CLI, refer to the xxx section of the USER MANUAL. ## Correlation Between REST and CLI In the following URL, "_samples"_ is the resource and "_search"_ is the endpoint: [https://ws.opencb.org/opencga-demo/webservices/rest/v1/**samples**/**search**](https://ws.opencb.org/opencga-demo/webservices/rest/v1/samples/search) the corresponding command in the command line is : | `./opencga.sh samples` | | :--- | and the corresponding subcommand is : | `./opencga.sh samples search` | | :--- | ## CLI Session Management Generally, unless we are pointing to a public OpenCGA installation, users will first need to log in using the "users login" command line. Once the user has successfully logged in, a session file will be generated in their home folder: | `~/.opencga/session.json` | | :--- | This session file contains the following information: This makes it easier for users to login only once and execute any number of commands till the session token is expired. Session expiration is set by OpenCGA server independently from the client. Once the token is expired, the user has to login again and can perform desired operations as normal.
42.888889
446
0.770466
eng_Latn
0.997498
a1787f5a05f1f21dc21ab47684468b2713f4f93e
755
md
Markdown
frontend/README.md
billy4479/file-sender
fed30466dedcdc1f14e42d350fdb112508d3412a
[ "MIT" ]
2
2020-12-12T17:53:58.000Z
2021-03-14T22:18:58.000Z
frontend/README.md
billy4479/file-sender
fed30466dedcdc1f14e42d350fdb112508d3412a
[ "MIT" ]
null
null
null
frontend/README.md
billy4479/file-sender
fed30466dedcdc1f14e42d350fdb112508d3412a
[ "MIT" ]
null
null
null
# Svelte Template This is a template repo to bootstrap your Svelte project with some extra juicy stuff in it. By default you have Typescript, PostCSS with Tailwind, ES-Lint (with the airbnb preset), Prettier and Vite. This is meant to be used with `yarn` but you _should_ be able to use also `npm` or `pnpm`. ## Get this template You can just use the big green button "Use this template" or use `degit` ```bash pnpx degit billy4479/svelte-template my-svelte-app ``` Once you have the files `cd` into the cloned directory and run ```bash yarn # To spin-up a dev server yarn start # To build for production yarn build ``` ### VSCode If you use VSCode make sure to add this line to you `settings.json` ```json "eslint.lintTask.enable": true ```
20.972222
107
0.733775
eng_Latn
0.996444
a178b2e7a9d9c19bf1d11812b8ce2789ad30d63e
691
md
Markdown
README.md
SMXaS/Tank-ROS
49c8da467e7248bb968111aa37930c297b53ccb3
[ "MIT" ]
null
null
null
README.md
SMXaS/Tank-ROS
49c8da467e7248bb968111aa37930c297b53ccb3
[ "MIT" ]
null
null
null
README.md
SMXaS/Tank-ROS
49c8da467e7248bb968111aa37930c297b53ccb3
[ "MIT" ]
null
null
null
# ROBOT-ARDUINO-BLUETOOTH-CONTROL ## Usage * roscore * rosrun rosserial_python serial_node.py /dev/ttyUSB0 * Connect to bluetooth BLE application on iPhone and control it ** Disconnect Bluetooth module before code upload and reconnect after * Arduino IDE * ROS Noetic * Ubuntu 20.4 * KKMOON Robot chassis * Arduino UNO 3 * Arduino Niady L293D Motor Shield * A pair of 18650 batteries * Wires * DSD TECH Bluetooth module HM-18 ## Contributing * Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
25.592593
116
0.746744
eng_Latn
0.784173
a178c26c35598ef8091238cfe71c3286abb201e8
207
md
Markdown
README.md
finn-no/archaius-constretto
c19b1bc9c409baed8802c70b69f3c9fe38a8b23e
[ "Apache-2.0" ]
null
null
null
README.md
finn-no/archaius-constretto
c19b1bc9c409baed8802c70b69f3c9fe38a8b23e
[ "Apache-2.0" ]
null
null
null
README.md
finn-no/archaius-constretto
c19b1bc9c409baed8802c70b69f3c9fe38a8b23e
[ "Apache-2.0" ]
null
null
null
archaius-constretto =================== Set up Constretto as a configuration source for Archaius. Useful when integrating Hystrix into an enterprise where Constretto is the default configuration engine.
25.875
162
0.753623
eng_Latn
0.98712
a179bef141275159efaf7441a719c91d870db6da
120
md
Markdown
README.md
erickgirard/talk-javascript-next-maintenant
0d7dddb1b6802f62cafe5efeb331b635df658eb3
[ "MIT" ]
null
null
null
README.md
erickgirard/talk-javascript-next-maintenant
0d7dddb1b6802f62cafe5efeb331b635df658eb3
[ "MIT" ]
null
null
null
README.md
erickgirard/talk-javascript-next-maintenant
0d7dddb1b6802f62cafe5efeb331b635df658eb3
[ "MIT" ]
null
null
null
# Futur de Javascript ... Maintenant! Présentation sur le futur de javascript (2017) et comment l'utiliser maintenant.
30
80
0.775
fra_Latn
0.796637
a179df9b511b42ea9ce2c4ee9b4c68c41d351586
337
md
Markdown
.github/ISSUE_TEMPLATE/feature_request.md
melhirech/dmm
2638391d122f073ff812e38d2f7d67cd9861f2db
[ "MIT" ]
null
null
null
.github/ISSUE_TEMPLATE/feature_request.md
melhirech/dmm
2638391d122f073ff812e38d2f7d67cd9861f2db
[ "MIT" ]
null
null
null
.github/ISSUE_TEMPLATE/feature_request.md
melhirech/dmm
2638391d122f073ff812e38d2f7d67cd9861f2db
[ "MIT" ]
null
null
null
--- name: Feature request about: Suggest an idea for this project title: '' labels: enhancement assignees: '' --- ## Summary What: Explain ... Why: Explain ... ## Acceptance Criteria - Add acceptance criteria as bulleted list ## Example Pseudo Code (for implementation) ```typescript // Add example pseudo code for implementation
14.652174
45
0.721068
eng_Latn
0.935221
a17ab9fbcf5025d97c5dca4997b00b4f2b92858d
88
md
Markdown
docs/zht/versions/0.3.8.md
Sonolus/wiki-release-notes
ceceb064fe2a4a0759631e2157b21873cdab5e6f
[ "MIT" ]
1
2021-11-24T15:45:45.000Z
2021-11-24T15:45:45.000Z
docs/zht/versions/0.3.8.md
Sonolus/wiki-release-notes
ceceb064fe2a4a0759631e2157b21873cdab5e6f
[ "MIT" ]
null
null
null
docs/zht/versions/0.3.8.md
Sonolus/wiki-release-notes
ceceb064fe2a4a0759631e2157b21873cdab5e6f
[ "MIT" ]
null
null
null
# 0.3.8 ## 變更日誌 - 更新了logo和圖示。 - 新增遊戲中阻止設備休眠的功能。 - 新增`OutIn`的Easing函數。 - 新增備份API伺服器地址。
9.777778
21
0.670455
yue_Hant
0.98126
a17adf19d877df8c894ddb23973d46c8cc537512
2,523
md
Markdown
AlchemyInsights/workflow-email-not-being-sent.md
pebaum/OfficeDocs-AlchemyInsights-pr.lv-LV
e84c8c1b48e94a94d39adfe48bbcea4cc1fd919b
[ "CC-BY-4.0", "MIT" ]
null
null
null
AlchemyInsights/workflow-email-not-being-sent.md
pebaum/OfficeDocs-AlchemyInsights-pr.lv-LV
e84c8c1b48e94a94d39adfe48bbcea4cc1fd919b
[ "CC-BY-4.0", "MIT" ]
null
null
null
AlchemyInsights/workflow-email-not-being-sent.md
pebaum/OfficeDocs-AlchemyInsights-pr.lv-LV
e84c8c1b48e94a94d39adfe48bbcea4cc1fd919b
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Darbplūsmas e-pasts netiek sūtīts ms.author: pebaum author: pebaum manager: pamgreen ms.date: 04/21/2020 ms.audience: Admin ms.topic: article ROBOTS: NOINDEX, NOFOLLOW localization_priority: Normal ms.collection: Adm_O365 ms.custom: - "5200020" - "1586" ms.openlocfilehash: 391d3a2dcc2676a405065115f375c802d2492119 ms.sourcegitcommit: 631cbb5f03e5371f0995e976536d24e9d13746c3 ms.translationtype: MT ms.contentlocale: lv-LV ms.lasthandoff: 04/22/2020 ms.locfileid: "43766140" --- # <a name="workflow-email-is-not-being-sent-for-a-sharepoint-list-or-library"></a>Darbplūsmas e-pasta netiek nosūtīts SharePoint saraksta vai bibliotēkas 1. E-pasta ziņojumi no darbplūsmas netiek sūtīti visiem lietotājiem vai tikai konkrētiem lietotājiem, vai arī tiek parādīts kļūdas ziņojums **nevar nosūtīt e-pasta ziņojumu. Pārliecinieties, vai e-pastam ir derīgs adresāts**. Pārbaudiet, vai lietotājs ir vietņu kolekcijas **visas personas** atļaujas grupas (lietotāja informācijas saraksts). Paraugs Direct URL: https://<tenant>. sharepoint.com/sites/<sitename>/_layouts/15/People.aspx? MembershipGroupId = 0 - Ja lietotājs neeksistē, pārliecinieties, vai lietotājs ir pierakstījies lapā. - Ja tas ir ārējais lietotājs, pārliecinieties, vai viņu uzaicinājums ir akceptēts. - Ja lietotājs pastāv atļauju grupas, pārliecinieties, vai e-pasta adrese ir pareiza. - Ja lietotājiem e-pasta adrese nav iestatīta šeit, pēc tam izveidojiet parauga brīdinājumu šim lietotājam, kas liek sinhronizēt šo lietotāja kontu no SharePoint lietotāju profiliem šajā vietņu kolekcijā. 2. E-pasta ziņojumu no darbplūsmas tiek nosūtīti vietņu kolekcijas administratoriem, bet ne citiem lietotājiem un skatiet kļūdas **http aizliegts <span>https:</span>//URL/_vti_bin/Client.xvc.SP.Utilities.Utility.SendEmail**. [Ja nosūtāt e-pasta ziņojumu SharePoint grupai](https://docs.microsoft.com/sharepoint/support/sharing-and-permissions/access-denied-when-send-an-email-to-groups), skatiet sadaļu piekļuve liegta. Arī pārliecināties, ka **ierobežotas piekļuves lietotāja atļaujas noslēgšanas režīmā** vietņu kolekcijas līdzeklis nav aktīvs. ## <a name="related-topics"></a>Saistītās tēmas Vai vēlaties izmēģināt Microsoft Flow pakalpojumā SharePoint Online? - [Izveidot plūsmu](https://support.office.com/article/Create-a-flow-for-a-list-or-library-in-SharePoint-Online-or-OneDrive-for-Business-a9c3e03b-0654-46af-a254-20252e580d01) - [SharePoint un plūsmas](https://flow.microsoft.com/blog/sharepoint-and-flow/)
53.680851
238
0.797067
lvs_Latn
0.998779
a17b0ef55a05cee5071cc8fa515bfccdf26b0c36
260
md
Markdown
Guides/EventsTracker.md
fabrizioCorut/shopgun-ios-sdk
491162c827644ecfdb496b9de41360cbdc37ff2e
[ "MIT" ]
4
2017-05-09T09:39:08.000Z
2019-11-28T04:40:38.000Z
Guides/EventsTracker.md
fabrizioCorut/shopgun-ios-sdk
491162c827644ecfdb496b9de41360cbdc37ff2e
[ "MIT" ]
7
2018-03-05T17:28:45.000Z
2021-12-13T15:14:28.000Z
Guides/EventsTracker.md
fabrizioCorut/shopgun-ios-sdk
491162c827644ecfdb496b9de41360cbdc37ff2e
[ "MIT" ]
4
2016-02-03T06:44:49.000Z
2021-09-23T10:55:59.000Z
# EventsTracker You should not have to use the EventsTracker directly. However, if using the PagedPublication it is recommended that you configure the EventsTracker so that usage stats can be collected from users of your app. > TODO: Configuration options
37.142857
210
0.807692
eng_Latn
0.999013
a17b2db1f6705c9f52dbe636a342190d9b10133b
1,959
md
Markdown
_posts/2003-2-18-2003-02-18.md
gt-2003-2017/gt-2003-2017.github.io
d9b4154d35ecccbe063e9919c7e9537a84c6d56e
[ "MIT" ]
null
null
null
_posts/2003-2-18-2003-02-18.md
gt-2003-2017/gt-2003-2017.github.io
d9b4154d35ecccbe063e9919c7e9537a84c6d56e
[ "MIT" ]
null
null
null
_posts/2003-2-18-2003-02-18.md
gt-2003-2017/gt-2003-2017.github.io
d9b4154d35ecccbe063e9919c7e9537a84c6d56e
[ "MIT" ]
null
null
null
고린도후서 12:11 - 12:21 2003년 02월 18일 (화) 3차 전도여행의 계획 고린도후서 12:11 - 12:21 / 새찬송가 326 장 12:11 내가 어리석은 자가 되었으나 너희가 억지로 시킨 것이니 내가 너희에게 칭찬을 받아야 마땅하도다 내가 아무것도 아니나 지극히 큰 사도들보다 조금도 부족하지 아니하니라 12 사도의 표 된 것은 내가 너희 가운데서 모든 참음과 표적과 기사와 능력을 행한 것이라 13 내 자신이 너희에게 폐를 끼치지 아니한 일밖에 다른 교회보다 부족하게 한 것이 무엇이 있느냐 너희는 나의 이 공평치 못한 것을 용서하라 14 보라 이제 세 번째 너희에게 가기를 예비하였으나 너희에게 폐를 끼치지 아니하리라 나의 구하는 것은 너희 재물이 아니요 오직 너희니라 어린아이가 부모를 위하여 재물을 저축하는 것이 아니요 이에 부모가 어린아이를 위하여 하느니라 15 내가 너희 영혼을 위하여 크게 기뻐함으로 재물을 허비하고 또 내 자신까지 허비하리니 너희를 더욱 사랑할수록 나는 덜 사랑을 받겠느냐 16 하여간 어떤 이의 말이 내가 너희에게 짐을 지우지는 아니하였을지라도 공교한 자가 되어 궤계로 너희를 취하였다 하니 17 내가 너희에게 보낸 자 중에 누구로 너희의 이를 취하더냐 18 내가 디도를 권하고 함께 한 형제를 보내었으니 디도가 너희의 이를 취하더냐 우리가 동일한 성령으로 행하지 아니하더냐 동일한 보조로 하지 아니하더냐 19 이 때까지 우리가 우리를 너희에게 변명하는 줄로 생각하는구나 우리가 그리스도 안에서 하나님 앞에 말하노라 사랑하는 자들아 이 모든 것은 너희의 덕을 세우기 위함이니라 20 내가 갈 때에 너희를 나의 원하는 것과 같이 보지 못하고 또 내가 너희에게 너희의 원치 않는 것과 같이 보일까 두려워하며 또 다툼과 시기와 분냄과 당짓는 것과 중상함과 수군수군하는 것과 거만함과 어지러운 것이 있을까 두려워하고 21 또 내가 다시 갈 때에 내 하나님이 나를 너희 앞에서 낮추실까 두려워하고 또 내가 전에 죄를 지은 여러 사람의 그 행한 바 더러움과 음란함과 호색함을 회개치 아니함을 인하여 근심할까 두려워하노라 해석도움 더 사랑할수록 덜 사랑받겠느냐 고린도의 거짓 교사들은, 추천서가 없는 바울은 인정받은 사도가 아니라고 조롱했습니다. 이에 대해 바울은 자기가 고린도교회에서 행한 모든 표적과 기사와 능력, 그리고 이같은 조롱에도 불구하고 변함없이 그들을 사랑하는 이 참음이 참된 목자의 표라고 증거합니다(12). 또 바울은 자신이 재정문제로 고린도 성도들에게 짐을 지우지 않은 것을 제외하고는 어떠한 것에서도 다른 교회에 대한 정성보다 부족하지 않았으며(13), 재정적인 짐을 지우지 않은 것도 사랑이 부족해서가 아니라 도리어 자녀의 물질보다 자녀 자체를 원하는 부모의 심정 때문이었다고 말하고 있습니다(14). 참으로 바울은 목자의 심정과 부모의 기쁨으로 그들의 영혼을 위해 오래 참으며 모든 것을 쏟아 부었던 것입니다(15). 너희를 더욱 사랑할수록 나는 덜 사랑받겠느냐는 바울의 씁쓸한 한탄에서 이같이 놀라운 하나님의 사랑을 향한 우리의 잘못된 태도들을 되돌아보게 됩니다. 바울의 염려 바울이 고린도 교인들의 오해에 대해 자신의 결백을 말한 것은 변명하기 위함이 아니라고 밝힙니다. 고린도 교인들을 그로부터 멀어지게 하려는 거짓을 제거함으로 성도들이 건전하게 자라는 것을 돕기 위함이었습니다(19). 바울은 자기가 고린도 성도들을 재회할 때 그들의 부정한 모습과 자신의 분노한 모습을 보이게 될 것을 두려워 한다고 말합니다(20전). 또 그는 그들에게서 싸움과 질투와 급한 성질과 이기심과 모욕적이고 저질적인 말들, 그리고 무질서와 불명예스러운 모습을 볼 것을 두려워하였고(20후), 전에 범죄했지만 여전히 그들의 부도덕한 죄에서 회개하지 않는 사람들의 모습을 봄으로 울게 될 것에 대해 염려하고 있습니다(21). 이것은 우리에게서 이같은 모습이 발견될 때마다 근심스러워 하시는 것이 예수님의 마음입니다.
85.173913
958
0.727922
kor_Hang
1.00001
2f93cdf89625f8be2186e1b75f415caed0994804
841
md
Markdown
_posts/2021-05-22-spack-0.16.2.md
rse-ops/rse-ops.github.io
35dbb46f86e1b7dd66d3567156a562e64f6bbc4b
[ "MIT" ]
1
2021-12-13T19:05:54.000Z
2021-12-13T19:05:54.000Z
_posts/2021-05-22-spack-0.16.2.md
rse-ops/rse-ops.github.io
35dbb46f86e1b7dd66d3567156a562e64f6bbc4b
[ "MIT" ]
1
2022-03-05T19:14:40.000Z
2022-03-05T19:14:40.000Z
_posts/2021-05-22-spack-0.16.2.md
rse-ops/rse-ops.github.io
35dbb46f86e1b7dd66d3567156a562e64f6bbc4b
[ "MIT" ]
null
null
null
--- title: "Spack 0.16.2 Released" categories: release --- [Spack](https://github.com/spack) is a flexible, configurable, Python-based, and open-source HPC package manager. Spack automates the installation and fine-tuning of simulations and libraries, operating on a wide variety of HPC platforms and enabling users to build many code configurations. Version 0.16.2 includes - performance improvements - additional Python 3.10 support - better support for externals in shared prefixes - and much more! Learn more: - [Spack v0.16.2 release notes](https://github.com/spack/spack/releases/tag/v0.16.2) - [Spack GitHub organization](https://github.com/spack) - [Spack documentation](https://spack.readthedocs.io/en/latest/) and [Spack tutorial](https://spack-tutorial.readthedocs.io/en/latest/) - [Spack Video](https://youtu.be/D0p5xpsboK4)
44.263158
315
0.768133
eng_Latn
0.874645
2f958c08d8e4c6a98edae22a18a436238d0ce2d2
7,299
md
Markdown
_includes/stats/lv/pos/PRON.md
fginter/docs-fginterfork
1012563e049f1ad57548bb71908c632b23ee64f9
[ "Apache-2.0" ]
null
null
null
_includes/stats/lv/pos/PRON.md
fginter/docs-fginterfork
1012563e049f1ad57548bb71908c632b23ee64f9
[ "Apache-2.0" ]
null
null
null
_includes/stats/lv/pos/PRON.md
fginter/docs-fginterfork
1012563e049f1ad57548bb71908c632b23ee64f9
[ "Apache-2.0" ]
null
null
null
-------------------------------------------------------------------------------- ## Treebank Statistics (UD_Latvian) There are 36 `PRON` lemmas (1%), 90 `PRON` types (1%) and 545 `PRON` tokens (3%). Out of 16 observed tags, the rank of `PRON` is: 10 in number of lemmas, 9 in number of types and 10 in number of tokens. The 10 most frequent `PRON` lemmas: <em>tas, viņš, es, kas, tā, mēs, viss, jūs, šis, kāds</em> The 10 most frequent `PRON` types: <em>tas, to, viņš, tā, kas, es, viņa, ko, man, mēs</em> The 10 most frequent ambiguous lemmas: <em>tas</em> ([PRON]() 161, [DET]() 34), <em>es</em> ([PRON]() 43, [SYM]() 2), <em>kas</em> ([SCONJ]() 106, [PRON]() 43, [DET]() 1), <em>tā</em> ([PRON]() 39, [ADV]() 21, [DET]() 11, [SCONJ]() 1), <em>viss</em> ([PRON]() 19, [DET]() 17, [NOUN]() 1), <em>šis</em> ([DET]() 49, [PRON]() 11), <em>kāds</em> ([DET]() 10, [PRON]() 10, [SCONJ]() 3), <em>kāda</em> ([DET]() 10, [PRON]() 9, [SCONJ]() 1), <em>pats</em> ([DET]() 9, [PRON]() 9), <em>kurš</em> ([SCONJ]() 44, [PRON]() 6) The 10 most frequent ambiguous types: <em>tas</em> ([PRON]() 45, [DET]() 3), <em>to</em> ([PRON]() 58, [DET]() 8), <em>tā</em> ([PRON]() 20, [ADV]() 18, [DET]() 13), <em>kas</em> ([SCONJ]() 86, [PRON]() 23), <em>ko</em> ([SCONJ]() 18, [PRON]() 13), <em>tam</em> ([PRON]() 13, [DET]() 2), <em>tie</em> ([PRON]() 5, [DET]() 4), <em>tās</em> ([PRON]() 7, [DET]() 4), <em>tajā</em> ([PRON]() 6, [DET]() 3), <em>šim</em> ([PRON]() 6, [DET]() 1) * <em>tas</em> * [PRON]() 45: <em>Kā <b>tas</b> ietekmētu „ ZAAO " , ja transports darbotos uz biogāzi ?</em> * [DET]() 3: <em>Kas būs <b>tas</b> galvenais serviss pilsonim , ko piedāvās Latvijas Nacionālā bibliotēka ?</em> * <em>to</em> * [PRON]() 58: <em>Protams , ir jārēķina , vai ir jēga <b>to</b> darīt .</em> * [DET]() 8: <em>Mēs Eiropā noslēdzam <b>to</b> būvēšanas loku .</em> * <em>tā</em> * [PRON]() 20: <em>Viss atkarīgs no <b>tā</b> , kā palaimējies nodzīvot dzīvi .</em> * [ADV]() 18: <em>Tieši <b>tā</b> .</em> * [DET]() 13: <em>Tā ir <b>tā</b> problēma .</em> * <em>kas</em> * [SCONJ]() 86: <em>Vai būs kaut kas , <b>kas</b> līdzšinējā sistēmā nav iespējams ?</em> * [PRON]() 23: <em>Vai būs kaut <b>kas</b> , kas līdzšinējā sistēmā nav iespējams ?</em> * <em>ko</em> * [SCONJ]() 18: <em>Tā ir šķirošanai derīga masa , <b>ko</b> var izmantot kā kurināmo .</em> * [PRON]() 13: <em>Jautājums ir <b>ko</b> liekam caurulei galā .</em> * <em>tam</em> * [PRON]() 13: <em>Praktiskā patēriņa <b>tam</b> vēl nav .</em> * [DET]() 2: <em>Esam <b>tam</b> gatavi un varam pārspēt " Google " ar 1 Gbps Rēzeknē vai jebkurā citā vietā !</em> * <em>tie</em> * [PRON]() 5: <em>Tā paaudze , kas dzimst un ir zīdaiņi tagad , <b>tie</b> varbūt ļoti reti redzēs grāmatas .</em> * [DET]() 4: <em>Un man bija jākārto <b>tie</b> paši murgainie " ideoloģiskie " eksāmeni .</em> * <em>tās</em> * [PRON]() 7: <em>Tā ka kādam <b>tās</b> ir jāglabā .</em> * [DET]() 4: <em>Grāmatas tapšanas laikā , izlasot <b>tās</b> ievadu , licies , ka tai pietrūks dziļuma , ka tā būs par daudz virspusēja un vienpusēja .</em> * <em>tajā</em> * [PRON]() 6: <em>Bet reizēm kaut kas <b>tajā</b> mazliet šķebina .</em> * [DET]() 3: <em>Grāmatniecība Latvijā atrodas <b>tajā</b> grupā , pie kuras pieder valstis , kurās nav liels iedzīvotāju skaits , kas lasa attiecīgajā valsts valodā .</em> * <em>šim</em> * [PRON]() 6: <em>Ja vēl kādi sīkumi uzrodas , līdz <b>šim</b> esam labi varējuši tos risināt .</em> * [DET]() 1: <em>Savukārt runājot par uzņēmuma apgrozījumu <b>šim</b> gadam , Lipmans rudenī prognozēja , ka 2013. gada apgrozījums varētu pieaugt par aptuveni 13,5 % .</em> ## Morphology The form / lemma ratio of `PRON` is 2.500000 (the average of all parts of speech is 1.612437). The 1st highest number of forms (8) was observed with the lemma “tas”: <em>tajā, tam, tas, tie, tiem, to, tos, tā</em>. The 2nd highest number of forms (7) was observed with the lemma “viņš”: <em>Viņus, viņa, viņam, viņi, viņiem, viņu, viņš</em>. The 3rd highest number of forms (6) was observed with the lemma “tā”: <em>tai, tajā, tajās, to, tā, tās</em>. `PRON` occurs with 7 features: [lv-feat/Case]() (545; 100% instances), [lv-feat/PronType]() (545; 100% instances), [lv-feat/Number]() (494; 91% instances), [lv-feat/Gender]() (398; 73% instances), [lv-feat/Person]() (183; 34% instances), [lv-feat/Reflex]() (8; 1% instances), [lv-feat/Poss]() (3; 1% instances) `PRON` occurs with 21 feature-value pairs: `Case=Acc`, `Case=Dat`, `Case=Gen`, `Case=Loc`, `Case=Nom`, `Gender=Fem`, `Gender=Masc`, `Number=Plur`, `Number=Sing`, `Person=1`, `Person=2`, `Person=3`, `Poss=Yes`, `PronType=Dem`, `PronType=Ind`, `PronType=Ind,Neg`, `PronType=Int`, `PronType=Prs`, `PronType=Rcp`, `PronType=Tot`, `Reflex=Yes` `PRON` occurs with 84 feature combinations. The most frequent feature combination is `Case=Nom|Gender=Masc|Number=Sing|PronType=Dem` (66 tokens). Examples: <em>tas, tāds</em> ## Relations `PRON` nodes are attached to their parents using 15 different relations: [lv-dep/nsubj]() (228; 42% instances), [lv-dep/dobj]() (102; 19% instances), [lv-dep/nmod]() (76; 14% instances), [lv-dep/det]() (42; 8% instances), [lv-dep/iobj]() (22; 4% instances), [lv-dep/nsubjpass]() (18; 3% instances), [lv-dep/root]() (17; 3% instances), [lv-dep/conj]() (14; 3% instances), [lv-dep/compound]() (10; 2% instances), [lv-dep/acl]() (9; 2% instances), [lv-dep/dep]() (3; 1% instances), [lv-dep/advcl]() (1; 0% instances), [lv-dep/ccomp]() (1; 0% instances), [lv-dep/mwe]() (1; 0% instances), [lv-dep/parataxis]() (1; 0% instances) Parents of `PRON` nodes belong to 10 different parts of speech: [VERB]() (360; 66% instances), [NOUN]() (108; 20% instances), [ADJ]() (17; 3% instances), [PRON]() (17; 3% instances), [ROOT]() (17; 3% instances), [ADV]() (16; 3% instances), [NUM]() (4; 1% instances), [PROPN]() (4; 1% instances), [ADP]() (1; 0% instances), [X]() (1; 0% instances) 406 (74%) `PRON` nodes are leaves. 93 (17%) `PRON` nodes have one child. 25 (5%) `PRON` nodes have two children. 21 (4%) `PRON` nodes have three or more children. The highest child degree of a `PRON` node is 7. Children of `PRON` nodes are attached using 17 different relations: [lv-dep/case]() (58; 25% instances), [lv-dep/acl]() (31; 13% instances), [lv-dep/punct]() (24; 10% instances), [lv-dep/discourse]() (23; 10% instances), [lv-dep/aux]() (17; 7% instances), [lv-dep/nsubj]() (16; 7% instances), [lv-dep/compound]() (13; 6% instances), [lv-dep/ccomp]() (12; 5% instances), [lv-dep/advmod]() (8; 3% instances), [lv-dep/cc]() (8; 3% instances), [lv-dep/conj]() (7; 3% instances), [lv-dep/advcl]() (6; 3% instances), [lv-dep/nmod]() (4; 2% instances), [lv-dep/parataxis]() (2; 1% instances), [lv-dep/dep]() (1; 0% instances), [lv-dep/det]() (1; 0% instances), [lv-dep/neg]() (1; 0% instances) Children of `PRON` nodes belong to 13 different parts of speech: [VERB]() (57; 25% instances), [ADP]() (56; 24% instances), [NOUN]() (25; 11% instances), [PUNCT]() (24; 10% instances), [PART]() (23; 10% instances), [PRON]() (17; 7% instances), [ADV]() (11; 5% instances), [CONJ]() (8; 3% instances), [ADJ]() (5; 2% instances), [PROPN]() (2; 1% instances), [SCONJ]() (2; 1% instances), [DET]() (1; 0% instances), [NUM]() (1; 0% instances)
81.1
686
0.604603
lvs_Latn
0.624457
2f969e6c65ad8c3f9672fd1b11f3d39b20e53416
387
md
Markdown
README.md
t0lkman/safe-to-hover
6beeaafa15caa79e17f7a28e266b08eb60b571f3
[ "BSD-3-Clause" ]
2
2015-02-15T09:12:01.000Z
2015-02-15T09:12:07.000Z
README.md
t0lkman/safe-to-hover
6beeaafa15caa79e17f7a28e266b08eb60b571f3
[ "BSD-3-Clause" ]
null
null
null
README.md
t0lkman/safe-to-hover
6beeaafa15caa79e17f7a28e266b08eb60b571f3
[ "BSD-3-Clause" ]
null
null
null
# safe-to-hover.js Making pages scroll smoothly is super important and `:hover` does not play well with scrolling. Why? [Because painting is really scroll a page fast, it leaves a trail of required repainting underneath the cursor as the document flies by. This makes the page janky. We dont like jank. For a fix, roll on over to https://plus.google.com/+MalteUbl/posts/NsyYKenqYNP
29.769231
79
0.775194
eng_Latn
0.992645
2f96c77dff463cb4ff493bedd20224dde393a46d
6,123
md
Markdown
HTTP Server/HTTP Server.md
hochan222/ComputerNetwork
1e09ee6c8859f339b27aaf10e4124449cd0f9b1f
[ "MIT" ]
null
null
null
HTTP Server/HTTP Server.md
hochan222/ComputerNetwork
1e09ee6c8859f339b27aaf10e4124449cd0f9b1f
[ "MIT" ]
null
null
null
HTTP Server/HTTP Server.md
hochan222/ComputerNetwork
1e09ee6c8859f339b27aaf10e4124449cd0f9b1f
[ "MIT" ]
null
null
null
## Tips for writing HTTP server ``` # ## Web server에 있는 파일 위치와 읽기 # Web server는 contents가 저장된 root directory를 지정할 수 있다. 편의상 source program과 같은 directory로 하자. Request line에서 `/test/index.html` 이라는 path가 있다면, web server는 `./test/index.html` 파일을 찾아 읽으면 된다. # # Response message의 첫 줄, status line은 # - if the file exists, `HTTP/1.1 200 OK` # - otherwise, `HTTP/1.1 404 Not found` # # 파일은 binary mode로 읽어야 한다(읽은 결과는 `bytes` type이다. # # ## Response message의 header들 정의 # `Date`, `Server`, `Connection` header는 반드시 만들어야 한다. Request message의 `Connection` header에 따라 Response의 `Connection` header를 `keep-alive`(default) 또는 `close`로 설정해야 한다. # # File이 존재할 경우 `Accept-range`, `Content-type`, `Content-length` header를 삽입해야 한다. # ## `socketserver` module 활용해서 server 구축하기 # # `socketserver.TCPServer` class를 이용하면, socket programming detail을 몰라도 구현할 수 있다. 이때 여러분은 `StreamRequestHandler` class를 상속받아 `handle` method만 implement하면 충분하다. # # `TCPServer` class에서 `accept`한 connected socket을 `makefile`로 만들어 아래 `HTTPHandler` class로 pass해 준다. File-like stream object은 다음과 같이 access할 수 있다. # - incoming stream: `self.rfile` # - outgoing stream: `self.wfile` # - 예) `self.wfile.write(message) # # AS-1에서 작성한 headers.py 파일을 import해서 header를 처리하라. ``` ```python import socketserver import time # to know current time import mimetypes # to map filenames to MIME types import headers # your module 'headers.py' import io class HTTPHandler(socketserver.StreamRequestHandler): def handle(self): # read a request message # print(self.client_address[0]) import os buffer = self.request.recv(1024).strip() file = io.BytesIO(buffer) request_headers = headers.parse_headers(file) # print('request_headers: ', request_headers) PATH = '' PATH = request_headers['PATH'] KeepAlive = '' if 'Keep-Alive' in request_headers: KeepAlive = request_headers['Keep-Alive'] if request_headers['CONNECTION']: CONNECTION = request_headers['CONNECTION'] else: CONNECTION = 'keep-alive' print(PATH, CONNECTION) pass senddata=b'\r\n' # read content from file name: '.' + path if PATH == '/test/index.html': f = open('./test/index.html', 'rb') elif PATH: if os.path.exists("." + PATH): if PATH == '/test' or PATH == '/test/': f = open('./test/404.html', 'rb') else: f = open('.'+PATH, 'rb') else: f = open('./test/404.html', 'rb') data = f.read(1024) while data: senddata+=data data = f.read(1024) f.close() pass # Build the response message import mimetypes import time text = '' res_headers = {} res_headers['Date'] = time.asctime() res_headers['Server'] = 'MyServer/1.0' res_headers['Accept-range'] = 'bytes' if CONNECTION == 'keep-alive': res_headers['Connection'] = 'keep-alive' if KeepAlive == '': res_headers['Keep-Alive'] = 'timeout=10, max=100' else: KeepAlive = list(KeepAlive.split(', ')) if int(KeepAlive[1]) -1 == 0: res_headers['Connection'] = 'close' else: KeepAlive[1] = int(KeepAlive[0][4:]) - 1 KeepAlive = ', '.join(KeepAlive) res_headers['Keep-Alive'] = KeepAlive elif CONNECTION == 'close': res_headers['Connection'] = 'close' if PATH == '/test/index.html': res_headers['Content-type'] = 'text/html' res_headers['Content-Length'] = str(os.path.getsize('./test'+'/index.html')) text += 'HTTP/1.1 200 OK\r\n' elif PATH: if os.path.exists("." + PATH): if PATH == '/test' or PATH == '/test/': res_headers['Content-type'] = 'text/html' res_headers['Content-Length'] = str(os.path.getsize('./test'+'/404.html')) text += 'HTTP/1.1 200 OK\r\n' else: res_headers['Content-type'] = mimetypes.guess_type(PATH)[0] res_headers['Content-Length'] = str(os.path.getsize('.'+PATH)) text += 'HTTP/1.1 200 OK\r\n' else: res_headers['Content-type'] = 'text/html' res_headers['Content-Length'] = str(os.path.getsize('./test'+'/404.html')) text += 'HTTP/1.1 404 Not found' for k in res_headers: line = k+': '+res_headers[k]+'\r\n' text += line sbuff = text.encode() sbuff+=senddata self.wfile.write(sbuff) pass self.wfile.flush() # Flush-out output buffer for immediate sending # create a TCPServer object with your handler class http_server = socketserver.TCPServer(('', 8001), HTTPHandler) http_server.serve_forever() ``` ## Testing your HTTP server ``` # 먼저 HTTP server를 실행한 후에, client로서 browser나 `urllib.request.urlopen` 함수를 사용할 수 있다. # ### Browser에서 # Chrome browser에서 '개발자 도구'를 띄우고 다음과 같이 url을 입력하자. # ```http://localhost:8080/test/index.html # ``` # # Browser는 base html file을 `GET`한 후, 이를 parsing하고, 연속해서 image object들을 fetch하기 위해 `GET` request message를 자동적으로 생성하여 송신한다. 여러분은 server에서 읽은 request message를 print해서 확인할 수 있을 것이다. 이때, `Connection` header는 keep-alive (Persistent connection mode)임을 확인 할 수 있다. # # ### urllib module 활용 # ```Python # from urllib.request import urlopen # # f = urlopen(url) # content = f.read() # ``` # # 위 방법은 request header는 `Connection: close`로 설정하여 non-persistent mode로 연결 요청하는 방식이다. 이후 각각의 image들에 대해 같은 방법으로 fetch해 오는 code를 작성해야 한다. ``` ## Output ### index.html ![output](index_html.PNG) ![output](network.PNG) ![output](header.PNG) ### 404 page ![output](test.PNG) ![output](test_.PNG) ![output](404.PNG)
33.459016
257
0.575698
kor_Hang
0.954746
2f971d4219f1b8f8ee856109976541fa74f72c90
480
md
Markdown
student-bios/ahmedmohamud.md
ahmedmohamud/home
8e8c16420590fa5d81da7476f6f6e3b9821d3e1d
[ "MIT" ]
null
null
null
student-bios/ahmedmohamud.md
ahmedmohamud/home
8e8c16420590fa5d81da7476f6f6e3b9821d3e1d
[ "MIT" ]
null
null
null
student-bios/ahmedmohamud.md
ahmedmohamud/home
8e8c16420590fa5d81da7476f6f6e3b9821d3e1d
[ "MIT" ]
null
null
null
## AHMED ABDI I am Ahmed abdi who is living in kakuma-kenya as well as student of Italanta Academy. I have a hoppy and they are like the following. <!--ordered--> * reading novels * playing football * swimming * watching movies during free times. ![image](https://avatars.githubusercontent.com/u/93647103?s=400&u=4dd2e74fceac3cc4917e017bf4731c94aa6ba183&v=4) <!--italics--> MY DREAMS * to to be an a software developer * to become an expert in ITS.
24
133
0.710417
eng_Latn
0.986285
2f9818fbfbd2918bb700f2e505c7109d2ce22b52
4,927
md
Markdown
README.md
alighorbani1381/RayganSms
9a3e9b59326ef1cb1679607c151c6ce40af9e7ad
[ "MIT" ]
11
2019-01-11T20:52:09.000Z
2021-09-10T09:38:10.000Z
README.md
alighorbani1381/RayganSms
9a3e9b59326ef1cb1679607c151c6ce40af9e7ad
[ "MIT" ]
4
2019-01-21T18:11:40.000Z
2020-11-29T01:38:39.000Z
README.md
alighorbani1381/RayganSms
9a3e9b59326ef1cb1679607c151c6ce40af9e7ad
[ "MIT" ]
2
2020-12-02T23:57:01.000Z
2020-12-09T19:42:00.000Z
# RayganSms RayganSms API for send text messages [![Latest Version on Packagist](https://img.shields.io/packagist/v/trez/raygan-sms.svg?style=flat-square)](https://packagist.org/packages/trez/raygan-sms) [![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE) [![StyleCI](https://github.styleci.io/repos/164846699/shield?branch=master)](https://github.styleci.io/repos/164846699) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/farhadmirzapour/RayganSms/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/farhadmirzapour/RayganSms/?branch=master) [![Build Status](https://scrutinizer-ci.com/g/farhadmirzapour/RayganSms/badges/build.png?b=master)](https://scrutinizer-ci.com/g/farhadmirzapour/RayganSms/build-status/master) [![Code Intelligence Status](https://scrutinizer-ci.com/g/farhadmirzapour/RayganSms/badges/code-intelligence.svg?b=master)](https://scrutinizer-ci.com/code-intelligence) [![Quality Score](https://img.shields.io/scrutinizer/g/farhadmirzapour/RayganSms.svg?style=flat-square)](https://scrutinizer-ci.com/g/farhadmirzapour/RayganSms) [![Total Downloads](https://img.shields.io/packagist/dt/trez/raygan-sms.svg?style=flat-square)](https://packagist.org/packages/trez/raygan-sms) <div dir="rtl" align="justify"> این پکیج امکان اتصال <a href="https://raygansms.com/" target="_blank" >RayganSms API</a> را به فریم ورک (Laravel) فراهم می سازد. ## محتوا - [نصب و پیکره بندی](#نصب-و-پیکره-بندی) - [متدها](#متدها) - [استفاده در سیستم اعلانات لاراول ](#استفاده-در-سیستم-اعلانات-لاراول) - [تولیدکننده](#تولیدکننده) - [لایسنس](#لایسنس) ## نصب و پیکره بندی با استفاده از composer قادر به نصب این سرویس می باشید: </div> ```bash composer require trez/raygan-sms ``` <div dir="rtl"> بعد از نصب پکیج ، فایل های config/services.php و env. را مطابق زیر ویرایش نمائید : </div> ```php // .env ... RAYGANSMS_USERNAME=******* RAYGANSMS_PASSWORD=******* RAYGANSMS_PHONE_NUMBER=******* ... ``` ```php // config/services.php ... 'raygansms' => [ 'user_name' => env('RAYGANSMS_USERNAME'), 'password' => env('RAYGANSMS_PASSWORD'), 'phone_number' => env('RAYGANSMS_PHONE_NUMBER'), ], ... ``` <div dir="rtl"> چنانچه از نسخه های پایین تر از 5.5 استفاده می نمائید ServiceProvider و aliase زیر را به فایل config/app.php اضافه نمائید: </div> ```php // config/app.php ... Trez\RayganSms\RayganSmsServiceProvider::class, ... 'RayganSms' => Trez\RayganSms\Facades\RayganSms::class ... ``` <div dir="rtl"> هم اکنون می توانید با استفاده از Facade این پکیج (RayganSms) به متدهای پکیج دسترسی نمایید : </div> ```php use Trez\RayganSms\Facades\RayganSms; ... echo RayganSms::sendMessage('0936*******','Test Message'); ... echo RayganSms::sendAuthCode('0936*******','Welcome ...'); ... $result = RayganSms::checkAuthCode('0936*******','922387'); if($result){ /// }else{ /// } ... echo RayganSms::sendAuthCode('0936*******', 'Your Auth Code: 123456', false); ... ``` <div dir="rtl"> ### متدها </div> <div dir="rtl"> #### 1- متد ارسال پیامک </div> `sendMessage($reciver_number, $text_message)` <div dir="rtl" > مثال : </div> ```php echo RayganSms::sendMessage('0936*******','Test Message'); ``` <div dir="rtl" > #### 2- متد ارسال کد احراز هویت 2FA یا (Two Factor Authentication) </div> `sendAuthCode($reciver_number, $text_message = null, $autoGenerateCode = true)` <div dir="rtl" > نکته : اگر مقدار پارامتر autoGenerateCode$ برابر true باشد سامانه بطوراتوماتیک یک کد فعال سازی به کاربر ارسال می کند و چنانچه برابر با false باشد متن حاوی کد دلخواه ارسال می گردد. </div> <div dir="rtl" > مثال : </div> ```php echo RayganSms::sendAuthCode('0936*******'); ... echo RayganSms::sendAuthCode('0936*******', 'Send From ...'); ... echo RayganSms::sendAuthCode('0936*******', 'Your Auth Code: 12346', false); ``` <div dir="rtl" > #### 3- بررسی صحت کد دریافتی احراز هویت ارسال شده توسط کاربر </div> <div dir="rtl" > چنانچه کد فعال سازی بصورت اتوماتیک به کاربر ارسال شده باشد، جهت صحت کد دریافتی از سوی کاربر می توان از این متد استفاده نمود. </div> `checkAuthCode($reciver_number, $reciver_code)` <div dir="rtl" > مثال : </div> ```php $result = RayganSms::checkAuthCode('0936*******','922387'); if($result){ /// }else{ /// } ``` <div dir="rtl"> ### استفاده در سیستم اعلانات لاراول </div> <div dir="rtl"> جهت استفاده از سیستم اعلانات (<a href="https://laravel.com/docs/5.7/notifications" >Notefications</a>) لاراول، پکیج <a href="https://github.com/farhadmirzapour/RaygansmsChannel" >raygan-sms-notification-channel</a> را نصب و طبق مستندات مربوطه عمل نمائید. </div> <div dir="rtl"> ## تولیدکننده - [Farhad Mirzapour](https://github.com/farhadmirzapour) ## لایسنس لایسنس این پکیج (MIT) می باشد . جهت اطلاعات در مورد این لایسنس به [License File](LICENSE) مراجعه نمایید. </div>
25.528497
261
0.676477
yue_Hant
0.132259
2f9831114b64cefa1561f2919a2a3bf5e6c64906
2,218
md
Markdown
README.md
doopqoob/clackbot
bb42fc198e257d26641415bd14ef7c44e128d5fb
[ "MIT" ]
1
2020-10-10T14:37:00.000Z
2020-10-10T14:37:00.000Z
README.md
doopqoob/clackbot
bb42fc198e257d26641415bd14ef7c44e128d5fb
[ "MIT" ]
null
null
null
README.md
doopqoob/clackbot
bb42fc198e257d26641415bd14ef7c44e128d5fb
[ "MIT" ]
1
2021-03-09T20:54:10.000Z
2021-03-09T20:54:10.000Z
# clackbot Clackbot is a Discord bot designed for the /r/modelm discord server. It works together with [clackbot-qdb-api](https://github.com/doopqoob/clackbot-qdb-api). ## Command Reference ### Clacking clackbot can, of course, make clacking sounds in a Discord voice channel. Simply do the following: 1. Join a voice channel. 2. type !follow to tell clackbot to follow you into the voice chanel. 3. type !clack to hear the clacking. 4. type !stop to stop the clacking if you've had enough. ### Polls clackbot can set up a poll for users to vote on. Simply follow this syntax: !poll "Your question goes here?" "First answer" "Second answer" "Third answer, etc." Be sure to quote your question and answers, or each word will be counted separately (with hilarious results). ### Quotes #### Adding quotes It's easy to add discord quotes to clackbot. Simply reply to the message you want to add as a quote, then type !addquote and press enter. #### Retrieving quotes If you want to retrieve a specific quote from the db, you must know its unique id number. Just type !quote [id] where _[id]_ is the quote's unique id number. If you don't know the quote's id or just want to retrieve a random quote, type !quote and press enter. #### Upvoting and Downvoting When displaying a quote, clackbot automatically displays voting emoji reatcions. The up arrow is for upvoting, the down arrow is for downvoting, and the 0 will zero out your vote for that quote. No matter how many times you appear to be able to vote, only the most recent vote is saved. Your most recent vote always overrides any previous vote you've made on that quote. ## Running clackbot ### Installing the Requirements You should install the required pip packages by typing: $ pip install -r requirements.txt You will also need to install _ffmpeg_. ### .env file clackbot looks for a .env file containing a Discord API token and clackbot API hostname in the format: DISCORD_TOKEN=your_token_here API_HOST=your_api_host_here ### Running clackbot Simply run: python3 clackbot.py and clackbot will run, provided you have set the appropriate API token and clackbot API hostname as detailed above.
32.144928
120
0.752029
eng_Latn
0.997989
2f988dd4175a8c86e83704145e51265dfc4e9fd5
2,315
md
Markdown
docs/framework/windows-workflow-foundation/115-workflowinstanceabortedrecordwithid.md
yunuskorkmaz/docs.tr-tr
e73dea6e171ca23e56c399c55e586a61d5814601
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/framework/windows-workflow-foundation/115-workflowinstanceabortedrecordwithid.md
yunuskorkmaz/docs.tr-tr
e73dea6e171ca23e56c399c55e586a61d5814601
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/framework/windows-workflow-foundation/115-workflowinstanceabortedrecordwithid.md
yunuskorkmaz/docs.tr-tr
e73dea6e171ca23e56c399c55e586a61d5814601
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- description: 'Hakkında daha fazla bilgi edinin: 115-WorkflowInstanceAbortedRecordWithId' title: 115 - WorkflowInstanceAbortedRecordWithId ms.date: 03/30/2017 ms.assetid: 0293dd4e-e6ae-473a-b3d6-c2d38f9bd875 ms.openlocfilehash: 6d9eb387ba61a646cbf1423d01175b0230272ca5 ms.sourcegitcommit: ddf7edb67715a5b9a45e3dd44536dabc153c1de0 ms.translationtype: MT ms.contentlocale: tr-TR ms.lasthandoff: 02/06/2021 ms.locfileid: "99755440" --- # <a name="115---workflowinstanceabortedrecordwithid"></a>115 - WorkflowInstanceAbortedRecordWithId ## <a name="properties"></a>Özellikler ||| |-|-| |ID|115| |Anahtar sözcükler|HealthMonitoring, WFTracking| |Level|Uyarı| |Kanal|Microsoft-Windows-uygulama sunucusu-uygulamalar/analitik| ## <a name="description"></a>Description Bu olay, bir iş akışı örneği WorkflowInstanceAbortedRecord yaydığı zaman ETW izleme katılımcısı tarafından yayılır. ## <a name="message"></a>İleti TrackRecord = WorkflowInstanceAbortedRecord, InstanceId = %1, RecordNumber = %2, EventTime = %3, ActivityDefinitionId = %4, Reason = %5, ek açıklama = %6, ProfileName = %7, WorkflowDefinitionIdentity = %8 ## <a name="details"></a>Ayrıntılar |Veri öğesi adı|Veri öğesi türü|Description| |--------------------|--------------------|-----------------| |InstanceId|xs: GUID|İş akışının örnek kimliği| |RecordNumber|xs: Long|Yayınlanan kaydın sıra numarası| |EventTime|xs: dateTime|Olayın yayılışında UTC olarak zaman| |ActivityDefinitionId|xs: String|İş akışındaki Kök etkinliğin adı| |Durum|xs: String|Iş akışının geçerli durumu.| |Ek Açıklamalar|xs: String|Bu olaya eklenen ek açıklamalar. Değerler, \<items> \< item name = "annotationName" type="System.String"> annotationValue biçiminde bir XML öğesinde depolanır \</item> \</items> . Ek açıklama belirtilmemişse dize içerir \<items/> . ETW olay boyutu ETW arabellek boyutu veya bir ETW olayı için en fazla yük ile sınırlıdır. Olayın boyutu ETW sınırlarını aşarsa, ek açıklamaları bırakarak ve ek açıklama değeri... ile değiştirilerek olay kesilir \<items> \</items> .| |ProfileName|xs: String|Bu olayla sonuçlanan ad veya izleme profili| |WorkflowDefinitionIdentity|xs: String|İş akışı Tanım kimliği| |AppDomain|xs: String|AppDomain. CurrentDomain. FriendlyName tarafından döndürülen dize.|
51.444444
493
0.749028
tur_Latn
0.989096
2f98b487045424d4ed28d34f7c2abfa8dec139b2
8,644
md
Markdown
dynamics-nav-app/finance-accounting.md
MicrosoftDocs/nav-content.en-nz
60d1b6d6810159d5e6ddaf4093bdbb226fb25e27
[ "CC-BY-4.0", "MIT" ]
2
2020-05-19T18:46:12.000Z
2021-04-21T00:13:46.000Z
dynamics-nav-app/finance-accounting.md
MicrosoftDocs/nav-content.en-nz
60d1b6d6810159d5e6ddaf4093bdbb226fb25e27
[ "CC-BY-4.0", "MIT" ]
null
null
null
dynamics-nav-app/finance-accounting.md
MicrosoftDocs/nav-content.en-nz
60d1b6d6810159d5e6ddaf4093bdbb226fb25e27
[ "CC-BY-4.0", "MIT" ]
2
2019-10-14T19:22:15.000Z
2021-11-05T10:53:02.000Z
--- title: Dynamics NAV accountant experience description: Learn about the accountant portal for Dynamics NAV and the Accountant Role Centre that supports internal and external accountants in the client company. author: edupont04 ms.prod: dynamics-nav-2018 ms.topic: article ms.devlang: na ms.tgt_pltfrm: na ms.workload: na ms.search.keywords: accountant, accounting, financial report ms.date: 09/05/2017 ms.author: edupont ms.translationtype: HT ms.sourcegitcommit: 4fefaef7380ac10836fcac404eea006f55d8556f ms.openlocfilehash: 19738a07dcd90c7788e164ad908721e9165dd9d2 ms.contentlocale: en-nz ms.lasthandoff: 10/16/2017 --- # <a name="accountant-experiences-in-included365finlongincludesd365finlongmdmd"></a>Accountant Experiences in [!INCLUDE[d365fin_long](includes/d365fin_long_md.md)] Any business must do its books and sign off on the accounting. Some businesses employ an external accountant, and others have an accountant on staff. No matter which type of accountant you are, you can use the **Accountant** Role Center as your Home in [!INCLUDE[d365fin](includes/d365fin_md.md)]. From here, you can access all windows that you need in your work. ## <a name="accountant-role-center"></a>Accountant Role Centre The Role Centre is a dashboard with activity tiles that show you real-time key figures and give you quick access to data. In the ribbon at the top of the window, you have access to more actions, such as opening the most commonly used financial reports and statements in Excel. In the navigation pane to the left, you can quickly switch between the lists you use most often. If you expand the **Home** menu in the navigation pane, you will see other areas, such as **Posted Documents** with the various types of documents that the company has posted. If you are new to [!INCLUDE[d365fin](includes/d365fin_md.md)], you can launch a list of videos right from your Home page. You can also launch a **Getting Started** tour that points out key areas. ### <a name="get-invited-to-a-clients-included365finincludesd365finmdmd"></a>Get Invited to a Client's [!INCLUDE[d365fin](includes/d365fin_md.md)] A company who use [!INCLUDE[d365fin](includes/d365fin_md.md)] can invite you to [!INCLUDE[d365fin](includes/d365fin_md.md)] as their external accountant. This requires that they have set up SMTP mail, so they might want to contact their [!INCLUDE[d365fin](includes/d365fin_md.md)] partner for assistance. For more information, see [Invite Your External Accountant](finance-invite-external-accountant.md). Also, we recommend that you give them the email address that you plan to use for your accounting work - that way, you can choose if you want to use *me@accountant.com* or *me@client.com* As a result, you will receive email from your client with a link to their [!INCLUDE[d365fin](includes/d365fin_md.md)] You can then access their financial data from the **Accountant** Role Center. If you use the accountant portal, you can also add that client to your list of clients in the accountant portal dashboard. ## <a name="accountant-portal"></a>Accountant Portal If you are an accountant with several clients, you can use the accountant portal as your dashboard for a better overview of your clients. From there, you can access each client's tenant in [!INCLUDE[d365fin](includes/d365fin_md.md)] and use the Accountant Role Center as described above. The accountant portal is a dedicated version of [!INCLUDE[d365fin](includes/d365fin_md.md)]. You can get access to the dashboard by signing up from [Dynamics NAV for Accountants on Microsoft.com](https://www.microsoft.com/en-us/dynamics365/financial-insights-for-accountants). > [!TIP] > When you sign up for the accountant portal, you must specify your work email address, such as *me@accountant.com*. We recommend that you use the same email address when you work in your clients' [!INCLUDE[d365fin](includes/d365fin_md.md)], so that you can easily switch between clients. When you first log in to the accountant portal, the dashboard shows a sample client to help you get started. Once you are comfortable, you can remove that sample client. ### <a name="working-with-individual-clients"></a>Working with Individual Clients The dashboard shows the most important information about each client. [![Accountant Portal](./media/ui-extensions-accportal/accountant-portal.png)](https://go.microsoft.com/fwlink/?linkid=851257) The **Company Name** column lists all companies that your clients have in [!INCLUDE[d365fin](includes/d365fin_md.md)], and the **Client Name** column shows the names of your clients. You can customise the dashboard to show the data points that you want to see by adding or removing columns. For example, you might want to see taxes that are due, how many open sales documents each client has, or the number of purchase invoices that are due next week. You can configure the view to suit your needs. If you have many clients, you can use filters to sort your view. Next to the company name, the ellipsis (...) reveals a short menu: * Refresh the current company and get fresh data for the client * Go to the client's company * Select more companies Similarly, you can use the **Client Summary** drop-down menu to refresh all companies or open the currently selected company, for example. ### <a name="company-details"></a>Company Details You can see more information about your clients' data by choosing the name of the company that you want to learn more about. This opens the **Company Details** pane, where you can see additional information, such as the following: * Cash account balances * Cash flow forecast * Overdue purchase invoices * Overdue sales invoices ![Client company details in the accountant portal](./media/finance-accounting/accountant-company-details.png) Technically, you have now logged into your client's [!INCLUDE[d365fin](includes/d365fin_md.md)], and data you see is live data. If you want to take a closer look at the data, such as an overdue purchase invoice, choose the link, and you are taken to the client company. > [!TIP] > You can launch predefined Excel workbooks from the **Reports** tab in the ribbon. These Excel workbooks are designed as ready-to-print key financial statements and reports, but you can also modify them to fit your needs. For more information, see [Analysing Financial Statements in Microsoft Excel](finance-analyze-excel.md). Otherwise, close the details pane and continue to the next client. ### <a name="working-in-the-client-company"></a>Working in the Client Company If you want to do more work for a client, you can do this in the Accountant Role Centre in their [!INCLUDE[d365fin](includes/d365fin_md.md)] - simply choose the **Go To Client** menu item, and you are logged in automatically. In the client's company, you have view and modify the data that you need in your work. For more information, see the top of this page. > [!NOTE] > If you do not intend to return to this client in a few minutes, we recommend that you close the browser tab. ### <a name="adding-clients"></a>Adding Clients You can add a client by using the **Clients** window, which you can open by choosing the **Manage Clients** action in the ribbon. Simply choose **New** and then fill in the fields. The data in the card for each client is specified by you, and you can change it as needed. However, the **Client URL** field is critical - this is how you can access each client's [!INCLUDE[d365fin](includes/d365fin_md.md)]. Use the **Test Client URL** action in the ribbon to test that you entered the right link. The URL that you must enter points at the client's [!INCLUDE[d365fin](includes/d365fin_md.md)], such as *https://mybusiness.financials.dynamics.com*. This URL is then used when you choose the **Go To Company** menu item. ## <a name="see-also"></a>See Also [Finance](finance.md) [Setting Up Finance](finance-setup-finance.md) [The General Ledger and the Chart of Accounts](finance-general-ledger.md) [Closing Years and Periods](year-close-years-periods.md) [Working with Dimensions](finance-dimensions.md) [Analysing Financial Statements in Excel](finance-analyze-excel.md) [Working with [!INCLUDE[d365fin](includes/d365fin_md.md)]](ui-work-product.md) [Invite Your External Accountant to Your [!INCLUDE[d365fin](includes/d365fin_md.md)]](finance-invite-external-accountant.md) [Dynamics NAV for Accountants on Microsoft.com](https://www.microsoft.com/en-us/dynamics365/financial-insights-for-accountants) [Setting Up Cash Flow Analysis](finance-setup-cash-flow-analyses.md)
85.584158
593
0.771171
eng_Latn
0.996765
2f9905b804323f7bcdb36893b067392a8b50ca64
18,364
md
Markdown
tutorials/odata-02-exploration-epm/odata-02-exploration-epm.md
jcardoza/joyer
0aa6e8ca87479f744f2b201936002e413a33a330
[ "Apache-2.0" ]
null
null
null
tutorials/odata-02-exploration-epm/odata-02-exploration-epm.md
jcardoza/joyer
0aa6e8ca87479f744f2b201936002e413a33a330
[ "Apache-2.0" ]
null
null
null
tutorials/odata-02-exploration-epm/odata-02-exploration-epm.md
jcardoza/joyer
0aa6e8ca87479f744f2b201936002e413a33a330
[ "Apache-2.0" ]
null
null
null
--- title: Continue Your OData Exploration with EPM description: Continue your exploration of OData with the Enterprise Procurement Model (EPM) data set in the Gateway demo system. auto_validation: true primary_tag: products>sap-cloud-platform tags: [ products>sap-cloud-platform, topic>cloud, topic>odata, tutorial>beginner ] time: 15 --- ## Details ### You will learn - How to explore an OData service in your browser - How to use navigation paths - What the common query options are and how to use them - How to switch to a JSON output format The Enterprise Procurement Model (EPM) represents a typical business scenario that is complex enough to have meaning in an enterprise context but still simple enough to use for exploring technologies and techniques at a beginner level. EPM exists as data in a set of related tables and views, and there are also various OData services that marshal that data and provide business functionality. There are reference apps that you may come across further on in your learning journey; some of these are available in the SAP Web IDE. These reference apps make use of EPM OData services, so a by-product of using EPM in this tutorial is that you'll be more familiar with the data model in general when you discover and make use of the reference apps. The EPM and the related OData services are available in the SAP Gateway demo system, and there is a specific EPM OData service for the "Shop" reference app that will be used in this tutorial. --- [ACCORDION-BEGIN [Step 1: ](Find the EPM OData service)] In this step you'll find the EPM OData service by looking for it via the maintenance transaction for the Internet Communication Framework (ICF), to understand how web-based resources in general and OData services in particular are managed within an ABAP system. Log on to the SAP Gateway Demo system via the [Web GUI](https://sapes5.sapdevcenter.com/). Use the menu path `Gui Actions and Settings -> Show OK Code Field` to make the OK Code field appear, so you can enter transaction codes. ![menu option to show the OK Code field](show-okcode-field.png) Enter transaction code **`SICF`** into the OK Code field to start the "Define Services" transaction. In the Service Path field enter **`/sap/opu/odata`** and then select the Execute function. ![executing SICF with /sap/opu/odata](execute-sicf.png) You will be presented with display of the ICF node hierarchy filtered to display only those nodes starting with the path `/sap/opu/odata`, which represents the root of the OData services. Feel free to explore the hierarchy of nodes available within the `odata` branch, and in particular the `sap` node, which is where you'll see a number of sub nodes representing OData services. ![the ICF node hierarchy for /sap/opu/odata](node-hierarchy.png) Now scroll down to find this OData service node: `EPM_REF_APPS_SHOP_SRV` This is the OData service you will explore. It is an EPM based service for a reference app called "Shop", which explains most of the node's name. The last part, `SRV`, short for "service", is common for OData services served from ABAP systems. This is similar to the convention you may have noticed with the Northwind service in the tutorial [Learn about OData fundamentals](https://www.sap.com/developer/tutorials/odata-01-intro-origins.html) where the end part of the OData service name was `svc`. Use the information in the node hierarchy that leads down to the `EPM_REF_APPS_SHOP_SRV` node to form the part of the OData service URL that will be relative to the SAP Gateway demo system base URL: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV` Enter your credentials for the SAP Gateway demo system if prompted. ![basic authentication](basic-credentials.png) The resource returned is the OData service document, showing the collections available, such as `Suppliers`, `MainCategories` and so on. ![OData service document](service-document.png) [VALIDATE_1] [ACCORDION-END] [ACCORDION-BEGIN [Step 2: ](Explore entity relationships)] At a very high level, the entity types and their relationships in this OData service look like this: ![entity types and their relationships](entity-relationships.png) There are corresponding entity sets for each of the entity types. If you want to confirm this for yourself, look at the service's metadata document at this URL to see those relationships (look particularly at the `NavigationProperty`, `Association` and `EntitySet` elements for details): `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/$metadata` You should now explore the `Products` entity set and see how a specific product relates to its supplier. First, look at all of the products, using this URL for the `Products` entity set: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/Products` Now, find the product entry with the ID `HT-1001` and the name "Notebook Basic 17". Use the entry's ID to navigate directly to that product, as an entity: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/Products('HT-1001')` Now you're looking at an individual product, in the form of a single entity (`Products('HT-1001')`) rather than all the products via the entire entity set (`Products`). > Note the difference between the `Products` entity set resource and the resource for this specific `Product` entity - the former is represented by the root XML element `feed`, and the latter by the root XML element `entry`. Next, follow the link from this product to its supplier, using the information in the relevant `link` element: ![link from product to supplier](product-to-supplier-link.png) In other words, specify this URL: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/Products('HT-1001')/Supplier` You should see data for a single supplier, Becker Berlin, described inside a root XML `entry` element, denoting a single entity: ![single supplier Becker Berlin](single-supplier.png) It is also possible to navigate to individual properties within an entity. Try this now. Select the supplier's web address, by specifying this URL: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/Products('HT-1001')/Supplier/WebAddress` [VALIDATE_2] [ACCORDION-END] [ACCORDION-BEGIN [Step 3: ](Page through the products with $top and $skip)] OData has system query options `$top` and `$skip` that facilitate paging through large entity sets. First, find out how many `Suppliers` there are, using the `$count` system query option: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/Suppliers/$count` At the time of writing, the number of suppliers in the `Suppliers` entity set for this service is 45. You may find there is a different number, but it doesn't matter. Request the first 5 suppliers, using `$top`, like this: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/Suppliers?$top=5` > The system query options like `$top` and `$skip` are part of the query string of the URL which itself is introduced with the `?` symbol. Now get the next 5 suppliers, by using `$skip` in conjunction with `$top`: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/Suppliers?$top=5&$skip=5` > Certain frameworks that process OData, like the [SAP UI5 toolkit](https://ui5.sap.com), use these system query options internally to allow comfortable paging through large data sets in list or table situations. [DONE] [ACCORDION-END] [ACCORDION-BEGIN [Step 4: ](Have related data included in an entity set request)] Instead of navigating from an entity to a related entity or entity set using two requests (one for the original entity and then another for the related data), the `$expand` system query option allows for related data to be returned in-line with resources retrieved, in a single request. Try this out, by looking at another couple of EPM entities exposed in this OData service - the product categories. There's a `MainCategory` entity type, with a navigation property to a list of entities of type `SubCategory`. Have a quick look at the metadata document to confirm this: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/$metadata` ![main and sub category entity types](main-sub-categories.png) Request a list of all the main categories, and ask for their sub categories to be returned in-line in the response, using the `$expand` system query option: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/MainCategories?$expand=SubCategories` If you look closely at the response, you'll see that there is a `feed` XML element at the root, containing `entry` elements. A typical entity set response. However, inside each `entry` element there is a nested `feed` element, itself containing further `entry` elements. ![nested feeds with $expand](nested-feed.png) The `SubCategory` entities related to each `MainCategory` entity are returned in-line, in the response to the request for the `MainCategories` entity set. [VALIDATE_4] [ACCORDION-END] [ACCORDION-BEGIN [Step 5: ](Request responses in a JSON format)] You may have found looking through the nested XML structures in the previous step quite tedious. XML is human-readable, but not necessarily human-friendly. The OData specification describes an alternative format in JavaScript Object Notation (JSON). This is a more lightweight format and somewhat easier to read, if you have a browser extension that will format JSON for you. First, install a JSON formatter extension for your Chrome browser. The `JSONView` extension is a good choice. Go to the [JSONView extension page](https://chrome.google.com/webstore/detail/jsonview/chklaanhfefbnpoihckbnefhakgolnmc?hl=en) and add it to your Chrome browser. Now, reload the main and sub category structure from the previous step with this URL: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/MainCategories?$expand=SubCategories` Next, append the OData system query option `$format=json` to the query string, like this: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/MainCategories?$expand=SubCategories&$format=json` > Adding more system query options to the query string of an OData URL is just like adding query parameters to any other URL query string - they are concatenated with the '&' symbol. Don't forget the '$' prefix on each of the OData system query options, though! The response is returned in JSON, and formatted by the `JSONView` is considerably easier to read: ![categories response in JSON](categories-in-json.png) > While the entity set and entity responses can be returned in JSON format, the service document and metadata document of an OData service cannot - they only exist in XML format. [DONE] [ACCORDION-END] [ACCORDION-BEGIN [Step 6: ](Reduce the number of properties returned)] An OData service may contain a definition of an entity type that has a large number of properties. If the consumer of the service really only needs a couple of them, transferring the rest is an unnecessary load on network traffic and can increase response times. The OData system query option `$select` allows you to specify a smaller list of properties that should be returned. Looking at the metadata document of the OData service, you will see that the `Product` entity type is one that has many properties. First, take a look at all the properties and some sample values by requesting the first entity in the `Products` entity set with this URL: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/Products?$top=1&$format=json` Even in the more lightweight JSON format it's still a lot of data, especially if an entire entity set is requested: ![a single product entity in JSON format](single-product-entity-in-json.png) Now reduce the number of properties down to just a few: `AverageRating`, `Name` and `StockQuantity` using the `$select` system query option: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/Products?$top=1&$format=json&$select=AverageRating,Name,StockQuantity` You'll get a response that looks something like this - a whole lot smaller! ![product with a reduced number of properties](product-with-few-properties.png) The `$select` system query option can also be used to specify properties that are part of entities that are returned in-line with `$expand`. The `Product` entity type has a `Supplier` navigation property as well as a `Reviews` navigation property - these can be returned in-line with `$expand`, and a restricted set of their properties can be specified in `$select` as well. Specify this URL, to request the first product, along with the name of its supplier, and also the names of the users who have reviewed that product: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/Products?$top=1&$format=json&$expand=Supplier,Reviews&$select=AverageRating,Name,StockQuantity,Supplier/Name,Supplier/FormattedAddress,Reviews/UserDisplayName` The query string portion of this URL is quite long and getting difficult to read. Broken down into its parts, we have the following: - Get the first entity: `$top=1` - Return the response in JSON format `$format=json` - Include in-line the related Supplier and Reviews data as well `$expand=Supplier,Reviews` - Only return these specific properties `$select=AverageRating,Name,StockQuantity,Supplier/Name,Supplier/FormattedAddress,Reviews/UserDisplayName` > Notice the format for specifying properties in related entity types, such as `Supplier/Name` and `Reviews/UserDisplayName`. This request brings back exactly what we asked for: ![review and supplier detail for a product](review-supplier-detail-for-product.png) [VALIDATE_6] [ACCORDION-END] [ACCORDION-BEGIN [Step 7: ](Reduce the number of entities returned by filtering)] The `$filter` system query option can be used to filter the entities according to criteria that can be expressed by a broad set of operators. Refer back to the properties of the first product in the `Products` entity set, as shown in the screenshot in the previous step. Any of the properties here can be used with the `$filter` system query option. First, count how many products there are, using `$count`: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/Products/$count` This may well vary, but at the time of writing, this shows 125. Now, use the `$filter` system query option in conjunction with `$count` to find out how many products are in the "Computer Systems" main category: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/Products/$count?$filter=MainCategoryId%20eq%20%27Computer%20Systems%27` This should return a count value less than the total, earlier. At the time of writing, the value is 34. > If you're wondering about the strange characters in this URL, they're just [URL encoded](https://en.wikipedia.org/wiki/Percent-encoding) versions of the space and single-quote characters, in other words %20 and %27 respectively. You can actually type the original space and single-quote values into the browser address bar like this: `$filter=MainCategoryId eq 'Computer Systems'` and the characters will be encoded automatically. You can double check the results by removing the `$count` part from the URL to see that each of the product entities returned really do belong to the 'Computer Systems' main category: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/Products/?$filter=MainCategoryId%20eq%20%27Computer%20Systems%27` ![products in the Computer Systems main category](products-in-computer-systems-main-category.png) Operators can be combined. Try this, by finding out whether there are any products in the "Software" main category where the stock is low (10 units or fewer), restricting the results to just show the product name and stock information, in JSON format: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/Products/?$filter=MainCategoryId%20eq%20%27Software%27%20and%20StockQuantity%20le%2010&$select=StockQuantity,Name&$format=json` Again, to break this down, we have the following (before the special characters are URL encoded): - Restrict entries to those where the `MainCategoryId` value is "Software" and where the `StockQuantity` value is less than or equal to 10: `$filter=MainCategory eq 'Software' and StockQuantity le 10` - Return only the values for the `StockQuantity` and `Name` properties: `$select=StockQuantity,Name` - Return the response in JSON format: `$format=json` You can learn more about the different operators available in the [Filter System Query Option ($filter)](https://www.odata.org/documentation/odata-version-2-0/uri-conventions/#FilterSystemQueryOption) documentation on the OASIS OData website. You'll see that there are functions available for use with `$filter` too, functions such as `substringof` and `startswith`. [VALIDATE_7] [ACCORDION-END] [ACCORDION-BEGIN [Step 8: ](Have entities returned in a certain order)] The final system query option to examine in this tutorial is `$orderby`, which takes the specification of a list of one or more properties, and optional indicators to specify whether ascending order (the default) or descending order is desired. Use the `$orderby` system query option to list the products sorted by average rating, with the most highly rated appearing first, showing the product name, price and the average rating score: `https://sapes5.sapdevcenter.com/sap/opu/odata/sap/EPM_REF_APPS_SHOP_SRV/Products?$format=json&$orderby=AverageRating%20desc&$select=Name,Price,CurrencyCode,AverageRating` This is the first part of what's returned - looks good: ![products sorted by average rating](products-sorted-by-average-rating.png) There are more system query options, but what you've seen in this tutorial are the main ones. You've been using them primarily in the context of the OData "query" operation, which makes a lot of sense. Some of the system query options are used implicitly in frameworks such as UI5 as stated earlier, but all of them are useful to know to explore, "by hand", an OData service, especially when you intend to use it in building an app. [DONE] [ACCORDION-END]
62.250847
508
0.786539
eng_Latn
0.990832
2f99136fc35a3b28569fbc9a1acd1297d0521646
62
md
Markdown
tags/font.md
gsempe/plan
1466a52ee2ace8d9b75a28f2cdd1fdfb31a6af05
[ "MIT" ]
null
null
null
tags/font.md
gsempe/plan
1466a52ee2ace8d9b75a28f2cdd1fdfb31a6af05
[ "MIT" ]
null
null
null
tags/font.md
gsempe/plan
1466a52ee2ace8d9b75a28f2cdd1fdfb31a6af05
[ "MIT" ]
null
null
null
# font - *2019-08-14* [journal-20190814](./journal-20190814)
15.5
53
0.677419
kor_Hang
0.12407
2f9a6443a8c75c4ed2d0bc44538e1e23139828a9
245
md
Markdown
docs/ManagedMonitoringSettings.md
aravindputrevu/ess-cloud-sdk-java
d6abda92d896fd41ace86802158d4d5c497299b6
[ "Apache-2.0" ]
2
2020-06-03T20:18:02.000Z
2020-06-04T07:02:25.000Z
docs/ManagedMonitoringSettings.md
aravindputrevu/ess-cloud-sdk-java
d6abda92d896fd41ace86802158d4d5c497299b6
[ "Apache-2.0" ]
null
null
null
docs/ManagedMonitoringSettings.md
aravindputrevu/ess-cloud-sdk-java
d6abda92d896fd41ace86802158d4d5c497299b6
[ "Apache-2.0" ]
null
null
null
# ManagedMonitoringSettings ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **targetClusterId** | **String** | The Id of the target cluster to which to send monitoring information |
35
106
0.559184
eng_Latn
0.664313
2f9bbc63988711fbd3ababa1366c1099d88ce358
1,333
md
Markdown
_posts/2021-10-07-各类知识学习地址.md
zhao-guang-nan/zhao-guang-nan.github.io
7a3eb92af20a8ebcfa0b0bdae8294d54dafa0329
[ "MIT" ]
2
2019-01-31T09:43:32.000Z
2019-01-31T09:43:41.000Z
_posts/2021-10-07-各类知识学习地址.md
zhao-guang-nan/zhao-guang-nan.github.io
7a3eb92af20a8ebcfa0b0bdae8294d54dafa0329
[ "MIT" ]
null
null
null
_posts/2021-10-07-各类知识学习地址.md
zhao-guang-nan/zhao-guang-nan.github.io
7a3eb92af20a8ebcfa0b0bdae8294d54dafa0329
[ "MIT" ]
null
null
null
--- layout: post title: 各类知识学习地址 subtitle: 各类知识学习地址 date: 2021-10-07 author: zhaoguangnan header-img: img/about_cpp_study.jpg catalog: true tags: - QT - 嵌入式 - batch - python --- # 1、QT最好最全面的学习地址 ​ 这个是QT最好最全面的学习网址 ​ `https://materiaalit.github.io/qt-mooc/` # 2、嵌入式ui的lvgl的源码 ​ `https://github.com/lvgl/lvgl` # 3、c++比较深入的知识的理解 ​ `https://www.codenong.com/cs110704565/` # 4、C++高级工程师路线 ​ `https://zhuanlan.zhihu.com/p/31957256` # 5、vpn翻墙网址 ​ `https://fan-qiang.com/%e5%85%8d%e8%b4%b9%e8%8a%82%e7%82%b9/` ​ `https://github.com/worldcup888/free` # 6、突破网关相关的 ​ `https://blog.csdn.net/congzhang6627/article/details/100452697` # 7、batch脚本学习网址 ​ `https://www.tutorialspoint.com/batch_script/index.htm` ​ `https://blog.csdn.net/tuoni123/article/details/106525706` ​ 官方很详细的所有命令的官方解析 ​ `https://docs.microsoft.com/zh-cn/windows-server/administration/windows-commands/windows-commands#i` ​ 当遇到不会的命令的时候,可以直接在cmd命令行中输入`help + cmd`就可以了。 ​ `https://blog.csdn.net/chuangxin/article/details/104100725` ​ %var%、!var!中的%号与!的区别 ​ `https://blog.csdn.net/albertsh/article/details/102985590` # 8、python学习的网址 ​ 一个很好的学习计划 ​ `https://www.dataquest.io/blog/learn-python-the-right-way/` ​ 最好的学习网址也就是官网,非常详细,和QT的官方文档一样 ​ `https://docs.python.org/zh-cn/3/index.html` ​
14.48913
103
0.684171
yue_Hant
0.583344
2f9c00db39552a6c6865a7fc9762079f414532ed
544
md
Markdown
.github/ISSUE_TEMPLATE.md
Captain-Oski/airship
74cee30f7fa4e2c59b99cdf18334abd8386cd400
[ "BSD-3-Clause" ]
77
2018-04-05T10:16:33.000Z
2021-12-07T02:55:01.000Z
.github/ISSUE_TEMPLATE.md
Captain-Oski/airship
74cee30f7fa4e2c59b99cdf18334abd8386cd400
[ "BSD-3-Clause" ]
462
2018-04-09T07:46:33.000Z
2021-09-01T07:29:50.000Z
.github/ISSUE_TEMPLATE.md
Captain-Oski/airship
74cee30f7fa4e2c59b99cdf18334abd8386cd400
[ "BSD-3-Clause" ]
13
2018-04-15T12:17:02.000Z
2021-02-04T06:09:51.000Z
### Context *Please explain here below what you were doing when the issue happened* ### Steps to Reproduce *Please break down here below all the needed steps to reproduce the issue* 1. 2. 3. ### Current Result *Please describe here below the current result you got* ### Expected result *Please describe here below what should be the expected behaviour* ### Browser and version *What internet browser (Chrome, Firefox, etc) and version was you using and version* ### Additional info *Please add any information of interest here below*
20.923077
84
0.753676
eng_Latn
0.999539