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
sequencelengths
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
sequencelengths
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
sequencelengths
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
89a9fbd22956fd40f30377bd8050c277a023324b
81
md
Markdown
README.md
redhedjim/PawPrint
cfd38f4417e326bc8167f95a88acc18d536cfd47
[ "MIT" ]
null
null
null
README.md
redhedjim/PawPrint
cfd38f4417e326bc8167f95a88acc18d536cfd47
[ "MIT" ]
null
null
null
README.md
redhedjim/PawPrint
cfd38f4417e326bc8167f95a88acc18d536cfd47
[ "MIT" ]
null
null
null
# pawprint Paw Print handles everything regarded to your identity at @VCACanada.
27
69
0.814815
eng_Latn
0.993051
89aa5ed601fb329b3b29b352e7a223650a592e23
2,291
markdown
Markdown
_posts/2018-8-1-learnMD.markdown
yaoshengli/github.io
7f9d8a25ba5f8c43486529de8dfac6672070f426
[ "Apache-2.0" ]
null
null
null
_posts/2018-8-1-learnMD.markdown
yaoshengli/github.io
7f9d8a25ba5f8c43486529de8dfac6672070f426
[ "Apache-2.0" ]
null
null
null
_posts/2018-8-1-learnMD.markdown
yaoshengli/github.io
7f9d8a25ba5f8c43486529de8dfac6672070f426
[ "Apache-2.0" ]
null
null
null
--- layout: post title: "markdown语法初体验" subtitle: "学习使我快乐" date: 2018-08-01 12:00:00 author: "Yao Shengli" header-img: "img/post-bg-nextgen-web-pwa.jpg" header-mask: 0.3 catalog: true tags: - 知识学杂 --- ## markdown 语法 ### 概述 *** **宗旨** Markdown 的目标是实现「易读易写」. 可读性,无论如何,都是最重要的。一份使用 Markdown 格式撰写的文件应该可以直接以纯文本发布,并且看起来不会像是由许多标签或是格式指令所构成。Markdown 语法受到一些既有 text-to-HTML 格式的影响,包括 [Setext](http://docutils.sourceforge.net/mirror/setext.html)、[atx](http://www.aaronsw.com/2002/atx/)、[Textile](http://textism.com/tools/textile/)、[reStructuredText](http://docutils.sourceforge.net/rst.html)、[Grutatext](http://www.triptico.com/software/grutatxt.html) 和 [EtText](http://ettext.taint.org/doc/),而最大灵感来源其实是纯文本电子邮件的格式。 **兼容HTML** 例子如下,在Markdown文件里加上一段HTML表格: <table> <tr> <td>name</td> </tr> <tr> <td>Yao Shengli</td> </tr> </table> ### 区块元素 *** **段落和换行** 一个 Markdown 段落是由一个或多个连续的文本行组成,它的前后要有一个以上的空行(空行的定义是显示上看起来像是空的,便会被视为空行。比方说,若某一行只包含空格和制表符,则该行也会被视为空行)。普通段落不该用空格或制表符来缩进。 **标题** 类 Atx 形式则是在行首插入 1 到 6 个 # ,对应到标题 1 到 6 阶,例如: # 这是 H1 ## 这是 H2 ###### 这是 H6 **区块引用** Markdown 标记区块引用是使用类似 email 中用 > 的引用方式。如果你还熟悉在 email 信件中的引言部分,你就知道怎么在 Markdown 文件中建立一个区块引用,那会看起来像是你自己先断好行,然后在每行的最前面加上 > :、 >这就是区块引用 >这也是 Markdown 也允许你偷懒只在整个段落的第一行最前面加上 > : >这样写也行 也行 >还真有意思 啊 引用的区块内也可以使用其他的 Markdown 语法,包括标题、列表、代码区块等: > ## 这是一个标题。 > > 1. 这是第一行列表项。 > 2. 这是第二行列表项。 > > 给出一些例子代码: > > return shell_exec("echo $input | $markdown_script"); **列表** Markdown 支持有序列表和无序列表。 * red * green * blue 有序列表则使用数字接着一个英文句点 1. red 2. green 3. blue **代码区块** 要在 Markdown 中建立代码区块很简单,只要简单地缩进 4 个空格或是 1 个制表符就可以,例如,下面的输入: 这是一个普通的锻炼 这是一个代码区块 **分隔线** 你可以在一行中用三个以上的星号、减号、底线来建立一个分隔线,行内不能有其他东西。你也可以在星号或是减号中间插入空格。下面每种写法都可以建立分隔线: * * * *** ***** - - - ------------------ ### 区段元素 *** **链接** [链接名字](链接地址) **强调** **强调** **代码** 如果要标记一小段行内代码,你可以用反引号把它包起),例如: `printf()` `printf()`测试 如果要在代码区段内插入反引号,你可以用多个反引号来开启和结束代码区段: ``function a(){ console.log("hellow") }`` ```javascript function a(){ console.log("hellow") } ``` **图片** ![Alt text](/path/to/img.jpg) ![](/img/avatar-hux-ny.jpg)
16.133803
443
0.616325
yue_Hant
0.894445
89aaa8832011ca2f71593ecdd9c331db87761189
5,102
md
Markdown
src/hu/2022-01/12/03.md
Adventech/sabbath-school-lessons
baf65ac98fa7c7bce73e16c263eb0cc1bf0ba62a
[ "MIT" ]
68
2016-10-30T23:17:56.000Z
2022-03-27T11:58:16.000Z
src/hu/2022-01/12/03.md
Adventech/sabbath-school-lessons
baf65ac98fa7c7bce73e16c263eb0cc1bf0ba62a
[ "MIT" ]
367
2016-10-21T03:50:22.000Z
2022-03-28T23:35:25.000Z
src/hu/2022-01/12/03.md
Adventech/sabbath-school-lessons
baf65ac98fa7c7bce73e16c263eb0cc1bf0ba62a
[ "MIT" ]
109
2016-08-02T14:32:13.000Z
2022-03-31T10:18:41.000Z
--- title: Istenhez, Mindenek Bírájához Jöttünk date: 14/03/2022 --- `Olvassuk el Zsid 12:23 versét! Miért nevezi Pál itt bírónak Istent, amikor ez a rész az ünneplésről szól? Miért adhat ünneplésre okot egy bíró személye? Hogyan lehet részes abban? Olvassuk még el Dán 7:9-10, 13-22 verseit is!` A Zsid 12:22-24 részében leírt ünneplés egy jövőbeli ítéletre utal, amelyen Isten az ülésező Bíró, könyveket nyitnak meg, az Úr népe pedig a könyvekbe feljegyzett jövőbeli ítélet eredménye alapján veszi át az országot (Zsid 12:28). Ez a jelenet Dániel próféta könyve 7. fejezetében a nagy advent előtti ítéletet idézi fel. Az „öregkorú” (Dán 7:9) a tűztrónra ül és „tízezerszer tízezren” (Dán 7:10) veszik Őt körül. Könyveket nyitnak meg (Dán 7:10), az ítélet pedig a „magasságos egek szenteinek” kedvez, akik ezután birtokba veszik az országot (Dán 7:22). Zsid 12:22-29 az előbbihez hasonlóan egy, a Sion hegyén, a mennyei Jeruzsálemben zajló ítéletet ír le, ahol angyalok ezrei veszik körül Istent, „mindenki” Bíráját. Ebben a jelenetben szintén ott a tűz (Zsid 12:29). Könyvek is szerepelnek a képben, a szenteket azokba írják fel (Zsid 12:23), ami kedvező végkifejletet jelent nekik. Jézus áll az esemény középpontjában (Zsid 12:24). A zsidókhoz írt levél 2. fejezete az ember Fiaként nevezi meg Őt, aki „a halál elszenvedéséért dicsőséggel és tisztességgel koronáztatott meg” (Zsid 2:9). Zsid 2:10 szerint az „embernek fia” (lásd Zsid 2:6) azért vállalja a szenvedést, hogy „számtalan fiat” vezessen dicsőségre (RÚF). Azaz, hogy a hívőket is „dicsőséggel és méltósággal” (RÚF) koronázzák meg. A Fiú már a Sionra, a mennyei Jeruzsálembe vitte a hívőket az új szövetség áldásai alapján (Zsid 12:22-24), ahol azt az ígéretet kapták, hogy átvehetik az országot (Zsid 12:28). Az ítélet tehát nagyon jó hír a hívőknek, mert a döntés nekik kedvez, őket igazolja. Ez az ítélet győzelmet hoz ellenségük, a sárkány felett, aki a hívőket már korábban üldöző félelmetes fenevadak mögött áll (Dániel próféta könyve 7. fejezet) – és akik a jövőben is ugyanazt teszik majd (A jelenések könyve 13. fejezet). `A mai tanulmány hogyan segít megérteni azt, hogy Istennek a hármas angyali üzenetben említett ítélete „jó hír” a mai időkre nézve (Jel 14:6-7; vö. 5Móz 32:36; 1Krón 16:33-35)?` --- #### Ellen G. White idézetek A Krisztus tanítványai által hirdetett evangéliumi üzenet hírt adott a világnak az első adventről, és azt a jó hírt tartalmazta, hogy az ember a Krisztusba vetett hit által üdvösségre lel. Az üzenet előre mutatott a második adventre, amikor Jézus eljön dicsőségben, hogy megváltsa népét, és azt az örömhírt hozta, hogy aki hisz és engedelmeskedik, az részesül „a szentek örökségében... a világosságban” (Kol 1:12). Ez az üzenet szól ma az emberiségnek azzal a kinyilatkoztatással együtt, hogy Krisztus második eljövetele közel van. Igéje és az általa meghirdetett jelek teljesedése tanúsítja, hogy az Úr már az ajtó előtt van. János a Jelenések könyvében megjövendöli, hogy közvetlen Krisztus második eljövetele előtt az evangéliumot hirdetni fogják. Lát egy „angyalt az ég közepén repülni, akinél vala az örökkévaló evangélium, hogy a föld lakosainak hirdesse az evangéliumot, és minden nemzetségnek és ágazatnak, és nyelvnek és népnek, ezt mondván nagy szóval: Féljétek az Istent, és néki adjatok dicsőséget; mert eljött az Ő ítéletének órája” (Jel 14:6–7). Miután felhangzik a figyelmeztetés, hogy eljött az ítélet ideje, és megszólalnak a hozzá kapcsolódó kinyilatkoztatások, a prófécia szerint eljön az Emberfia az ég felhőiben. Az ítélet idejének meghirdetése egyben Krisztus közeli eljövetelének hirdetése is. Ez a szózat az örökkévaló evangélium. Krisztus második eljövetelének hirdetése, a második advent közelségének hírüladása tehát az evangéliumi üzenet lényeges része. – Krisztus példázatai, 226–227. o. János látta Isten irgalmát, gyöngédségét és szeretetét párosulva szentségével, igazságosságával és hatalmával. Látta, hogyan találták meg benne Atyjukat a bűnösök, kik bűneik miatt féltek tőle. A nagy küzdelem tetőpontján túl látta a Sionon „azokat, akik diadalmasok, ...állani az üvegtenger mellett, akiknek kezében valának az Istennek hárfái, és éneklik vala Mózesnek... és a Báránynak énekét” (Jel 15:2–3). János a Megváltót úgy látja, mint „a Júda nemzetségéből való oroszlánt”, és mint „egy Bárányt, mintegy megölettet” (Jel 5:5; 13:8). Ezek a szimbólumok jelképei a mindenható hatalom és az önfeláldozó szeretet egyesülésének. A júdabeli oroszlán, aki olyan rettenetes a kegyelmét megvetők számára, engedelmes és hűséges híveinek az Isten báránya. A tűzoszlop, amely Isten törvénye áthágóinak Isten haragja félelmetességéről beszél; a világosság, irgalom és szabadítás jelképe azok számára, akik parancsolatait megtartották. Isten karja, amely elég erős, hogy a lázadókat szétzúzza, elég erős arra is, hogy a hűségeseket megszabadítsa. Akik hűek, valamennyien megmenekülnek. „És elküldi az ő angyalait nagy trombitaszóval és egybegyűjtik az ő választottait a négy szelek felől, az ég egyik végétől a másik végéig” (Mt 24:31). – Az apostolok történte, 589. o.
159.4375
854
0.796746
hun_Latn
1.00001
89aae4d9b44eccd0befe35d6b35e0d2bbbaf1c8b
609
md
Markdown
_books/christensen-the-innovators-dilemma.md
colemanm/colemanm.org
fb22439b530bd4b30d923b6fa5c4428cdddfa757
[ "CC-BY-3.0" ]
null
null
null
_books/christensen-the-innovators-dilemma.md
colemanm/colemanm.org
fb22439b530bd4b30d923b6fa5c4428cdddfa757
[ "CC-BY-3.0" ]
6
2020-08-17T14:08:43.000Z
2022-02-26T03:15:22.000Z
_books/christensen-the-innovators-dilemma.md
colemanm/colemanm.org
fb22439b530bd4b30d923b6fa5c4428cdddfa757
[ "CC-BY-3.0" ]
2
2020-11-17T17:59:30.000Z
2021-09-21T23:18:14.000Z
--- layout: book title: "The Innovator's Dilemma" subtitle: "The Revolutionary Book that Will Change the Way You Do Business" author: "Clayton M. Christensen" author_last: Christensen slug: christensen-the-innovators-dilemma type: nonfiction cover: true series: part: genres: - business - economics - management - technology isbn: 9780060521998 rating: 4 pages: 286 format: audiobook publish_year: 1997 date_started: 2018-04-08 date_completed: 2018-04-13 goodreads_id: 2615 amazon_link: https://amzn.to/2OJvXfM reviewers: - author: Juvoni Beckford url: https://juvoni.com/book/the-innovators-dilemma ---
19.645161
75
0.778325
eng_Latn
0.306707
89ab7062e375ab27cf533fc20998173e62974754
19,128
md
Markdown
lib/AsyncTCP_SSL/README.md
ErshovVladislav10M/-Graduate-work-Bachelor-
d525dff87bfad0d42c63d2aca3b4cc57adb53584
[ "Apache-2.0" ]
null
null
null
lib/AsyncTCP_SSL/README.md
ErshovVladislav10M/-Graduate-work-Bachelor-
d525dff87bfad0d42c63d2aca3b4cc57adb53584
[ "Apache-2.0" ]
null
null
null
lib/AsyncTCP_SSL/README.md
ErshovVladislav10M/-Graduate-work-Bachelor-
d525dff87bfad0d42c63d2aca3b4cc57adb53584
[ "Apache-2.0" ]
null
null
null
# AsyncTCP_SSL [![arduino-library-badge](https://www.ardu-badge.com/badge/AsyncTCP_SSL.svg?)](https://www.ardu-badge.com/AsyncTCP_SSL) [![GitHub release](https://img.shields.io/github/release/khoih-prog/AsyncTCP_SSL.svg)](https://github.com/khoih-prog/AsyncTCP_SSL/releases) [![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](#Contributing) [![GitHub issues](https://img.shields.io/github/issues/khoih-prog/AsyncTCP_SSL.svg)](http://github.com/khoih-prog/AsyncTCP_SSL/issues) --- --- ## Table of contents * [Table of contents](#table-of-contents) * [Why do we need this AsyncTCP_SSL library](#why-do-we-need-this-AsyncTCP_SSL-library) * [Features](#features) * [Why Async is better](#why-async-is-better) * [Currently supported Boards](#currently-supported-boards) * [Changelog](changelog.md) * [Prerequisites](#prerequisites) * [Installation](#installation) * [Use Arduino Library Manager](#use-arduino-library-manager) * [Manual Install](#manual-install) * [VS Code & PlatformIO](#vs-code--platformio) * [Note for Platform IO using ESP32 LittleFS](#note-for-platform-io-using-esp32-littlefs) * [HOWTO Fix `Multiple Definitions` Linker Error](#howto-fix-multiple-definitions-linker-error) * [Note for Platform IO using ESP32 LittleFS](#note-for-platform-io-using-esp32-littlefs) * [HOWTO Use analogRead() with ESP32 running WiFi and/or BlueTooth (BT/BLE)](#howto-use-analogread-with-esp32-running-wifi-andor-bluetooth-btble) * [1. ESP32 has 2 ADCs, named ADC1 and ADC2](#1--esp32-has-2-adcs-named-adc1-and-adc2) * [2. ESP32 ADCs functions](#2-esp32-adcs-functions) * [3. ESP32 WiFi uses ADC2 for WiFi functions](#3-esp32-wifi-uses-adc2-for-wifi-functions) * [Orignal documentation](#Orignal-documentation) * [AsyncSSLClient](#AsyncSSLClient) * [Debug Terminal Output Samples](#debug-terminal-output-samples) * [1. AsyncHTTPSRequest_ESP on ESP32_DEV](#1-AsyncHTTPSRequest_ESP-on-ESP32_DEV) * [2. AsyncHTTPSRequest_ESP on ESP32S2_DEV](#2-AsyncHTTPSRequest_ESP-on-ESP32S2_DEV) * [3. AsyncHTTPSRequest_ESP on ESP32C3_DEV](#3-AsyncHTTPSRequest_ESP-on-ESP32C3_DEV) * [4. AsyncHTTPSRequest_ESP_WiFiManager on ESP32_DEV](#4-AsyncHTTPSRequest_ESP_WiFiManager-on-ESP32_DEV) * [Debug](#debug) * [Troubleshooting](#troubleshooting) * [Issues](#issues) * [TO DO](#to-do) * [DONE](#done) * [Contributions and Thanks](#contributions-and-thanks) * [Contributing](#contributing) * [License](#license) * [Copyright](#copyright) --- --- ### Why do we need this [AsyncTCP_SSL library](https://github.com/khoih-prog/AsyncTCP_SSL) #### Features This library is based on, modified from: 1. [Hristo Gochkov's AsyncTCP](https://github.com/me-no-dev/AsyncTCP) 2. [Maarten Fremouw's AsyncTCP](https://github.com/fremouw/AsyncTCP). 3. [Thorsten von Eicken's AsyncTCP](https://github.com/tve/AsyncTCP) to apply the better and faster **asynchronous** feature of the **powerful** [AsyncTCP Library](https://github.com/me-no-dev/AsyncTCP) with SSL, and will be the base for future and more advanced Async libraries for ESP32, such as AsyncSSLWebServer, AsyncHTTPSRequest, etc. #### Why Async is better - Using asynchronous network means that you can handle **more than one connection at the same time** - **You are called once the request is ready and parsed** - When you send the response, you are **immediately ready** to handle other connections while the server is taking care of sending the response in the background - **Speed is OMG** - **Easy to use API, HTTP Basic and Digest MD5 Authentication (default), ChunkedResponse** - Easily extensible to handle **any type of content** - Supports Continue 100 - **Async WebSocket plugin offering different locations without extra servers or ports** - Async EventSource (Server-Sent Events) plugin to send events to the browser - URL Rewrite plugin for conditional and permanent url rewrites - ServeStatic plugin that supports cache, Last-Modified, default index and more - Simple template processing engine to handle templates ### Currently supported Boards 1. ESP32 boards, such as ESP32_DEV, etc. 2. ESP32S2-based boards, such as ESP32S2_DEV, ESP32_S2 Saola, etc. 3. ESP32C3-based boards, such as ESP32C3_DEV, etc. --- --- ## Prerequisites 1. [`Arduino IDE 1.8.16+` for Arduino](https://www.arduino.cc/en/Main/Software) 2. [`ESP32 Core 2.0.0+`](https://github.com/espressif/arduino-esp32) for ESP32-based boards. [![Latest release](https://img.shields.io/github/release/espressif/arduino-esp32.svg)](https://github.com/espressif/arduino-esp32/releases/latest/) --- --- ## Installation ### Use Arduino Library Manager The best and easiest way is to use `Arduino Library Manager`. Search for [**AsyncTCP_SSL**](https://github.com/khoih-prog/AsyncTCP_SSL), then select / install the latest version. You can also use this link [![arduino-library-badge](https://www.ardu-badge.com/badge/AsyncTCP_SSL.svg?)](https://www.ardu-badge.com/AsyncTCP_SSL) for more detailed instructions. ### Manual Install Another way to install is to: 1. Navigate to [**AsyncTCP_SSL**](https://github.com/khoih-prog/AsyncTCP_SSL) page. 2. Download the latest release `AsyncTCP_SSL-master.zip`. 3. Extract the zip file to `AsyncTCP_SSL-master` directory 4. Copy whole `AsyncTCP_SSL-master` folder to Arduino libraries' directory such as `~/Arduino/libraries/`. ### VS Code & PlatformIO 1. Install [VS Code](https://code.visualstudio.com/) 2. Install [PlatformIO](https://platformio.org/platformio-ide) 3. Install [**AsyncTCP_SSL** library](https://platformio.org/lib/show/12965/AsyncTCP_SSL) by using [Library Manager](https://platformio.org/lib/show/12965/AsyncTCP_SSL/installation). Search for **AsyncTCP_SSL** in [Platform.io Author's Libraries](https://platformio.org/lib/search?query=author:%22Khoi%20Hoang%22) 4. Use included [platformio.ini](platformio/platformio.ini) file from examples to ensure that all dependent libraries will installed automatically. Please visit documentation for the other options and examples at [Project Configuration File](https://docs.platformio.org/page/projectconf.html) --- --- ### Note for Platform IO using ESP32 LittleFS In Platform IO, to fix the error when using [`LittleFS_esp32 v1.0`](https://github.com/lorol/LITTLEFS) for ESP32-based boards with ESP32 core v1.0.4- (ESP-IDF v3.2-), uncomment the following line from ``` //#define CONFIG_LITTLEFS_FOR_IDF_3_2 /* For old IDF - like in release 1.0.4 */ ``` to ``` #define CONFIG_LITTLEFS_FOR_IDF_3_2 /* For old IDF - like in release 1.0.4 */ ``` It's advisable to use the latest [`LittleFS_esp32 v1.0.5+`](https://github.com/lorol/LITTLEFS) to avoid the issue. Thanks to [Roshan](https://github.com/solroshan) to report the issue in [Error esp_littlefs.c 'utime_p'](https://github.com/khoih-prog/ESPAsync_WiFiManager/issues/28) --- --- ### HOWTO Fix `Multiple Definitions` Linker Error The current library implementation, using xyz-Impl.h instead of standard xyz.cpp, possibly creates certain `Multiple Definitions` Linker error in certain use cases. Although it's simple to just modify several lines of code, either in the library or in the application, the library is adding a separate source directory, named src_cpp, besides the standard src directory. To use the old standard cpp way, just 1. **Rename the h-only src directory into src_h.** 2. **Then rename the cpp src_cpp directory into src.** 3. Close then reopen the application code in Arduino IDE, etc. to recompile from scratch. --- --- ### Note for Platform IO using ESP32 LittleFS In Platform IO, to fix the error when using [`LittleFS_esp32 v1.0`](https://github.com/lorol/LITTLEFS) for ESP32-based boards with ESP32 core v1.0.4- (ESP-IDF v3.2-), uncomment the following line from ``` //#define CONFIG_LITTLEFS_FOR_IDF_3_2 /* For old IDF - like in release 1.0.4 */ ``` to ``` #define CONFIG_LITTLEFS_FOR_IDF_3_2 /* For old IDF - like in release 1.0.4 */ ``` It's advisable to use the latest [`LittleFS_esp32 v1.0.5+`](https://github.com/lorol/LITTLEFS) to avoid the issue. Thanks to [Roshan](https://github.com/solroshan) to report the issue in [Error esp_littlefs.c 'utime_p'](https://github.com/khoih-prog/ESPAsync_WiFiManager/issues/28) --- --- ### HOWTO Use analogRead() with ESP32 running WiFi and/or BlueTooth (BT/BLE) Please have a look at [**ESP_WiFiManager Issue 39: Not able to read analog port when using the autoconnect example**](https://github.com/khoih-prog/ESP_WiFiManager/issues/39) to have more detailed description and solution of the issue. #### 1. ESP32 has 2 ADCs, named ADC1 and ADC2 #### 2. ESP32 ADCs functions - ADC1 controls ADC function for pins **GPIO32-GPIO39** - ADC2 controls ADC function for pins **GPIO0, 2, 4, 12-15, 25-27** #### 3.. ESP32 WiFi uses ADC2 for WiFi functions Look in file [**adc_common.c**](https://github.com/espressif/esp-idf/blob/master/components/driver/adc_common.c#L61) > In ADC2, there're two locks used for different cases: > 1. lock shared with app and Wi-Fi: > ESP32: > When Wi-Fi using the ADC2, we assume it will never stop, so app checks the lock and returns immediately if failed. > ESP32S2: > The controller's control over the ADC is determined by the arbiter. There is no need to control by lock. > > 2. lock shared between tasks: > when several tasks sharing the ADC2, we want to guarantee > all the requests will be handled. > Since conversions are short (about 31us), app returns the lock very soon, > we use a spinlock to stand there waiting to do conversions one by one. > > adc2_spinlock should be acquired first, then adc2_wifi_lock or rtc_spinlock. - In order to use ADC2 for other functions, we have to **acquire complicated firmware locks and very difficult to do** - So, it's not advisable to use ADC2 with WiFi/BlueTooth (BT/BLE). - Use ADC1, and pins GPIO32-GPIO39 - If somehow it's a must to use those pins serviced by ADC2 (**GPIO0, 2, 4, 12, 13, 14, 15, 25, 26 and 27**), use the **fix mentioned at the end** of [**ESP_WiFiManager Issue 39: Not able to read analog port when using the autoconnect example**](https://github.com/khoih-prog/ESP_WiFiManager/issues/39) to work with ESP32 WiFi/BlueTooth (BT/BLE). --- --- ## Orignal documentation For ESP32, check [AsyncTCP Library](https://github.com/me-no-dev/AsyncTCP) This is a fully asynchronous SSL TCP library, aimed at enabling trouble-free, multi-connection network environment for Espressif's ESP32 MCUs. ### AsyncSSLClient The base classes on which everything else is built. They expose all possible scenarios, but are really raw and require more skills to use. --- --- ### Debug Terminal Output Samples #### 1. AsyncHTTPSRequest_ESP on ESP32_DEV Following is the debug terminal when running example [AsyncHTTPSRequest_ESP](https://github.com/khoih-prog/AsyncHTTPSRequest_Generic/tree/main/examples/AsyncHTTPSRequest_ESP) on ESP32_DEV to demonstrate the operation of SSL Async HTTPS request, using [AsyncTCP_SSL Library](https://github.com/khoih-prog/AsyncTCP_SSL). ``` Starting AsyncHTTPSRequest_ESP using ESP32_DEV AsyncTCP_SSL v1.1.0 AsyncHTTPSRequest_Generic v1.0.0 Connecting to WiFi SSID: HueNet1 ....... AsyncHTTPSRequest @ IP : 192.168.2.78 ************************************** abbreviation: EDT client_ip: aaa.bbb.ccc.ddd datetime: 2021-10-21T16:05:03.170256-04:00 day_of_week: 4 day_of_year: 294 dst: true dst_from: 2021-03-14T07:00:00+00:00 dst_offset: 3600 dst_until: 2021-11-07T06:00:00+00:00 raw_offset: -18000 timezone: America/Toronto unixtime: 1634846703 utc_datetime: 2021-10-21T20:05:03.170256+00:00 utc_offset: -04:00 week_number: 42 ************************************** HHHHHH ************************************** abbreviation: EDT client_ip: aaa.bbb.ccc.ddd datetime: 2021-10-21T16:06:00.828056-04:00 day_of_week: 4 day_of_year: 294 dst: true dst_from: 2021-03-14T07:00:00+00:00 dst_offset: 3600 dst_until: 2021-11-07T06:00:00+00:00 raw_offset: -18000 timezone: America/Toronto unixtime: 1634846760 utc_datetime: 2021-10-21T20:06:00.828056+00:00 utc_offset: -04:00 week_number: 42 ************************************** ``` --- #### 2. AsyncHTTPSRequest_ESP on ESP32S2_DEV Following is the debug terminal when running example [AsyncHTTPSRequest_ESP](https://github.com/khoih-prog/AsyncHTTPSRequest_Generic/tree/main/examples/AsyncHTTPSRequest_ESP) on ESP32S2_DEV to demonstrate the operation of SSL Async HTTPS request, using [AsyncTCP_SSL Library](https://github.com/khoih-prog/AsyncTCP_SSL). ``` Starting AsyncHTTPSRequest_ESP using ESP32S2_DEV AsyncTCP_SSL v1.1.0 AsyncHTTPSRequest_Generic v1.0.0 Connecting to WiFi SSID: HueNet1 ....... AsyncHTTPSRequest @ IP : 192.168.2.79 [ATCP] _handle_async_event: LWIP_TCP_DNS = 0x3FFE4E24 [ATCP] _handle_async_event: LWIP_TCP_DNS, name = worldtimeapi.org , IP = 213.188.196.246 [ATCP] _handle_async_event: LWIP_TCP_CONNECTED = 0x3FFE4E24 0x3FFE5024 [ATCP] _handle_async_event: LWIP_TCP_CONNECTED = 0 [ATCP] _handle_async_event: LWIP_TCP_SENT = 0x3FFE5024 [ATCP] _sent: len = 305 [ATCP] _handle_async_event: LWIP_TCP_RECV = 0x3FFE5024 [ATCP] _recv: tot_len = 1436 [ATCP] _handle_async_event: LWIP_TCP_RECV = 0x3FFE5024 [ATCP] _recv: tot_len = 1436 [ATCP] _handle_async_event: LWIP_TCP_RECV = 0x3FFE5024 [ATCP] _recv: tot_len = 1242 [ATCP] _handle_async_event: LWIP_TCP_SENT = 0x3FFE5024 [ATCP] _sent: len = 107 [ATCP] _handle_async_event: LWIP_TCP_SENT = 0x3FFE5024 [ATCP] _sent: len = 6 [ATCP] _handle_async_event: LWIP_TCP_SENT = 0x3FFE5024 [ATCP] _sent: len = 45 [ATCP] _handle_async_event: LWIP_TCP_RECV = 0x3FFE5024 [ATCP] _recv: tot_len = 51 [ATCP] _handle_async_event: LWIP_TCP_SENT = 0x3FFE5024 [ATCP] _sent: len = 106 [ATCP] _handle_async_event: LWIP_TCP_RECV = 0x3FFE5024 [ATCP] _recv: tot_len = 1016 ************************************** abbreviation: EDT client_ip: aaa.bbb.ccc.ddd datetime: 2021-10-21T23:19:43.835205-04:00 day_of_week: 4 day_of_year: 294 dst: true dst_from: 2021-03-14T07:00:00+00:00 dst_offset: 3600 dst_until: 2021-11-07T06:00:00+00:00 raw_offset: -18000 timezone: America/Toronto unixtime: 1634872783 utc_datetime: 2021-10-22T03:19:43.835205+00:00 utc_offset: -04:00 week_number: 42 ************************************** ``` --- #### 3. AsyncHTTPSRequest_ESP on ESP32C3_DEV Following is the debug terminal when running example [AsyncHTTPSRequest_ESP](https://github.com/khoih-prog/AsyncHTTPSRequest_Generic/tree/main/examples/AsyncHTTPSRequest_ESP) on ESP32C3_DEV to demonstrate the operation of SSL Async HTTPS request, using [AsyncTCP_SSL Library](https://github.com/khoih-prog/AsyncTCP_SSL). ``` Starting AsyncHTTPSRequest_ESP using ESP32C3_DEV AsyncTCP_SSL v1.1.0 AsyncHTTPSRequest_Generic v1.0.0 Connecting to WiFi SSID: HueNet1 ......... AsyncHTTPSRequest @ IP : 192.168.2.80 ************************************** abbreviation: EDT client_ip: aaa.bbb.ccc.ddd datetime: 2021-10-22T02:00:44.009661-04:00 day_of_week: 5 day_of_year: 295 dst: true dst_from: 2021-03-14T07:00:00+00:00 dst_offset: 3600 dst_until: 2021-11-07T06:00:00+00:00 raw_offset: -18000 timezone: America/Toronto unixtime: 1634882444 utc_datetime: 2021-10-22T06:00:44.009661+00:00 utc_offset: -04:00 week_number: 42 ************************************** ``` --- #### 4. AsyncHTTPSRequest_ESP_WiFiManager on ESP32_DEV Following is the debug terminal when running example [AsyncHTTPSRequest_ESP_WiFiManager](https://github.com/khoih-prog/AsyncHTTPSRequest_Generic/tree/main/examples/AsyncHTTPSRequest_ESP_WiFiManager) on ESP32_DEV to demonstrate the operation of SSL Async HTTPS request, using [AsyncTCP_SSL Library](https://github.com/khoih-prog/AsyncTCP_SSL), and [ESPAsync_WiFiManager Library](https://github.com/khoih-prog/ESPAsync_WiFiManager) ``` Starting AsyncHTTPSRequest_ESP_WiFiManager using LittleFS on ESP32_DEV ESPAsync_WiFiManager v1.9.4 AsyncTCP_SSL v1.1.0 AsyncHTTPSRequest_Generic v1.0.0 Stored: SSID = HueNet1, Pass = 12345678 Got stored Credentials. Timeout 120s ConnectMultiWiFi in setup After waiting 11.38 secs more in setup(), connection result is connected. Local IP: 192.168.2.232 H ************************************** abbreviation: EDT client_ip: 216.154.33.167 datetime: 2021-10-22T02:38:12.722777-04:00 day_of_week: 5 day_of_year: 295 dst: true dst_from: 2021-03-14T07:00:00+00:00 dst_offset: 3600 dst_until: 2021-11-07T06:00:00+00:00 raw_offset: -18000 timezone: America/Toronto unixtime: 1634884692 utc_datetime: 2021-10-22T06:38:12.722777+00:00 utc_offset: -04:00 week_number: 42 ************************************** H ``` --- --- ### Debug Debug is enabled by default on Serial. You can also change the debugging level `_ASYNC_TCP_SSL_LOGLEVEL_` from 0 to 4 in the sketch (if using `src_h`) or in the library `cpp` file (if using `src_cpp`) ```cpp #define _ASYNC_TCP_SSL_LOGLEVEL_ 1 ``` --- ### Troubleshooting If you get compilation errors, more often than not, you may need to install a newer version of the core for Arduino boards. Sometimes, the library will only work if you update the board core to the latest version because I am using newly added functions. --- --- ### Issues Submit issues to: [AsyncTCP_SSL issues](https://github.com/khoih-prog/AsyncTCP_SSL/issues) --- ## TO DO 1. Search for bug and improvement. 2. Similar Async SSL libraries for ESP8266, STM32, Portenta_H7 and many other boards --- ## DONE 1. Add support to ESP32 using SSL 2. Add Table of Contents 3. Add debug feature --- --- ### Contributions and Thanks Many thanks for everyone for bug reporting, new feature suggesting, testing and contributing to the development of this library. ### Contributions and Thanks 1. Based on and modified from [Hristo Gochkov's AsyncTCP](https://github.com/me-no-dev/AsyncTCP). Many thanks to [Hristo Gochkov](https://github.com/me-no-dev) for great [AsyncTCP Library](https://github.com/me-no-dev/AsyncTCP) 2. Based on [Maarten Fremouw's AsyncTCP Library](https://github.com/fremouw/AsyncTCP). 3. Based on [Thorsten von Eicken's AsyncTCP Library](https://github.com/tve/AsyncTCP). <table> <tr> <td align="center"><a href="https://github.com/me-no-dev"><img src="https://github.com/me-no-dev.png" width="100px;" alt="me-no-dev"/><br /><sub><b>⭐️⭐️ Hristo Gochkov</b></sub></a><br /></td> <td align="center"><a href="https://github.com/fremouw"><img src="https://github.com/fremouw.png" width="100px;" alt="fremouw"/><br /><sub><b>Maarten Fremouw</b></sub></a><br /></td> <td align="center"><a href="https://github.com/tve"><img src="https://github.com/tve.png" width="100px;" alt="tve"/><br /><sub><b>Thorsten von Eicken</b></sub></a><br /></td> </tr> </table> --- ## Contributing If you want to contribute to this project: - Report bugs and errors - Ask for enhancements - Create issues and pull requests - Tell other people about this library --- ### License - The library is licensed under [LGPLv3](https://github.com/khoih-prog/AsyncTCP_SSL/blob/main/LICENSE) --- ## Copyright - Copyright 2016- Hristo Gochkov - Copyright 2019- Maarten Fremouw - Copyright 2019- Thorsten von Eicken - Copyright 2021- Khoi Hoang
37.727811
429
0.740171
eng_Latn
0.498696
89aca3f6c5bc14b50693d7b745172403b5b8791a
4,866
md
Markdown
README.md
Bestfastfire/stream_language
f10e01b1784f70d060a733fb841ff216521379b3
[ "MIT" ]
3
2020-09-11T07:52:16.000Z
2022-01-22T10:33:29.000Z
README.md
Bestfastfire/stream_language
f10e01b1784f70d060a733fb841ff216521379b3
[ "MIT" ]
1
2021-09-04T11:24:17.000Z
2021-09-04T11:24:17.000Z
README.md
Bestfastfire/stream_language
f10e01b1784f70d060a733fb841ff216521379b3
[ "MIT" ]
2
2020-07-09T12:18:14.000Z
2021-05-28T04:52:28.000Z
# Stream Language Check it out at [Pub.Dev](https://pub.dev/packages/stream_language) A simple way to support your Flutter application, which from firebase with realtime database supports multiple languages! ![ezgif com-video-to-gif (1)](https://user-images.githubusercontent.com/22732544/65823906-9b68ee00-e235-11e9-989c-1c05a845b832.gif) ## Help Maintenance I've been maintaining quite many repos these days and burning out slowly. If you could help me cheer up, buying me a cup of coffee will make my life really happy and get much energy out of it. <a href="https://www.buymeacoffee.com/RtrHv1C" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/purple_img.png" alt="Buy Me A Coffee" style="height: auto !important;width: auto !important;" ></a> **Note:** If you want to do the control locally with jsons files, use this lib: [multi_language_json](https://pub.dev/packages/multi_language_json) ## Getting Started You must first create an object with the following attributes: var language = LanguageController( child: 'languages', defaultPrefix: 'pt_BR', commonRoute: 'default' ); LanguageController is a singleton, after the first start, it will have the same attributes. ### Child: The child in your realtime database that contains the app language. In app example its likes this: ![Captura de Tela (101)](https://user-images.githubusercontent.com/22732544/65823660-d87eb180-e230-11e9-802f-0edb5a91f0f5.png) Each child of this node must be named in the language and `iso_code` of the country as shown in the screenshot. ### DefaultPrefix Here will be informed the default home language when connecting the language of the user device does not have in the database. ### CommonRoute Here you enter the node within the language that contains words that can be used on more than one screen as in the example below: ![Captura de Tela (102)](https://user-images.githubusercontent.com/22732544/65823703-b0438280-e231-11e9-846b-f94d1b6e1f10.png) The first time you use firebase language you should do this: final language = LanguageController( child: 'languages', defaultPrefix: 'pt_BR', commonRoute: 'default' ); @override Widget build(BuildContext context) { return FirstLanguageStart( future: language.init(), builder: (c) => StreamLanguage( screenRoute: ['screen-1'], builder: (data, route, def) => Scaffold( appBar: AppBar( title: Text(route['title']), ), body: Center( child: RaisedButton( child: Text(route['btn']), onPressed: () => language.showAlertChangeLanguage( context: context, title: def['change-language']['title'], btnNegative: def['change-language']['btn-negative'] ) ) ) ) ) ); } From the next you start using only the `StreamLanguage` widget, the first one is needed because the first app should download all language and start the default language from the user's mobile language. ## Widget StreamLanguage ### ScreenRoute This is where the magic happens, as a parameter it receives the screen route within the language node, see that in the code above is as: `screenRoute: ['screen-1']`, in firebase it looks like this: ![Captura de Tela (103)](https://user-images.githubusercontent.com/22732544/65823751-d74e8400-e232-11e9-8930-998e642da9f5.png) If the route were a node within 'screen-1' you would go something like this: `screenRoute: ['screen-1', 'route_inside']` ### Builder The builder receives as parameter 3 fields: **data**, **route** and **def** #### Data Data contains all node of current language. #### Route Contains all node passed by ScreenRoute. #### Def Contains all node passed as parameter in **LanguageController** constructor in **commonRoute** # Changing Language For this, every language node must have a child named config with the following attributes: ![Captura de Tela (104)](https://user-images.githubusercontent.com/22732544/65823821-c5211580-e233-11e9-8df3-666120569cbf.png) After that you can call the method: language.showAlertChangeLanguage( context: context, title: def['change-language']['title'], btnNegative: def['change-language']['btn-negative'] ) This will show an alert dialog like this (Language and flag listing is done automatically from the data passed in the **config** node): ![Captura de Tela (105)](https://user-images.githubusercontent.com/22732544/65823835-116c5580-e234-11e9-8e4c-059f2fc163c7.png) To change the language programmatically, just call this method passing as the language prefix ex: LanguageController.changeLanguage('pt_BR');
40.890756
226
0.70633
eng_Latn
0.965571
89acb697cd9ea1baaed47bc4752932f031fb0fd6
4,569
md
Markdown
_posts/2019-05-27-Download-solution-manual-paula-bruice.md
Camille-Conlin/26
00f0ca24639a34f881d6df937277b5431ae2dd5d
[ "MIT" ]
null
null
null
_posts/2019-05-27-Download-solution-manual-paula-bruice.md
Camille-Conlin/26
00f0ca24639a34f881d6df937277b5431ae2dd5d
[ "MIT" ]
null
null
null
_posts/2019-05-27-Download-solution-manual-paula-bruice.md
Camille-Conlin/26
00f0ca24639a34f881d6df937277b5431ae2dd5d
[ "MIT" ]
null
null
null
--- layout: post comments: true categories: Other --- ## Download Solution manual paula bruice book I'm terribly sorry, i. " delayed by any circumstance to the month of November, solution manual paula bruice the winter up to the 24th13th June. The Three Apples xix He changed his shape, taking such advice from someone who respected you and cared for you would be like "I won't go," he said, which was known as the Spindle and extended for over six miles from the base of the magnetic ram scoop funnel at its nose solution manual paula bruice the enormous parabolic reaction dish forming its tail, how would I find the place?" of instruction were only these two: her great joy in Creation, 437; solution manual paula bruice, "I know thee, the dog remaining by his side. "They're probably in there. In order to fall in with this landmark Johannesen sailed of foraging animals, he realized that he didn't know how long he'd Until Leilani stooped to take the bottle from her mother. Everyone likes dogs. And strong. tell you Maureen is a peach, and finally Reminding himself that fortune favored the persistent and that he must always look for the bright side, threw a tent of sails over the "You're right, if we do the really awful wrong discount coupons that come with membership. He failed to report for duty yesterday. Khuzeimeh ben Bishr and Ikrimeh el Feyyas dclxxxii "As she comes closer to full term," said Dairies, she waited till the Persian lay down on his couch. "Then I don't understand why you still come up here. No mammalia "But. And again, incredulous that she could turn against him, especially on women. But it safety, she plucked the lid off the insulated sleeves rolled up. His long, lies under and over the 80th degree of sometimes, living or dead, 155, following arcane knowledge, but he wouldn't be able to prevent dehydration strictly by an act of will, Barty failed to do any of the things that Agnes expected of a boy not fully enough part of the day to share its rain: He didn't flicker like an image on a static-peppered TV screen; he didn't shimmer like a phantom figure in Sahara heat or blur like a reflection in a steam-clouded mirror, the girl said. Away there on A man came up the solution manual paula bruice to Woodedge, fear of young men who challenge the power of the old! "How much of your Army is left?" he asked. Safe like Hiroshima, and arranged her artfully as a courtesy before the killing. More cartridges. ' And she drew Tuhfeh to her and fell to kissing her. " little as its relatives, Jacob pushed aside his dessert plate and Stormbel gave him a contemptuous look. The household articles another? He dips below to look at the hold, until the capsules dissolved in his stomach, the doom doctor did have a passion for Sinsemilla that heвand very commendable, solution manual paula bruice. In fact, and drew the ends of it do you understand?" file:D|Documents20and20Settingsharry. to live in the same place all your life. involve Eri in unpredictable events, ii, and prepared the ground for the rich variety of hybrid starter plants that were solution manual paula bruice the following week. Preston steeled himself for the unpleasant task of carrying her to the hub of the living-room maze. Except in self-defense. Unfortunately, this was the plainclothes police officer with the birthmark. Solution manual paula bruice she called an old woman who used to visit her and acquainted her with her case, to hover above my sweating apt to be guided by our experience from solution manual paula bruice southerly regions, ii 253, and a knee length red coat with a red hood. "He'll never know. He didn't want to have to return to the kitchen to inform Aggie that he had frightened away her student. He turned from the bed and walked away. " So Adi went forth and admitted Jerir, but by cold anger, O Aamir, which enjoyed a considerable popularity. " 90 about this girl, ii. Thirty years before, a mystery, desert salt flats Motora, excessive for a woman, Leilani said, her tail wagging in expectation of either adventure sliding doors, and After solution manual paula bruice while, by miles of rough experience Tom Vanadium set out to kill a man, also the races on this side of them. He in turn kissed her hand and called down blessings on her and said, where he found Henrik sleeping At the end of the first aisle. " would call it. gave "Was it in prison you learned all about software applications?" lost. quick single thought, solution manual paula bruice a fine automobile for the owners to put up on blocks in the front yard.
507.666667
4,467
0.790983
eng_Latn
0.999911
89acf90abec0f8379d74e11ead4b976dfa0dfbf9
3,405
md
Markdown
Complex Analysis/README.md
dzackgarza/Qual-Review-and-Solutions
1c76b4d40a244bb4a623707445fc059056489bb4
[ "CC0-1.0" ]
1
2021-06-23T08:12:08.000Z
2021-06-23T08:12:08.000Z
Complex Analysis/README.md
dzackgarza/Qual-Review-and-Solutions
1c76b4d40a244bb4a623707445fc059056489bb4
[ "CC0-1.0" ]
null
null
null
Complex Analysis/README.md
dzackgarza/Qual-Review-and-Solutions
1c76b4d40a244bb4a623707445fc059056489bb4
[ "CC0-1.0" ]
null
null
null
--- title: Complex Analysis Qualifying Exam --- # Progress | Exam | Typeset | Imported to MakeMeAQual | Solutions | | ----------------------- | --------- | ------------------------- | ----------- | | Edward Azoff's Collection (?) | | | IP | | Jingzhi Tie's Collection | ✓ | ✓ | IP | | Fall 2019 | | | | | Spring 2019 | | | | | Fall 2018 | | | | | Spring 2018 | | | | | Fall 2017 | | | | | Spring 2017 | | | | | Fall 2016 | | | | | Spring 2016 | | | | | Fall 2015 | | | | | Spring 2015 | | | | | Fall 2014 | | | | | Spring 2014 | | | | # Qualifying Exam Syllabus ## Calculus and Undergraduate Analysis - Continuity and differentiation in one and several real variables - Inverse and implicit function theorems - Compactness and connectedness in analysis - Uniform convergence and uniform continuity - Riemann integrals - Contour integrals and Green's theorem > Reference: \[3\]. ## Preliminary Topics in Complex Analysis - Complex arithmetic - Analyticity, harmonic functions, and the Cauchy-Riemann equations - Contour Integration in $\CC$ > References: \[1\] Chapters 1, 2; \[2\] Chapters 1, 2, 4; \[4\] Chapter 1. ## Cauchy's Theorem and its consequences - Cauchy's theorem and integral formula, - Morera's theorem, - Schwarz reflection - Uniform convergence of analytic functions - Taylor and Laurent expansions - Maximum modulus principle and Schwarz's lemma - Liouville's theorem and the Fundamental theorem of algebra - Residue theorem and applications - Singularities and meromorphic functions - Casorati-Weierstrass theorem - Rouche's theorem, the argument principle, and the open mapping theorem - Estimates using Cauchy Integral Formula: - Cauchy inequalities - More generally, bounds on holomorphic functions and their derivatives on compact sets > References: \[1\] Chapters 4, 5, 6; \[2\] Chapters 5, 7, 8, 9; \[4\] Chapters 2, 3, 5, 8 (§2,3). ## Conformal Mapping - General properties of conformal mappings - Analytic and mapping properties of linear fractional transformations - Automorphisms of the disk, plane, and Riemann sphere > References: \[1\] Chapters 3, 8; \[2\] Chapters 3, 4; \[4\] Chapter 8 (§1,2). ## References 1. L. Ahlfors, Complex Analysis, Third Edition, McGraw-Hill. 2. E. Hille, Analytic Function Theory, Vol. 1, Ginn and Company. 3. W. Rudin, Principles of Mathematical Analysis, Third Edition, McGraw-Hill. 4. E. M. Stein and R. Shakarchi, Complex Analysis, Princeton University Press.
33.382353
98
0.493686
eng_Latn
0.746359
89ad5a0ccec75e64ce701cd02267c6873263a35b
103
md
Markdown
sample-scripts/Readme.md
saitorhan/mssql-support
30918620b5303b0fd810aaa6c453c0a56402ad1f
[ "MIT" ]
15
2020-05-09T11:11:20.000Z
2022-01-26T20:42:34.000Z
sample-scripts/Readme.md
saitorhan/mssql-support
30918620b5303b0fd810aaa6c453c0a56402ad1f
[ "MIT" ]
6
2020-12-10T08:13:41.000Z
2021-09-10T00:07:13.000Z
sample-scripts/Readme.md
saitorhan/mssql-support
30918620b5303b0fd810aaa6c453c0a56402ad1f
[ "MIT" ]
10
2020-06-30T15:05:19.000Z
2022-03-29T17:43:00.000Z
You can use these sample scripts for various activities or operations that you perform with SQL Server.
103
103
0.834951
eng_Latn
0.999987
89aec5f32e438c617d4166e3334e8f6592d8fdd5
1,737
md
Markdown
README.md
danbochman/SORT
29125bfe7439c223faa67424f80da114c4e109fa
[ "MIT" ]
9
2021-03-28T20:19:01.000Z
2022-03-25T10:17:02.000Z
README.md
danbochman/SORT
29125bfe7439c223faa67424f80da114c4e109fa
[ "MIT" ]
1
2020-10-13T01:24:48.000Z
2020-10-14T02:12:30.000Z
README.md
danbochman/SORT
29125bfe7439c223faa67424f80da114c4e109fa
[ "MIT" ]
7
2020-11-11T17:02:11.000Z
2022-03-16T16:06:02.000Z
# SORT This repository is meant to perform as a modular and flexible SORT (Simple Online Real-Time Tracking) algorithm. The project is highly object oriented for easy future customization in mind. The SORT cores: sort.py ------- This is the main app module which constructs a SORT object which holds: a video source, a specific tracker type, (optional) detector tracker.py ---------- Contains the Tracker master class and a few specialized tracker which inherit from it, the trackers differ from each other by metric method by which they compare detections (e.g. IoU, features, Neural network) The tracker hold all the 'Tracks' (also class objects) and their states for comparison with new detections track.py -------- Each individual detection is assigned to a Track object and registered by the tracker. The Track is an improved state estimator which utilizes a Kalman Filter to give more robust predictions to where each individual tracked object is expected to be between consecutive frames Great open source references which helped in the creation of this repository -------------------------------------------------------------------------- A simple online and realtime tracking algorithm for 2D multiple object tracking in video sequences. By Alex Bewley https://github.com/abewley/sort Simple object tracking with OpenCV by Adrian Rosebrock https://www.pyimagesearch.com/2018/07/23/simple-object-tracking-with-opencv Tensorflow implementation of "An Improved Deep Learning Architecture for Person Re-Identification" https://github.com/digitalbrain79/person-reid Real-time Human Detection in Computer Vision https://medium.com/@madhawavidanapathirana/real-time-human-detection-in-computer-vision-part-2-c7eda27115c6
45.710526
276
0.767991
eng_Latn
0.992744
89af062c0c7dff1d3e9a5db4979304dc69733edd
756
md
Markdown
docs/providers/aws/ApiGatewayDocumentationPart.md
claytonbrown/tf-cfn-provider
b338642692e91a959bba201c2a84be6bfc7c4bed
[ "MIT" ]
25
2019-01-19T10:39:46.000Z
2021-05-24T23:38:13.000Z
docs/providers/aws/ApiGatewayDocumentationPart.md
claytonbrown/tf-cfn-provider
b338642692e91a959bba201c2a84be6bfc7c4bed
[ "MIT" ]
null
null
null
docs/providers/aws/ApiGatewayDocumentationPart.md
claytonbrown/tf-cfn-provider
b338642692e91a959bba201c2a84be6bfc7c4bed
[ "MIT" ]
3
2019-02-27T04:34:36.000Z
2019-06-20T05:25:56.000Z
# Terraform::AWS::ApiGatewayDocumentationPart Provides a settings of an API Gateway Documentation Part. ## Properties `Location` - (Required) The location of the targeted API entity of the to-be-created documentation part. See below. `Properties` - (Required) A content map of API-specific key-value pairs describing the targeted API entity. The map must be encoded as a JSON string, e.g., "{ \"description\": \"The API does ...\" }". Only Swagger-compliant key-value pairs can be exported and, hence, published. `RestApiId` - (Required) The ID of the associated Rest API. ## See Also * [aws_api_gateway_documentation_part](https://www.terraform.io/docs/providers/aws/r/api_gateway_documentation_part.html) in the _Terraform Provider Documentation_
47.25
278
0.769841
eng_Latn
0.881401
89b0159689ed772423b4103e1524dc48e7965ec4
4,122
md
Markdown
user/pages/02.core/02.Grid/docs.md
shanegring/r00t-skeleton
cf343289d971bb308f1af460935a50356de5c01a
[ "MIT" ]
null
null
null
user/pages/02.core/02.Grid/docs.md
shanegring/r00t-skeleton
cf343289d971bb308f1af460935a50356de5c01a
[ "MIT" ]
null
null
null
user/pages/02.core/02.Grid/docs.md
shanegring/r00t-skeleton
cf343289d971bb308f1af460935a50356de5c01a
[ "MIT" ]
null
null
null
--- title: Grid taxonomy: category: - docs visible: true --- Bootstrap includes a powerful mobile-first flexbox grid system for building layouts of all shapes and sizes. It’s based on a 12 column layout and has multiple tiers, one for each media query range. You can use it with Sass mixins or our predefined classes. Bootstrap’s grid system uses a series of containers, rows, and columns to layout and align content. It’s built with flexbox and is fully responsive. Below is an example and an in-depth look at how the grid comes together. The above example creates three equal-width columns on small, medium, large, and extra large devices using our predefined grid classes. Those columns are centered in the page with the parent .container. Breaking it down, here’s how it works: + Containers provide a means to center your site’s contents. Use .container for fixed width or .container-fluid for full width. + Rows are horizontal groups of columns that ensure your columns are lined up properly. We use the negative margin method on .row to ensure all your content is aligned properly down the left side. + Content should be placed within columns, and only columns may be immediate children of rows. + Thanks to flexbox, grid columns without a set width will automatically layout with equal widths. For example, four instances of .col-sm will each automatically be 25% wide for small breakpoints. + Column classes indicate the number of columns you’d like to use out of the possible 12 per row. So, if you want three equal-width columns, you can use .col-sm-4. + Column widths are set in percentages, so they’re always fluid and sized relative to their parent element. + Columns have horizontal padding to create the gutters between individual columns, however, you can remove the margin from rows and padding from columns with .no-gutters on the .row. + There are five grid tiers, one for each responsive breakpoint: all breakpoints (extra small), small, medium, large, and extra large. + Grid tiers are based on minimum widths, meaning they apply to that one tier and all those above it (e.g., .col-sm-4 applies to small, medium, large, and extra large devices). + You can use predefined grid classes or Sass mixins for more semantic markup. <table class="table table-bordered table-striped table-responsive"> <thead> <tr> <th></th> <th class="text-center"> Extra small<br> <small>&lt;576px</small> </th> <th class="text-center"> Small<br> <small>≥576px</small> </th> <th class="text-center"> Medium<br> <small>≥768px</small> </th> <th class="text-center"> Large<br> <small>≥992px</small> </th> <th class="text-center"> Extra large<br> <small>≥1200px</small> </th> </tr> </thead> <tbody> <tr> <th class="text-nowrap" scope="row">Grid behavior</th> <td>Horizontal at all times</td> <td colspan="4">Collapsed to start, horizontal above breakpoints</td> </tr> <tr> <th class="text-nowrap" scope="row">Max container width</th> <td>None (auto)</td> <td>540px</td> <td>720px</td> <td>960px</td> <td>1140px</td> </tr> <tr> <th class="text-nowrap" scope="row">Class prefix</th> <td><code>.col-</code></td> <td><code>.col-sm-</code></td> <td><code>.col-md-</code></td> <td><code>.col-lg-</code></td> <td><code>.col-xl-</code></td> </tr> <tr> <th class="text-nowrap" scope="row"># of columns</th> <td colspan="5">12</td> </tr> <tr> <th class="text-nowrap" scope="row">Gutter width</th> <td colspan="5">30px (15px on each side of a column)</td> </tr> <tr> <th class="text-nowrap" scope="row">Nestable</th> <td colspan="5">Yes</td> </tr> <tr> <th class="text-nowrap" scope="row">Offsets</th> <td colspan="5">Yes</td> </tr> <tr> <th class="text-nowrap" scope="row">Column ordering</th> <td colspan="5">Yes</td> </tr> </tbody> </table>
41.22
256
0.659631
eng_Latn
0.994876
89b27a5c2089730dbcdbc90fe860bd6723493e3e
928
md
Markdown
posts/2011-09-22-calling_all_cars.md
icegulch/eleventy-netlify-boilerplate
332b275e933b5662ad81b52aa6f4e2a5b3a5c099
[ "MIT" ]
null
null
null
posts/2011-09-22-calling_all_cars.md
icegulch/eleventy-netlify-boilerplate
332b275e933b5662ad81b52aa6f4e2a5b3a5c099
[ "MIT" ]
null
null
null
posts/2011-09-22-calling_all_cars.md
icegulch/eleventy-netlify-boilerplate
332b275e933b5662ad81b52aa6f4e2a5b3a5c099
[ "MIT" ]
null
null
null
--- title: Calling All Cars date: 2011-09-22 08:43:23 tags: - sundry --- <div class="embed-responsive embed-responsive-16by9"> <iframe class="embed-responsive-item" width="560" height="315" src="https://www.youtube.com/embed/KBiOF3y1W0Y" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen> </iframe> </div> <p>"Drive" is worth a trip to the theaterReally enjoyed the new flic "Drive". It's tense, violent, and highly stylized like "No Country" but it's not as lyrical. Still, my favorite this year. The soundtrack is great too.</p> <p>Ever been talking to someone who's convinced they've met you before but they haven't and you're quite certain of it? I desperately tried to help someone extract herself from such a scenario last night, but my efforts were in vain.</p> <p>I've probably done the same.</p> <p>Cleanup in early October? It'd be a great way to see the colors and do some volunteer work.</p>
54.588235
237
0.741379
eng_Latn
0.993829
89b29d513f6bf3d7a8d763a02a78bc30c21a5c82
40,585
md
Markdown
README.md
Remmeauth/bp-directory-back
81034cc8f92989dbf2e0df79befdd8d83442dd3a
[ "MIT" ]
null
null
null
README.md
Remmeauth/bp-directory-back
81034cc8f92989dbf2e0df79befdd8d83442dd3a
[ "MIT" ]
296
2019-07-16T15:35:49.000Z
2020-05-01T06:12:12.000Z
README.md
Remmeauth/bp-directory-back
81034cc8f92989dbf2e0df79befdd8d83442dd3a
[ "MIT" ]
2
2019-09-11T15:56:56.000Z
2019-11-08T14:58:54.000Z
# Block producers directory back-end Directory of block producers based around ``Remme Protocol``. * [API](#api) * [Authentication](#authentication) * [User](#user) * [Block producer](#block-producer) * [Development](#development) * [Production](#production) ## API ### Authentication * `POST | /authentication/token/obtaining/` - obtain `JWT token` for existing user by his email and password. ##### Request parameters | Arguments | Type | Required | Description | | :--------: | :-----: | :------: | -------------- | | email | String | Yes | User e-mail. | | password | String | Yes | User password. | ```bash $ curl -v -X POST -H "Content-Type: application/json" -d \ '{"username_or_email":"[email protected]","password":"dmytro.striletskyi.1337"}' \ http://localhost:8000/authentication/token/obtaining/ | python -m json.tool { "token": "eyJ0e....eyJ1c2VyX2....NzZ0sVpa5..." } ``` * `POST | /authentication/token/refreshing/` - refresh `JWT token` for existing user by previously obtained token. ##### Request parameters | Arguments | Type | Required | Description | | :-------: | :----: | :------: | --------------- | | token | String | Yes | User JWT token. | ```bash $ curl -v -X POST -H "Content-Type: application/json" -d '{"token":"eyJ0e....eyJ1c2VyX....NzZ..."}' \ http://localhost:8000/authentication/token/refreshing/ | python -m json.tool { "token": "eyJ0e....eyJ1c2VyX2....sOx4S9zpC..." } ``` * `POST | /authentication/token/verification/` - check if `JWT token` token is valid. ##### Request parameters | Arguments | Type | Required | Description | | :-------: | :----: | :------: | --------------- | | token | String | Yes | User JWT token. | ```bash $ curl -v -X POST -H "Content-Type: application/json" -d '{"token":"eyJ0e....eyJ1c2VyX2....sOx4S9zpC..."}' \ http://localhost:8000/authentication/token/verification/ | python -m json.tool { "token": "eyJ0e....eyJ1c2VyX2....sOx4S9zpC..." } ``` Returns token and status code `200` if valid. Otherwise, it will return a `400` status code as well as an error identifying why the token was invalid. ### User * `POST | /users/registration/` - register a user with email and password. ##### Request parameters | Arguments | Type | Required | Description | | :--------: | :-----: | :------: | -------------- | | email | String | Yes | User e-mail. | | password | String | Yes | User password. | ```bash $ curl -X POST -H "Content-Type: application/json" \ -d '{"email":"[email protected]","username":"dmytro.striletskyi","password":"dmytro.striletskyi.1337"}' \ http://localhost:8000/users/registration/ | python -m json.tool { "result": "User has been created." } ``` ##### Known errors | Argument | Level | Error message | Status code | | :-------: | :------------------------: | -------------------------------------------------- | :---------: | | - | General execution | User with specified e-mail address already exists. | 400 | | email | Input arguments validation | This field is required. | 400 | | password | Input arguments validation | This field is required. | 400 | * `POST | /users/email/confirm/` - request email confirm at the specified email address. Send the confirm link to the e-mail address. ##### Request parameters | Arguments | Type | Required | Description | | :-------: | :----: | :------: | ------------ | | email | String | Yes | User e-mail. | ```bash $ curl -X POST -d '{"email":"[email protected]"}' \ -H "Content-Type: application/json" \ http://localhost:8000/users/email/confirm/ | python -m json.tool { "result": "Message with confirmed registration link has been sent to the specified e-mail address." } ``` ##### Known errors | Argument | Level | Error message | Status code | | :------: | :------------------------: | -------------------------------------------------- | :---------: | | - | General execution | User with specified e-mail address does not exist. | 400 | | email | Input arguments validation | This field is required. | 400 | * `POST | /users/email/confirm/{user_identifier}/` - confirm registration at the specified user identifier. ##### Request parameters | Arguments | Type | Required | Description | | :-------------: | :----: | :------: | ---------------- | | user_identifier | String | Yes | User identifier. | ```bash $ curl -X POST http://localhost:8000/users/email/confirm/4b73ab1fc1f94c719420433e69408609/ \ -H "Content-Type: application/json" | python -m json.tool { "result": "Registration is confirmed by the specified identifier." } ``` ##### Known errors | Argument | Level | Error message | Status code | | :------: | :------------------------: | ------------------------------------------------- | :---------: | | - | General execution | User with specified identifier does not exist. | 400 | | - | General execution | User with specified identifier already confirmed. | 400 | | email | Input arguments validation | This field is required. | 400 | * `GET | /users/{username}/` - get user by username. ##### Request parameters | Arguments | Type | Required | Description | | :--------: | :-----: | :------: | -------------- | | username | String | Yes | User username. | ```bash $ curl -H "Content-Type: application/json" http://localhost:8000/users/dmytro.striletskyi/ | python -m json.tool { "result": { "id": 6, "is_active": true, "is_email_confirmed": true, "is_staff": false, "is_superuser": false, "last_login": null, "username": "dmytro.striletskyi" } } ``` * `GET | /users/` - get user from token. ##### Request parameters ```bash $ curl -H "Content-Type: application/json" \ -H "Authorization: JWT eyJ0e....eyJ1c2VyX2....sOx4S9zpC..." \ http://localhost:8000/users/ | python -m json.tool { "result": { "email": "[email protected]", "username": "dmytro.striletskyi" } } ``` * `DELETE | /users/{username}/` - delete user by username. ##### Request parameters | Arguments | Type | Required | Description | | :-------: | :----: | :------: | -------------- | | username | String | Yes | User username. | ```bash $ curl -X DELETE -H "Content-Type: application/json" \ -H "Authorization: JWT eyJ0e....eyJ1c2VyX2....sOx4S9zpC..." \ http://localhost:8000/users/dmytro.striletskyi/ | python -m json.tool { "result": "User has been deleted." } ``` ##### Known errors | Argument | Level | Error message | Status code | | :------: | :------------------------: | ------------------------------------------------------------------- | :---------: | | username | Input arguments validation | User with specified username does not exists. | 400 | | username | Input arguments validation | User has no authority to delete this account by specified username. | 400 | * `POST | /users/{username}/email/` - change user e-mail by username. ##### Request parameters | Arguments | Type | Required | Description | | :-------: | :----: | :------: | ---------------- | | username | String | Yes | User username. | | new_email | String | Yes | New user e-mail. | ```bash $ curl -X POST -d '{"new_email":"[email protected]"}' \ -H "Content-Type: application/json" \ -H "Authorization: JWT eyJ0e....eyJ1c2VyX2....sOx4S9zpC..." \ http://localhost:8000/users/dmytro.striletskyi/email/ | python -m json.tool { "result": "E-mail has been changed." } ``` ##### Known errors | Argument | Level | Error message | Status code | | :-------: | :------------------------: | --------------------------------------------- | :---------: | | username | Input arguments validation | User with specified username does not exists. | 400 | | new_email | Input arguments validation | This field is required. | 400 | * `POST | /users/{username}/password/` - change user password. ##### Request parameters | Arguments | Type | Required | Description | | :----------: | :----: | :------: | ------------------ | | old_password | String | Yes | Old user password. | | new_password | String | Yes | New user password. | ```bash $ curl -X POST -d '{"old_password":"dmytro.striletskyi.1337", "new_password":"dmytro.1337"}' \ -H "Content-Type: application/json" \ -H "Authorization: JWT eyJ0e....eyJ1c2VyX2....sOx4S9zpC..." \ http://localhost:8000/users/dmytro.striletskyi/password/ | python -m json.tool { "result": "Password has been changed." } ``` ##### Known errors | Argument | Level | Error message | Status code | | :----------: | :------------------------: | -------------------------------------------------- | :---------: | | - | General execution | User with specified e-mail address does not exist. | 400 | | - | General execution | The specified user password is incorrect. | 400 | | old_password | Input arguments validation | This field is required. | 400 | | new_password | Input arguments validation | This field is required. | 400 | * `POST | /users/password/recovery` - request password recovery for an existing user by his e-mail address. Send the recovery link to the e-mail address. ##### Request parameters | Arguments | Type | Required | Description | | :-------: | :----: | :------: | ------------ | | email | String | Yes | User e-mail. | ```bash $ curl -X POST -d '{"email":"[email protected]"}' \ -H "Content-Type: application/json" \ http://localhost:8000/users/password/recovery | python -m json.tool { "result": "Recovery link has been sent to the specified e-mail address." } ``` ##### Known errors | Argument | Level | Error message | Status code | | :------: | :------------------------: | -------------------------------------------------- | :---------: | | - | General execution | User with specified e-mail address does not exist. | 400 | | email | Input arguments validation | This field is required. | 400 | * `POST | /users/password/recovery/{user_identifier}` - send a new password to an existing user who previously requested a password recovery. ##### Request parameters | Arguments | Type | Required | Description | | :-------------: | :----: | :------: | ---------------- | | user_identifier | String | Yes | User identifier. | ```bash $ curl -X POST -H "Content-Type: application/json" \ http://localhost:8000/users/password/recovery/dd76b112f590494fb76e4954ee50961a/ | python -m json.tool { "result": "New password has been sent to e-mail address." } ``` | Argument | Level | Error message | Status code | | :------: | :---------------: | ---------------------------------------------------------- | :---------: | | - | General execution | User with specified e-mail address does not exist. | 400 | | - | General execution | Recovery password has been already sent to e-mail address. | 400 | * `GET | /users/{username}/profile/` - get user profile information by username. ##### Request parameters | Argument | Type | Required | Description | | :------: | :----: | :------: | -------------- | | username | String | Yes | User username. | ```bash $ curl -H "Content-Type: application/json" http://localhost:8000/users/john.smith/profile/ | python -m json.tool { "result": { "additional_information": "Software Engineer at Travis-CI.", "avatar_url": "", "facebook_url": "", "first_name": "John", "github_url": "", "last_name": "Smith", "linkedin_url": "https://www.linkedin.com/in/johnsmith", "location": "Berlin, Germany", "medium_url": "", "steemit_url": "", "telegram_url": "", "twitter_url": "", "user": { "id": 5, "is_active": true, "is_email_confirmed": true, "is_staff": false, "is_superuser": false, "last_login": null, "username": "john.smith" }, "user_id": 5, "website_url": "https://johnsmith.com" } } ``` ##### Known errors | Argument | Level | Error message | Status code | | :------: | :------------------------: | --------------------------------------------- | :---------: | | username | Input arguments validation | User with specified username does not exists. | 400 | * `POST | /users/{username}/profile/` - update user profile information. ##### Request parameters | Arguments | Type | Required | Description | | :--------------------: | :----: | :------: | ------------------------------------------ | | first_name | String | No | User's first name. | | last_name | String | No | User's last name. | | location | String | No | User location. | | additional_information | String | No | Additional information about the user. | | avatar_url | String | No | Reference to the user avatar. | | website_url | String | No | Reference to the user website. | | linkedin_url | String | No | Reference to the user account on Linkedin. | | twitter_url | String | No | Reference to the user account on Twitter. | | medium_url | String | No | Reference to the user account on Medium. | | github_url | String | No | Reference to the user account on GitHub. | | facebook_url | String | No | Reference to the user account on Facebook. | | telegram_url | String | No | Reference to the user account on Telegram. | | reddit_url | String | No | Reference to the user account on Reddit. | | slack_url | String | No | Reference to the user account on Slack. | | steemit_url | String | No | Reference to the user account on Steemit. | | wikipedia_url | String | No | Reference to the user page on Wikipedia. | ```bash $ curl -X POST http://localhost:8000/users/dmytro.striletskyi/profile/ \ -H "Content-Type: application/json" \ -H "Authorization: JWT eyJ0e....eyJ1c2VyX2....sOx4S9zpC..." \ -d $'{ "first_name": "John", "last_name": "Smith", "location": "Berlin, Germany", "additional_information": "Software Engineer at Travis-CI.", "website_url": "https://johnsmith.com", "linkedin_url": "https://www.linkedin.com/in/johnsmith" }' | python -m json.tool { "result": "User profile has been updated." } ``` * `POST | /users/{username}/avatars/` - upload user avatar. ##### Request parameters | Argument | Type | Required | Description | | :------: | :----: | :------: | -------------- | | username | String | Yes | User username. | ```bash $ curl -X POST -F "file=@/Users/dmytrostriletskyi/Desktop/default-user-logotype.png" \ -H -H "Authorization: JWT eyJ0e....eyJ1c2VyX2....sOx4S9zpC..." \ http://localhost:8000/users/dmytro.striletskyi/avatars/ | python -m json.tool { "result": "User avatar has been uploaded." } ``` ##### Known errors | Argument | Level | Error message | Status code | | :------: | :---------------: | -------------------------------------------------- | :---------: | | - | General execution | User with specified e-mail address does not exist. | 400 | ### Block producer * `GET | /block-producers/{block_producer_identifier}/` - get block producer by its identifier. ##### Request parameters | Arguments | Type | Required | Description | | :-----------------------: | :-----: | :------: | ----------------------------- | | block_producer_identifier | Integer | Yes | Identifier of block producer. | ```bash $ curl http://localhost:8000/block-producers/2/ -H "Content-Type: application/json" | python -m json.tool { "result": { "facebook_url": "https://www.facebook.com/bpcanada", "full_description": "# About Us\n\nFounded by a team of serial tech entrepreneurs, block producer Canada is headquartered in Montreal, Canada and is backed by reputable Canadian financial players. We believe that BP.IO will fundamentally change our economic and social systems and as such we are deeply committed to contribute to the growth of the ecosystem.", "github_url": "https://github.com/bpcanada", "id": 2, "linkedin_url": "https://www.linkedin.com/in/bpcanada", "location": "San Francisco, USA", "logo_url": "", "medium_url": "https://medium.com/@bpcanada", "name": "Block producer Canada", "reddit_url": "https://reddit.com/@bpcanada", "short_description": "Leading Block Producer - founded by a team of serial tech entrepreneurs, headquartered in Canada", "slack_url": "https://slack.com/bpcanada", "status": "active", "status_description": "", "steemit_url": "https://steemit.com/@bpcanada", "telegram_url": "https://t.me/bpcanada", "twitter_url": "https://twitter.com/bpcanada", "user": { "id": 2, "is_active": true, "is_email_confirmed": true, "is_staff": false, "is_superuser": false, "last_login": null, "username": "tony.stark" }, "user_id": 2, "website_url": "https://bpcanada.com", "wikipedia_url": "https://wikipedia.com/bpcanada" } } ``` ##### Known errors | Argument | Level | Error message | Status code | | :-------: | :---------------: | -------------------------------------------------------- | :---------: | | - | General execution | Block producer with specified identifier does not exist. | 400 | * `GET | /block-producers/` - get all block producers. ```bash $ curl http://localhost:8000/block-producers/ -H "Content-Type: application/json" | python -m json.tool { "result": [ { "facebook_url": "https://www.facebook.com/bpusa", "full_description": "# About Us\n\nFounded by a team of serial tech entrepreneurs, block producer USA is headquartered in San Francisco, USA and is backed by reputable American financial players. We believe that BP.IO will fundamentally change our economic and social systems and as such we are deeply committed to contribute to the growth of the ecosystem.", "github_url": "https://github.com/bpusa", "id": 3, "linkedin_url": "https://www.linkedin.com/in/bpusa", "location": "San Francisco, USA", "logo_url": "", "medium_url": "https://medium.com/@bpusa", "name": "Block producer USA", "reddit_url": "https://reddit.com/@bpusa", "short_description": "Leading Block Producer - founded by a team of serial tech entrepreneurs, headquartered in USA", "slack_url": "https://slack.com/bpusa", "status": "active", "status_description": "", "steemit_url": "https://steemit.com/@bpusa", "telegram_url": "https://t.me/bpusa", "twitter_url": "https://twitter.com/bpusa", "user": { "id": 2, "is_active": true, "is_email_confirmed": true, "is_staff": false, "is_superuser": false, "last_login": null, "username": "tony.stark" }, "user_id": 2, "website_url": "https://bpusa.com", "wikipedia_url": "https://wikipedia.com/bpusa" }, ... ] } ``` * `PUT | /block-producers/` - create a block producer. ##### Request parameters | Arguments | Type | Required | Description | | :---------------: | :----: | :------: | --------------------------------------------------- | | name | String | Yes | Name of the block producer. | | website_url | String | Yes | Reference to the block producer website. | | location | String | No | Location of the block producer. | | short_description | String | Yes | Short description about the block producer. | | full_description | String | No | Full detailed description about the block producer. | | logo_url | String | No | Reference to the block producer logotype. | | linkedin_url | String | No | Reference to the Linkedin. | | twitter_url | String | No | Reference to the Twitter. | | medium_url | String | No | Reference to the Medium. | | github_url | String | No | Reference to the GitHub. | | facebook_url | String | No | Reference to the Facebook. | | telegram_url | String | No | Reference to the Telegram. | | reddit_url | String | No | Reference to the Reddit. | | slack_url | String | No | Reference to the Slack. | | steemit_url | String | No | Reference to the Steemit. | | wikipedia_url | String | No | Reference to the Wikipedia. | ```bash $ curl -X PUT http://localhost:8000/block-producers/ \ -H "Content-Type: application/json" \ -H "Authorization: JWT eyJ0e....eyJ1c2VyX2....sOx4S9zpC..." \ -d $'{ "name": "Block Producer USA", "website_url": "https://bpusa.com", "location": "San Francisco, USA", "short_description": "Leading Block Producer - founded by a team of serial tech entrepreneurs, headquartered in USA", "linkedin_url": "https://www.linkedin.com/in/bpusa" }' | python -m json.tool { "result": { "facebook_url": "", "full_description": "", "github_url": "", "id": 6, "linkedin_url": "https://www.linkedin.com/in/bpusa", "location": "San Francisco, USA", "logo_url": "", "medium_url": "", "name": "Block Producer USA", "reddit_url": "", "short_description": "Leading Block Producer - founded by a team of serial tech entrepreneurs, headquartered in USA", "slack_url": "", "steemit_url": "", "telegram_url": "", "twitter_url": "", "user": { "email": "[email protected]", "id": 5, "is_active": true, "is_email_confirmed": true, "is_staff": false, "is_superuser": false, "last_login": null, "username": "dmytro.striletskyi" }, "user_id": 5, "website_url": "https://bpusa.com", "wikipedia_url": "" } } ``` ##### Known errors | Argument | Level | Error message | Status code | | :---------------: | :------------------------: | -------------------------------------------------- | :---------: | | - | General execution | User with specified e-mail address does not exist. | 400 | | name | Input arguments validation | This field is required. | 400 | | website_url | Input arguments validation | This field is required. | 400 | | short_description | Input arguments validation | This field is required. | 400 | * `POST | /block-producers/{block_producer_identifier}/` - update block producer information. ##### Request parameters | Arguments | Type | Required | Description | | :-----------------------: | :-----: | :------: | --------------------------------------------------- | | block_producer_identifier | Integer | Yes | Identifier of block producer. | | name | String | No | Name of the block producer. | | website_url | String | No | Reference to the block producer website. | | location | String | No | Location of the block producer. | | short_description | String | No | Short description about the block producer. | | full_description | String | No | Full detailed description about the block producer. | | logo_url | String | No | Reference to the block producer logotype. | | linkedin_url | String | No | Reference to the Linkedin. | | twitter_url | String | No | Reference to the Twitter. | | medium_url | String | No | Reference to the Medium. | | github_url | String | No | Reference to the GitHub. | | facebook_url | String | No | Reference to the Facebook. | | telegram_url | String | No | Reference to the Telegram. | | reddit_url | String | No | Reference to the Reddit. | | slack_url | String | No | Reference to the Slack. | | steemit_url | String | No | Reference to the Steemit. | | wikipedia_url | String | No | Reference to the Wikipedia. | ```bash $ curl -X POST http://localhost:8000/block-producers/2/ \ -H "Content-Type: application/json" \ -H "Authorization: JWT eyJ0e....eyJ1c2VyX2....sOx4S9zpC..." \ -d $'{ "name": "Block producer USA", "website_url": "https://bpusa.com", "location": "San Francisco, USA", "short_description": "Leading Block Producer - founded by a team of serial tech entrepreneurs, headquartered in USA", "full_description": "# About Us\\n\\nFounded by a team of serial tech entrepreneurs, block producer USA is headquartered in San Francisco, USA and is backed by reputable American financial players. We believe that BP.IO will fundamentally change our economic and social systems and as such we are deeply committed to contribute to the growth of the ecosystem.", "linkedin_url": "https://www.linkedin.com/in/bpusa" }' | python -m json.tool { "result": "Block producer has been updated." } ``` ##### Known errors | Argument | Level | Error message | Status code | | :------: | :---------------: | -------------------------------------------------------- | :---------: | | - | General execution | User with specified e-mail address does not exist. | 400 | | - | General execution | Block producer with specified identifier does not exist. | 400 | * `DELETE | /block-producers/{block_producer_identifier}/` - delete block producer by its identifier. ##### Request parameters | Arguments | Type | Required | Description | | :-----------------------: | :-----: | :------: | ----------------------------- | | block_producer_identifier | Integer | Yes | Identifier of block producer. | ```bash $ curl -X DELETE -H "Content-Type: application/json" \ -H "Authorization: JWT eyJ0e....eyJ1c2VyX2....sOx4S9zpC..." \ http://localhost:8000/block-producers/2/ | python -m json.tool { "result": "Block producer has been deleted." } ``` ##### Known errors | Argument | Level | Error message | Status code | | :-----------------------: | :------------------------: | ---------------------------------------------------------------------- | :---------: | | block_producer_identifier | Input arguments validation | Block producer with specified identifier does not exist. | 400 | | username | Input arguments validation | User has no authority to delete this block producer by its identifier. | 400 | * `GET | /block-producers/search/?phrase=block%20producer%20usa` - search block producers by phrase. ##### Request parameters | Arguments | Type | Required | Description | | :-------: | :----: | :------: | --------------------------------------------------- | | phrase | String | Yes | Phrase by which you can search for block producers. | ```bash $ curl http://localhost:8000/block-producers/search/?phrase=block%20producer%20usa \ -H "Content-Type: application/json" | python -m json.tool { "result": [ { "facebook_url": "https://www.facebook.com/bpusa", "full_description": "# About Us\n\nFounded by a team of serial tech entrepreneurs, block producer USA is headquartered in San Francisco, USA and is backed by reputable American financial players. We believe that BP.IO will fundamentally change our economic and social systems and as such we are deeply committed to contribute to the growth of the ecosystem.", "github_url": "https://github.com/bpusa", "id": 3, "linkedin_url": "https://www.linkedin.com/in/bpusa", "location": "San Francisco, USA", "logo_url": "", "medium_url": "https://medium.com/@bpusa", "name": "Block producer USA", "reddit_url": "https://reddit.com/@bpusa", "short_description": "Leading Block Producer - founded by a team of serial tech entrepreneurs, headquartered in USA", "slack_url": "https://slack.com/bpusa", "steemit_url": "https://steemit.com/@bpusa", "telegram_url": "https://t.me/bpusa", "twitter_url": "https://twitter.com/bpusa", "user": { "id": 2, "is_active": true, "is_email_confirmed": true, "is_staff": false, "is_superuser": false, "last_login": null, "username": "tony.stark" }, "user_id": 2, "website_url": "https://bpusa.com", "wikipedia_url": "https://wikipedia.com/bpusa" } ] } ``` * `PUT | /block-producers/{block_producer_identifier}/likes/` - to like or unlike block producer. ##### Request parameters | Arguments | Type | Required | Description | | :-----------------------: | :-----: | :------: | ----------------------------- | | block_producer_identifier | Integer | Yes | Identifier of block producer. | ```bash $ curl -X PUT \ -H "Content-Type: application/json" \ -H "Authorization: JWT eyJ0e....eyJ1c2VyX2....sOx4S9zpC..." \ http://localhost:8000/block-producers/2/likes/ | python -m json.tool { "result": "Block producer liking has been handled." } ``` ##### Known errors | Argument | Level | Error message | Status code | | :-------: | :---------------: | -------------------------------------------------------- | :---------: | | - | General execution | User with specified e-mail address does not exist. | 400 | | - | General execution | Block producer with specified identifier does not exist. | 400 | * `PUT | /block-producers/{block_producer_identifier}/comments/` - to comment a block producer. ##### Request parameters | Arguments | Type | Required | Description | | :-----------------------: | :-----: | :------: | -------------------------------- | | block_producer_identifier | Integer | Yes | Identifier of block producer. | | text | String | Yes | Comment text. Max length is 200. | ```bash $ curl -X PUT -d '{"text":"Great block producer!"}' \ -H "Content-Type: application/json" \ -H "Authorization: JWT eyJ0e....eyJ1c2VyX2....sOx4S9zpC..." \ http://localhost:8000/block-producers/2/comments/ | python -m json.tool { "result": "Block producer has been commented." } ``` * `GET | /block-producers/{block_producer_identifier}/likes/` - get block producer's likes. ##### Request parameters | Arguments | Type | Required | Description | | :-----------------------: | :-----: | :------: | ----------------------------- | | block_producer_identifier | Integer | Yes | Identifier of block producer. | ```bash $ curl -H "Content-Type: application/json" http://localhost:8000/block-producers/2/likes/ | python -m json.tool { "result": [ { "block_producer_id": 2, "id": 2, "user": { "id": 1, "is_active": true, "is_email_confirmed": true, "is_staff": false, "is_superuser": false, "last_login": null, "username": "john.smith" }, "user_id": 1 }, ... ] } ``` ##### Known errors | Argument | Level | Error message | Status code | | :-------: | :------------------------: | -------------------------------------------------------- | :---------: | | - | General execution | Block producer with specified identifier does not exist. | 400 | | - | Input arguments validation | This field is required. | 400 | * `POST | /block-producers/{block_producer_identifier}/avatars/` - upload block producer avatar. ##### Request parameters | Arguments | Type | Required | Description | | :-----------------------: | :-----: | :------: | ----------------------------- | | block_producer_identifier | Integer | Yes | Identifier of block producer. | ```bash $ curl -X POST -F "file=@/Users/dmytrostriletskyi/Desktop/default-user-logotype.png" \ -H -H "Authorization: JWT eyJ0e....eyJ1c2VyX2....sOx4S9zpC..." \ http://localhost:8000/block-producers/2/avatars/ | python -m json.tool { "result": "Block producer avatar has been uploaded." } ``` * `GET | /block-producers/{block_producer_identifier}/comments/` - get block producer's comments. ##### Request parameters | Arguments | Type | Required | Description | | :-----------------------: | :-----: | :------: | ----------------------------- | | block_producer_identifier | Integer | Yes | Identifier of block producer. | ```bash $ curl -H "Content-Type: application/json" http://localhost:8000/block-producers/2/comments/ | python -m json.tool { "result": [ { "block_producer_id": 2, "created_at": 1560950377.0, "id": 10, "text": "Great block producer!", "user": { "id": 3, "is_active": true, "is_email_confirmed": true, "is_staff": false, "is_superuser": false, "last_login": null, "username": "paul.rudd" }, "user_id": 3 }, ... ] } ``` ##### Known errors | Argument | Level | Error message | Status code | | :-------: | :------------------------: | ----------------------------------------------------------- | :---------: | | - | General execution | Block producer with specified identifier does not exist. | 400 | | - | Input arguments validation | This field is required. | 400 | | - | Input arguments validation | Ensure this value has at most 200 characters (it has more). | 400 | * `GET | /block-producers/likes/numbers/` - get block producer's likes numbers. ```bash $ curl -H "Content-Type: application/json" http://localhost:8000/block-producers/likes/numbers/ | python -m json.tool { "result": [ { "block_producer_id": 3, "likes": 3 }, { "block_producer_id": 4, "likes": 3 }, { "block_producer_id": 2, "likes": 3 }, { "block_producer_id": 1, "likes": 3 } ] } ``` * `GET | /block-producers/comments/numbers/` - get block producer's comments numbers. ```bash $ curl -H "Content-Type: application/json" http://localhost:8000/block-producers/comments/numbers/ | python -m json.tool { "result": [ { "block_producer_id": 3, "comments": 3 }, { "block_producer_id": 4, "comments": 3 }, { "block_producer_id": 2, "comments": 3 }, { "block_producer_id": 1, "comments": 3 } ] } ``` ## Development Clone the project with the following command: ```bash $ git clone https://github.com/Remmeauth/block-producers-directory-back.git $ cd block-producers-directory-back ``` The project requires the following environment variables: ```bash export SENDGRID_API_KEY='PZqNQgmk9dJcw.yJ0eNzZ0sVpa5NzZ0sVpa5.eyJ1c2VyX2eyJ1c2VyX2' export TELEGRAM_BOT_TOKEN='237187656:AAFD8Zc_7-g2NkQR0gYaIicJVjhUSb6yOXo' export TELEGRAM_BOT_HOST='https://directory-telegram-bot-production.com' ``` Instead of default values above, request workable and real ones from [@dmytrostriletskyi](https://github.com/dmytrostriletskyi) or [@yelaginj](https://github.com/yelaginj). To build the project, use the following command: ```bash $ docker-compose -f docker-compose.develop.yml build ``` To run the project, use the following command. It will start the server and occupate current terminal session: ```bash $ docker-compose -f docker-compose.develop.yml up ``` If you need to enter the bash of the container, use the following command: ```bash $ docker exec -it block-producers-directory-back bash ``` Clean all containers with the following command: ```bash $ docker rm $(docker ps -a -q) -f ``` Clean all images with the following command: ```bash $ docker rmi $(docker images -q) -f ``` ## Production To build the project, use the following command: ```bash $ docker build -t block-producers-directory-back . -f Dockerfile.production ``` To run the project, use the following command. It will start the server and occupate current terminal session: ```bash $ docker run -p 8000:8000 -e PORT=8000 -e DEBUG=False -e SECRET_KEY=t5dcw2llz8eshqp \ -e DATABASE_URL='sqlite:///db.sqlite3' -e ENVIRONMENT=REVIEW-APP \ -v $PWD:/block-producers-directory-back \ --name block-producers-directory-back block-producers-directory-back ```
42.144341
371
0.513884
eng_Latn
0.623378
89b336f4fa74cf7ff95d157495938f2c7862c302
203
md
Markdown
examples/search-filter/substringof/reactjs.md
tusmester/docs-temp
eac05be4326eb6fdb71c1bb800a10674b81ede8c
[ "MIT" ]
1
2022-01-31T13:51:01.000Z
2022-01-31T13:51:01.000Z
examples/search-filter/substringof/reactjs.md
tusmester/docs-temp
eac05be4326eb6fdb71c1bb800a10674b81ede8c
[ "MIT" ]
60
2020-04-21T10:31:32.000Z
2021-11-05T08:14:00.000Z
examples/search-filter/substringof/reactjs.md
tusmester/docs-temp
eac05be4326eb6fdb71c1bb800a10674b81ede8c
[ "MIT" ]
10
2020-02-11T00:47:50.000Z
2020-04-07T02:31:45.000Z
```javascript const result = await repository.loadCollection({ path: '/Root/Content/IT/Document_Library', oDataOptions: { filter: "substringof('Lorem', Description) eq true" } }) ```
22.555556
57
0.660099
yue_Hant
0.681404
89b3e8f1165984f06cd2d1415c1b6dc8c1f686b5
95
md
Markdown
CHANGELOG.md
iketiunn-forks/firecms
305d4327463343585ab31015e000a6ee67fb36e8
[ "MIT" ]
null
null
null
CHANGELOG.md
iketiunn-forks/firecms
305d4327463343585ab31015e000a6ee67fb36e8
[ "MIT" ]
null
null
null
CHANGELOG.md
iketiunn-forks/firecms
305d4327463343585ab31015e000a6ee67fb36e8
[ "MIT" ]
null
null
null
### The changelog has moved You can find it in [this link](https://firecms.co/docs/changelog)
23.75
65
0.726316
eng_Latn
0.994989
89b440886f89541434027b221ed08339daca6f0a
427
md
Markdown
gol-rs/README.md
Tajnymag/vsb-pai-game-of-life
f0e19d96bd948a0507d5bf5cd0fd42bb1f22ea71
[ "MIT" ]
null
null
null
gol-rs/README.md
Tajnymag/vsb-pai-game-of-life
f0e19d96bd948a0507d5bf5cd0fd42bb1f22ea71
[ "MIT" ]
null
null
null
gol-rs/README.md
Tajnymag/vsb-pai-game-of-life
f0e19d96bd948a0507d5bf5cd0fd42bb1f22ea71
[ "MIT" ]
null
null
null
# Rust + SDL2 implementation of Game of Life ## About This version uses Rust with SDL2 for visualization of the game board. ## Usage ```bash # default seed cargo run --package gol-rs --bin gol-rs --release # custom seed (.rle file) cargo run --package gol-rs --bin gol-rs --release <custom_seed_file_path> ``` ## Build The [Usage](#Usage) instructions above should be enough to build and run the project on your system.
21.35
100
0.721311
eng_Latn
0.974129
89b4a22ead83da4270bfdf4476d9282afd08e40c
226
md
Markdown
Coding-Challenges/shiftingStrings/README.md
FergusDevelopmentLLC/Coders-Workshop
3513bd5f79eaa85b4d2a648c5f343a224842325d
[ "MIT" ]
33
2019-12-02T23:29:47.000Z
2022-03-24T02:40:36.000Z
Coding-Challenges/shiftingStrings/README.md
FergusDevelopmentLLC/Coders-Workshop
3513bd5f79eaa85b4d2a648c5f343a224842325d
[ "MIT" ]
39
2020-01-15T19:28:12.000Z
2021-11-26T05:13:29.000Z
Coding-Challenges/shiftingStrings/README.md
FergusDevelopmentLLC/Coders-Workshop
3513bd5f79eaa85b4d2a648c5f343a224842325d
[ "MIT" ]
49
2019-12-02T23:29:53.000Z
2022-03-03T01:11:37.000Z
# Shifting Strings Given two strings A and B, return whether or not A can be shifted some number of times to get B. For example, if A is `abcde` and B is `cdeab`, return `true`. If A is `abc` and B is `acb`, return `false`.
37.666667
107
0.699115
eng_Latn
0.99997
89b65c25e022844322c787d0659b4e1f0b5ce0a3
1,632
md
Markdown
README.md
jkcclemens/travis_ssh_deploy
35c5b65e1f3e42a4ab529ff0baa052a697ff0bb6
[ "MIT" ]
1
2018-09-25T19:54:37.000Z
2018-09-25T19:54:37.000Z
README.md
jkcclemens/travis_ssh_deploy
35c5b65e1f3e42a4ab529ff0baa052a697ff0bb6
[ "MIT" ]
null
null
null
README.md
jkcclemens/travis_ssh_deploy
35c5b65e1f3e42a4ab529ff0baa052a697ff0bb6
[ "MIT" ]
null
null
null
# travis_ssh_deploy Travis SSH Deploy is a flexible system to have Travis CI deploy to your server automatically without using any third-party services. In order to achieve this goal, SSH is used. Travis generates a SSH key for each repository it runs builds for, and that key can be used to allow Travis access to your server. Obviously, allowing Travis unrestricted access to a shell is a bad idea, so I whipped together this program that you can limit it to. The program accepts uploads and reads a configuration file on your server to determine what to do with them. ## Building Build Travis SSH Deploy's receiving end (the end that goes on your server) using `cargo`. ```rust cargo build --release --bin receive ``` I would recommend you build the sending end and supply it to Travis somehow so that you can create your deploy script using it. ```rust cargo build --release --bin send ``` ## Usage Firstly, get your Travis repo's pubkey. ```sh travis pubkey -r owned/repo ``` Add the pubkey to your `~/.ssh/authorized_keys` on your server like so. ... command="/path/to/receive /path/to/config.yaml" ssh-rsa AAAA... ... Now, Travis will be able to SSH to your server, but it will always run the `receive` program. To have it work, make Travis run the following commands. ```sh /path/to/send your files here | ssh you@yourserver deploy deploy_plan_name ``` *Alternatively*, you can look at the `protocol` file in the repository and manually construct the byte stream to send over SSH's stdin. Be sure to add a deploy plan to your configuration file. See the file in the repository for an example.
28.631579
100
0.751838
eng_Latn
0.999036
89b6b7d2b5b0029b70b91ec3e991d5aea80ab67b
327
md
Markdown
themes/comply-soc2/narratives/security.md
msimerson/comply
e2281b5fe3cda4931e1f56baaf74f36ccf7f75a6
[ "Apache-2.0" ]
1
2019-04-19T22:55:11.000Z
2019-04-19T22:55:11.000Z
themes/comply-soc2/narratives/security.md
msimerson/comply
e2281b5fe3cda4931e1f56baaf74f36ccf7f75a6
[ "Apache-2.0" ]
null
null
null
themes/comply-soc2/narratives/security.md
msimerson/comply
e2281b5fe3cda4931e1f56baaf74f36ccf7f75a6
[ "Apache-2.0" ]
1
2018-09-08T09:35:52.000Z
2018-09-08T09:35:52.000Z
name: Security Architecture Narrative acronym: SEN satisfies: TSC: - CC6.6 - CC6.7 - CC7.1 - CC7.2 majorRevisions: - date: Jun 1 2018 comment: Initial document --- # Security Architecture Narrative Here we narrate why our org satisfies the control keys listed in the YML block # Template Coming Soon
17.210526
78
0.703364
eng_Latn
0.916783
89b6dfe831587e9882a9ab2624c84769e478cbdd
5,671
md
Markdown
articles/active-directory/hybrid/reference-connect-dirsync-deprecated.md
changeworld/azure-docs.pt-pt
8a75db5eb6af88cd49f1c39099ef64ad27e8180d
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/active-directory/hybrid/reference-connect-dirsync-deprecated.md
changeworld/azure-docs.pt-pt
8a75db5eb6af88cd49f1c39099ef64ad27e8180d
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/active-directory/hybrid/reference-connect-dirsync-deprecated.md
changeworld/azure-docs.pt-pt
8a75db5eb6af88cd49f1c39099ef64ad27e8180d
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Upgrade de DirSync e Azure AD Sync [ Microsoft Docs description: Descreve como atualizar de DirSync e Azure AD Sync para Azure AD Connect. services: active-directory documentationcenter: '' author: billmath manager: daveba editor: '' ms.assetid: bd68fb88-110b-4d76-978a-233e15590803 ms.service: active-directory ms.workload: identity ms.tgt_pltfrm: na ms.devlang: na ms.topic: reference ms.date: 07/13/2017 ms.subservice: hybrid ms.author: billmath ms.custom: H1Hack27Feb2017 ms.collection: M365-identity-device-management ms.openlocfilehash: 803fcc0161f2a092006e60db5a98f5bf18dce1c1 ms.sourcegitcommit: 2ec4b3d0bad7dc0071400c2a2264399e4fe34897 ms.translationtype: MT ms.contentlocale: pt-PT ms.lasthandoff: 03/27/2020 ms.locfileid: "60381183" --- # <a name="upgrade-windows-azure-active-directory-sync-and-azure-active-directory-sync"></a>Atualizar o Windows Azure Active Directory Sync e o Azure Active Directory Sync O Azure AD Connect é a melhor forma de ligar o seu diretório no local ao Azure AD e ao Office 365. Esta é uma ótima altura para fazer upgrade para o Azure AD Connect do Windows Azure Ative Directory Sync (DirSync) ou Azure AD Sync, uma vez que estas ferramentas estão agora deprectadas e já não são suportadas a partir de 13 de abril de 2017. As duas ferramentas de sincronização de identidade que são depreciadas foram oferecidas para clientes florestais individuais (DirSync) e para clientes multiflorestais e outros clientes avançados (Azure AD Sync). Estas ferramentas mais antigas foram substituídas por uma única solução que está disponível para todos os cenários: Azure AD Connect. Oferece novas funcionalidades, melhorias de funcionalidades e suporte para novos cenários. Para poder continuar a sincronizar os seus dados de identidade no local para o Azure AD e office 365, recomendamos vivamente que faça o upgrade para o Azure AD Connect. A Microsoft não garante que estas versões mais antigas funcionem depois de 31 de dezembro de 2017. O último lançamento do DirSync foi lançado em julho de 2014 e o último lançamento do Azure AD Sync foi lançado em maio de 2015. ## <a name="what-is-azure-ad-connect"></a>O que é o Azure AD Connect Azure AD Connect é o sucessor do DirSync e do Azure AD Sync. Combina todos os cenários que estes dois apoiaram. Pode ler mais sobre isso na Integração das suas identidades no local com o [Diretório Ativo Azure](whatis-hybrid-identity.md). ## <a name="deprecation-schedule"></a>Horário de depreciação | Date | Comentário | | --- | --- | | 13 de abril de 2016 |O Windows Azure Ative Directory Sync ("DirSync") e o Microsoft Azure Ative Directory Sync ("Azure AD Sync") são anunciados como depreciados. | | 13 de abril de 2017 |O apoio termina. Os clientes deixarão de poder abrir um caso de suporte sem atualizar primeiro o Azure AD Connect. | |31 de dezembro de 2017|A Azure AD já não pode aceitar comunicações do Windows Azure Ative Directory Sync ("DirSync") e do Microsoft Azure Ative Directory Sync ("Azure AD Sync"). ## <a name="how-to-transition-to-azure-ad-connect"></a>Como transitar para Azure AD Connect Se estiver a executar o DirSync, existem duas formas de atualizar: atualização no local e implementação paralela. Uma atualização no local é recomendada para a maioria dos clientes e se você tiver um sistema operativo recente e menos de 50.000 objetos. Noutros casos, recomenda-se fazer uma implementação paralela onde a configuração do DirSync é transferida para um novo servidor que executa o Azure AD Connect. | Solução | Cenário | | --- | --- | | [Atualizar do DirSync](how-to-dirsync-upgrade-get-started.md) |<li>Se tiver um servidor DirSync já existente em execução.</li> | | [Upgrade do Azure AD Sync](how-to-upgrade-previous-version.md) |<li>Se estiver a mudar-se do Azure AD Sync.</li> | Se quiser ver como fazer uma atualização no local do DirSync para o Azure AD Connect, consulte este vídeo do Canal 9: > [!VIDEO https://channel9.msdn.com/Series/Azure-Active-Directory-Videos-Demos/Azure-Active-Directory-Connect-in-place-upgrade-from-legacy-tools/player] > > ## <a name="faq"></a>FAQ **P: Recebi uma notificação por e-mail da Equipa Azure e/ou uma mensagem do centro de mensagens Office 365, mas estou a usar o Connect.** A notificação também foi enviada aos clientes que utilizam o Azure AD Connect com um número de construção número 1.0. \*.0 (utilizando uma libertação pré-1.1). A Microsoft recomenda aos clientes que se mantenham atuais com os lançamentos do Azure AD Connect. A funcionalidade [de atualização automática](how-to-connect-install-automatic-upgrade.md) introduzida no 1.1 facilita a instalação de uma versão recente do Azure AD Connect. **P: DirSync/Azure AD Sync deixará de funcionar a 13 de abril de 2017?** DirSync/Azure AD Sync continuará a trabalhar no dia 13 de abril de 2017. No entanto, a Azure AD pode deixar de aceitar comunicações da DirSync/Azure AD Sync após 31 de dezembro de 2017. **P: Quais as versões DirSync que posso atualizar?** É suportado para atualizar a partir de qualquer versão DirSync atualmente em uso. **P: E o Conector Azure AD para FIM/MIM?** O Conector Azure AD para FIM/MIM **não** foi anunciado como depreciado. Está no congelamento de **recursos;** nenhuma nova funcionalidade é adicionada e não recebe correções de bugs. A Microsoft recomenda aos clientes que o utilizem para planear em mudar-se para o Azure AD Connect. Recomenda-se vivamente que não inicie novas implementações utilizando-a. Este Conector será anunciado depreceed no futuro. ## <a name="additional-resources"></a>Recursos Adicionais * [Integrar as identidades no local ao Azure Active Directory](whatis-hybrid-identity.md)
77.684932
704
0.785399
por_Latn
0.997929
89b6e23fce32c5136b739da78b478b73e02d075e
2,195
md
Markdown
articles/supply-chain/transportation/transportation-management-number-sequence.md
MicrosoftDocs/Dynamics-365-Operations.hu-hu
52e56eef99cc41887360f8961e7ccd2adfa21fd1
[ "CC-BY-4.0", "MIT" ]
3
2020-05-18T17:14:11.000Z
2021-04-20T21:13:46.000Z
articles/supply-chain/transportation/transportation-management-number-sequence.md
MicrosoftDocs/Dynamics-365-Operations.hu-hu
52e56eef99cc41887360f8961e7ccd2adfa21fd1
[ "CC-BY-4.0", "MIT" ]
7
2017-12-08T15:20:43.000Z
2021-02-17T13:09:53.000Z
articles/supply-chain/transportation/transportation-management-number-sequence.md
MicrosoftDocs/Dynamics-365-Operations.hu-hu
52e56eef99cc41887360f8961e7ccd2adfa21fd1
[ "CC-BY-4.0", "MIT" ]
3
2019-10-12T18:21:04.000Z
2021-10-13T09:24:54.000Z
--- title: Szállításkezelési számsorozat description: Ez a témakör azt mutatja be, hogyan lehet beállítani számsorozatokat a szállításkezeléshez. author: Henrikan ms.date: 10/16/2020 ms.topic: article ms.prod: '' ms.technology: '' audience: Application User ms.reviewer: kamaybac ms.search.region: Global ms.author: henrikan ms.search.validFrom: 2020-10-16 ms.dyn365.ops.version: 10.0.14 ms.openlocfilehash: 080f72da1b5b00d189f0c7916354cbf2d7093370 ms.sourcegitcommit: 3b87f042a7e97f72b5aa73bef186c5426b937fec ms.translationtype: HT ms.contentlocale: hu-HU ms.lasthandoff: 09/29/2021 ms.locfileid: "7576136" --- # <a name="transportation-management-number-sequence"></a>Szállításkezelési számsorozat [!include [banner](../includes/banner.md)] A szállításkezelési modul **Számsorozatok** lapján állíthatja be a különböző pro számokat. A pro számokat a szállítmányozók használják az egyes szállítmányok haladásának rendszerezésére és nyomon követésére. ## <a name="create-a-number-sequence-for-a-pro-number"></a>Hozzon létre egy számsorozatot egy pro számhoz. Egy pro számhoz tartozó számsorozat létrehozásához tegye a következőket: 1. Ugorjon a **Szállításkezelés \> Beállítás \> Szállítmányozók \> Számsorozatok** lehetőségre. 1. Válassza ki az **Új** lehetőséget egy új számsorozat létrehozásához. 1. Adjon meg egy egyedi Azonosítót és a számsorozat jól felismerhető nevét. 1. A **Számsorozat típusa** mezőben a *Pro szám* az egyetlen lehetőség. 1. A **Számjegyellenőrzés** mezőben a *Számjegyellenőrzés* az egyetlen lehetőség, és általános motorként van beállítva. 1. A **Sorozat** gyorslapján adja meg a sorszám adatait. 1. Zárja be a lapot. ## <a name="link-a-number-sequence-to-a-shipping-carrier"></a>Számsorozat csatolása szállítmányozóhoz Ha egy számsorozatot a szállítmányozóhoz kíván kapcsolni, hajtsa végre a következő lépéseket: 1. Ugorjon a **Szállításkezelés \> Beállítás \> Szállítmányozók \> Szállítmányozók** lehetőségre. 1. Válasszon ki egy szállítmányozót. 1. Válassza ki a **Szerkesztés** opciót. 1. Válasszon egy beállítást az **Áttekintés** gyorslap **Pro számsorozarok** mezőjében. 1. Zárja be a lapot. [!INCLUDE[footer-include](../../includes/footer-banner.md)]
43.039216
207
0.789977
hun_Latn
1.000006
89b85647a7bd96d3bd35b704329109910b45b296
5,525
md
Markdown
_posts/2019-01-25-Download-mercury-alternator-817119-2-installation-guide.md
Kirsten-Krick/Kirsten-Krick
58994392de08fb245c4163dd2e5566de8dd45a7a
[ "MIT" ]
null
null
null
_posts/2019-01-25-Download-mercury-alternator-817119-2-installation-guide.md
Kirsten-Krick/Kirsten-Krick
58994392de08fb245c4163dd2e5566de8dd45a7a
[ "MIT" ]
null
null
null
_posts/2019-01-25-Download-mercury-alternator-817119-2-installation-guide.md
Kirsten-Krick/Kirsten-Krick
58994392de08fb245c4163dd2e5566de8dd45a7a
[ "MIT" ]
null
null
null
--- layout: post comments: true categories: Other --- ## Download Mercury alternator 817119 2 installation guide book "What. People mercury alternator 817119 2 installation guide. " Her smile wasn't the least mouse like. He was real bad this evening. And he still didn't believe in ghosts, it was as much weeds and creeping sandbur as grass, in the Siberian Polar Sea. Dredging gave but a scanty yield here, lightly dozing. Of mournfully whistling trains in the night. constantly. Chan had said, wearing khaki shorts and a white T-shirt with a Curtis doesn't know the price of beans or why the price is of sudden importance to the caretaker at this humbled and galled her, and injections, yet the boy's immortal soul made him as parking lot of a busy truck stop near Provo. Oh, him be dreamin' what Lani girl gonna taste like. " abstract of the observations of temperature at Pitlekaj from the They jolted on all the next day through a summer thundershower or two and carne at dusk to Kembermouth, "I'm a painter," the painter said over his shoulder, chilled him and caused him to turn in circles. The pleasant heat of exertion, twisting the baseball cap in his hands, but this was even worse: having his bright image of her sideways at Ike and Eli and Zeke and me, I make free with names. mind, as the Beatles' "Hello Goodbye" rocketed up the charts, but has risen to her feet. ) SPRENG. Turnabout was satisfying. refused to dwell on or even to lament adversities, and Occidena to the west, it appears as if these lands had rather Nolly shuddered, too. He the motor home returned fully fueled to Interstate 15, we lay-to yoke the dogs, but that was following an official invitation extended to professionals; it didn't include fathers and sons who wanted to do some personal Sightseeing, but "You got about as much common sense as a bucket. A few miners were working at the end of a long level. " Then he handselled her with fifty dinars and they drank and the cups went round among them; and her seller said mercury alternator 817119 2 installation guide her, she got even more frightened, California 92658 sometimes told women that he remembered it. He'll do no harm while I'm with you. perhaps. Barry?" Island on Spitzbergen, long and easy, wolf packs prowling the Heights. She looked up into his face for a moment. oversees maintenance of the ghost town, these two Cinderellas Curtis pushes open the bedroom door. mercury alternator 817119 2 installation guide if they catch him, Dr. The Khalif El Hakim and the Merchant ccclxxxix Later, 1880, although I hope nest. " "By Allah, which Jay didn't fully understand, iii, the first right out of me with that blue-light mercury alternator 817119 2 installation guide of theirs, the king summoned his vizier and bade him tell the story of the king who lost kingdom and wife and wealth. southward towards winter with their large herds of reindeer. The And anyone who could survive whatever catastrophe had left him with this He mercury alternator 817119 2 installation guide, they race into a dry slough of soft sand. A fleecefell, the skirl of a stiffening wind, excited by the prospect of the adolescence? And I won't disturb them?" "If it is a little girl, play of-Zorphwar has been possible only against a set of Zorph warships under the unimaginative control of the computer, four. "We have to set a date. They only started trying ten minutes ago. I trust that you will see to the necessary arrangements. This time, Prince, shattering a display window, slipping around the comer ahead of him. ii. " Poor Leonard didn't lie well; his boyish voice thickened with as soon as possible, he'd learn to listen to Jean, The Twelfth. 111 toward the pumps outside, stood on the bed; its red lid lay to one side, i, downward to mercury alternator 817119 2 installation guide earth. This He looked at her questioningly. After wiping the cobwebs off each other and rinsing then- hands with bottled water, a panorama of all that was very fat. defrayed to a greater or less extent by Dr. Warrington Shimonoseki. ' That night Amos again went to the brig. merchant TROFIMOV, but at last tore it off! up and out of the armchair as though mercury alternator 817119 2 installation guide were a hog rising from its slough, or perhaps longer. It had been converted to apartments As dusk faded at the windows and the motor home fell into gloom relieved only by the glow of one lamp natives are transported on the Yenisej, she made the song called The Lament for the White Enchanter, Junior remembered the very words the detective had used: They say she died in a traffic accident, she saw frighteningly little that matched her new definition. When caught staring, because she had lived in a more modest age than this, the little kid on the 22nd, Mercury alternator 817119 2 installation guide asked about her cooking. up and out of the armchair as though he were a hog rising from its slough, past an array of deep fryers full He seemed to spend his twelfth and thirteenth years in a semi-trance. "Anyhow, and then grasped the sides of the podium again, till they had eaten their fill of food and the tables were removed; whereupon the king recounted to them the story of El Abbas and they mercury alternator 817119 2 installation guide leave of him and went away, and he bade the latter depart to his own house. objecting. " She made one gesture of her hand, he seizes the opportunity and runs from Here was the final knave of spades. The two of them had managed to salvage most of the dome.
613.888889
5,405
0.792398
eng_Latn
0.999919
89b99fa7ec96a904c73bc707cb1bbe36756068a3
170
md
Markdown
site/content/post/malin.md
daanasma/blog-south-america
11c8f4784abd6d55dbc6277e283ae52086f12a0f
[ "MIT" ]
null
null
null
site/content/post/malin.md
daanasma/blog-south-america
11c8f4784abd6d55dbc6277e283ae52086f12a0f
[ "MIT" ]
7
2021-03-09T23:36:03.000Z
2022-02-26T20:21:11.000Z
site/content/post/malin.md
daanasma/blog-south-america
11c8f4784abd6d55dbc6277e283ae52086f12a0f
[ "MIT" ]
null
null
null
--- title: Malin date: 2019-11-20T20:47:03.742Z description: dit is mijn postje image: /img/about-direct-sourcing.jpg --- qsdfqsdfqsdfqs ![](/img/about-jumbotron.jpg)
14.166667
37
0.723529
nld_Latn
0.27442
89bb7389c81600d06847b9aee7db5623a022fe9f
100
md
Markdown
src/ReviewAtom.md
arelra/atoms-rendering
5db298b9f1b1674ddfe7049dc1434adb1a64abec
[ "Apache-2.0" ]
6
2020-05-26T11:52:11.000Z
2021-05-30T13:40:57.000Z
src/ReviewAtom.md
arelra/atoms-rendering
5db298b9f1b1674ddfe7049dc1434adb1a64abec
[ "Apache-2.0" ]
222
2020-05-27T11:09:12.000Z
2022-03-31T15:02:20.000Z
src/ReviewAtom.md
arelra/atoms-rendering
5db298b9f1b1674ddfe7049dc1434adb1a64abec
[ "Apache-2.0" ]
3
2021-10-04T17:02:03.000Z
2021-10-17T20:57:58.000Z
The ReviewAtom is defined but there have never been instances of it. No need for an implementation.
50
99
0.81
eng_Latn
0.999913
89bb759bd96ef53f2a0a9c1bf727518c156de4ba
2,232
md
Markdown
README.md
gregpabian/mediamonitor
d16257f01a1a5e1222fad474c3af3dd4505ffa3e
[ "Unlicense" ]
1
2019-03-25T14:22:59.000Z
2019-03-25T14:22:59.000Z
README.md
gregpabian/mediamonitor
d16257f01a1a5e1222fad474c3af3dd4505ffa3e
[ "Unlicense" ]
4
2019-03-21T22:43:32.000Z
2019-03-25T08:39:25.000Z
README.md
gregpabian/mediamonitor
d16257f01a1a5e1222fad474c3af3dd4505ffa3e
[ "Unlicense" ]
null
null
null
# Media Monitor ![Media Monitor Icon](images/icon.png) A browser extension for monitoring HTML5 media elements. ![Screenshot](images/screenshot_1280x800.png) ## Features * support for tracking multiple media elements at once * live media properties preview * media events timeline * additional media controls and more! ## Available version A [Chrome Extension](https://chrome.google.com/webstore/detail/media-monitor/jhmldnninjninhlnofnkoijkdkakelco) is currently available. Support for more browsers is coming soon! ## Upcoming features * additional text tracks controls ## Development Clone the repository and install dependencies with: ``` npm i ``` The tools is written in Vue.js and thus can be controlled with Vue CLI (when installed): ``` vue ui ``` Otherwise, you can use the following commands: ### Serve ``` npm run serve ``` A test page suitable for development can be found here: `tests/dev/index.html`. It loads the tool that is served with the command above inside of an `<iframe>` element with some test content next to it. ### Build ``` npm run build ``` ### Lint ``` npm run lint ``` ### Test ``` npm run test:unit ``` ## Licence Copyright &copy; 2019 Gaupe Software Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25.655172
176
0.769713
eng_Latn
0.86927
89bb9e346313bd022572409b94c862438b043729
21,777
md
Markdown
articles/app-service-mobile/app-service-mobile-xamarin-forms-get-started-push.md
changeworld/azure-docs.cs-cz
cbff9869fbcda283f69d4909754309e49c409f7d
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/app-service-mobile/app-service-mobile-xamarin-forms-get-started-push.md
changeworld/azure-docs.cs-cz
cbff9869fbcda283f69d4909754309e49c409f7d
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/app-service-mobile/app-service-mobile-xamarin-forms-get-started-push.md
changeworld/azure-docs.cs-cz
cbff9869fbcda283f69d4909754309e49c409f7d
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Přidání nabízených oznámení do aplikace Xamarin.Forms description: Přečtěte si, jak pomocí služeb Azure odesílat nabízená oznámení pro více platforem do aplikací Xamarin.Forms. ms.assetid: d9b1ba9a-b3f2-4d12-affc-2ee34311538b ms.tgt_pltfrm: mobile-xamarin ms.devlang: dotnet ms.topic: article ms.date: 06/25/2019 ms.openlocfilehash: f23ac2d693492695c398893c103d5a77a0e93129 ms.sourcegitcommit: 2ec4b3d0bad7dc0071400c2a2264399e4fe34897 ms.translationtype: MT ms.contentlocale: cs-CZ ms.lasthandoff: 03/27/2020 ms.locfileid: "77461466" --- # <a name="add-push-notifications-to-your-xamarinforms-app"></a>Přidání nabízených oznámení do aplikace Xamarin.Forms [!INCLUDE [app-service-mobile-selector-get-started-push](../../includes/app-service-mobile-selector-get-started-push.md)] ## <a name="overview"></a>Přehled V tomto kurzu přidáte nabízená oznámení do všech projektů, které vznikly z [Xamarin.Forms rychlý start](app-service-mobile-xamarin-forms-get-started.md). To znamená, že nabízené oznámení je odesláno všem klientům napříč platformami při každém vložení záznamu. Pokud nepoužíváte stažený projekt serveru rychlého startu, budete potřebovat balíček rozšíření nabízených oznámení. Další informace naleznete [v tématu Práce s back-endovým serverem .NET SDK pro mobilní aplikace Azure](app-service-mobile-dotnet-backend-how-to-use-server-sdk.md). ## <a name="prerequisites"></a>Požadavky Pro iOS budete potřebovat členství v [Programu pro vývojáře Apple](https://developer.apple.com/programs/ios/) a fyzické iOS zařízení. [Simulátor iOS nepodporuje nabízená oznámení](https://developer.apple.com/library/ios/documentation/IDEs/Conceptual/iOS_Simulator_Guide/TestingontheiOSSimulator.html). ## <a name="configure-a-notification-hub"></a><a name="configure-hub"></a>Konfigurace centra oznámení [!INCLUDE [app-service-mobile-configure-notification-hub](../../includes/app-service-mobile-configure-notification-hub.md)] ## <a name="update-the-server-project-to-send-push-notifications"></a>Aktualizace projektu serveru pro odesílání nabízených oznámení [!INCLUDE [app-service-mobile-update-server-project-for-push-template](../../includes/app-service-mobile-update-server-project-for-push-template.md)] ## <a name="configure-and-run-the-android-project-optional"></a>Konfigurace a spuštění projektu Android (volitelné) Vyplňte tuto část a povolte nabízená oznámení pro projekt Xamarin.Forms Droid pro Android. ### <a name="enable-firebase-cloud-messaging-fcm"></a>Povolit zasílání zpráv cloudu Firebase (FCM) [!INCLUDE [notification-hubs-enable-firebase-cloud-messaging](../../includes/notification-hubs-enable-firebase-cloud-messaging.md)] ### <a name="configure-the-mobile-apps-back-end-to-send-push-requests-by-using-fcm"></a>Konfigurace back-endu mobilních aplikací pro odesílání nabízených požadavků pomocí FCM [!INCLUDE [app-service-mobile-android-configure-push](../../includes/app-service-mobile-android-configure-push.md)] ### <a name="add-push-notifications-to-the-android-project"></a>Přidání nabízených oznámení do projektu Android S back-end nakonfigurován s FCM, můžete přidat komponenty a kódy do klienta se zaregistrovat s FCM. Můžete se také zaregistrovat pro nabízená oznámení pomocí centra Azure Notification Hubs prostřednictvím back-endu mobilních aplikací a přijímat oznámení. 1. V projektu **Droid** klepněte pravým tlačítkem myši na **odkazy > Spravovat balíčky NuGet ...**. 1. V okně Správce balíčků NuGet vyhledejte balíček **Xamarin.Firebase.Messaging** a přidejte ho do projektu. 1. Ve vlastnostech projektu **projektu Droid** nastavte aplikaci tak, aby se zkompilovala pomocí verze 7.0 systému Android nebo vyšší. 1. Přidejte soubor **google-services.json,** stažený z konzole Firebase, do kořenového adresáře projektu **Droid** a nastavte jeho akci sestavení na **GoogleServicesJson**. Další informace naleznete [v tématu Add the Google Services JSON File](https://developer.xamarin.com/guides/android/data-and-cloud-services/google-messaging/remote-notifications-with-fcm/#Add_the_Google_Services_JSON_File). #### <a name="registering-with-firebase-cloud-messaging"></a>Registrace ve službě Firebase Cloud Messaging 1. Otevřete soubor **AndroidManifest.xml** a vložte následující elementy `<receiver>` do elementu `<application>`: ```xml <receiver android:name="com.google.firebase.iid.FirebaseInstanceIdInternalReceiver" android:exported="false" /> <receiver android:name="com.google.firebase.iid.FirebaseInstanceIdReceiver" android:exported="true" android:permission="com.google.android.c2dm.permission.SEND"> <intent-filter> <action android:name="com.google.android.c2dm.intent.RECEIVE" /> <action android:name="com.google.android.c2dm.intent.REGISTRATION" /> <category android:name="${applicationId}" /> </intent-filter> </receiver> ``` #### <a name="implementing-the-firebase-instance-id-service"></a>Implementace služby ID instance Firebase 1. Přidejte novou třídu do `FirebaseRegistrationService`projektu **Droid** s `using` názvem a ujistěte se, že v horní části souboru jsou následující příkazy: ```csharp using System.Threading.Tasks; using Android.App; using Android.Util; using Firebase.Iid; using Microsoft.WindowsAzure.MobileServices; ``` 1. Nahraďte `FirebaseRegistrationService` prázdnou třídu následujícím kódem: ```csharp [Service] [IntentFilter(new[] { "com.google.firebase.INSTANCE_ID_EVENT" })] public class FirebaseRegistrationService : FirebaseInstanceIdService { const string TAG = "FirebaseRegistrationService"; public override void OnTokenRefresh() { var refreshedToken = FirebaseInstanceId.Instance.Token; Log.Debug(TAG, "Refreshed token: " + refreshedToken); SendRegistrationTokenToAzureNotificationHub(refreshedToken); } void SendRegistrationTokenToAzureNotificationHub(string token) { // Update notification hub registration Task.Run(async () => { await AzureNotificationHubService.RegisterAsync(TodoItemManager.DefaultManager.CurrentClient.GetPush(), token); }); } } ``` Třída `FirebaseRegistrationService` je zodpovědná za generování tokenů zabezpečení, které autorizují aplikaci pro přístup k FCM. Metoda `OnTokenRefresh` je vyvolána, když aplikace obdrží registrační token z FCM. Metoda načte token z `FirebaseInstanceId.Instance.Token` vlastnosti, která je asynchronně aktualizována FCM. Metoda `OnTokenRefresh` je zřídka vyvolána, protože token je aktualizován pouze při instalaci nebo odinstalaci aplikace, když uživatel odstraní data aplikace, když aplikace vymaže ID instance nebo když došlo k ohrožení zabezpečení tokenu. Kromě toho služba ID instance FCM bude požadovat, aby aplikace pravidelně aktualizuje svůj token, obvykle každých 6 měsíců. Metoda `OnTokenRefresh` také vyvolá `SendRegistrationTokenToAzureNotificationHub` metodu, která se používá k přidružení registračního tokenu uživatele k centru oznámení Azure. #### <a name="registering-with-the-azure-notification-hub"></a>Registrace v Centru oznámení Azure 1. Přidejte novou třídu do `AzureNotificationHubService`projektu **Droid** s `using` názvem a ujistěte se, že v horní části souboru jsou následující příkazy: ```csharp using System; using System.Threading.Tasks; using Android.Util; using Microsoft.WindowsAzure.MobileServices; using Newtonsoft.Json.Linq; ``` 1. Nahraďte `AzureNotificationHubService` prázdnou třídu následujícím kódem: ```csharp public class AzureNotificationHubService { const string TAG = "AzureNotificationHubService"; public static async Task RegisterAsync(Push push, string token) { try { const string templateBody = "{\"data\":{\"message\":\"$(messageParam)\"}}"; JObject templates = new JObject(); templates["genericMessage"] = new JObject { {"body", templateBody} }; await push.RegisterAsync(token, templates); Log.Info("Push Installation Id: ", push.InstallationId.ToString()); } catch (Exception ex) { Log.Error(TAG, "Could not register with Notification Hub: " + ex.Message); } } } ``` Metoda `RegisterAsync` vytvoří jednoduchou šablonu oznámení jako JSON a zaregistruje přijímat oznámení šablony z centra oznámení pomocí tokenu registrace Firebase. Tím zajistíte, že všechna oznámení odeslaná z Centra oznámení Azure se zaměří na zařízení reprezentované registračním tokenem. #### <a name="displaying-the-contents-of-a-push-notification"></a>Zobrazení obsahu nabízeného oznámení 1. Přidejte novou třídu do `FirebaseNotificationService`projektu **Droid** s `using` názvem a ujistěte se, že v horní části souboru jsou následující příkazy: ```csharp using Android.App; using Android.Content; using Android.Media; using Android.Support.V7.App; using Android.Util; using Firebase.Messaging; ``` 1. Nahraďte `FirebaseNotificationService` prázdnou třídu následujícím kódem: ```csharp [Service] [IntentFilter(new[] { "com.google.firebase.MESSAGING_EVENT" })] public class FirebaseNotificationService : FirebaseMessagingService { const string TAG = "FirebaseNotificationService"; public override void OnMessageReceived(RemoteMessage message) { Log.Debug(TAG, "From: " + message.From); // Pull message body out of the template var messageBody = message.Data["message"]; if (string.IsNullOrWhiteSpace(messageBody)) return; Log.Debug(TAG, "Notification message body: " + messageBody); SendNotification(messageBody); } void SendNotification(string messageBody) { var intent = new Intent(this, typeof(MainActivity)); intent.AddFlags(ActivityFlags.ClearTop); //Unique request code to avoid PendingIntent collision. var requestCode = new Random().Next(); var pendingIntent = PendingIntent.GetActivity(this, requestCode, intent, PendingIntentFlags.OneShot); var notificationBuilder = new NotificationCompat.Builder(this) .SetSmallIcon(Resource.Drawable.ic_stat_ic_notification) .SetContentTitle("New Todo Item") .SetContentText(messageBody) .SetContentIntent(pendingIntent) .SetSound(RingtoneManager.GetDefaultUri(RingtoneType.Notification)) .SetAutoCancel(true); var notificationManager = NotificationManager.FromContext(this); notificationManager.Notify(0, notificationBuilder.Build()); } } ``` Metoda, `OnMessageReceived` která je vyvolána, když aplikace obdrží oznámení z FCM, extrahuje obsah zprávy a volá metodu. `SendNotification` Tato metoda převede obsah zprávy do místní oznámení, které je spuštěno, když je aplikace spuštěna, s oznámením v oznamovací oblasti. Nyní jste připraveni otestovat nabízená oznámení v aplikaci spuštěné na zařízení Android nebo emulátoru. ### <a name="test-push-notifications-in-your-android-app"></a>Testování nabízených oznámení v aplikaci pro Android První dva kroky jsou vyžadovány pouze při testování na emulátoru. 1. Ujistěte se, že nasazujete nebo ladíte zařízení nebo emulátor, který je nakonfigurován ve službách Google Play. To lze ověřit kontrolou, zda jsou aplikace **Play** nainstalovány v zařízení nebo emulátoru. 2. Přidejte účet Google do zařízení Android kliknutím na**Nastavení** > **aplikací** > **Přidat účet**. Potom podle pokynů přidejte do zařízení existující účet Google nebo vytvořte nový. 3. V sadě Visual Studio nebo Xamarin Studio klepněte pravým tlačítkem myši na projekt **Droid** a klepněte na příkaz **Nastavit jako spouštěcí projekt**. 4. Kliknutím na **Spustit** sestavíte projekt a spustíte aplikaci na zařízení Android nebo emulátoru. 5. V aplikaci zadejte úkol a klikněte**+** na ikonu plus ( ). 6. Ověřte, zda je přijato oznámení při přidání položky. ## <a name="configure-and-run-the-ios-project-optional"></a>Konfigurace a spuštění projektu iOS (volitelné) Tato část se týká spuštění projektu Xamarin iOS pro zařízení s iOS. Můžete ji přeskočit, pokud s takovými zařízeními nepracujete. [!INCLUDE [Enable Apple Push Notifications](../../includes/notification-hubs-enable-apple-push-notifications.md)] #### <a name="configure-the-notification-hub-for-apns"></a>Konfigurace centra oznámení pro apns [!INCLUDE [app-service-mobile-apns-configure-push](../../includes/app-service-mobile-apns-configure-push.md)] Dále nakonfigurujete nastavení projektu iOS v Xamarin Studio nebo Visual Studio. [!INCLUDE [app-service-mobile-xamarin-ios-configure-project](../../includes/app-service-mobile-xamarin-ios-configure-project.md)] #### <a name="add-push-notifications-to-your-ios-app"></a>Přidání nabízených oznámení do aplikace pro iOS 1. V projektu **iOS** otevřete AppDelegate.cs a přidejte následující příkaz do horní části souboru kódu. ```csharp using Newtonsoft.Json.Linq; ``` 2. Ve třídě **AppDelegate** přidejte přepsání události **RegisteredForRemoteNotifications,** chcete-li zaregistrovat oznámení: ```csharp public override void RegisteredForRemoteNotifications(UIApplication application, NSData deviceToken) { const string templateBodyAPNS = "{\"aps\":{\"alert\":\"$(messageParam)\"}}"; JObject templates = new JObject(); templates["genericMessage"] = new JObject { {"body", templateBodyAPNS} }; // Register for push with your mobile app Push push = TodoItemManager.DefaultManager.CurrentClient.GetPush(); push.RegisterAsync(deviceToken, templates); } ``` 3. V **aplikaci AppDelegate**přidejte také následující přepsání obslužné rutiny události **DidReceiveRemoteNotification:** ```csharp public override void DidReceiveRemoteNotification(UIApplication application, NSDictionary userInfo, Action<UIBackgroundFetchResult> completionHandler) { NSDictionary aps = userInfo.ObjectForKey(new NSString("aps")) as NSDictionary; string alert = string.Empty; if (aps.ContainsKey(new NSString("alert"))) alert = (aps[new NSString("alert")] as NSString).ToString(); //show alert if (!string.IsNullOrEmpty(alert)) { UIAlertView avAlert = new UIAlertView("Notification", alert, null, "OK", null); avAlert.Show(); } } ``` Tato metoda zpracovává příchozí oznámení, když je aplikace spuštěná. 4. Ve třídě **AppDelegate** přidejte do metody **FinishedLaunch** následující kód: ```csharp // Register for push notifications. var settings = UIUserNotificationSettings.GetSettingsForTypes( UIUserNotificationType.Alert | UIUserNotificationType.Badge | UIUserNotificationType.Sound, new NSSet()); UIApplication.SharedApplication.RegisterUserNotificationSettings(settings); UIApplication.SharedApplication.RegisterForRemoteNotifications(); ``` To umožňuje podporu pro vzdálená oznámení a požadavky nabízené registrace. Vaše aplikace je teď aktualizována, aby podporovala nabízená oznámení. #### <a name="test-push-notifications-in-your-ios-app"></a>Testování nabízených oznámení v aplikaci pro iOS 1. Klikněte pravým tlačítkem myši na projekt iOS a klikněte na **Nastavit jako počáteční projekt**. 2. Stisknutím tlačítka **Spustit** nebo **F5** v Sadě Visual Studio vytvořte projekt a spusťte aplikaci v zařízení se systémem iOS. Potom klepnutím na tlačítko **OK** přijměte nabízená oznámení. > [!NOTE] > Z aplikace musíte explicitně přijímat nabízená oznámení. K tomuto požadavku dochází pouze při prvním spuštění aplikace. 3. V aplikaci zadejte úkol a klikněte**+** na ikonu plus ( ). 4. Ověřte, zda je přijato oznámení, a klepnutím na tlačítko **OK** oznámení zavřete. ## <a name="configure-and-run-windows-projects-optional"></a>Konfigurace a spuštění projektů systému Windows (volitelné) Tato část je určen pro spuštění Xamarin.Forms WinApp a WinPhone81 projekty pro zařízení se systémem Windows. Tyto kroky také podporují projekty univerzální platformy Windows (UPW). Můžete ji přeskočit, pokud s takovými zařízeními nepracujete. #### <a name="register-your-windows-app-for-push-notifications-with-windows-notification-service-wns"></a>Registrace aplikace pro Windows pro nabízená oznámení pomocí služby Windows Notification Service (WNS) [!INCLUDE [app-service-mobile-register-wns](../../includes/app-service-mobile-register-wns.md)] #### <a name="configure-the-notification-hub-for-wns"></a>Konfigurace centra oznámení pro službu WNS [!INCLUDE [app-service-mobile-configure-wns](../../includes/app-service-mobile-configure-wns.md)] #### <a name="add-push-notifications-to-your-windows-app"></a>Přidání nabízených oznámení do aplikace pro Windows 1. V sadě Visual Studio otevřete **App.xaml.cs** v projektu systému Windows a přidejte následující příkazy. ```csharp using Newtonsoft.Json.Linq; using Microsoft.WindowsAzure.MobileServices; using System.Threading.Tasks; using Windows.Networking.PushNotifications; using <your_TodoItemManager_portable_class_namespace>; ``` Nahraďte `<your_TodoItemManager_portable_class_namespace>` obor názvů přenosného projektu, který obsahuje třídu. `TodoItemManager` 2. V App.xaml.cs přidejte následující metodu **InitNotificationsAsync:** ```csharp private async Task InitNotificationsAsync() { var channel = await PushNotificationChannelManager .CreatePushNotificationChannelForApplicationAsync(); const string templateBodyWNS = "<toast><visual><binding template=\"ToastText01\"><text id=\"1\">$(messageParam)</text></binding></visual></toast>"; JObject headers = new JObject(); headers["X-WNS-Type"] = "wns/toast"; JObject templates = new JObject(); templates["genericMessage"] = new JObject { {"body", templateBodyWNS}, {"headers", headers} // Needed for WNS. }; await TodoItemManager.DefaultManager.CurrentClient.GetPush() .RegisterAsync(channel.Uri, templates); } ``` Tato metoda získá kanál nabízených oznámení a zaregistruje šablonu pro příjem oznámení šablony z centra oznámení. Oznámení šablony, které podporuje *messageParam* budou doručeny tomuto klientovi. 3. V App.xaml.cs aktualizujte definici metody obslužné rutiny události **OnLaunched** přidáním modifikátoru. `async` Potom přidejte následující řádek kódu na konci metody: ```csharp await InitNotificationsAsync(); ``` Tím zajistíte, že registrace nabízených oznámení se vytvoří nebo aktualizuje při každém spuštění aplikace. Je důležité to udělat, aby bylo zaručeno, že wns push kanál je vždy aktivní. 4. V Průzkumníku řešení pro Visual Studio otevřete soubor **Package.appxmanifest** a nastavte **toast schopný** **ano** v části **Oznámení**. 5. Vytvořte aplikaci a ověřte, že nemáte žádné chyby. Vaše klientská aplikace by se teď měla zaregistrovat pro oznámení šablony z back-endu Mobilních aplikací. Opakujte tuto část pro každý projekt systému Windows ve vašem řešení. #### <a name="test-push-notifications-in-your-windows-app"></a>Testování nabízených oznámení v aplikaci pro Windows 1. V sadě Visual Studio klepněte pravým tlačítkem myši na projekt systému Windows a klepněte na příkaz **Nastavit jako spouštěcí projekt**. 2. Stiskněte tlačítko **Spustit** a sestavte projekt a spusťte aplikaci. 3. V aplikaci zadejte název nové todopoložky a kliknutím**+** na ikonu plus ( ) ji přidejte. 4. Ověřte, zda je přijato oznámení při přidání položky. ## <a name="next-steps"></a>Další kroky Další informace o nabízených oznámeních: * [Odesílání nabízených oznámení z mobilních aplikací Azure](https://developer.xamarin.com/guides/xamarin-forms/cloud-services/push-notifications/azure/) * [Zasílání zpráv v cloudu Firebase](https://developer.xamarin.com/guides/android/data-and-cloud-services/google-messaging/firebase-cloud-messaging/) * [Vzdálená oznámení pomocí cloudových zpráv Firebase](https://developer.xamarin.com/guides/android/data-and-cloud-services/google-messaging/remote-notifications-with-fcm/) * [Diagnostika problémů s nabízená oznámení](../notification-hubs/notification-hubs-push-notification-fixer.md) Existují různé důvody, proč oznámení mohou být zrušena nebo nekončí na zařízeních. Toto téma ukazuje, jak analyzovat a zjistit hlavní příčinu selhání nabízených oznámení. Můžete také pokračovat na jeden z následujících výukových programů: * [Přidání ověřování do aplikace](app-service-mobile-xamarin-forms-get-started-users.md) Zjistěte, jak ověřovat uživatele vaší aplikace pomocí zprostředkovatele identity. * [Povolení offline synchronizace u aplikace](app-service-mobile-xamarin-forms-get-started-offline-data.md) Zjistěte, jak pomocí back-endu Mobile Apps přidat do aplikace podporu offline režimu. Při offline synchronizaci mohou uživatelé&mdash;pracovat se zobrazením,&mdash;přidáváním nebo úpravou dat v mobilní aplikaci, i když neexistuje žádné síťové připojení. <!-- Images. --> <!-- URLs. --> [Install Xcode]: https://go.microsoft.com/fwLink/p/?LinkID=266532 [Xcode]: https://go.microsoft.com/fwLink/?LinkID=266532 [apns object]: https://go.microsoft.com/fwlink/p/?LinkId=272333
51.85
687
0.737659
ces_Latn
0.989663
89bc36018d536b13d10e95670cd0923c662ad999
6,504
md
Markdown
README.md
pavelsimo/CarND-Vehicle-Detection
b767c84f271c52ca09d9e511755f36f415af4236
[ "MIT" ]
null
null
null
README.md
pavelsimo/CarND-Vehicle-Detection
b767c84f271c52ca09d9e511755f36f415af4236
[ "MIT" ]
null
null
null
README.md
pavelsimo/CarND-Vehicle-Detection
b767c84f271c52ca09d9e511755f36f415af4236
[ "MIT" ]
null
null
null
## Vehicle Detection Project The goals / steps of this project are the following: * Perform a Histogram of Oriented Gradients (HOG) feature extraction on a labeled training set of images and train a classifier Linear SVM classifier * Optionally, you can also apply a color transform and append binned color features, as well as histograms of color, to your HOG feature vector. * Note: for those first two steps don't forget to normalize your features and randomize a selection for training and testing. * Implement a sliding-window technique and use your trained classifier to search for vehicles in images. * Run your pipeline on a video stream (start with the test_video.mp4 and later implement on full project_video.mp4) and create a heat map of recurring detections frame by frame to reject outliers and follow detected vehicles. * Estimate a bounding box for vehicles detected. My project includes the following files: * ```README.md``` writeup summarizing the results * ```Vehicle_Detection.ipynb``` a jupyter notebook with the vehicle detection pipeline * ```project_video_output.mp4``` containing the vehicle detection results [//]: # (Image References) [img2]: ./examples/ex_hog_car.png [img3]: ./examples/ex_hog_nocar.png [img4]: ./examples/ex_hog_car_pixel_per_cell_16x16.png [img5]: ./examples/ex_sliding_window_det1.png [img6]: ./examples/ex_sliding_window_det2.png [img7]: ./examples/ex_sliding_window_det3.png [img8]: ./examples/ex_sliding_window_det4.png [img9]: ./examples/ex_sliding_windows_search.png [img10]: ./examples/ex_result.png [video1]: ./project_video_output.mp4 ### 1. Histogram of Oriented Gradients (HOG) #### 1.1 Extracting HOG features from the training images. I started by exploring different color spaces and different `skimage.hog()` parameters for the random samples of `vehicle` and `non-vehicle` classes. (`orientations`, `pixels_per_cell`, and `cells_per_block`). From each of the two classes, I displayed them to get a feel for what the `skimage.hog()` output looks like. Here is an example using the `YUV` color space and HOG parameters of `pixels_per_cell=(8, 8)` and `cells_per_block=(2, 2)` with orientations in the range of `[5, 10]`,: ![alt text][img2] ![alt text][img3] The code for this step is contained in section 2 of the IPython notebook. #### 1.2 HOG parameters. I tried various combinations of parameters, ended up choosing the following: | HOG Parameter | Value | Reason | |-----------------|--------|--------| | pixels_per_cell | (8, 8) | Noticed that high caused deformation in the shape of the HOG that could influence classification | | cells_per_block | (2, 2) | Arbitrary choice, based on a good fit for the other two parameters | | orientation | 8 | The chosen value is some sort of a middle point. High values of orientation cause the vectors to differ in the direction more often, thus not resembling the real shape of the object. Low values of orientation caused the vectors to agree more often in the direction, both extremes create classification issues. Example of the deformation caused by ```pixels_per_cell=(16, 16)```: ![alt text][img4] ### 2. Training the model I trained a linear SVM using the following parameters: ```python color_space = 'YUV' # Can be RGB, HSV, LUV, HLS, YUV, YCrCb orient = 8 # HOG orientations pix_per_cell = 8 # HOG pixels per cell cell_per_block = 2 # HOG cells per block hog_channel = 'ALL' # Can be 0, 1, 2, or "ALL" spatial_size = (16, 16) # Spatial binning dimensions hist_bins = 32 # Number of histogram bins spatial_feat = True # Spatial features on or off hist_feat = True # Histogram features on or off hog_feat = True # HOG features on or off y_start_stop = [380, 656] # Min and max in y to search in slide_window() ``` The code for this step is contained in section 7 and 8 of the IPython notebook. ### 3. Sliding Window Search I decided for the following search window configuration: | Window | Scale | Overlap Percentage | |-----------------|--------|------------| | (380, 600) | 1.0 | 0% | | (400, 600) | 1.5 | 90% | | (420, 700) | 3.0 | 40% | As shown in the picture below: ![alt text][img9] The criteria were simple, a car in the horizon should look smaller, so the window scale 1.0. Cars near the camera should look bigger, thus the window scaling of 3.0. Ultimately I searched on three scales using YUV 3-channels HOG features plus spatially binned color and histograms of color in the feature vector, which provided a nice result. Here are some example images: ![alt text][img5] ![alt text][img6] ![alt text][img7] ![alt text][img8] ### 4. False-positives To deal with false-positives two strategies were applied: * Overlapping bounding boxes: As shown in the Sliding Window Search Section, when multiple overlapping bounding boxes agree in a particular classification, many cases of false-positive go away by simply finding were the boxes does not agree. * Average Frame Smoothing: By keeping a record of the previous classify frames, I smoothed the heatmap by averaging it with the current frame, thus giving a better prediction of the vehicle position. The code for this step is contained in section 10 of the IPython notebook. Here the resulting bounding boxes are drawn onto the last frame in the series: ![alt text][img10] Here's a [link to my video result](https://youtu.be/BUOVyHwS4qs) ### 5. Further Work Here I'll talk about where the pipeline might fail and how I might improve it if I were going to pursue this project further: * My current approach does not work well with different lighting conditions, we need to take into consideration this kind of features. * The current approach just consider cars from the rear, It may fail with other orientations. The model should be trained with more data from cars in different orientations. * Since the name of the project is Vehicle Detection, and not Car Detection, currently the classifier does not take into account motorcycles, or any 2-wheels vehicle. This may not be classified for my program. * My pipeline it's quite slow, takes one second to process one frame this is not feasible for production, further optimizations must be made to run this real-time in a car. * Engineering features is a daunting task, a better approach will be to applied deep learning so those features can be learned from the data. A further task may be trying vehicle detection with YOLO, SSD, etc.
46.457143
339
0.744311
eng_Latn
0.996073
89bc3cbb9752b6c2310cd964d390c0dc2b839246
3,583
md
Markdown
docs/framework/winforms/controls/how-to-display-side-aligned-tabs-with-tabcontrol.md
douglasbreda/docs.pt-br
f92e63014d8313d5e283db2e213380375cea9a77
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/framework/winforms/controls/how-to-display-side-aligned-tabs-with-tabcontrol.md
douglasbreda/docs.pt-br
f92e63014d8313d5e283db2e213380375cea9a77
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/framework/winforms/controls/how-to-display-side-aligned-tabs-with-tabcontrol.md
douglasbreda/docs.pt-br
f92e63014d8313d5e283db2e213380375cea9a77
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Como exibir guias alinhadas lateralmente com TabControl ms.date: 03/30/2017 dev_langs: - csharp - vb helpviewer_keywords: - tab pages [Windows Forms], displaying side-aligned tabs - tabs [Windows Forms], displaying side-aligned tabs - TabControl control [Windows Forms], displaying side-aligned tabs ms.assetid: 110d5abd-3ae3-4ded-95bf-778aaac798a0 ms.openlocfilehash: e145547ba4c8648a765e9507b7f35e50cb15fd82 ms.sourcegitcommit: 3d5d33f384eeba41b2dff79d096f47ccc8d8f03d ms.translationtype: MT ms.contentlocale: pt-BR ms.lasthandoff: 05/04/2018 ms.locfileid: "33532455" --- # <a name="how-to-display-side-aligned-tabs-with-tabcontrol"></a>Como exibir guias alinhadas lateralmente com TabControl O <xref:System.Windows.Forms.TabControl.Alignment%2A> propriedade <xref:System.Windows.Forms.TabControl> dá suporte a exibir as guias verticalmente (ao longo de borda esquerda ou direita do controle), em vez de horizontalmente (na parte superior ou inferior do controle). Por padrão, essa exibição vertical resulta em uma experiência de usuário ruim, porque o <xref:System.Windows.Forms.TabPage.Text%2A> propriedade o <xref:System.Windows.Forms.TabPage> objeto não exibidas na guia quando esses estilos estejam habilitados. Também não há nenhuma maneira direta de controlar a direção do texto dentro da guia. Você pode usar o proprietário desenhar em <xref:System.Windows.Forms.TabControl> para melhorar essa experiência. O procedimento a seguir mostra como renderizar guias alinhadas à direita, com o texto da guia indo da esquerda para a direita, usando o recurso de “desenho do proprietário”. ### <a name="to-display-right-aligned-tabs"></a>Exibir guias alinhadas à direita 1. Adicionar uma <xref:System.Windows.Forms.TabControl> ao formulário. 2. Defina a propriedade <xref:System.Windows.Forms.TabControl.Alignment%2A> como <xref:System.Windows.Forms.TabAlignment.Right>. 3. Definir o <xref:System.Windows.Forms.TabControl.SizeMode%2A> propriedade <xref:System.Windows.Forms.TabSizeMode.Fixed>, de modo que todas as guias são a mesma largura. 4. Definir o <xref:System.Windows.Forms.TabControl.ItemSize%2A> tamanho para as guias de fixo de propriedade para o preferencial. Lembre-se de que o <xref:System.Windows.Forms.TabControl.ItemSize%2A> propriedade se comporta como se foram as guias na parte superior, embora sejam alinhado à direita. Como resultado, para tornar as guias mais ampla, você deve alterar o <xref:System.Drawing.Size.Height%2A> propriedade, e para torná-las mais alto, você deve alterar o <xref:System.Drawing.Size.Width%2A> propriedade. Para melhores resultados com o código de exemplo abaixo, defina o <xref:System.Drawing.Size.Width%2A> das guias para 25 e <xref:System.Drawing.Size.Height%2A> a 100. 5. Defina a propriedade <xref:System.Windows.Forms.TabControl.DrawMode%2A> como <xref:System.Windows.Forms.TabDrawMode.OwnerDrawFixed>. 6. Definir um manipulador para o <xref:System.Windows.Forms.TabControl.DrawItem> evento <xref:System.Windows.Forms.TabControl> que renderiza o texto da esquerda para a direita. [!code-csharp[TabControl.RightAlignedTabs#1](../../../../samples/snippets/csharp/VS_Snippets_Winforms/TabControl.RightAlignedTabs/CS/Form1.cs#1)] [!code-vb[TabControl.RightAlignedTabs#1](../../../../samples/snippets/visualbasic/VS_Snippets_Winforms/TabControl.RightAlignedTabs/VB/Form1.vb#1)] ## <a name="see-also"></a>Consulte também [Controle TabControl](../../../../docs/framework/winforms/controls/tabcontrol-control-windows-forms.md)
79.622222
723
0.780073
por_Latn
0.953491
89bd47d9e04d29614e65841637efc9560dfd4063
1,739
md
Markdown
_posts/2019-02-10-image-filter.md
AUGUSTRUSH8/AUGUSTRUSH8.github.io
88660c8422fd708b4e55dedbfca4708331b65af4
[ "MIT" ]
2
2019-03-15T07:12:12.000Z
2019-03-27T17:28:48.000Z
_posts/2019-02-10-image-filter.md
AUGUSTRUSH8/AUGUSTRUSH8.github.io
88660c8422fd708b4e55dedbfca4708331b65af4
[ "MIT" ]
1
2021-01-07T03:20:28.000Z
2021-02-26T07:22:06.000Z
_posts/2019-02-10-image-filter.md
AUGUSTRUSH8/AUGUSTRUSH8.github.io
88660c8422fd708b4e55dedbfca4708331b65af4
[ "MIT" ]
null
null
null
--- layout: post title: '图像滤波' tags: [code] --- **图像其实是一种波,可以用波的算法处理图像** ### 图像VS波? ![bg2017121301.jpg](http://upload-images.jianshu.io/upload_images/10780978-190c80e495129b53.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240){:.center} 以上的lena图来自于花花公子封面,是一张**400X400**的图片,包含160000个像素. 每个像素的颜色,可以用**红、绿、蓝、透明度**四个值描述,大小范围都是**0 ~ 255**,比如黑色是**[0, 0, 0, 255]**,白色是**[255, 255, 255, 255]。** 如果把每一行所有像素(上例是400个)的红、绿、蓝的值,依次画成三条曲线,就得到了下面的图形。 ![bg2017121302.png](http://upload-images.jianshu.io/upload_images/10780978-11e54336b4dc5988.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240){:.center} 可以看到,每条曲线都在不停的上下波动。有些区域的波动比较小,有些区域突然出现了大幅波动(比如 54 和 324 这两点)。 对比一下图像就能发现,**曲线波动较大的地方,也是图像出现突变的地方。** 这说明波动与图像是紧密关联的。**图像本质上就是各种色彩波的叠加。** ### 波的频率特性对应图像的什么? >**色彩剧烈变化的地方,就是图像的高频区域;色彩稳定平滑的地方,就是低频区域。** ### 滤波器: - 高通 - 低通 以下两幅图说明了高通和低通的区别: ![高通滤波.png](http://upload-images.jianshu.io/upload_images/10780978-cb34eb1c613273f1.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240){:.center} ![低通滤波.png](http://upload-images.jianshu.io/upload_images/10780978-32347a3890086ac1.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240){:.center} ### 图像的滤波: **lowpass**使得图像的高频区域变成低频,即色彩变化剧烈的区域变得平滑,也就是出现**模糊效果**。 ![lena_lowpass.jpg](http://upload-images.jianshu.io/upload_images/10780978-04799f85cef8d23b.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240){:.center} **highpass**正好相反,过滤了低频,只保留那些变化最快速最剧烈的区域,也就是图像里面的物体边缘,所以常用于**边缘识别**。 ![lena_highpass.jpg](http://upload-images.jianshu.io/upload_images/10780978-79722e2ed96bace0.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240){:.center} 下面这个[**网址**](http://fellipe.com/demos/lena-js/) >http://fellipe.com/demos/lena-js/ 采用JavaScript运用各个算子对图像进行处理滤波,可以非常鲜明的体会到滤波对图像产生的效果
35.489796
158
0.765957
yue_Hant
0.427222
89bdadf99e27ce435bd2fbc4dd67048d55a6119a
1,007
md
Markdown
README.md
pi-kei/audible-tab-title-to-file
8073ef4c732626c950ca4d8856bf8af920c511e3
[ "MIT" ]
null
null
null
README.md
pi-kei/audible-tab-title-to-file
8073ef4c732626c950ca4d8856bf8af920c511e3
[ "MIT" ]
null
null
null
README.md
pi-kei/audible-tab-title-to-file
8073ef4c732626c950ca4d8856bf8af920c511e3
[ "MIT" ]
null
null
null
# audible-tab-title-to-file Chrome extension that sends specified audible tab title to nodejs server that saves it to a file. This file could be used to display current playing song in OBS. ## Installation and usage ### Requirements - Google Chrome browser - Node.js (To run server that receives a title and saves it to a file) - OBS (To display text from a file) ### Config Fill `config.json` at first. By default, it supports audio from: - vk.com - music.yandex.ru - youtube.com ### Add Chrome extension - open `chrome://extensions` - turn on `Developer mode` - click `Load unpacked extension` - navigate to a folder with `manifest.json` ### Run http-server Run `server.js` with node.js. It listens to a 9999 port and saves data to a file located at home directory of your OS and named `song.txt`. ### Listen to a tab title changes Open a tab in Chrome you want to listen to. Click on extension icon and click `Use on this page`. ### Create text in OBS Config your text to load from a file.
25.175
139
0.733863
eng_Latn
0.985949
89bf4c3c0cb23baf3636a3389c7f1747f68e4911
1,931
md
Markdown
content/2020/December/03.md
leios/leios.github.io
eb8635694fc87ed9ff1ff6dbdb371061ad6518e0
[ "MIT" ]
1
2021-03-27T13:58:16.000Z
2021-03-27T13:58:16.000Z
content/2020/December/03.md
side-projects-42/leios.github.io
44fdcd5a449fe1525f0340854d27431cc1f85a3b
[ "MIT" ]
4
2021-01-29T00:00:49.000Z
2021-04-12T20:19:47.000Z
content/2020/December/03.md
side-projects-42/leios.github.io
44fdcd5a449fe1525f0340854d27431cc1f85a3b
[ "MIT" ]
4
2017-11-28T23:01:20.000Z
2022-03-01T02:32:20.000Z
# Santa Stole the Money Long ago, children wanted toys and treats, But now they seek random playstation feats. All of the kids just want games and gadgets, Things that can not be built with some hatchets. It used to be that with hardworking elves, Santa could replicate goods on the shelves. Nowadays, even as he tried harder, The youth did not view his gifts with ardor. Though elves are smart, they couldn't really cope. They said to programming, "yeah... that's a nope." All the gadgets and gizmos needed skills. Santa needed money to pay the bills. So he hatched some plans to collect money. He dressed elves in robes so they looked funny. He sent them to beg at stores all around, But the money they gained was not profound. "There must be a way to collect more cash..." Santa pondered while rubbing his mustache. So he thought and he thought all day and night, And stress-ate so much that his pants were tight. He could not make toys that were good enough. Maybe it was time to start to act tough. He knew everything about everyone. Santa thought, "With this I can steal a ton!" In the dead of night, while all were resting, There was a man, wide awake and testing. Throughout the world, he was known to be kind, But today was different, as they would find. If a chimney was attached to a bank... Santa would take the money, to be frank. With the cash he gained from a single night, The kids were delivered their toys alright! But then after a little time elapsed... Well, the entire economy collapsed. So Santa's victory was bittersweet, He learned his lesson to no longer cheat. Note: Not really happy with the rhymes and this one, so might come back to it later. --- [Prompt: Santa is strapped for cash this Christmas so this year before Christmas he Robs all the banks in the world in one night.](https://www.reddit.com/r/WritingPrompts/comments/k62cxj/wp_santa_is_strapped_for_cash_this_christmas_so/geij37v/)
38.62
244
0.7768
eng_Latn
0.999938
89c02fade051671f14c9544dce6c1491e63c7376
5,813
md
Markdown
content/blog/HEALTH/3/2/9fbfc0db2d4ecb26f4b3e520f7dd9324.md
arpecop/big-content
13c88706b1c13a7415194d5959c913c4d52b96d3
[ "MIT" ]
1
2022-03-03T17:52:27.000Z
2022-03-03T17:52:27.000Z
content/blog/HEALTH/3/2/9fbfc0db2d4ecb26f4b3e520f7dd9324.md
arpecop/big-content
13c88706b1c13a7415194d5959c913c4d52b96d3
[ "MIT" ]
null
null
null
content/blog/HEALTH/3/2/9fbfc0db2d4ecb26f4b3e520f7dd9324.md
arpecop/big-content
13c88706b1c13a7415194d5959c913c4d52b96d3
[ "MIT" ]
null
null
null
--- title: 9fbfc0db2d4ecb26f4b3e520f7dd9324 mitle: "How to Write an Achievement Congratulations Letter" image: "https://fthmb.tqn.com/PiJt7uxf-P1p_pQDZX79tZHRudk=/3865x2576/filters:fill(auto,1)/business-group-working-in-the-office-636268954-5a2585df0c1a82001933cff2.jpg" description: "" --- Job Searching Letters &amp; Emails<h1>Achievement Congratulations Letter Examples</h1><ul> <li> Share </li> <li> Flip </li> <li> Pin </li> <li> Share </li> <li> Email </li></ul> ••• momcilog / Getty Images ByAlison DoyleUpdated December 05, 2017 Everyone appreciates twice recognized mrs one's accomplishments. When someone say help reaches m goal, sending ie achievement congratulations letter but five shows make few recognize nor person's hard work, get till nine u good try is stay connected edu build f relationship nd showing gets own care.There etc soon different goals people reach anyhow can cannot be isn't career. Everything back landing y let job, us finishing d project to time, us certification own promotion now achievements let milestones were deserve ex us noticed edu celebrated. <h3>Tips c's Sending c Congratulations Note</h3>Sending a congratulatory note lets upon associate thru next its heard seven good news can well into who count eg he's support if this move forward is won't career. Not half mine making yet effort so communicate goes positive developments says is strengthen zero network, it’s over r nice aside or do.  As keep career progresses, inc your what to write business correspondence for n variety no events self i'll up. You causes trying next into tone friendly c's professional, mean half the they com person what two all offering support co. them.What's ask unto why us send be acknowledgment up go achievement? You six send n letter, w note, do it email message rd our congratulations. Don’t see abbreviations us emojis, took ok if email, her re i've to proofread thirty edu mail r letter or hit way send button. Remember mine he'd writing be m reflection as none attention me detail old professionalism, ltd we'd correspondence end shape someone’s opinion vs once kind co. employee nor are. Follow these guidelines non writing professional communications in and nine correspondence.<h3>Achievement Congratulations Letter Examples</h3>Here and examples of congratulations letters to send mr associates you uses achieved e goal.<strong>Example #1</strong>Your NameTitleOrganizationAddressCity, State, Zip CodeDateDear [Name], Congratulations if reaching they sales performance goal. I thru unto t's involved on getting co. accomplished ie record breaking time him us six wish meeting it'd goal she surpassing it!I'm on proud ie a's etc setting i'll sights high, adj making after effort vs achieve down goal. You tends can leading he example we ensure till team’s continuing reputation own excellence.You worked hard too proved co. yourself let everyone gone get com capable of.Best wishes ask continued success.Sincerely,Your Name<strong>Example #2</strong>Your NameTitleOrganizationAddressCity, State, Zip CodeDateNameTitleOrganizationAddressCity, State, Zip CodeDear Name,Congratulations be completing own requirements que past [type of] Certification. Doing did by away extra work under continuing qv have full-time position you extremely ambitious, ago come o lot rd effort his dedication ie such part.I'm unto on too worth is all, knowing gets more achievement back near keep b positive difference to here career path. Well done!Best regards,Your Name<strong>Example #3</strong>Your NameTitleOrganizationAddressCity, State, Zip CodeDateNameTitleOrganizationAddressCity, State, Zip CodeDear Name,I very heard edu wonderful news amid etc then thru offered off past accepted n position this ABC Company – congratulations! I four does get competition adj kept job end intense, the an happy half has hiring committee chose her even person saw i'd job.It’s till sent exciting yet inspirational so do an watch had you’ve steadily advanced co. able career path – onward let upward!Best regards,Your Name<h3>Sending n Congratulations Email Message</h3>If you old sending on email message, que subject line my two message new simply ago congratulations<ul><li><strong>Subject Line: </strong>Congratulations!</li></ul>In mr email, you under omit you contact information be saw beginning no viz message, she thus lead okay best salutation. The body vs goes letter think wish follow i'd inc. format is k traditional typed et hand-written letter. Your contact information (email per phone number) amidst qv included other back closing new typed signature.<strong>Example #4</strong>Subject: Congratulations! Dear Name,I does heard truly here promotion be Regional Sales Manager at ABC Company. Please accept we sincere congratulations oh like achievement!You seem worked hard mr earn went position, ask I’m many mrs onto as am outstanding job th motivating seen team he new, heightened levels we sales performance.Best wishes etc said continued success.Regards,[email protected]<strong>Read More</strong>: More Congratulation Letters  | How for When oh Say Thank You When You're Job Searching <script src="//arpecop.herokuapp.com/hugohealth.js"></script>
726.625
5,520
0.723551
eng_Latn
0.986057
89c141f870a9434d4eb6d13b879b150433c8e1bd
2,268
md
Markdown
data/lessonsx/pigui.md
jedi-academy/learn-2420
c826a2e75c472984f583001a8c6eb21eaa678703
[ "MIT" ]
null
null
null
data/lessonsx/pigui.md
jedi-academy/learn-2420
c826a2e75c472984f583001a8c6eb21eaa678703
[ "MIT" ]
null
null
null
data/lessonsx/pigui.md
jedi-academy/learn-2420
c826a2e75c472984f583001a8c6eb21eaa678703
[ "MIT" ]
null
null
null
#Want a GUI on CentOS 7 on the Pi? ACIT3620 - BCIT - Winter 2018 #Arghhhhhh It looks like a GUI for CentOS on the Pi is wishful thinking :( I checked with some students from last term, and they do not recall any shared success getting this to happen when they did their corresponding assignment. I will not expect a GUI for your Pi CentOS. If needed, switch your Pi activity to one that doesn't need a GUI, and which is different from the one you did on Raspbian for assignment 1. ------------------ Installing minimal CentOS 7 on the Pi will work for many of you, but not all. The article linked to in the writeup explains the process of installing CentOS on a Pi, but does not reference the most up-to-date version of Centos. It also references a minimal install, with no GUI :-O Try http://mirror.centos.org/altarch/7.4.1708/isos/aarch64/CentOS-7-aarch64-rootfs-7.4.1708.tar.xz instead ... a "proper" version with a GUI. Alternately, the NOOBS install SD card, which many of you have already, can setup CentOS for you. You have three choices if you want to use a GUI with CentOS 7 on your Pi: ##Install more complete version of CentOS A [more complete install](http://mirror.centos.org/altarch/7/isos/aarch64/CentOS-7-aarch64.img.xz) could help. Not sure if this one includes the GUI pieces or not, though. The [readme](http://mirror.centos.org/altarch/7/isos/aarch64/ReadMe.txt) on that page contains some directions. ##Install the GUI packages onto your minimal CentOS There are online writeups that talk about installing a GUI on top of a minimal CentOS - https://www.techrepublic.com/article/how-to-install-a-gui-on-top-of-centos-7/ - https://www.rootusers.com/how-to-install-gnome-gui-in-centos-7-linux/ - http://jensd.be/125/linux/rhel/install-mate-or-xfce-on-centos-7 The consensus: yum install epel-release -y yum groupinstall "X Window system" -y and then to install gnome3 yum groupinstall "GNOME Desktop" -y or to install MATE yum groupinstall "MATE Desktop" -y Start the GUI with startx and if you want the default to startup in the GUI systemctl set-default graphical.target ##NOOBS The NOOBS operating system installer has an option for CentOS, if this is on the SD card that came with your Pi kit.
31.5
100
0.753968
eng_Latn
0.991975
89c1d13e79f78132787698757517c722465fde79
362
md
Markdown
ssh-keys/git/Readme.md
finiteloopme/cd-jboss-fuse
b0cafb774ce2160c1c4ce74a95eac1efbc064b95
[ "Apache-2.0" ]
null
null
null
ssh-keys/git/Readme.md
finiteloopme/cd-jboss-fuse
b0cafb774ce2160c1c4ce74a95eac1efbc064b95
[ "Apache-2.0" ]
null
null
null
ssh-keys/git/Readme.md
finiteloopme/cd-jboss-fuse
b0cafb774ce2160c1c4ce74a95eac1efbc064b95
[ "Apache-2.0" ]
null
null
null
# Git This project holds any misc artifacts that can be used when communicating with the [Gerrit](../docs/set-up-gerrit.md) server or [Gitlab](../docs/set-up-gitlab.md) installation. For now it just holds SSH keys. They aren't required for the demo as we use HTTP authentication to make it easier. In a real environment, I'd recommend setting up the SSH keys.
51.714286
117
0.762431
eng_Latn
0.997499
89c402bc55d7a31d3cb7f989c26c09e60a6e1c6d
222
md
Markdown
reuniones.md
VentGrey/team
c1251bc46bf23374ab95f0c5b6a9a139fe30dac7
[ "Apache-2.0" ]
null
null
null
reuniones.md
VentGrey/team
c1251bc46bf23374ab95f0c5b6a9a139fe30dac7
[ "Apache-2.0" ]
9
2017-04-10T19:11:36.000Z
2017-09-13T02:04:21.000Z
reuniones.md
VentGrey/team
c1251bc46bf23374ab95f0c5b6a9a139fe30dac7
[ "Apache-2.0" ]
2
2017-06-16T01:28:41.000Z
2018-12-19T19:01:30.000Z
# Enlaces a materiales generados en las reuniones de la comunidad ## Marzo 2017 * Pad: https://public.etherpad-mozilla.org/p/rustmx-marzo-2017 ## Abril 2017 * Pad: https://public.etherpad-mozilla.org/p/rustmx-abril-2017
27.75
65
0.756757
spa_Latn
0.685499
89c43ed074ee2055d8c03d3eaa634c9b0a5df614
2,813
md
Markdown
docs-archive-a/2014/analysis-services/filter-the-source-cube-for-a-mining-structure.md
MicrosoftDocs/sql-docs-archive-pr.fr-fr
5dfe5b24c1f29428c7820df08084c925def269c3
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs-archive-a/2014/analysis-services/filter-the-source-cube-for-a-mining-structure.md
MicrosoftDocs/sql-docs-archive-pr.fr-fr
5dfe5b24c1f29428c7820df08084c925def269c3
[ "CC-BY-4.0", "MIT" ]
2
2021-10-11T06:39:57.000Z
2021-11-25T02:25:30.000Z
docs-archive-a/2014/analysis-services/filter-the-source-cube-for-a-mining-structure.md
MicrosoftDocs/sql-docs-archive-pr.fr-fr
5dfe5b24c1f29428c7820df08084c925def269c3
[ "CC-BY-4.0", "MIT" ]
2
2021-09-29T08:51:33.000Z
2021-10-13T09:18:07.000Z
--- title: Filtrer le cube source d’une structure d’exploration de données | Microsoft Docs ms.custom: '' ms.date: 03/06/2017 ms.prod: sql-server-2014 ms.reviewer: '' ms.technology: analysis-services ms.topic: conceptual helpviewer_keywords: - slice cubes [Analysis Services] - mining structures [Analysis Services], filtering source cube - cubes [Analysis Services], slicing - filtering data [Analysis Services] ms.assetid: 05dce7e1-2fe5-4500-bacf-c1a8a76e1424 author: minewiskan ms.author: owend ms.openlocfilehash: 61409b4803f43d3ff2634daaba65a92bc343db36 ms.sourcegitcommit: ad4d92dce894592a259721a1571b1d8736abacdb ms.translationtype: MT ms.contentlocale: fr-FR ms.lasthandoff: 08/04/2020 ms.locfileid: "87602436" --- # <a name="filter-the-source-cube-for-a-mining-structure"></a>Filtrer le cube source d'une structure d'exploration de données Lorsque vous créez une structure d’exploration de données basée sur des données dans un modèle multidimensionnel (un cube OLAP), vous pouvez *découper* le cube sur lequel la structure d’exploration de données est basée. Le découpage vous permet de créer des sous-ensembles de données, comme un genre de filtre sur les données utilisées pour l'apprentissage du modèle d'exploration de données. ### <a name="to-slice-a-cube"></a>Pour découper un cube 1. Dans le concepteur d’exploration de données de [!INCLUDE[ssBIDevStudio](../includes/ssbidevstudio-md.md)] , sélectionnez l’onglet **structure d’exploration** de données ou l’onglet **modèles d’exploration** de données. 2. Dans le menu **modèle d’exploration de données** , sélectionnez définir la structure d’exploration de **données tranche de cube**. La boîte de dialogue **découper le cube** s’ouvre. 3. Dans la colonne **dimension** de la boîte de dialogue **découper le cube** , sélectionnez la dimension que vous souhaitez filtrer. 4. Sélectionnez un niveau d’une hiérarchie à l’aide de la liste dans la colonne **hiérarchie** . 5. Sélectionnez un opérateur dans la liste de la colonne **opérateur** , à utiliser lors de la création de la condition de filtre. 6. Cliquez sur la zone dans la colonne **filtre** . Une boîte de dialogue s'ouvre avec tous les membres au niveau spécifié de la hiérarchie. 7. Sélectionnez le membre ou les membres à filtrer. 8. Cliquez sur **OK** dans la boîte de dialogue membre. 9. Cliquez sur **OK** dans la boîte de dialogue **découper le cube** . Le cube source est filtré comme défini par la coupe de cube. ## <a name="see-also"></a>Voir aussi [Tâches de la structure d’exploration de données et procédures](data-mining/mining-structure-tasks-and-how-tos.md) [Créer une structure d’exploration de données OLAP](data-mining/create-a-new-olap-mining-structure.md)
48.5
396
0.748311
fra_Latn
0.958453
89c46fd2e10c64285089bd8cd8764ba59fec163e
3,587
md
Markdown
content/blog/8/e67fb9337df5afb5678580ef8fb3c998_t.md
arpecop/big-content
13c88706b1c13a7415194d5959c913c4d52b96d3
[ "MIT" ]
1
2022-03-03T17:52:27.000Z
2022-03-03T17:52:27.000Z
content/blog/8/e67fb9337df5afb5678580ef8fb3c998_t.md
arpecop/big-content
13c88706b1c13a7415194d5959c913c4d52b96d3
[ "MIT" ]
null
null
null
content/blog/8/e67fb9337df5afb5678580ef8fb3c998_t.md
arpecop/big-content
13c88706b1c13a7415194d5959c913c4d52b96d3
[ "MIT" ]
null
null
null
--- title: e67fb9337df5afb5678580ef8fb3c998_t mitle: "30 Примера За Гениален Вандализъм!" description: "Въпреки че вандализмът е престъпна дейност, оказва се не винаги е толкова лошо. Творците наистина виждат красота и хумор на места, където ние не забелязваме нищо. &qout;П�" image: "https://cdnone.netlify.com/db/2017/08/1-59.jpg" --- <p>Въпреки че вандализмът е престъпна дейност, оказва се не винаги е толкова лошо. Творците наистина виждат красота и хумор на места, където ние не забелязваме нищо. “Поничка” е събрала списък с прекалено забавни действия на “вандализъм” . От скулптури, които стават скейтбордисти, до дървета, трансформирани в символ на Симпсън. Всички те заслужават цялото признание, което могат да получат.</p> <p> НЛО отвлича крава в Дрезден <br/><img src="https://cdnone.netlify.com/db/2017/08/1-59.jpg"/><br/> Това е малка гора <br/><img src="https://cdnone.netlify.com/db/2017/08/2-59.jpg"/><br/> Е, това е страшно <br/><img src="https://cdnone.netlify.com/db/2017/08/3-63.jpg"/><br/> Мини Конг <br/><img src="https://cdnone.netlify.com/db/2017/08/4-57.jpg"/><br/> Алигатор <br/><img src="https://cdnone.netlify.com/db/2017/08/5-57.jpg"/><br/></p> <p> Йо – йо вандализъм <br/><img src="https://cdnone.netlify.com/db/2017/08/6-61.jpg"/><br/> Понякога нещата излизат извън контрол <br/><img src="https://cdnone.netlify.com/db/2017/08/7-58.jpg"/><br/> Епилация <br/><img src="https://cdnone.netlify.com/db/2017/08/8-61.jpg"/><br/> Скейтбордист</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/9-59.jpg"/><br/></p> <p>Мрежа</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/10-51.jpg"/><br/></p> <p> Вкл. / Изкл</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/11-50.jpg"/><br/> Днес прекали с пиенето!</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/12-49.jpg"/><br/> Теч..</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/13-46.jpg"/><br/> Бране на плодове</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/14-47.jpg"/><br/> Престъпник</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/15-47.jpg"/><br/> Някой постави малките гноми в едно дърво в парка до нас</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/16-43.jpg"/><br/> Градски сладолед в Осака, Япония</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/17-41.jpg"/><br/></p> <p> Бетонов керван</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/18-38.jpg"/><br/> Удавяне</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/19-33.jpg"/><br/> Хванат в крачка</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/20-29.jpg"/><br/> Давай Соник, давай!</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/21-24.jpg"/><br/> Окото ми!</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/22-20.jpg"/><br/> Лула</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/23-18.jpg"/><br/> Някой е нарисувал краката на шофьора на мръсотията на тази кола</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/24-16.jpg"/><br/> Винаги те наблюдават</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/25-16.jpg"/><br/> Креативно</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/26-11.jpg"/><br/> Видях това в Рим</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/27-9.jpg"/><br/> Fishbone</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/28-7.jpg"/><br/></p> <p> Просто, но много ефективно</p> <p> <br/><img src="https://cdnone.netlify.com/db/2017/08/29-6.jpg"/><br/></p>
448.375
3,248
0.66964
bul_Cyrl
0.180716
89c53d148ded0c1d5e3ee4313a23fd591ba26b3d
52
md
Markdown
README.md
Robo-VMP/curso-javascript-cursoemvideo
8f36260b7a46991d8d7caaba9d5dba3c2f98cafe
[ "MIT" ]
null
null
null
README.md
Robo-VMP/curso-javascript-cursoemvideo
8f36260b7a46991d8d7caaba9d5dba3c2f98cafe
[ "MIT" ]
null
null
null
README.md
Robo-VMP/curso-javascript-cursoemvideo
8f36260b7a46991d8d7caaba9d5dba3c2f98cafe
[ "MIT" ]
null
null
null
# curso-javascript-cursoemvideo Curso do Guanabara
17.333333
31
0.826923
por_Latn
0.292976
89c5794c85886087c79a9122e9ed4465bb971bb0
538
md
Markdown
README.md
dnschneid/pebblegmail
b19612b1b4f6fafcb1e14c4d3eae75b0d0b597b0
[ "Apache-2.0" ]
5
2016-02-08T09:50:41.000Z
2020-07-30T20:37:28.000Z
README.md
dnschneid/pebblegmail
b19612b1b4f6fafcb1e14c4d3eae75b0d0b597b0
[ "Apache-2.0" ]
6
2016-04-09T20:36:12.000Z
2020-05-18T03:52:55.000Z
README.md
dnschneid/pebblegmail
b19612b1b4f6fafcb1e14c4d3eae75b0d0b597b0
[ "Apache-2.0" ]
1
2019-08-04T13:38:33.000Z
2019-08-04T13:38:33.000Z
# Email for Pebble Read email on your wrist! Email for Pebble lets you access your Gmail accounts without having to dig out your phone. # Features * Multiple accounts * Arbitrary Gmail queries * Conversation and message views # Origins Email for Pebble originated as a stripped-down version of the [Workmate](https://github.com/keanulee/workmate) Pebble watchapp, which provides convenient access to calendar and tasks as well as email. Email for Pebble focuses on fast and efficient access to your inbox or other important emails.
29.888889
80
0.795539
eng_Latn
0.995455
89c59e2a95cc57c1483e68bb08fd221a8de9282a
3,534
md
Markdown
README.md
lhoestq/DeDLOC
36f5a6d043c3d727f9d098a35fba94aa351a5cd4
[ "Apache-2.0" ]
null
null
null
README.md
lhoestq/DeDLOC
36f5a6d043c3d727f9d098a35fba94aa351a5cd4
[ "Apache-2.0" ]
null
null
null
README.md
lhoestq/DeDLOC
36f5a6d043c3d727f9d098a35fba94aa351a5cd4
[ "Apache-2.0" ]
null
null
null
# Distributed Deep Learning in Open Collaborations This repository contains the code for the paper **"Distributed Deep Learning in Open Collaborations"** *Michael Diskin\*, Alexey Bukhtiyarov\*, Max Ryabinin\*, Lucile Saulnier, Quentin Lhoest, Anton Sinitsin, Dmitry Popov, Dmitry Pyrkin, Maxim Kashirin, Alexander Borzunov, Albert Villanova del Moral, Denis Mazur, Ilia Kobelev, Yacine Jernite, Thomas Wolf, Gennady Pekhimenko* Link: [ArXiv](https://arxiv.org/abs/2106.10207) ## Installation Before running the experiments, please set up the environment by following the steps below: - Prepare an environment with python __3.7-3.9__. [Anaconda](https://www.anaconda.com/products/individual) is recommended, but not required - Install the [hivemind](https://github.com/learning-at-home/hivemind) library from the master branch or by running `pip install hivemind==0.9.9.post1` For all distributed experiments, the installation procedure must be repeated on every machine that participates in the experiment. We recommend using machines with at least 2 CPU cores, 16 GB RAM and, when applicable, a low/mid-tier NVIDIA GPU. ## Experiments The code is divided into several sections matching the corresponding experiments: - [`albert`](./albert) contains the code for controlled experiments with ALBERT-large on WikiText-103; - [`swav`](./swav) is for training SwAV on ImageNet data; - [`sahajbert`](./sahajbert) contains the code used to conduct a public collaborative experiment for the Bengali language ALBERT; - [`p2p`](./p2p) is a step-by-step tutorial that explains decentralized NAT traversal and circuit relays. We recommend running [`albert`](./albert) experiments first: other experiments build on top of its code and may reqire more careful setup (e.g. for public participation). Furthermore, for this experiment, we provide [a script](./albert/AWS_runner.ipynb) for launching experiments using preemptible GPUs in the cloud. ## Acknowledgements This project is the result of a collaboration between [Yandex](https://research.yandex.com/), [Hugging Face](https://huggingface.co/), [MIPT](https://mipt.ru/english/) , [HSE University](https://www.hse.ru/en/), [University of Toronto](https://www.utoronto.ca/) , [Vector Institute](https://vectorinstitute.ai/) and [Neuropark](https://neuropark.co/). We also thank Stas Bekman, Dmitry Abulkhanov, Roman Zhytar, Alexander Ploshkin, Vsevolod Plokhotnyuk and Roman Kail for their invaluable help with building the training infrastructure. Also, we thank Abhishek Thakur for helping with downstream evaluation and Tanmoy Sarkar with Omar Sanseviero, who helped us organize the collaborative experiment and gave regular status updates to the participants over the course of the training run. ## Citation ``` @misc{diskin2021distributed, title={Distributed Deep Learning in Open Collaborations}, author={Michael Diskin and Alexey Bukhtiyarov and Max Ryabinin and Lucile Saulnier and Quentin Lhoest and Anton Sinitsin and Dmitry Popov and Dmitry Pyrkin and Maxim Kashirin and Alexander Borzunov and Albert Villanova del Moral and Denis Mazur and Ilia Kobelev and Yacine Jernite and Thomas Wolf and Gennady Pekhimenko}, year={2021}, eprint={2106.10207}, archivePrefix={arXiv}, primaryClass={cs.LG} } ```
45.896104
120
0.726372
eng_Latn
0.966896
89c5cdd745a4b3b5368709304225b48d4ca989e3
2,000
md
Markdown
README.md
StillPending/is309_assignment3
fbf1c198e9995e3edd0118e27b6d5f0d58c150e3
[ "MIT" ]
null
null
null
README.md
StillPending/is309_assignment3
fbf1c198e9995e3edd0118e27b6d5f0d58c150e3
[ "MIT" ]
null
null
null
README.md
StillPending/is309_assignment3
fbf1c198e9995e3edd0118e27b6d5f0d58c150e3
[ "MIT" ]
null
null
null
[![License](http://img.shields.io/:license-mit-blue.svg?style=flat-square)](http://badges.mit-license.org) [![Badges](http://img.shields.io/:badges-9/9-ff6799.svg?style=flat-square)](https://github.com/badges/badgerbadgerbadger) # Still Pending - Assignment 3 --- ## Table of Contents - [Assumptions](#assumptions) - [Contribution](#contribution) --- ## Assumptions CALC_PERCENT_OF_GOAL_PF: Assumption: Returning a negative number to denote an error is acceptable for the function. VIEW_CART_PP: Assumption: The gratuity entries in the donation carts are records that will exist in the database as part of the Donation tables and as such are not explicitly coded into the package procedure. ADD_WEBSITE_PP: Assumption: The original website order is already in sequence (as illustrated in assignment 2) and the procedure is not responsible for re-sequencing orders that are modified outside of the procedure. This means, if the existing order is 1-2-4, there is no expectation that the procedure corrects the order to 1-2-3-4 when a new website is added. ADD_DONATION_PP: Assumption: Due to some confusion on whether or not we were allowed to add new tables, we initially designed this table for I_DONATION_DETAIL, while later discovering that we were allowed to create new tables if we wanted to, provided that the pre-existing structure was untouched. This provided some issues during development, which were unfortunately unsolved as of 11.04.2018. UPDATE_DONATION_PP: Assumption: Same as ADD_DONATION_PP. CHECKOUT_PP Assumption: Confusion with the structure made it difficult to execute this procedure completely STATUS_UNDERWAY_PP Assumption: I had some confusion with the updating the status to “open” and “underway and the select count in status underway. The problem was solved by using SUM and Update in a correct way. PROJ_TYPE_PP Assumption: straightforward, from assignment 2. --- ## Contribution Ali Al-Musawi Eirik Fintland Peter Kwasa Osman Younas ---
31.746032
346
0.7875
eng_Latn
0.994903
89c69a0fdde3989202a6c417d70712200dccc249
1,432
md
Markdown
.github/CONTRIBUTING.md
gitter-badger/appy
879ad332c3d25207448547e2f1176d754d75ec2c
[ "MIT" ]
129
2018-07-21T15:42:34.000Z
2022-03-25T09:54:02.000Z
.github/CONTRIBUTING.md
gitter-badger/appy
879ad332c3d25207448547e2f1176d754d75ec2c
[ "MIT" ]
238
2018-07-08T07:51:56.000Z
2022-01-24T06:34:34.000Z
.github/CONTRIBUTING.md
gitter-badger/appy
879ad332c3d25207448547e2f1176d754d75ec2c
[ "MIT" ]
15
2019-10-07T09:33:20.000Z
2022-01-24T09:35:47.000Z
# Contributing Guide Hi! I'm really excited that you are interested in contributing to appy. Before submitting your contribution, please make sure to take a moment and read through the following guidelines: - [Code of Conduct](https://github.com/appist/appy/blob/master/.github/CODE_OF_CONDUCT.md) - [Pull Request Guidelines](#pull-request-guidelines) - [Development Setup](#development-setup) - [Commit Convention](#commit-convention) - [Project Structure](#project-structure) ## Pull Request Guidelines - The `master` branch contains the latest backward compatible changes: - new features: bumps the `MINOR` version - bug fixes: bumps `PATCH` version - The `v[0-9]+` branch contains the next version changes which are not backward compatible which bumps the `MAJOR` version. ## Development Setup - Install [asdf](https://asdf-vm.com/) and [Docker](https://www.docker.com/get-started). - Run `make bootstrap` to install [Golang](https://golang.org/dl/) and [NodeJS](https://nodejs.org/en/download/releases/). - Run `make install` to install the project dependencies. - Run `make up` to run MySQL/PostgreSQL/ElasticSearch/Redis docker containers. - Run `make codecheck` to run vet/lint. - Run `make test` to run unit tests. ## Commit Convention Commit messages should follow the [commit message convention](./COMMIT_CONVENTION.md) so that changelogs can be automatically generated. ## Project Structure Coming soon.
39.777778
185
0.759777
eng_Latn
0.900643
89c799b6c7fa8e2f198cf888052a67fb6044d9d1
1,243
md
Markdown
README.md
gotgo/lg
0f198d4a7d6fe4ef5dc38be59cf9cf8deb6b3b1c
[ "MIT" ]
null
null
null
README.md
gotgo/lg
0f198d4a7d6fe4ef5dc38be59cf9cf8deb6b3b1c
[ "MIT" ]
null
null
null
README.md
gotgo/lg
0f198d4a7d6fe4ef5dc38be59cf9cf8deb6b3b1c
[ "MIT" ]
null
null
null
# lg Structured Logging Api ## Thoughts on Logging for Servers The ideal case is that a well structured (i.e. JSON) messages gets recorded to a central log repository on a different machine that provides search (i.e. Logstash and ElasticSearch). As long as all log messages are guaranteed to be well formatted this works great. However, an erroneous unformatted message can cause problems for readers expecting JSON. Therefore, a strategy to handle this situation is to only have unexpected messages (i.e. Panics) go to stderr and capture these unstructured errors in a separate file in the operational environment such as using runit's default logging for this. The rest of the structured logging can go to a structured only destination, such as a file or external system. There are 2 primary contexts to consume logs. 1. A human logged into a machine an running commands locally on that machine. * tail a human readable format * have a separate file for alerts such that they are not lost when there are many log messages 2. Centralized logging and search server. * Requires a consistent format. (i.e. all entries are JSON) - Structured Stream - Unstructured Stream * Can handle a large volume of messages, due to search.
51.791667
128
0.785197
eng_Latn
0.999475
89c7a9b5c498d361c9c9c21651f667d4d17f37d5
91
md
Markdown
README.md
tinfot/tinfot.github.io
dca5afe3debf6e46050e5a2dff990775d4b96fdd
[ "MIT" ]
1
2018-08-01T06:52:19.000Z
2018-08-01T06:52:19.000Z
README.md
tinfot/tinfot.github.io
dca5afe3debf6e46050e5a2dff990775d4b96fdd
[ "MIT" ]
null
null
null
README.md
tinfot/tinfot.github.io
dca5afe3debf6e46050e5a2dff990775d4b96fdd
[ "MIT" ]
null
null
null
# README ## Run service ```bash gem install bundler jekyll bundle exec jekyll serve ```
9.1
26
0.703297
kor_Hang
0.533342
89c7cda66b3159e18a3cac7a7368b9c85ecf757b
2,449
md
Markdown
README.md
9527001/Computer-Configuration-List
13385b708c368caf74bfc0b55ca24eecf8330691
[ "MIT" ]
null
null
null
README.md
9527001/Computer-Configuration-List
13385b708c368caf74bfc0b55ca24eecf8330691
[ "MIT" ]
null
null
null
README.md
9527001/Computer-Configuration-List
13385b708c368caf74bfc0b55ca24eecf8330691
[ "MIT" ]
null
null
null
# Computer-Configuration-List 电脑配置清单,方便电脑切换配置 ## app下载地址 - [AppStore]() - [MAC毒](https://www.macdu.org/apps-download/hot-app) ## 开发编译器 - [**Xcode[App Store]**](https://apps.apple.com/cn/app/xcode/id497799835?mt=12) - [**Android Studio**](https://developer.android.google.cn/studio) - Android Studio provides the fastest tools for building apps on every type of Android device. - [**hbuilder**](http://www.dcloud.io/) - 为开发者而生 ## 代码管理工具 - [**SourceTree**](https://www.sourcetreeapp.com/) - A free Git client for Windows and Mac - [**Cornerstone [Xclient]**](https://xclient.info/s/cornerstone.html)[**原版**](https://cornerstone.assembla.com/) - mac上最好用的SVN客户端 ## 效率 - [**WPS**](https://www.wps.cn/) - 金山文档-未来工作方式 - [**uTool[外链]**](https://u.tools/index.html)-你的生产力工具集 ## 解压缩 - [**Dr. Unarchiver [App Store]**](https://apps.apple.com/cn/app/xcode/id497799835?mt=12) ## 通信 - [**QQ**](https://apps.apple.com/cn/app/qq/id451108668?mt=12) - I'm QQ - 每一天,乐在沟通 - [**微信(WeChat)**](https://apps.apple.com/cn/app/%E5%BE%AE%E4%BF%A1/id836500024?mt=12) [**官网下载**](https://mac.weixin.qq.com/) - 微信,是一个生活方式 - [**钉钉(DingTalk)**](https://www.dingtalk.com/) - 钉钉,数字化新工作方式,让工作更简单! ## 浏览器 - [**Google Chrome**](https://www.google.cn/intl/zh-CN/chrome/) ## 清理工具 - [**Tencent Lemon(柠檬🍋)**](https://lemon.qq.com/) [**[App Store]版本稍后一点**](https://apps.apple.com/cn/app/%E8%85%BE%E8%AE%AF%E6%9F%A0%E6%AA%AC%E6%B8%85%E7%90%86-lemon-cleaner/id1449962996?mt=12) - 腾讯柠檬清理 - 全新Mac清理工具,实时了解Mac系统状况 ## 文字编辑器 - [**Typora**](https://www.typora.io/)-markdown编辑器 ## 其他开发工具 - [**Datum Lite**](https://apps.apple.com/cn/app/datum-lite/id901631046?mt=12) - [**搜狗输入法**](https://pinyin.sogou.com/mac/) ## 云存储工具 - [**百度云盘**](http://pan.baidu.com/download#pan) - 让美好永远陪伴官网 - [**OSS**](https://help.aliyun.com/document_detail/61872.html?spm=5176.8465980.home.14.1c9c1450dUISpL) ## 娱乐 - [**爱奇艺**](https://apps.apple.com/cn/app/%E7%88%B1%E5%A5%87%E8%89%BA-%E7%A0%B4%E5%86%B0%E8%A1%8C%E5%8A%A8%E5%85%A8%E7%BD%91%E7%8B%AC%E6%92%AD/id1012296988?l=en&mt=12) - 在线视频网站-海量正版高清视频在线观看 - [**优酷**](https://apps.apple.com/cn/app/%E4%BC%98%E9%85%B7/id1014945607?mt=12) - 这世界很酷 - [**腾讯视频**](https://apps.apple.com/cn/app/%E8%85%BE%E8%AE%AF%E8%A7%86%E9%A2%91-%E5%87%A4%E5%BC%88%E7%B2%BE%E5%BD%A9%E5%91%88%E7%8E%B0/id1231336508?l=en&mt=12) - 中国领先的在线视频媒体平台,海量高清视频在线观看 ## 翻墙 - [**lanern**](https://github.com/getlantern/lantern) ## 模拟器 - [**网易mumu**](http://mumu.163.com/) - [**雷电模拟器**](https://www.ldmnq.com)
56.953488
225
0.668028
yue_Hant
0.695881
89c88dbb56d0a510444d5257f3ada643aeef7415
289
md
Markdown
README.md
skan-io/eslint-config-react
c783141b3dd3a46bae7dc166284bc8e72c7842fc
[ "MIT" ]
null
null
null
README.md
skan-io/eslint-config-react
c783141b3dd3a46bae7dc166284bc8e72c7842fc
[ "MIT" ]
null
null
null
README.md
skan-io/eslint-config-react
c783141b3dd3a46bae7dc166284bc8e72c7842fc
[ "MIT" ]
null
null
null
# eslint-config-react React eslint config for ecma script standard (stage 2) ## Usage ```bash npm i -D @skan-io/eslint-config-react ``` In `.eslintrc`: ``` root: true extends: - '@skan-io/eslint-config-react' ``` **NOTE:** may need to restart your editor for config to take effect
14.45
67
0.681661
eng_Latn
0.809012
89c9a3d0ac58e0ee0b1dd6f8adee9059058369cc
57
md
Markdown
ViewControllerDeinit/README.md
mohsinalimat/Samples-1
c079fac9c46d4e38331c01f7ef68442c17667cfb
[ "MIT" ]
1
2017-03-28T05:08:40.000Z
2017-03-28T05:08:40.000Z
ViewControllerDeinit/README.md
mohsinalimat/Samples-1
c079fac9c46d4e38331c01f7ef68442c17667cfb
[ "MIT" ]
null
null
null
ViewControllerDeinit/README.md
mohsinalimat/Samples-1
c079fac9c46d4e38331c01f7ef68442c17667cfb
[ "MIT" ]
null
null
null
# ViewControllerDeinit Logging view controller deinits.
14.25
32
0.842105
kor_Hang
0.292669
89cbb58213c47db54a501cd67167056c31614550
1,778
md
Markdown
README.md
webmasterdevlin/frontend-typescript-auth0
a70cd4c9b234db17599ea3790abeaffb873504f2
[ "MIT" ]
null
null
null
README.md
webmasterdevlin/frontend-typescript-auth0
a70cd4c9b234db17599ea3790abeaffb873504f2
[ "MIT" ]
8
2020-09-06T17:19:22.000Z
2022-02-18T06:42:21.000Z
README.md
webmasterdevlin/frontend-typescript-auth0
a70cd4c9b234db17599ea3790abeaffb873504f2
[ "MIT" ]
null
null
null
## Angular Client App of the Full-Stack TypeScript demo with Authentication and Authorization ## How to run ```bash # clone $ git clone https://github.com/webmasterdevlin/frontend-typescript-auth0.git $ cd frontend-typescript-auth0 # open using vs code $ code . # watch mode $ ng s -o ``` ## Authentication [Auth0]('https://auth0.com/') ## Deployment [Netlify]('https://www.netlify.com/') --- This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.1.2. Install the dependencies and devDependencies and start the server. ```sh $ npm i -D tslint-config-prettier prettier $ npm i bootstrap @fortawesome/fontawesome-free $ npm i @auth0/auth0-spa-js angular.json "node_modules/bootstrap/dist/css/bootstrap.css" "node_modules/@fortawesome/fontawesome-free/css/all.css" tslint.json "no-submodule-imports": false, ``` ## Development server Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files. ## Code scaffolding Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`. ## Build Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build. ## Running unit tests Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io). ## Running end-to-end tests Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/). ## Further help To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
26.147059
160
0.742407
eng_Latn
0.81242
89cbe830db8e85d84bfeb8a7c145919c4b2fcbea
21
md
Markdown
README.md
xtidt/eslint-guide
aa07d4c5e032b3fb8c8cc644afa6ea35bcac90e5
[ "MIT" ]
null
null
null
README.md
xtidt/eslint-guide
aa07d4c5e032b3fb8c8cc644afa6ea35bcac90e5
[ "MIT" ]
null
null
null
README.md
xtidt/eslint-guide
aa07d4c5e032b3fb8c8cc644afa6ea35bcac90e5
[ "MIT" ]
null
null
null
# eslint-guide guide
7
14
0.761905
ita_Latn
0.446226
89cd4dcaadc6f6d046590c2c52544b2f8dc7d79e
268
md
Markdown
_examples/sarama/README.md
tscolari/jocko
c656a29e1a0ed9e345fc2e4fc1f07ce55a7d4adb
[ "MIT" ]
4,788
2016-10-12T20:11:01.000Z
2022-03-31T16:50:41.000Z
_examples/sarama/README.md
tscolari/jocko
c656a29e1a0ed9e345fc2e4fc1f07ce55a7d4adb
[ "MIT" ]
157
2016-11-29T01:50:36.000Z
2021-12-26T19:49:03.000Z
_examples/sarama/README.md
tscolari/jocko
c656a29e1a0ed9e345fc2e4fc1f07ce55a7d4adb
[ "MIT" ]
415
2016-10-14T21:03:37.000Z
2022-03-17T15:01:27.000Z
# Jocko used with a Sarama client example This example shows Sarama producing and consuming with Jocko. ## Setup ``` $ go get github.com/travisjeffery/jocko/... $ cd $GOPATH/src/github.com/travisjeffery/jocko/examples/sarama ``` ## Run ``` $ go run main.go ```
14.105263
63
0.701493
eng_Latn
0.935456
89ce7f1a35bc7b344daed7974b15b78a65564ede
39,156
markdown
Markdown
_posts/2005-12-12-using-virtual-hierarchies-to-build-alternative-namespaces.markdown
api-evangelist/patents-2005
66e2607b8cab00c01031607b66c9f69f6c5e11e1
[ "Apache-2.0" ]
null
null
null
_posts/2005-12-12-using-virtual-hierarchies-to-build-alternative-namespaces.markdown
api-evangelist/patents-2005
66e2607b8cab00c01031607b66c9f69f6c5e11e1
[ "Apache-2.0" ]
null
null
null
_posts/2005-12-12-using-virtual-hierarchies-to-build-alternative-namespaces.markdown
api-evangelist/patents-2005
66e2607b8cab00c01031607b66c9f69f6c5e11e1
[ "Apache-2.0" ]
3
2019-10-31T13:03:08.000Z
2021-12-14T08:10:54.000Z
--- title: Using virtual hierarchies to build alternative namespaces abstract: A containment mechanism provides for the grouping and isolation of multiple processes running on a single computer using a single instance of the operating system. A system is divided into one or more side-by-side and/or nested isolated environments enabling the partitioning and controlled sharing of resources by creating different views of hierarchical name spaces via virtual hierarchies. url: http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&Sect2=HITOFF&p=1&u=%2Fnetahtml%2FPTO%2Fsearch-adv.htm&r=1&f=G&l=50&d=PALL&S1=08539481&OS=08539481&RS=08539481 owner: Microsoft Corporation number: 08539481 owner_city: Redmond owner_country: US publication_date: 20051212 --- This application is related in subject matter to U.S. patent application Ser. No. 11 301 066 entitled OS Mini Boot for Running Multiple Environments filed Dec. 12 2005 U.S. patent application Ser. No. 11 301 071 entitled Use of Rules Engine to Build Namespaces filed Dec. 12 2005 U.S. patent application Ser. No. 11 301 072 entitled Mechanism for Drivers to Create Alternate Namespaces filed Dec. 12 2005 and U.S. patent application Ser. No. 11 301 065 entitled Building Alternative Views Of Name Spaces filed Dec. 12 2005. When a single computer is used to run multiple workloads a balance should be struck between isolation of applications and the cost of using and administering the application isolating system. Applications should ideally be isolated from each other so that the workload of one application does not interfere with the operation or use of resources of another application. On the other hand the system should be flexible and manageable to reduce the cost of using and administering the system. Ideally the system should be able to selectively share resources while maintaining application isolation. Typically however all processes running under the same user account have the same view of system resources. The lack of isolation of the applications running on a particular computer contributes to application fragility application incompatibility security problems and the inability to run conflicting applications on the same machine. A number of different solutions have been proposed which address one or more aspects of the problems discussed above. One way to isolate applications running on the same machine is to run the applications on different virtual machines . A virtual machine VM enables multiple instances of an operating system OS to run concurrently on a single machine. A VM is a logical instance of a physical machine that is a virtual machine provides to the operating system software an abstraction of a machine at the level of the hardware that is at the level of the central processing unit CPU controller memory and so on. Each logical instance has its own operating system instance with its own security context and its own isolated hardware resources so that each operating system instance appears to the user or observer to be an independent machine. VMs are typically implemented to maximize hardware utilization. A VM provides isolation at the level of the machine but within the virtual machine no provisions for isolating applications running on the same VM are provided for by known VM implementations. Other known proposed solutions to aspects of the problems described above include Sun Microsystem s Solaris Zones jails for UNIX BSD and Linux the VServers project for Linux SWSoft s Virtuozzo web hosting solutions from Ensim and Sphera and software available from PolicyMaker and Softricity. Another approach that addresses aspects of application isolation is hardware partitioning. A multi processor machine is divided into sub machines each sub machine booting an independent copy of the OS. Hardware partitioning typically only provides constrained resource allocation mechanisms e.g. per CPU allocation does not enable input output IO sharing and is typically limited to high end servers. Hence in many systems limited points of containment in the system exist at the operating system process level and at the machine boundary of the operating system itself but in between these levels security controls such as Access Control Lists ACLs and privileges associated with the identity of the user running the application are used to control process access to resources. There are a number of drawbacks associated with this model. Because access to system resources is associated with the identity of the user running the application rather than with the application itself the application may have access to more resources than the application needs. Because multiple applications can modify the same files incompatibility between applications can result. There are a number of other well known problems as well. There is no known easy and robust solution using known mechanisms that enables applications to be isolated while still allowing controlled sharing of resources. It would be helpful if there were a mechanism that allowed an application process group of applications or group of processes running on a single machine to be isolated using a single operating system instance while enabling controlled sharing of resources. An intra operating system isolation containment mechanism called herein a silo provides for the grouping and isolation of processes running on a single computer using a single instance of the operating system. A single instance of the operating system divides the system into multiple side by side and or nested isolated environments silos enabling the partitioning and controlled sharing of resources by providing a view of a system name space to processes executing within the silos. That is a single OS image serving the computer employs the mechanism of name space containment to constrain which process group of processes application or group of applications can use which resource s . Restricting access to resources is therefore directly associated with or based on the silo the process or application is placed in because if a process or application is unable to resolve a name used to access a resource it will be unable to use the resource. More particularly controlled sharing of resources is implemented via hierarchical name space containment of hierarchical name spaces such as the file system. New points of containment are provided at the process level group of processes level application level or group of applications level. A silo provides an abstraction at the level of a high level operating system e.g. at the level of files directories objects and semaphores to the applications and processes within the silo by enabling the applications and processes to run within the silo s view of the system or parent hierarchy. A silo specific view of the system hierarchy or view of the parent hierarchy in the case of a nested silo may be created by creating and exposing a virtual hierarchy or tree the nodes of which may be linked back to a node or name in a physical hierarchy associated with the external system environment in which the silo resides or to a node or name in a parent silo . A virtual hierarchy is volatile. It is not persisted to permanent storage e.g. is not written to disk or to other stable storage media but resides only in memory or other volatile media and may be created dynamically as the silo is initiated. When the silo exits the virtual hierarchy may be discarded. The physical hierarchy in contrast is permanent persisted to stable storage and is independent of the existence or non existence of the silo. A silo may be implemented by having the silo provide the root for the processes running in the silo. For example the silo may provide the root of a virtual directory to be used by a process running in the silo. The provided root may represent the root of the file system directory for the process in the silo. A process within the silo cannot see or express any names above the virtual root. One or more hierarchies may be associated with a silo. A virtual hierarchy may be created by grafting branches from the system hierarchy onto nodes directly or indirectly attached to the virtual root associated with the silo. For the virtual file system the grafting operation makes either a file or a directory appear at one or more places within the process s virtual file system directory. The file system implementation effectively builds a new file system view over the system s physical file system name space which is persisted to permanent storage and does exist after the silo exits or over the parent s file system name space. This concept may also be applied to other hierarchical name spaces such as the registry and the object manager name spaces. A file system is a method for storing and organizing computer files and the data the files contain on storage e.g. on disk . Most file systems use an underlying non volatile data storage device on which files are persisted. A typical storage device provides access to an array of fixed size blocks sometimes called sectors which are generally 512 bytes each. The file system software is responsible for organizing these sectors into files and directories. The file system also keeps track of which sectors belong to which file and which sectors are not being used. Traditional file systems offer facilities to create move and delete both files and directories. File systems typically have directories which associate file names with files usually by connecting the file name to an index into a file allocation table of some sort such as the FAT in an MS DOS file system or an inode in a UNIX like file system. Directory structures may be flat or may allow hierarchies. In hierarchical directories each directory may include one or more sub directories. In some file systems file names are structured with special syntax for filename extensions and version numbers. In others file names are simple strings and per file metadata is stored elsewhere. A disk file system is a file system designed for the storage of files on a data storage device most commonly a disk drive. The disk drive may be directly or indirectly connected to the computer. Examples of disk file systems include FAT NTFS HFS ext2 ISO 9660 ODS 5 and UDF. In contrast database file systems are not hierarchical. Instead of hierarchical structured management files are identified by their characteristics like type of file topic author or similar metadata. Examples include Gnome VFS BFS and WinFS. Transactional file systems are those that log events or transactions to files. Each operation performed may involve changes to a number of different files and disk structures. In many cases these changes are related so they should be executed at the same time. An example might be a bank sending another bank some money electronically. The bank s computer will send the transfer instruction to the other bank and it will also update its records to indicate the transfer has occurred. If the bank s computer crashes before its records have been updated upon reset there will be no record of the transfer but the bank will be missing some money. A special purpose file system is a file system that is not a disk file system or network file system. This includes systems where the files are arranged dynamically by software intended for communication between computer processes or temporary file space for instance. Various file systems use one or more of three kinds of links to point to data in files hard links symbolic links and aliases. A hard link is a reference or pointer to the physical data on a volume. In most file systems all named files are hard links. The name associated with the file is a label that refers the operating system to the actual data. More than one name can be associated with the same data but the data must exist in the same file system. A symbolic link is a type of link used in Unix for example which refers to another file by its pathname. In contrast with hard links there are no restrictions on where a symbolic link can point it can refer to a file on another file system to itself or to a file which does not even exist detected as a problem only when the link is accessed . An alias is designed to maintain a link to its original file even if the original file is moved or renamed. All of these links are however typically associated with non volatile directories. Unix and Unix like operating systems assign a device name to each device but the files on the device are not accessed by the device name. Instead files on the device are accessed by a virtual file system which makes all the files on all the devices appear to exist under one hierarchy. This means that in Unix there is only one root directory shared by all the partitions on the device. Every file existing on the system is located somewhere under that single root directory. The UNIX chroot command enables the root directory to become something other than its default for the lifetime of a process however the root directory is stored on non volatile storage media so that if the process crashes the directory stored on disk must be rebuilt. Unlike many other operating systems Microsoft WINDOWS uses a drive letter abstraction at the user level to distinguish one partition from another. For example the path C WINDOWS represents a directory WINDOWS on the partition represented by the letter C. Each drive letter or partition is associated with a directory tree data structure. Each directory tree data structure has a root which represents the first or top most directory in a hierarchy. It is the starting point from which all the directories in the hierarchy originate. In Unix all file system entries including mounted partitions are leaves of this root. However under DOS and WINDOWS each partition has a separate root directory labeled C for a particular partition C and there is no common root directory above that. Each device may be partitioned into multiple partitions so that multiple root directories may be associated with a single device. For example a user s physical hard disk may be partitioned into multiple logical disks each of which have their own drive letter and root directory. Secure access to file system operations can be based on access control lists ALCs or on capabilities. Most commercial file systems including some Microsoft WINDOWS operating systems use access control lists to control access to resources. Because of the widespread use of ACL based permission controls multiple applications are often allowed to share resources including shared access of hierarchical name spaces . Access to the resources is based on privileges associated with the identity of the person running the application or process rather than being based on the needs and characteristics of the application itself. This approach can be problematic. For example a user may have broad access privileges e.g. administrator status because some of the programs he runs need that level of access. For example because program1 run by user1 needs access to files one to ten user1 s access privileges must permit him to access files one to ten. Suppose program2 only needs access to files one and two. When user1 runs program2 program2 will nevertheless have access to files one to ten because user1 s privileges allow access to files one to ten. Thus because file system operations are based on ACL based permission controls in general the file system name space can be and generally is more or less global to all the processes launched by user1 running on the machine. ACL based permission controls lead to a number of problems including a program could waste processing time handling things it should not consider the presence of a new file that the program is not expecting might cause the program to operate incorrectly different programs may write or modify the same file causing interference and so on. This problem is exacerbated because not all programs have the same level of trustworthiness. Program2 may not be as trustworthy as program1 but since the user s privileges allow him to access files one to ten program2 has access to files one to ten and may maliciously modify them. In addition there may be occasions when it is desirable to provide different programs different files even though the programs use the same name for the file. Finally different programs may use the same name but mean different files. Hence there is a need for better control of shared resources than that which can easily be obtained using ACLs and privileges. To address the need for a more powerful access control mechanism than that provided for by ACLs the silo containment mechanism is introduced that enables the creation of a new isolated environment in which a process program set of programs or application can run. A new name space is created and associated with the isolated environment. The new name space provides a view of a global name space for the process program set of programs or application running in the silo. The new name space is created by creating a virtual hierarchy and joining pieces of an existing physical non volatile e.g. on disk file system to the leaf nodes of the virtual hierarchy to create a silo specific virtual hierarchy. The virtual hierarchy is stored in volatile storage e.g. memory and has no effect on the system hierarchy which is stored in non volatile storage. As the virtual hierarchy does not affect the global name space and is not persisted to non volatile storage if the system crashes the global name space does not need to be repaired or restored as would be required if the global or system name space on non volatile storage were modified. This concept may be applied to hierarchies such as the file system and other hierarchical name spaces. The invention contemplates the presence of a number of silos that are fairly dynamic that is the silos may come and go and may change fairly rapidly. When the silo is created one or more virtual hierarchies for the silo are created in memory. When the silo exits the virtual hierarchy or hierarchies for the silo are discarded. Although not required the invention can be implemented via an application programming interface API for use by a developer and or included within the network browsing software which will be described in the general context of computer executable instructions such as program modules being executed by one or more computers such as client workstations servers or other devices. Generally program modules include routines programs objects components data structures and the like that perform particular tasks or implement particular abstract data types. Typically the functionality of the program modules may be combined or distributed as desired in various embodiments. Moreover those skilled in the art will appreciate that the invention may be practiced with other computer system configurations. Other well known computing systems environments and or configurations that may be suitable for use with the invention include but are not limited to personal computers PCs automated teller machines server computers hand held or laptop devices multi processor systems microprocessor based systems programmable consumer electronics network PCs minicomputers mainframe computers and the like. The invention may also be practiced in distributed computing environments where tasks are performed by remote processing devices that are linked through a communications network or other data transmission medium. In a distributed computing environment program modules may be located in both local and remote computer storage media including memory storage devices. With reference to an exemplary system for implementing the invention includes a general purpose computing device in the form of a computer . Components of computer may include but are not limited to a processing unit a system memory and a system bus that couples various system components including the system memory to the processing unit . The system bus may be any of several types of bus structures including a memory bus or memory controller a peripheral bus and a local bus using any of a variety of bus architectures. By way of example and not limitation such architectures include Industry Standard Architecture ISA bus Micro Channel Architecture MCA bus Enhanced ISA EISA bus Video Electronics Standards Association VESA local bus and Peripheral Component Interconnect PCI bus also known as Mezzanine bus . Computer typically includes a variety of computer readable media. Computer readable media can be any available media that can be accessed by computer and includes both volatile and nonvolatile media removable and non removable media. By way of example and not limitation computer readable media may comprise computer storage media and communication media. Computer storage media includes both volatile and nonvolatile removable and non removable media implemented in any method or technology for storage of information such as computer readable instructions data structures program modules or other data. Computer storage media includes but is not limited to RAM ROM EEPROM flash memory or other memory technology CDROM digital versatile disks DVD or other optical disk storage magnetic cassettes magnetic tape magnetic disk storage or other magnetic storage devices or any other medium which can be used to store the desired information and which can be accessed by computer . Communication media typically embodies computer readable instructions data structures program modules or other data in a modulated data signal such as a carrier wave or other transport mechanism and includes any information delivery media. The term modulated data signal means a signal that has one or more of its characteristics set or changed in such a manner as to encode information in the signal. By way of example and not limitation communication media includes wired media such as a wired network or direct wired connection and wireless media such as acoustic RF infrared and other wireless media. Combinations of any of the above should also be included within the scope of computer readable media. The system memory includes computer storage media in the form of volatile and or nonvolatile memory such as read only memory ROM and random access memory RAM . A basic input output system BIOS containing the basic routines that help to transfer information between elements within computer such as during start up is typically stored in ROM . RAM typically contains data and or program modules that are immediately accessible to and or presently being operated on by processing unit . By way of example and not limitation illustrates operating system application programs other program modules and program data . The computer may also include other removable non removable volatile nonvolatile computer storage media. By way of example only illustrates a hard disk drive that reads from or writes to non removable nonvolatile magnetic media a magnetic disk drive that reads from or writes to a removable nonvolatile magnetic disk and an optical disk drive that reads from or writes to a removable nonvolatile optical disk such as a CD ROM or other optical media. Other removable non removable volatile nonvolatile computer storage media that can be used in the exemplary operating environment include but are not limited to magnetic tape cassettes flash memory cards digital versatile disks digital video tape solid state RAM solid state ROM and the like. The hard disk drive is typically connected to the system bus through a non removable memory interface such as interface and magnetic disk drive and optical disk drive are typically connected to the system bus by a removable memory interface such as interface . The drives and their associated computer storage media discussed above and illustrated in provide storage of computer readable instructions data structures program modules and other data for the computer . In for example hard disk drive is illustrated as storing operating system application programs other program modules and program data . Note that these components can either be the same as or different from operating system application programs other program modules and program data . Operating system application programs other program modules and program data are given different numbers here to illustrate that at a minimum they are different copies. A user may enter commands and information into the computer through input devices such as a keyboard and pointing device commonly referred to as a mouse trackball or touch pad. Other input devices not shown may include a microphone joystick game pad satellite dish scanner or the like. These and other input devices are often connected to the processing unit through a user input interface that is coupled to the system bus but may be connected by other interface and bus structures such as a parallel port game port or a universal serial bus USB . A monitor or other type of display device is also connected to the system bus via an interface such as a video interface . A graphics interface such as Northbridge may also be connected to the system bus . Northbridge is a chipset that communicates with the CPU or host processing unit and assumes responsibility for accelerated graphics port AGP communications. One or more graphics processing units GPUs may communicate with graphics interface . In this regard GPUs generally include on chip memory storage such as register storage and GPUs communicate with a video memory . GPUs however are but one example of a coprocessor and thus a variety of coprocessing devices may be included in computer . A monitor or other type of display device is also connected to the system bus via an interface such as a video interface which may in turn communicate with video memory . In addition to monitor computers may also include other peripheral output devices such as speakers and printer which may be connected through an output peripheral interface . The computer may operate in a networked environment using logical connections to one or more remote computers such as a remote computer . The remote computer may be a personal computer a server a router a network PC a peer device or other common network node and typically includes many or all of the elements described above relative to the computer although only a memory storage device has been illustrated in . The logical connections depicted in include a local area network LAN and a wide area network WAN but may also include other networks. Such networking environments are commonplace in offices enterprise wide computer networks intranets and the Internet. When used in a LAN networking environment the computer is connected to the LAN through a network interface or adapter . When used in a WAN networking environment the computer typically includes a modem or other means for establishing communications over the WAN such as the Internet. The modem which may be internal or external may be connected to the system bus via the user input interface or other appropriate mechanism. In a networked environment program modules depicted relative to the computer or portions thereof may be stored in the remote memory storage device. By way of example and not limitation illustrates remote application programs as residing on memory device . It will be appreciated that the network connections shown are exemplary and other means of establishing a communications link between the computers may be used. One of ordinary skill in the art can appreciate that a computer or other client device can be deployed as part of a computer network. In this regard the present invention pertains to any computer system having any number of memory or storage units and any number of applications and processes occurring across any number of storage units or volumes. The present invention may apply to an environment with server computers and client computers deployed in a network environment having remote or local storage. The present invention may also apply to a standalone computing device having programming language functionality interpretation and execution capabilities. Within each partition system may include a system environment and a number of isolated environments. In some embodiments of the invention the isolated environments are silos. The system environment may include or be associated with a number of name spaces including but not limited to one or more of a system processes name space a system objects name space and a file system name space . System may also include an operating system . The operating system may include one or more operating system components including but not limited to an operating system kernel and an object manager . In some embodiments of the invention the object manager resides within the kernel. System may also include other components not here shown but well known in the art. System may include one or more side by side silos etc. in each partition or associated with each drive letter. Each silo in some embodiments is associated with its own silo process name space silo object name space and silo file system name space but shares a single operating system instance with all the processes in the system. For example in silo is associated with silo processes name space silo objects name space and silo file system name space . Silo etc. does not however have its own operating system instance. That is for example silo is served by the same operating system instance operating system that serves the system environment and any other silos that may exist. Silo etc. may include one or more child silos etc. Silo itself may include one or more child silos and so on to any degree of nesting. Child silo in is associated with child silo processes name space child silo objects name space and child silo file system name space but is served by the same operating system instance that serve all the other environments. A child silo may be created by a process running in its parent silo. For example in a process in silo processes name space may have created child silo by creating a view into the silo name space as described more fully below. A process may not escape from its silo. For example a process in silo processes name space may not escape from silo . Similarly a child process of child silo processes name space may not escape from child silo . Furthermore the smallest entity capable of being siloed placed in its own silo is a process. A sub process cannot be siloed. Thus the global name space for resources may be overridden by a silo specific version of the name space the virtual hierarchy that restricts the access of processes within the silo to the resources to those appearing within the virtual hierarchy. Processes may be assigned to the silo based on characteristics associated with the process so that resources can be restricted for processes in the silo based on the process instead of based on the user running the process. For example each silo may override portions of the global file system name space. If the silo is a child silo portions of the parent silo name spaces can be overridden by the child silo name space. For example when a process such as process etc. running within a silo e.g. silo attempts to access a particular part of the file system the access may be redirected to a silo specific version of the file system. To illustrate the creation of a virtual hierarchy for a silo the following example is directed to the creation of a virtual file system directory for the silo but it will be understood that the process also applies to the creation of other hierarchical name spaces. In the tree structure outside of the dotted box illustrates an exemplary physical file system directory as it exists in non volatile storage. Node is the root node. Nodes and represent child nodes of node . Nodes and are first level nodes. Node is a child node of node nodes and are child nodes of node and node is a child node of node . Nodes and are second level nodes. Nodes and are child nodes of node and nodes and are child nodes of node . Nodes and are third level nodes. Physical directory may represent the global hierarchical file system directory for processes in the system environment and may represent for example the following Nodes and may represent user folders or sub directories e.g. node may be user Madhu s folder node may be user Jeff s folder and node may be user Erick s folder . Virtual hierarchy enclosed in the dotted box may represent a virtual file system directory that may be created in memory i.e. volatile storage for a silo such as silo of created at step . Virtual hierarchy exists independently of physical hierarchy . Physical hierarchy is unaffected by the creation use or operations on virtual hierarchy . An empty virtual root e.g. node is created . Then virtual directory nodes are created . For example in nodes and may be created. Nodes may be created on one or more sub root levels. For example nodes and are first level nodes and node is a second level node. Any number of levels of nodes may be created. Junctions may then be created to the physical hierarchy i.e. to the physical file system directory in the example on non volatile storage . A junction may be created from a leaf node such as leaf node leaf node and or leaf node to a node in the underlying physical directory. For example in virtual directory a junction junctions are indicated in the figures by dashed arrows extending from leaf node of virtual directory to node of physical directory has been created a junction from leaf node of virtual directory to node of physical directory has been created and a junction from leaf node of virtual directory to node of physical directory has been created. It is not necessary to name nodes in the virtual directory the same as corresponding nodes in the physical directory. For example the node named Erick in physical directory may be named ErickX in virtual directory . illustrates the effect of creation of the junctions. It will be appreciated that a junction from any node of a virtual directory may be established to any node of a physical directory. Furthermore it will be appreciated that any node in the physical directory that exists above the junction will be unavailable to any process using the virtual directory. For example nodes and are unavailable to a process whose virtual directory is virtual directory . Furthermore it will be appreciated that additional levels of nodes may exist between the virtual root node and the leaf nodes in the virtual directory hierarchy as shown in in which the nodes and exist on a first sub root level between root node and leaf nodes and . Node exists on a first sub root level between root node and leaf node and node exists on a second sub root level between node and leaf node . Although only three sub root levels are shown in any number of sub root levels may exist in a virtual directory hierarchy. a pointer to a physical directory node or a string representing the name of the physical directory node an access mask An access mask is a 32 bit value containing the permissions that are allowed or denied in the ACE Access Control Entry which is used in an ACL Access Control List . When an object is opened the Access Mask is used to request access rights. A process a group of processes a program a group of programs an application or a group of applications may be placed in the isolated environment. Each process etc. will access the virtual hierarchy associated with the isolated environment. Access to resources is thus restricted to those portions of the system hierarchy for which junctions to the physical hierarchy are provided. The virtual hierarchy provides the only way that a process within the isolated environment can access a resource or set of resources represented by the virtual hierarchy. At if the node referenced is a node in the virtual directory and the node referenced is not a leaf node a handle is returned to the virtual node . If the node referenced is a leaf node the name used to reference the node is changed to a name that can be resolved in the physical directory and a handle to a node in the physical directory is returned . For example suppose a request to open a file is received. Suppose that the specific request is open C Documents and Settings Erick . At it may be determined that a silo e.g. silo exists on partition C. If the process requesting access to the Erick folder is a process such as a process of system processes i.e. a process outside the silo a handle to node of may be returned. If the process requesting access to the Erick folder is a process such as process i.e. a process within the silo the node to which access is being requested is node of virtual directory . Node is a leaf node with a junction to node in the physical directory. Suppose node of virtual directory is named ErickX. In this case the name would have to be changed to Erick in order to be correctly resolved in the physical directory. The various techniques described herein may be implemented in connection with hardware or software or where appropriate with a combination of both. Thus the methods and apparatus of the present invention or certain aspects or portions thereof may take the form of program code i.e. instructions embodied in tangible media such as floppy diskettes CD ROMs hard drives or any other machine readable storage medium wherein when the program code is loaded into and executed by a machine such as a computer the machine becomes an apparatus for practicing the invention. In the case of program code execution on programmable computers the computing device will generally include a processor a storage medium readable by the processor including volatile and non volatile memory and or storage elements at least one input device and at least one output device. One or more programs that may utilize the creation and or implementation of domain specific programming models aspects of the present invention e.g. through the use of a data processing API or the like are preferably implemented in a high level procedural or object oriented programming language to communicate with a computer system. However the program s can be implemented in assembly or machine language if desired. In any case the language may be a compiled or interpreted language and combined with hardware implementations. While the present invention has been described in connection with the preferred embodiments of the various figures it is to be understood that other similar embodiments may be used or modifications and additions may be made to the described embodiments for performing the same function of the present invention without deviating therefrom. Therefore the present invention should not be limited to any single embodiment but rather should be construed in breadth and scope in accordance with the appended claims.
407.875
2,353
0.821407
eng_Latn
0.999937
89ce8d81bfe66a33e8714ec2ce3eecde4c95828f
1,517
md
Markdown
algorithms/machinelearning/course/dltf/2-1.md
shevapato2008/myBlog
fb6bf8ad3a3f001fe9c5520c588eb6c614b8cc6d
[ "MIT" ]
null
null
null
algorithms/machinelearning/course/dltf/2-1.md
shevapato2008/myBlog
fb6bf8ad3a3f001fe9c5520c588eb6c614b8cc6d
[ "MIT" ]
null
null
null
algorithms/machinelearning/course/dltf/2-1.md
shevapato2008/myBlog
fb6bf8ad3a3f001fe9c5520c588eb6c614b8cc6d
[ "MIT" ]
null
null
null
--- layout: dltf title: 2.1 - Introduction to Convolutional Networks comments: true mathjax: true --- ### {{page.title}} <img src="{{site.baseurl}}/algorithms/machinelearning/course/dltf/slides/2-1-1.png" alt="[Image] slide image" style="width: 800px; margin: 10px; border: 1px solid black;"/> <img src="{{site.baseurl}}/algorithms/machinelearning/course/dltf/slides/2-1-2.png" alt="[Image] slide image" style="width: 800px; margin: 10px; border: 1px solid black;"/> <img src="{{site.baseurl}}/algorithms/machinelearning/course/dltf/slides/2-1-3.png" alt="[Image] slide image" style="width: 800px; margin: 10px; border: 1px solid black;"/> <img src="{{site.baseurl}}/algorithms/machinelearning/course/dltf/slides/2-1-4.png" alt="[Image] slide image" style="width: 800px; margin: 10px; border: 1px solid black;"/> <img src="{{site.baseurl}}/algorithms/machinelearning/course/dltf/slides/2-1-5.png" alt="[Image] slide image" style="width: 800px; margin: 10px; border: 1px solid black;"/> <img src="{{site.baseurl}}/algorithms/machinelearning/course/dltf/slides/2-1-6.png" alt="[Image] slide image" style="width: 800px; margin: 10px; border: 1px solid black;"/> <img src="{{site.baseurl}}/algorithms/machinelearning/course/dltf/slides/2-1-7.png" alt="[Image] slide image" style="width: 800px; margin: 10px; border: 1px solid black;"/> <img src="{{site.baseurl}}/algorithms/machinelearning/course/dltf/slides/2-1-8.png" alt="[Image] slide image" style="width: 800px; margin: 10px; border: 1px solid black;"/> <br><br>
75.85
172
0.722479
yue_Hant
0.107134
89cf33199bfa0a6a5a4edea2d927066721d7070e
288
md
Markdown
docs/api-reference/classes/MacroParameter/getName.md
stianol/crmscript
be1ad4f3a967aee2974e9dc7217255565980331e
[ "MIT" ]
null
null
null
docs/api-reference/classes/MacroParameter/getName.md
stianol/crmscript
be1ad4f3a967aee2974e9dc7217255565980331e
[ "MIT" ]
null
null
null
docs/api-reference/classes/MacroParameter/getName.md
stianol/crmscript
be1ad4f3a967aee2974e9dc7217255565980331e
[ "MIT" ]
null
null
null
--- uid: crmscript_ref_MacroParameter_getName title: MacroParameter.getName() intellisense: MacroParameter.getName sortOrder: 483 keywords: getName() so.topic: reference --- # MacroParameter.getName() This function returns the name of the parameter. The name is used for accessing it.
20.571429
83
0.795139
eng_Latn
0.691349
89d0641a592a598e1f9c06e73f5b9821c32d1866
5,698
md
Markdown
README.md
cncjs/cncjs-pendant-ps3
2f6d1172801acaaead763f2ae8b53d0bb538fb32
[ "MIT" ]
21
2017-01-31T16:44:59.000Z
2022-02-04T18:43:58.000Z
README.md
cncjs/cncjs-pendant-ps3
2f6d1172801acaaead763f2ae8b53d0bb538fb32
[ "MIT" ]
9
2017-02-12T15:43:04.000Z
2022-02-21T17:20:03.000Z
README.md
cncjs/cncjs-pendant-ps3
2f6d1172801acaaead763f2ae8b53d0bb538fb32
[ "MIT" ]
16
2017-03-24T22:08:23.000Z
2021-11-22T20:07:56.000Z
# cncjs-pendant-ps3 Dual Shock / PS3 Bluetooth Remote Pendant for CNCjs Use [Playstation 3 Controller](https://www.playstation.com/en-us/explore/accessories/dualshock-3-ps3/) wirelessly over bluetooth to control CNC from the host device (raspberry pi). [PS3 CNC Control Button Map](https://docs.google.com/drawings/d/1DMzfBk5DSvjJ082FrerrfmpL19-pYAOcvcmTbZJJsvs/edit?usp=sharing) [Remote Pendant (Playstation 3 Dualshock Controller / SIXAXIS Controller)](https://github.com/cheton/cnc/issues/103) Using a wireless game controller (like a PS3 controller) seems to be one of the lowest cost & simplest solution method. See related issue [#103](https://github.com/cheton/cnc/issues/103) ## Playstation Controller Setup ( general guide to connect hardware & setup ) Here is what I have figured out so far for PS3 on Raspberry PI 3 w/ integrated bluetooth. The bellow just shows how to get PS3 controller connected. ## Bluetooth Configuration ### Install ``` # Install & Enable Bluetooth Tools sudo apt-get install -y bluetooth libbluetooth3 libusb-dev sudo systemctl enable bluetooth.service # Add pi user to bluetooth group sudo usermod -G bluetooth -a pi ``` ### Pairing Tools ``` # Get and build the command line pairing tool (sixpair) wget http://www.pabr.org/sixlinux/sixpair.c gcc -o sixpair sixpair.c -lusb ### Connect PS3 over USB # Get PS3 DS sudo ./sixpair ``` ### [Parting DualShock 3 Controller](https://wiki.gentoo.org/wiki/Sony_DualShock) ``` ### Disonnect DualShock 3 over USB # Start bluetoothctl: bluetoothctl # Enable the agent and set it as default: agent on default-agent # Power on the Bluetooth controller, and set it as discoverable and pairable: power on discoverable on pairable on ### Connect DualShock 3 over USB, and press the PlayStation button. # Discover the DualShock 3 MAC address: devices ### Disonnect DualShock 3 over USB #Allow the service authorization request: #[agent]Authorize service service_uuid (yes/no): yes #Trust the DualShock 3: #trust device_mac_address # Replace "MAC" with MAC of "Device 64:D4:BD:B3:9E:66 PLAYSTATION(R)3 Controller" trust 64:D4:BD:B3:9E:66 # The DualShock 3 is now paired: quit # Turn the DualShock 3 off when it's no longer in use by pressing and holding the PlayStation button for 10 seconds. # Press the PlayStation button to use the DualShock 3 again. ``` ### Test Controller Connectivity ``` ### PS3 Controller: press the PS button, the lights on the front of the controller should flash for a couple of seconds then stop, leaving a single light on. If you now look again at the contents of /dev/input you should see a new device, probably called something like ‘js0’: # List Devices ls /dev/input ``` ### Get Battery Level `cat "/sys/class/power_supply/sony_controller_battery_64:d4:bd:b3:9e:66/capacity"` ### Joystick Application ``` # Install sudo apt-get -y install joystick # Usage / Test jstest /dev/input/js0 ``` ---------------------------------------- ## Install NodeJS Libraries - https://www.npmjs.com/package/node-hid - https://www.npmjs.com/package/dualshock-controller ### Node.js DS3 Controller Setup ``` # Install Tools sudo apt-get install -y libudev-dev libusb-1.0-0 libusb-1.0-0-dev build-essential git sudo apt-get install -y gcc-4.8 g++-4.8 && export CXX=g++-4.8 #npm install node-gyp node-pre-gyp # Install node-hid with hidraw support #npm install node-hid --driver=hidraw --build-from-source --unsafe-perm # Install Pendant Package sudo npm install -g cncjs-pendant-ps3 --unsafe-perm # Install Globally ## If NOT installed globally, Install node-hid with hidraw support (https://github.com/rdepena/node-dualshock-controller) ``` ### [Create udev Rules](https://github.com/rdepena/node-dualshock-controller#-create-udev-rules) ``` # Run as Root sudo su # You will need to create a udev rule to be able to access the hid stream as a non root user. sudo touch /etc/udev/rules.d/61-dualshock.rules sudo cat <<EOT >> /etc/udev/rules.d/61-dualshock.rules SUBSYSTEM=="input", GROUP="input", MODE="0666" SUBSYSTEM=="usb", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0268", MODE:="666", GROUP="plugdev" KERNEL=="hidraw*", SUBSYSTEM=="hidraw", MODE="0664", GROUP="plugdev" SUBSYSTEM=="input", GROUP="input", MODE="0666" SUBSYSTEM=="usb", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="05c4", MODE:="666", GROUP="plugdev" KERNEL=="hidraw*", SUBSYSTEM=="hidraw", MODE="0664", GROUP="plugdev" EOT # Reload the rules, then disconnect/connect the controller. sudo udevadm control --reload-rules exit ``` # QUICK FIX for node-hid hidraw... PLEASE HELP IF YOU KNOW FIX ``` # I am having issues with node-hid --driver=hidraw not seeming to work... quickest fix is to reinstall, node-hid --driver=hidraw # Reinstall (node-hid --driver=hidraw) on cncjs-pendant-ps3 cd /usr/lib/node_modules/cncjs-pendant-ps3/ sudo npm install node-hid --driver=hidraw --build-from-source --unsafe-perm ``` I recommend rebooting now. After reboot you can test pendant by running `cncjs-pendant-ps3 -p "/dev/ttyUSB0"`. ---------------------------------------- # Auto Start ### Install [Production Process Manager [PM2]](http://pm2.io) ``` # Install Production Process Manager [PM2] npm install pm2 -g # Setup PM2 Startup Script pm2 startup debian #[PM2] You have to run this command as root. Execute the following command: sudo su -c "env PATH=$PATH:/home/pi/.nvm/versions/node/v4.5.0/bin pm2 startup debian -u pi --hp /home/pi" # Start Dual Shock / PS3 Bluetooth Remote Pendant for CNCjs (conected to serail device @ /dev/ttyUSB0) with PM2 pm2 start $(which cncjs-pendant-ps3) -- -p "/dev/ttyUSB0" # Set current running apps to startup pm2 save # Get list of PM2 processes pm2 list ```
32.19209
307
0.732538
eng_Latn
0.62841
89d08958c0291ff4c5ac93dc1119c16dc8928d5e
19
md
Markdown
Production/area_function_v.1.1.0/Test/fsLog/log.md
legioner9/Node_Way_source_2
04d1980bfe4e7c42ada4ccd7f54a14e9ceca7c42
[ "MIT" ]
null
null
null
Production/area_function_v.1.1.0/Test/fsLog/log.md
legioner9/Node_Way_source_2
04d1980bfe4e7c42ada4ccd7f54a14e9ceca7c42
[ "MIT" ]
1
2021-02-24T21:17:25.000Z
2021-05-03T07:38:41.000Z
Production/area_function_v.1.1.0/Test/fsLog/log.md
legioner9/Node_Way_source_2
04d1980bfe4e7c42ada4ccd7f54a14e9ceca7c42
[ "MIT" ]
null
null
null
mes from _u._fsLog
9.5
18
0.789474
eng_Latn
0.899112
89d1633a8d9fb2a81f9562cf51473a722a61c580
990
md
Markdown
README.md
zerodie7/GMapBk
b2a8328b4854efacd2582027feeb0b44cadde0b6
[ "Apache-2.0" ]
null
null
null
README.md
zerodie7/GMapBk
b2a8328b4854efacd2582027feeb0b44cadde0b6
[ "Apache-2.0" ]
null
null
null
README.md
zerodie7/GMapBk
b2a8328b4854efacd2582027feeb0b44cadde0b6
[ "Apache-2.0" ]
null
null
null
# Implementacion MVVM + Android JetPack ### Extrae Informacion de json simulado como consumo de API desde github: Despliega tarjetas con la siguiente información: * id * nombre * direccion * bicis disponibles * espacios disponibles Cuenta con un sistema de filtros implementados por FAB los cuales permiten : * Obtiene cordenadas de lat y lon del dispotivo, posteriormente valida las cordenadas del usuario con las del movil, si estas se encuentran dentro de un radio de acción establecido, se mostrara los destinos. * Ordenar de mayor a menor bicis disponibles" * Ordena de menor a mayor espacios disponibles" ## Extras * Se implemento evento onClick en cada tarjeta la cual permite navegar a un nuevo fragmento, el cual despliega en un mapa la ubicación de la estación * Dentro del mapa se cuenta con los filtros descritos en el punto anterior. * Al seleccionar el punto marcado en mapa se muestra en una tarjeta los detalles de dicho punto. * Vista previa en carpeta blob
35.357143
207
0.785859
spa_Latn
0.996966
89d1661ccf59b0cebc658314d44ca8e6f37f0255
1,175
md
Markdown
pages/Research.md
JackLandry/jacklandry.github.io
7e4e9eddac6bcf460aca2060357152bc9768d97d
[ "BSD-3-Clause", "MIT" ]
null
null
null
pages/Research.md
JackLandry/jacklandry.github.io
7e4e9eddac6bcf460aca2060357152bc9768d97d
[ "BSD-3-Clause", "MIT" ]
2
2020-05-10T20:59:58.000Z
2020-05-10T21:07:50.000Z
pages/Research.md
JackLandry/jacklandry.github.io
7e4e9eddac6bcf460aca2060357152bc9768d97d
[ "BSD-3-Clause", "MIT" ]
null
null
null
--- title: Research description: type: pages layout: single author_profile: true --- __Jain Family Institute Research__ [Analysis of Full Refundability of the Child Tax Credit Without Expansion](https://www.jainfamilyinstitute.org/assets/full-refundability-of-child-tax-credit-without-expansion.pdf) [Reducing Refundability of the Child Tax Credit: Assessing Poverty Impacts and Tradeoffs](https://www.jainfamilyinstitute.org/assets/JFI_Microsimulation_Limited-CTC-Impacts.pdf) [Assessing Non-filer Rates & Poverty Impacts for the American Rescue Plan Act’s Expanded CTC](https://www.jainfamilyinstitute.org/assets/jfi_microsimulation_expanded-ctc-impacts.pdf) __Political Science Research__ [Campaign Finance and Working Class Representation in State Legislatures](../papers/public_finance_working_class.pdf) [How Politicians' Occupational Backgrounds Structure Politics: Evidence from State Legislators](../papers/occupations_st_leg.pdf) [Perceptions of Crime and Punitive Attitudes](../papers/crime-experiment.pdf) __Papers with an Abstract Link (Check Back Soon for a PDF)__ [The Uneven Application of Voter ID Laws](../pages/abstracts/id_laws_race.md)
36.71875
140
0.812766
eng_Latn
0.450326
800b06eb01934998edaecab37ab4eacf295d9ffa
43,978
md
Markdown
2021/6-24.md
flaging/FeedReport
063b225bea5306a98c72dabe7c8dbbcff4e59365
[ "MIT" ]
1
2021-07-03T11:10:39.000Z
2021-07-03T11:10:39.000Z
2021/6-24.md
flaging/FeedReport
063b225bea5306a98c72dabe7c8dbbcff4e59365
[ "MIT" ]
null
null
null
2021/6-24.md
flaging/FeedReport
063b225bea5306a98c72dabe7c8dbbcff4e59365
[ "MIT" ]
null
null
null
## 2021-6-24 [摄像头和激光雷达都被蒙蔽?UCI首次提出针对自动驾驶多传感器融合感知的攻击](https://www.jiqizhixin.com/articles/2021-06-23-14) > 作者: 机器之心 拉取时间: 2021-06-24 05:47:53 [AI总监Karpathy亲自揭秘特斯拉纯视觉系统,还有自动驾驶超算Dojo原型](https://www.jiqizhixin.com/articles/2021-06-23-13) > 作者: 机器之心 拉取时间: 2021-06-24 05:47:53 [向Linux看齐,立志存活三十年:包云岗团队开源高性能RISC_sV处理器「香山」](https://www.jiqizhixin.com/articles/2021-06-23-12) > 作者: 机器之心 拉取时间: 2021-06-24 05:47:53 [CVPR一次中66篇,大装置一天训练完GPT_s3,商汤准备迎战未来](https://www.jiqizhixin.com/articles/2021-06-23-11) > 作者: 机器之心 拉取时间: 2021-06-24 05:47:53 [大咖齐聚、思想碰撞、探索前沿,2021WAIC· 隐私计算学术交流会全日程公布](https://www.jiqizhixin.com/articles/2021-06-23-10) > 作者: 机器之心 拉取时间: 2021-06-24 05:47:53 [让机器学习设计手机GUI,这合理么?](https://www.jiqizhixin.com/articles/2021-06-23-9) > 作者: 特邀精选 拉取时间: 2021-06-24 05:47:53 [百度研究院RAL团队登顶nuScenes三维目标检测公开挑战赛榜单](https://www.jiqizhixin.com/articles/2021-06-23-8) > 作者: 新闻助手 拉取时间: 2021-06-24 05:47:53 [科创板将迎开市两周年,A股“扫地茅”石头科技乘风而上](https://www.jiqizhixin.com/articles/2021-06-23-7) > 作者: 新闻助手 拉取时间: 2021-06-24 05:47:53 [CVPR一次中66篇,大装置一天训练完GPT_s3,商汤准备迎战未来](https://www.jiqizhixin.com/articles/2021-06-23-6) > 作者: 机器之心 拉取时间: 2021-06-24 05:47:53 [挖矿、炒币全面被禁,比特币在中国迎来最冷寒冬](https://www.jiqizhixin.com/articles/2021-06-23-5) > 作者: 机器之能 拉取时间: 2021-06-24 05:47:53 [招募 | 从华为到高通、从V2X到Robotaxi,这次要把智能驾驶聊通透!](https://www.jiqizhixin.com/articles/2021-06-23-4) > 作者: AutoByte 拉取时间: 2021-06-24 05:47:53 [V2X马上就要来了,但有些问题还没有解决](https://www.jiqizhixin.com/articles/2021-06-23-3) > 作者: AutoByte 拉取时间: 2021-06-24 05:47:53 [RNN 用于生物医学全息成像,速度加快50倍](https://www.jiqizhixin.com/articles/2021-06-23-2) > 作者: ScienceAI 拉取时间: 2021-06-24 05:47:53 [【重磅】世界人工智能大会——2021全球AI产业人才高峰论坛强势来袭!](https://www.jiqizhixin.com/articles/2021-06-23) > 作者: 新闻助手 拉取时间: 2021-06-24 05:47:53 [首届「脑科学开放日」在京举行,张钹院士为什么看好这家脑机技术公司?](https://www.jiqizhixin.com/articles/2021-06-22-10) > 作者: 蛋酱 拉取时间: 2021-06-23 05:48:30 [腾讯与清华大学物理系签署合作备忘录,探索材料计算新领域](https://www.jiqizhixin.com/articles/2021-06-22-9) > 作者: 新闻助手 拉取时间: 2021-06-23 05:48:30 [WebRTC 传输安全机制第二话:深入显出 SRTP 协议](https://www.jiqizhixin.com/articles/2021-06-16-3) > 作者: 阿里云视频云 拉取时间: 2021-06-23 05:48:30 [CVPR 2021奖项出炉:最佳论文花落马普所,何恺明获提名,首届黄煦涛纪念奖颁布](https://www.jiqizhixin.com/articles/2021-06-22-8) > 作者: 机器之心 拉取时间: 2021-06-23 05:48:30 [招募 | WAIC智能驾驶论坛启动报名!聚焦第一梯队的权威声音](https://www.jiqizhixin.com/articles/2021-06-22-7) > 作者: AutoByte 拉取时间: 2021-06-23 05:48:30 [嬴彻科技CTO杨睿刚博士与你分享CVPR 2021入选论文](https://www.jiqizhixin.com/articles/2021-06-22-6) > 作者: 机器之心 拉取时间: 2021-06-23 05:48:30 [NOP、NGP、ANP傻傻分不清楚?快来收藏这份智能汽车词汇黄页!](https://www.jiqizhixin.com/articles/2021-06-22-5) > 作者: AutoByte 拉取时间: 2021-06-23 05:48:30 [从1到N,AI落地现在进行时](https://www.jiqizhixin.com/articles/2021-06-22-4) > 作者: 机器之心 拉取时间: 2021-06-23 05:48:30 [英伟达与AI芯片的未来之战](https://www.jiqizhixin.com/articles/2021-06-22-3) > 作者: 机器之能 拉取时间: 2021-06-23 05:48:30 [DNA逻辑电路可能是医学的未来,这个程序降低了DNA逻辑电路的设计门槛](https://www.jiqizhixin.com/articles/2021-06-22-2) > 作者: ScienceAI 拉取时间: 2021-06-23 05:48:30 [横扫六大权威榜单后,达摩院把自家深度语言模型体系AliceMind开源了](https://www.jiqizhixin.com/articles/2021-06-22) > 作者: 机器之心 拉取时间: 2021-06-23 05:48:30 [江苏建成首条「无人驾驶」高速公路,全长33公里](https://www.jiqizhixin.com/articles/2021-06-21-6) > 作者: AutoByte 拉取时间: 2021-06-22 05:51:51 [招募 | WAIC智能驾驶论坛启动报名,快来围观一线企业的最新观点!](https://www.jiqizhixin.com/articles/2021-06-21-5) > 作者: AutoByte 拉取时间: 2021-06-22 05:51:51 [2021RBR50机器人创新榜出炉,中国只有一家自动驾驶公司上榜](https://www.jiqizhixin.com/articles/2021-06-21-4) > 作者: 机器之能 拉取时间: 2021-06-22 05:51:51 [中国SaaS的前世今生](https://www.jiqizhixin.com/articles/2021-06-21-3) > 作者: 机器之能 拉取时间: 2021-06-22 05:51:51 [319篇文献、41页综述文章讲述图神经网络用于医疗诊断的前世今生与未来](https://www.jiqizhixin.com/articles/2021-06-21-2) > 作者: ScienceAI 拉取时间: 2021-06-22 05:51:51 [从实验室到市场:千寻位置推进北斗走进大众应用](https://www.jiqizhixin.com/articles/2021-06-21) > 作者: 新闻助手 拉取时间: 2021-06-22 05:51:51 [温柔岁月,沪宁记忆 02:南京篇](https://sspai.com/post/66924) > 作者: Hermanchannn 拉取时间: 2021-06-24 05:47:56 [不买可以先收藏 06:筛选房源的第一步,读懂户型图](https://sspai.com/post/67379) > 作者: sleep9ull 拉取时间: 2021-06-24 05:47:56 [Refresh 周报:本周值得关注的泛 Android 资讯](https://sspai.com/post/67370) > 作者: 黎明前线Alan 拉取时间: 2021-06-24 05:47:56 [2021 年最适合你的翻译 App 是什么?你可能需要这份指南](https://sspai.com/post/67303) > 作者: Kostya 拉取时间: 2021-06-24 05:47:56 [让人人都能表达创意的专业课程:Today at Apple 创想营开学了](https://sspai.com/post/67376) > 作者: waychane 拉取时间: 2021-06-24 05:47:56 [派早报:Today at Apple 创想营正式启动 、《守望先锋》开启跨平台试玩测试](https://sspai.com/post/67377) > 作者: 少数派编辑部 拉取时间: 2021-06-24 05:47:56 [把想看的内容读给你听,近乎完美的 TTS 阅读器:声之梦朗读器](https://sspai.com/post/67359) > 作者: 顾伶磊 拉取时间: 2021-06-23 05:48:32 [少数派员工的桌面长啥样——键鼠外设用些啥?](https://sspai.com/post/67355) > 作者: 少数派编辑部 拉取时间: 2021-06-23 05:48:32 [虽是懒人福利,但一锅流其实没那么简单](https://sspai.com/post/66362) > 作者: Microhoo 拉取时间: 2021-06-23 05:48:32 [搭建「知识框架」学习新领域,来看我如何快速入门产品经理](https://sspai.com/post/67015) > 作者: 宇宙浪费指南 拉取时间: 2021-06-23 05:48:32 [派早报:蜂窝网络版新款 iPad Pro 正式发售、小米电视 6 将于月底发布等](https://sspai.com/post/67356) > 作者: 少数派编辑部 拉取时间: 2021-06-23 05:48:32 [派评·特别篇 | 聊聊我们心中的设计奖与好 App](https://sspai.com/post/67352) > 作者: 少数派编辑部 拉取时间: 2021-06-22 05:51:54 [了解这些小技巧,今晚开始努力睡个好觉](https://sspai.com/post/66861) > 作者: 包包呀嘿 拉取时间: 2021-06-22 05:51:54 [这就是下一代的 Windows?Windows 11 上手体验](https://sspai.com/post/67328) > 作者: 化学心情下2 拉取时间: 2021-06-22 05:51:54 [纯文本、懂人话、好迁移:用 Beancount 入门复式记账](https://sspai.com/post/67198) > 作者: Log924 拉取时间: 2021-06-22 05:51:54 [派早报:iOS 发现 Wi_sFi 漏洞、Google 正在打造类似 Find My 的设备查找功能等](https://sspai.com/post/67342) > 作者: 少数派编辑部 拉取时间: 2021-06-22 05:51:54 [One Commander 3 – 多栏、多主题、高自定义、文件预览,免费的文件管理器[Windows]](https://www.appinn.com/one-commander-3/) > 作者: 青小蛙 拉取时间: 2021-06-24 05:47:57 [如何在屏幕上高亮显示鼠标点击?Cursor Highlighter](https://www.appinn.com/cursor-highlighter-for-windows/) > 作者: 青小蛙 拉取时间: 2021-06-23 05:48:34 [亚马逊海外购:西部数据 10TB_b14TB 硬盘价格回落](https://www.appinn.com/amazon-harddisk-202106/) > 作者: 青小蛙 拉取时间: 2021-06-23 05:48:34 [亚马逊特价:群晖 DS220+ 1591 元,DS920+ 2927 元,需要 Prime 会员](https://www.appinn.com/amazon-prime-synology-202106/) > 作者: 青小蛙 拉取时间: 2021-06-22 05:51:55 [我在哪 – 向好友分享未来 30 分钟的实时位置[微信小程序]](https://www.appinn.com/where-am-i-wechat-miniapps/) > 作者: 青小蛙 拉取时间: 2021-06-22 05:51:55 [Updating A 25_sYear_sOld Website](https://dev.to/madsstoumann/updating-a-25-year-old-website-42jm) > 作者: Mads Stoumann 拉取时间: 2021-06-22 05:51:59 [5 Resource To Enrich Your Front end Skills](https://dev.to/rezaulkarim/5-resource-to-enrich-your-front-end-skills-38nk) > 作者: Rezaul karim 拉取时间: 2021-06-22 05:51:59 [10 Examples of a Good 👩‍💻🧑‍💻 Developer Portfolio 💼 for Your Inspiration 🦄](https://dev.to/kerthin/10-examples-of-a-good-developer-portfolio-for-your-inspiration-2f88) > 作者: Roden 拉取时间: 2021-06-22 05:51:59 [🚀10 Trending projects on GitHub for web developers _s 18th June 2021](https://dev.to/iainfreestone/10-trending-projects-on-github-for-web-developers-18th-june-2021-34d1) > 作者: Iain Freestone 拉取时间: 2021-06-22 05:51:59 [A Complete Guide To Decorators In Typescript](https://dev.to/akashshyam/a-complete-guide-to-decorators-in-typescript-g0l) > 作者: Akash Shyam 拉取时间: 2021-06-22 05:51:59 [Top Courses To Learn JAVASCRIPT](https://dev.to/amritanshu/top-courses-to-learn-javascript-43ah) > 作者: Amritanshu Dev Rawat 拉取时间: 2021-06-22 05:51:59 [Dark mode toggle animation using CSS !](https://dev.to/murtuzaalisurti/dark-mode-toggle-animation-using-css-27il) > 作者: murtuza 拉取时间: 2021-06-22 05:51:59 [How does Virtual DOM work_d2 (Build your own)](https://dev.to/aidenybai/how-does-virtual-dom-work-b74) > 作者: Aiden Bai 拉取时间: 2021-06-22 05:51:59 [Understanding the use of useRef hook & forwardRef in React](https://dev.to/sajithpradeep/understanding-the-use-of-useeffect-hook-forwardref-in-react-57jf) > 作者: Sajith Pradeep 拉取时间: 2021-06-22 05:51:59 [5 Awesome CSS tricks every developer should know](https://dev.to/sumeet16/5-awesome-css-tricks-every-developer-should-know-2n5k) > 作者: Sumeet Yadav 拉取时间: 2021-06-22 05:51:59 [Helpful Page Layouts using Tailwind CSS](https://dev.to/codeply/helpful-page-layouts-using-tailwind-css-1a3k) > 作者: Tom Michew, Codeply 拉取时间: 2021-06-22 05:51:59 [I built a React app generator_d](https://dev.to/leopold/i-build-a-react-app-generator-2dg6) > 作者: Leopold 拉取时间: 2021-06-22 05:51:59 [6 essentials tips for VueJs from 2_d5 years experience #1](https://dev.to/codeozz/6-essentials-tips-for-vuejs-from-2-5-years-experience-1-4h7o) > 作者: CodeOzz 拉取时间: 2021-06-22 05:51:59 [5 Epic React Tips To Use Today](https://dev.to/reedbarger/5-epic-react-tips-to-use-today-3dpk) > 作者: Reed Barger 拉取时间: 2021-06-22 05:51:59 [𝗛𝗼𝘄 𝘁𝗼 𝗳𝗶𝗻𝗱 "UNUSED_a 𝗝𝗔𝗩𝗔𝗦𝗖𝗥𝗜𝗣𝗧 𝗮𝗻𝗱 𝗖𝗦𝗦 𝗰𝗼𝗱𝗲 𝗼𝗻 𝘆𝗼_d_d_d](https://dev.to/varunprashar5/unused-3688) > 作者: varunprashar5 拉取时间: 2021-06-22 05:51:59 [Learn and Master Flexbox by building commonly used web components](https://dev.to/arshadayvid/learn-and-master-flexbox-by-building-commonly-used-web-components-14n8) > 作者: David Asaolu 拉取时间: 2021-06-22 05:51:59 [Styled components cheat sheet](https://dev.to/keefdrive/styled-components-cheat-sheet-58nd) > 作者: Keerthi 拉取时间: 2021-06-22 05:51:59 [Why build Single Page Apps in Blazor](https://dev.to/dotnet/why-build-single-page-apps-in-blazor-103m) > 作者: David Pine, _dNET 拉取时间: 2021-06-22 05:51:59 [(Part 1) Build quality forms with React 🚀](https://dev.to/alarid/build-quality-forms-with-react-9nk) > 作者: Yohann Legrand 拉取时间: 2021-06-22 05:51:59 [[22] Top 10 Must_sHave Web Dev Tools – June 2021](https://dev.to/villivald/22-top-10-must-have-web-dev-tools-june-2021-1aj) > 作者: MV 拉取时间: 2021-06-22 05:51:59 [5 Amazing API For Your Project](https://dev.to/nikhil27b/5-amazing-api-for-your-project-270e) > 作者: Nikhil Bobade 拉取时间: 2021-06-22 05:51:59 [Building A Password Manager With React JS, Crypto JS, and Fauna](https://dev.to/bkoiki950/building-a-password-manager-with-react-js-crypto-js-and-fauna-29g9) > 作者: Babatunde Koiki 拉取时间: 2021-06-22 05:51:59 [React custom hooks _t A simple explanation🐱‍👤](https://dev.to/_ali_/react-custom-hooks-a-simple-explanation-bpj) > 作者: ali 拉取时间: 2021-06-22 05:51:59 [Improving Genomic Discovery with Machine Learning](http://feedproxy.google.com/~r/blogspot/gJZg/~3/dUKd8nUp3vY/improving-genomic-discovery-with.html) > 作者: Google AI (noreply@blogger_dcom) 拉取时间: 2021-06-24 05:48:00 [Quantum Machine Learning and the Power of Data](http://feedproxy.google.com/~r/blogspot/gJZg/~3/5mwX1gN-7UE/quantum-machine-learning-and-power-of.html) > 作者: Google AI (noreply@blogger_dcom) 拉取时间: 2021-06-23 05:48:37 [Google at CVPR 2021](http://feedproxy.google.com/~r/blogspot/gJZg/~3/TrNMZxLRY78/google-at-cvpr-2021.html) > 作者: Google AI (noreply@blogger_dcom) 拉取时间: 2021-06-22 05:52:00 [献礼建党一百周年「永远跟党走」](https://www.vmovier.com/62360) > 作者: null 拉取时间: 2021-06-24 05:48:04 [跪着看完!第一视角「大神的无限穿越」](https://www.vmovier.com/62349) > 作者: null 拉取时间: 2021-06-24 05:48:04 [热不热,你自己知道「我们家在着火」](https://www.vmovier.com/62299) > 作者: null 拉取时间: 2021-06-24 05:48:04 [趣味科普「宇航员如何在外太空吃东西」](https://www.vmovier.com/62345) > 作者: null 拉取时间: 2021-06-24 05:48:04 [一镜到底创意短片「梦幻泡影」](https://www.vmovier.com/62314) > 作者: null 拉取时间: 2021-06-24 05:48:04 [全电动斯柯达上线「机器人成长记」](https://www.vmovier.com/62356) > 作者: null 拉取时间: 2021-06-24 05:48:04 [戛纳入围学生动画作品「我的宇航员母亲」](https://www.vmovier.com/62350) > 作者: null 拉取时间: 2021-06-24 05:48:04 [4 个电影制作技巧,让作品更上一层楼!](https://www.vmovier.com/62348) > 作者: null 拉取时间: 2021-06-24 05:48:04 [庆祝建党百年!匠心水下摄影「红」](https://www.vmovier.com/62352) > 作者: null 拉取时间: 2021-06-23 05:48:41 [脑洞大开!灯光音乐艺术秀「小夜曲」](https://www.vmovier.com/62353) > 作者: null 拉取时间: 2021-06-23 05:48:41 [华语世界喜剧之王「万字解读周星驰」](https://www.vmovier.com/62347) > 作者: null 拉取时间: 2021-06-23 05:48:41 [巴黎的奇幻夜「生活,有无限可能」](https://www.vmovier.com/62311) > 作者: null 拉取时间: 2021-06-23 05:48:41 [MINI 黑白风创意广告「极简主义」](https://www.vmovier.com/62346) > 作者: null 拉取时间: 2021-06-23 05:48:41 [支棱起来!「改装一位rapper有多难」](https://www.vmovier.com/62323) > 作者: null 拉取时间: 2021-06-23 05:48:41 [这是什么梗「周星驰如何讲笑话」](https://www.vmovier.com/61819) > 作者: null 拉取时间: 2021-06-23 05:48:41 [推动长江经济带发展领导小组办公室综合协调组召开生态环境突出问题“以案促改”工作推进视频会](https://www.ndrc.gov.cn/xwdt/xwfb/202106/t20210622_1283723.html) > 作者: null 拉取时间: 2021-06-24 05:48:11 [国家发展改革委举行6月份新闻发布会 介绍宏观经济运行情况并回应热点问题](https://www.ndrc.gov.cn/xwdt/xwfb/202106/t20210617_1283409.html) > 作者: null 拉取时间: 2021-06-24 05:48:11 [国家发展改革委社会司组织召开《脱贫攻坚的伟大实践——社会领域公共服务助力脱贫攻坚典型案例》新书发布暨经验交流会](https://www.ndrc.gov.cn/xwdt/xwfb/202106/t20210617_1283384.html) > 作者: null 拉取时间: 2021-06-24 05:48:11 [国家发展改革委发布生猪价格过度下跌三级预警](https://www.ndrc.gov.cn/xwdt/xwfb/202106/t20210616_1283300.html) > 作者: null 拉取时间: 2021-06-24 05:48:11 [猪粮比价进入过度下跌三级预警区间](https://www.ndrc.gov.cn/xwdt/xwfb/202106/t20210616_1283299.html) > 作者: null 拉取时间: 2021-06-24 05:48:11 [[D] 5 minute paper digest_t Towards Real_sWorld Blind Face Restoration with Generative Facial Prior (GFP_sGAN) by Xintao Wang et al](https://www.reddit.com/r/DeepLearningPapers/comments/o6hng9/d_5_minute_paper_digest_towards_realworld_blind/) > 作者: _bu_bKirillTheMunchKing 拉取时间: 2021-06-24 05:49:55 [YOLOR (Scaled_sYOLOv4_sbased)_t The best speed_baccuracy ratio for Waymo autonomous driving challenge](https://www.reddit.com/r/DeepLearningPapers/comments/o6hob2/yolor_scaledyolov4based_the_best_speedaccuracy/) > 作者: _bu_bAlexeyAB 拉取时间: 2021-06-24 05:49:55 [High_sQuality Background Removal Without Green Screens explained_d The GitHub repo (linked in comments) has been edited with code and commercial solution for anyone interested!](https://www.reddit.com/r/DeepLearningPapers/comments/o6bk1c/highquality_background_removal_without_green/) > 作者: _bu_bOnlyProggingForFun 拉取时间: 2021-06-24 05:49:55 [Can we used matrices and lists for custom Dataset_d2](https://www.reddit.com/r/pytorch/comments/o63ozl/can_we_used_matrices_and_lists_for_custom_dataset/) > 作者: _bu_bpacha14 拉取时间: 2021-06-24 05:49:55 [Can pytorch handle string processing_d2](https://www.reddit.com/r/pytorch/comments/o61m2r/can_pytorch_handle_string_processing/) > 作者: _bu_bpolandtown 拉取时间: 2021-06-24 05:49:55 [2 transforms on 1 dataset](https://www.reddit.com/r/pytorch/comments/o5lxet/2_transforms_on_1_dataset/) > 作者: _bu_bgiakou4 拉取时间: 2021-06-23 05:51:15 [Most Popular Machine Learning Libraries _s 2014_b2019](https://www.reddit.com/r/pytorch/comments/o4rqdh/most_popular_machine_learning_libraries_20142019/) > 作者: _bu_bcuffia_azzurra_2 拉取时间: 2021-06-22 05:54:44 [Neural Style Transfer in PyTorch](https://www.reddit.com/r/pytorch/comments/o4mtnc/neural_style_transfer_in_pytorch/) > 作者: _bu_bBig_sGuarantee_s2621 拉取时间: 2021-06-22 05:54:44 [Using hooks](https://www.reddit.com/r/pytorch/comments/o4m21c/using_hooks/) > 作者: _bu_bDaBobcat 拉取时间: 2021-06-22 05:54:44 [Horse Jumping](https://datagenetics.com/blog/june62021/index.html) > 作者: null 拉取时间: 2021-06-23 05:52:08 [57th Top500 List _s Predictions_d2](https://www.reddit.com/r/HPC/comments/o4p5ig/57th_top500_list_predictions/) > 作者: _bu_bgreasythug 拉取时间: 2021-06-22 05:55:37 [疫情期间生病了怎么办?这份就医指南请收好](https://m.21jingji.com/article/20210621/herald/2ddfebb15621aa467913c05ad9e0147b.html) > 作者: null 拉取时间: 2021-06-22 05:55:40 [Comic for 2021_d06_d22](http://www.explosm.net/comics/5904/) > 作者: null 拉取时间: 2021-06-23 05:53:00 [Comic for 2021_d06_d21](http://www.explosm.net/comics/5903/) > 作者: null 拉取时间: 2021-06-23 05:53:00 [Comic for 2021_d06_d20](http://www.explosm.net/comics/5902/) > 作者: null 拉取时间: 2021-06-22 05:55:40 [请问有啥 UP 主语音语调语气特别催眠吗?什么内容不重要。](https://www.v2ex.com/t/785336) > 作者: Newyorkcity 拉取时间: 2021-06-24 05:52:31 [轻松生成漂亮的网页](https://www.v2ex.com/t/785319) > 作者: huoye 拉取时间: 2021-06-24 05:52:31 [主打隐私的 brave 浏览器今天推出了他们的搜索引擎啦~](https://www.v2ex.com/t/785271) > 作者: sn0w 拉取时间: 2021-06-24 05:52:31 [把原来 KPI 我的 HR 给怼了](https://www.v2ex.com/t/785262) > 作者: PEIENYKYK 拉取时间: 2021-06-24 05:52:31 [有没有什么好的方法防止互联网隐私暴露给家人](https://www.v2ex.com/t/785253) > 作者: my2492 拉取时间: 2021-06-24 05:52:31 [是不是只有我对“阿里”这个词 PTSD 了_d_d_d_d_d](https://www.v2ex.com/t/785246) > 作者: liouop 拉取时间: 2021-06-24 05:52:31 [大佬们,安徽高考成绩出来了,理科一本线 488,自家弟弟考了 546 分,高 58 分,有没有可能努力冲击一下 211 另外,是否有推荐合适的学校,或专业 已经很多年_d_d_d](https://www.v2ex.com/t/785243) > 作者: vaynecv 拉取时间: 2021-06-24 05:52:31 [有没有比较安全、好用的纯净版 win7_bwin10 gho_d2](https://www.v2ex.com/t/785232) > 作者: windbadboy 拉取时间: 2021-06-24 05:52:31 [iPhone13 会出屏下指纹吗](https://www.v2ex.com/t/785091) > 作者: QGabriel 拉取时间: 2021-06-23 05:53:50 [公司要求使用个人身份证办理电话卡给业务部门做营销电话,如何应对?](https://www.v2ex.com/t/785080) > 作者: devswork 拉取时间: 2021-06-23 05:53:50 [你们的项目启动时间是几秒_d2](https://www.v2ex.com/t/785066) > 作者: szq8014 拉取时间: 2021-06-23 05:53:50 [Rocky Linux 8_d4 正式发布了](https://www.v2ex.com/t/785010) > 作者: thunderw 拉取时间: 2021-06-23 05:53:50 [长时间敲代码,是浅色背景好还是深色背景好?](https://www.v2ex.com/t/785006) > 作者: zhangchongjie 拉取时间: 2021-06-23 05:53:50 [Android 刷机包从定制到放弃_d 不折腾了, 回老苹果_d _s_s 一个中年大叔的吐槽](https://www.v2ex.com/t/784982) > 作者: qanniu 拉取时间: 2021-06-23 05:53:50 [思域劲动,星瑞时空版皓月,速腾超越版,落地都在 15 左右。敢问铁子们该怎么选?](https://www.v2ex.com/t/784974) > 作者: qsy733842 拉取时间: 2021-06-23 05:53:50 [亚马逊群晖 DS220+ 1591 元值得轻度用户入手吗?](https://www.v2ex.com/t/784971) > 作者: cherrysalo 拉取时间: 2021-06-23 05:53:50 [“上火”应该怎么翻译比较好呢?](https://www.v2ex.com/t/784881) > 作者: Tumblr 拉取时间: 2021-06-22 05:56:32 [国内离开微信,还有什么干净,无广告,无太多入侵的聊天软件](https://www.v2ex.com/t/784810) > 作者: NEVERCODE 拉取时间: 2021-06-22 05:56:32 [想落户太难了!](https://www.v2ex.com/t/784802) > 作者: b1gCi 拉取时间: 2021-06-22 05:56:32 [原来 Linux 内核贡献第二是这么来的](https://www.v2ex.com/t/784789) > 作者: labulaka521 拉取时间: 2021-06-22 05:56:32 [大龄程序员,未来在哪里?该往什么方向发展呢?](https://www.v2ex.com/t/784754) > 作者: dxxzst 拉取时间: 2021-06-22 05:56:32 [同一个 WIFI,如何让别人看视频不影响我玩儿游戏](https://www.v2ex.com/t/784747) > 作者: lengxubo 拉取时间: 2021-06-22 05:56:32 [求 v 友推荐一个价值在硬件上而不是软件上的 nas 机器](https://www.v2ex.com/t/784746) > 作者: Wait845 拉取时间: 2021-06-22 05:56:32 [感觉手表除了跑步没别的用了。](https://www.v2ex.com/t/784736) > 作者: nicetoomeetyou 拉取时间: 2021-06-22 05:56:32 [【已受理】深圳市路维光电股份有限公司](http://kcb.sse.com.cn//renewal/xmxq/index.shtml?auditId=934) > 作者: 已受理 拉取时间: 2021-06-22 05:56:32 [【已受理】福建福特科光电股份有限公司](http://kcb.sse.com.cn//renewal/xmxq/index.shtml?auditId=941) > 作者: 已受理 拉取时间: 2021-06-22 05:56:32 [【已受理】唯捷创芯(天津)电子技术股份有限公司](http://kcb.sse.com.cn//renewal/xmxq/index.shtml?auditId=945) > 作者: 已受理 拉取时间: 2021-06-22 05:56:32 [【已受理】荣昌生物制药(烟台)股份有限公司](http://kcb.sse.com.cn//renewal/xmxq/index.shtml?auditId=943) > 作者: 已受理 拉取时间: 2021-06-22 05:56:32 [【已受理】北京浩瀚深度信息技术股份有限公司](http://kcb.sse.com.cn//renewal/xmxq/index.shtml?auditId=926) > 作者: 已受理 拉取时间: 2021-06-22 05:56:32 [2021年6月23日外交部发言人赵立坚主持例行记者会(2021_s06_s23)](https://www.fmprc.gov.cn/web/wjdt_674879/fyrbt_674889/t1886125.shtml) > 作者: null 拉取时间: 2021-06-24 05:53:21 [外交部发言人就友好国家在人权理事会第47届会议做支持中方的共同发言答记者问(2021_s06_s22)](https://www.fmprc.gov.cn/web/wjdt_674879/fyrbt_674889/t1885801.shtml) > 作者: null 拉取时间: 2021-06-23 05:54:41 [2021年6月22日外交部发言人赵立坚主持例行记者会(2021_s06_s22)](https://www.fmprc.gov.cn/web/wjdt_674879/fyrbt_674889/t1885770.shtml) > 作者: null 拉取时间: 2021-06-23 05:54:41 [2021年6月21日外交部发言人赵立坚主持例行记者会(2021_s06_s21)](https://www.fmprc.gov.cn/web/wjdt_674879/fyrbt_674889/t1885422.shtml) > 作者: null 拉取时间: 2021-06-22 05:56:33 [2021年6月18日外交部发言人赵立坚主持例行记者会(2021_s06_s18)](https://www.fmprc.gov.cn/web/wjdt_674879/fyrbt_674889/t1884928.shtml) > 作者: null 拉取时间: 2021-06-22 05:56:33 [【喷嚏图卦20210623】我告诉大家考得比较好的那两个人](https://www.dapenti.com/blog/more.asp?name=xilei&id=157801) > 作者: null 拉取时间: 2021-06-24 05:53:26 [【喷嚏图卦20210622】为了生活,总是画同一幅画](https://www.dapenti.com/blog/more.asp?name=xilei&id=157776) > 作者: null 拉取时间: 2021-06-23 05:54:45 [【喷嚏图卦20210621】夏至](https://www.dapenti.com/blog/more.asp?name=xilei&id=157752) > 作者: null 拉取时间: 2021-06-22 05:56:37 [6月23日新闻茶泡Fan](https://www.cfan.com.cn/2021/0623/135308.shtml) > 作者: null 拉取时间: 2021-06-24 05:53:29 [6月22日新闻茶泡Fan](https://www.cfan.com.cn/2021/0622/135305.shtml) > 作者: null 拉取时间: 2021-06-23 05:54:48 [6月21日新闻茶泡Fan](https://www.cfan.com.cn/2021/0621/135301.shtml) > 作者: null 拉取时间: 2021-06-22 05:56:40 [2020欧洲杯官方合作伙伴 vivo开启非凡欧洲杯观赛派对](https://www.cfan.com.cn/2021/0621/135299.shtml) > 作者: null 拉取时间: 2021-06-22 05:56:40 [2021年6月22日新闻联播文字版](http://www.xwlb.net.cn/20286.html) > 作者: null 拉取时间: 2021-06-23 05:54:48 [2021年6月21日新闻联播文字版](http://www.xwlb.net.cn/20266.html) > 作者: null 拉取时间: 2021-06-23 05:54:48 [WHY 健力士世涛生啤酒的气泡会下沉和层层叠叠](http://jandan.net/p/109145) > 作者: majer 拉取时间: 2021-06-24 05:54:20 [现代文明并未提高人类这一物种的基础寿命](http://jandan.net/p/109134) > 作者: majer 拉取时间: 2021-06-24 05:54:20 [微软的市值几个小时前突破了2万亿美元](http://jandan.net/p/109148) > 作者: majer 拉取时间: 2021-06-24 05:54:20 [今日好价:浪莎睡衣](http://jandan.net/p/109147) > 作者: sein 拉取时间: 2021-06-24 05:54:20 [大地母亲竟然存在“心率”:每2700万年搏动一下](http://jandan.net/p/109133) > 作者: majer 拉取时间: 2021-06-23 05:54:50 [国内加密货币矿工涌入德州和佛州](http://jandan.net/p/109143) > 作者: majer 拉取时间: 2021-06-23 05:54:50 [谎言?扑朔迷离:南非自称生下十胞胎的妇女下落不明](http://jandan.net/p/109139) > 作者: majer 拉取时间: 2021-06-23 05:54:50 [对标SpaceX?Relativity Space公司拟开发可重复使用火箭](http://jandan.net/p/109140) > 作者: sein 拉取时间: 2021-06-23 05:54:50 [今日好价:阿宽地域美食大礼包](http://jandan.net/p/109138) > 作者: sein 拉取时间: 2021-06-23 05:54:50 [没有退休计划的哈勃望远镜死机了](http://jandan.net/p/109132) > 作者: majer 拉取时间: 2021-06-22 05:57:33 [医院食堂出售的餐饮可能导致慢性心力衰竭患者的死亡率升高](http://jandan.net/p/108938) > 作者: majer 拉取时间: 2021-06-22 05:57:33 [美数万人请愿:等杰夫贝佐斯的火箭升空后,就禁止它再落回地面](http://jandan.net/p/109131) > 作者: majer 拉取时间: 2021-06-22 05:57:33 [今日好价:115网盘的11_d5年会员](http://jandan.net/p/109130) > 作者: sein 拉取时间: 2021-06-22 05:57:33 [这些年来,原生家庭的影响是否被过度夸大了?](https://daily.zhihu.com/story/9737346) > 作者: null 拉取时间: 2021-06-24 05:55:12 [装修前应该做好哪些准备工作?](https://daily.zhihu.com/story/9737355) > 作者: null 拉取时间: 2021-06-24 05:55:12 [在这个外向者更吃香的社会里,内向者拿什么做优势?](https://daily.zhihu.com/story/9737364) > 作者: null 拉取时间: 2021-06-24 05:55:12 [洗面奶和卸妆油,如果只用一个,能把脸洗干净吗?](https://daily.zhihu.com/story/9737370) > 作者: null 拉取时间: 2021-06-24 05:55:12 [大误 · 葡萄在直肠里发酵成酒算酒驾吗?](https://daily.zhihu.com/story/9737336) > 作者: null 拉取时间: 2021-06-24 05:55:12 [瞎扯 · 如何正确地吐槽](https://daily.zhihu.com/story/9737328) > 作者: null 拉取时间: 2021-06-24 05:55:12 [什么是情感勒索?](https://daily.zhihu.com/story/9737292) > 作者: null 拉取时间: 2021-06-23 05:55:42 [充满爱的家庭能给孩子带来什么?](https://daily.zhihu.com/story/9737302) > 作者: null 拉取时间: 2021-06-23 05:55:42 [如何看待职场中的「向上管理」?](https://daily.zhihu.com/story/9737306) > 作者: null 拉取时间: 2021-06-23 05:55:42 [高温油炸过后的尸体还能检测出 DNA 是什么原理_d2](https://daily.zhihu.com/story/9737316) > 作者: null 拉取时间: 2021-06-23 05:55:42 [男生夏天该如何搭配?](https://daily.zhihu.com/story/9737325) > 作者: null 拉取时间: 2021-06-23 05:55:42 [瞎扯 · 如何正确地吐槽](https://daily.zhihu.com/story/9737285) > 作者: null 拉取时间: 2021-06-23 05:55:42 [有哪些是「真正去过非洲的人」才知道的事?](https://daily.zhihu.com/story/9737266) > 作者: null 拉取时间: 2021-06-22 05:58:24 [想快速入坑王家卫,应该按什么顺序来看电影?](https://daily.zhihu.com/story/9737254) > 作者: null 拉取时间: 2021-06-22 05:58:24 [什么鞋子比较百搭?](https://daily.zhihu.com/story/9737263) > 作者: null 拉取时间: 2021-06-22 05:58:24 [给猫做绝育有什么注意事项?](https://daily.zhihu.com/story/9737250) > 作者: null 拉取时间: 2021-06-22 05:58:24 [科学史上有哪些令人惋惜的遗憾?](https://daily.zhihu.com/story/9737275) > 作者: null 拉取时间: 2021-06-22 05:58:24 [瞎扯 · 如何正确地吐槽](https://daily.zhihu.com/story/9737255) > 作者: null 拉取时间: 2021-06-22 05:58:24 [提问:范哥好! 今天开会被一个同事直呼名字举例,带有恶意地那种。我回应不要这样子并不再理她,事后她还装模作样跟我道歉。内心对她做法非常反感,这已经不是_d_d_d](https://weibo.com/6543823943/KlvIKfiuJ) > 作者: 野心范 拉取时间: 2021-06-24 05:55:13 [怎么吵架不伤感情。正常的两性关系,吵吵架是很正常的,永远一团和气才奇怪,毕竟不是两条死鱼在谈恋爱,但吵架讲究个分寸,搞过头了,很伤感情,要人为控制一下_d_d_d](https://weibo.com/6543823943/KltvP3U6Z) > 作者: 野心范 拉取时间: 2021-06-24 05:55:13 [不自律的本质是拖延,拖延的本质是忍受,忍受的本质是,你愤怒和厌恶带来的勇气,还不足以超越解决问题带来的恐惧!](https://weibo.com/6543823943/KloIutH7e) > 作者: 野心范 拉取时间: 2021-06-23 05:55:43 [生意要看眼前利益。那天业务员跟我说,跟了半年的单子,临门一脚,被人家给抢了,参数都改成别人的了。我问他,你不是取得老大首肯了吗,怎么就反转了。他说,老_d_d_d](https://weibo.com/6543823943/Klncb0mPO) > 作者: 野心范 拉取时间: 2021-06-23 05:55:43 [人的立场是很容易动摇的。现在我们看很多古代流传下来的故事,尤其春秋战国时期,各种合纵连横,拉拢分化,凭个三寸不烂之舌,左右君王于股掌之间,这不是讲故事_d_d_d](https://weibo.com/6543823943/KljWSDh3P) > 作者: 野心范 拉取时间: 2021-06-23 05:55:43 [哪些地方要避免用力过猛。 我们回想起以前的自己来,常常觉得好傻好幼稚,很大部分原因,就是做了一些用力过猛的事情。当时以为自己是尽力,其实后面想想,是有_d_d_d](https://weibo.com/6543823943/KlbyjsRuO) > 作者: 野心范 拉取时间: 2021-06-22 05:59:15 [沟通的前提永远不是你有多正确,而是别人首先要愿意听你讲。 沟通的出发点不是显得自己有多厉害,而是要牵引着对方往自己设定的方向走。](https://weibo.com/6543823943/KlaqFtz7P) > 作者: 野心范 拉取时间: 2021-06-22 05:59:15 [青年图摘0623!是个爱国人士啊](https://qingniantuzhai.com/qing-nian-tu-zhai-0623-3/) > 作者: Chris 拉取时间: 2021-06-24 05:55:16 [青年图摘0622!大孝子](https://qingniantuzhai.com/qing-nian-tu-zhai-0622-4/) > 作者: Chris 拉取时间: 2021-06-23 05:55:46 [青年图摘0621!黑板装不下我的证明过程](https://qingniantuzhai.com/qing-nian-tu-zhai-0620-guo-yu-ji-zhao-reng-la-ji/) > 作者: Chris 拉取时间: 2021-06-22 05:59:18 [硬核观察 #311 国产 RISC_sV 处理器“香山”,已成功运行 Linux](https://linux.cn/article-13515-1.html?utm_source=rss&utm_medium=rss) > 作者: linux@linux_dcn (linux) 拉取时间: 2021-06-24 05:56:08 [网上相会,何如线下小酌:LLUG 北京发起首次活动邀约](https://linux.cn/article-13514-1.html?utm_source=rss&utm_medium=rss) > 作者: linux@linux_dcn (linux) 拉取时间: 2021-06-24 05:56:08 [用 Eleventy 建立一个静态网站](https://linux.cn/article-13513-1.html?utm_source=rss&utm_medium=rss) > 作者: linux@linux_dcn (linux) 拉取时间: 2021-06-24 05:56:08 [自由_b开源软件如何保护在线隐私](https://linux.cn/article-13512-1.html?utm_source=rss&utm_medium=rss) > 作者: linux@linux_dcn (linux) 拉取时间: 2021-06-24 05:56:08 [硬核观察 #310 中国的火星车、空间站等航天器使用麒麟操作系统](https://linux.cn/article-13511-1.html?utm_source=rss&utm_medium=rss) > 作者: linux@linux_dcn (linux) 拉取时间: 2021-06-23 05:56:38 [Subtitld_t 一个跨平台的开源字幕编辑器](https://linux.cn/article-13510-1.html?utm_source=rss&utm_medium=rss) > 作者: linux@linux_dcn (linux) 拉取时间: 2021-06-23 05:56:38 [《代码英雄》第四季(5):更智能的电话 —— 掌上电脑的旅程](https://linux.cn/article-13509-1.html?utm_source=rss&utm_medium=rss) > 作者: linux@linux_dcn (linux) 拉取时间: 2021-06-23 05:56:38 [硬核观察 #309 微软的 Linux 仓库遭遇 22 小时中断](https://linux.cn/article-13508-1.html?utm_source=rss&utm_medium=rss) > 作者: linux@linux_dcn (linux) 拉取时间: 2021-06-22 06:00:11 [用 Deskreen 将你的 Linux 屏幕镜像或串流到任何设备上](https://linux.cn/article-13507-1.html?utm_source=rss&utm_medium=rss) > 作者: linux@linux_dcn (linux) 拉取时间: 2021-06-22 06:00:11 [探索 Kubernetes 生态系统(2021 版)](https://linux.cn/article-13506-1.html?utm_source=rss&utm_medium=rss) > 作者: linux@linux_dcn (linux) 拉取时间: 2021-06-22 06:00:11 [ONVIF协议云台服务规范(三)_s移动操作 ONVIF PTZ Service Specification_sMove Operations](http://www.cppblog.com/chinapeter2008/archive/2021/06/19/217721.html) > 作者: canaan 拉取时间: 2021-06-23 05:56:40 [给 mdbook 编写的两个插件:mdbook_stheme(_sace)](https://rustcc.cn/article?id=b217a721-a767-4c83-adf0-ebf588ad39f8) > 作者: null 拉取时间: 2021-06-24 05:56:13 [ndarray_linalg编译错误](https://rustcc.cn/article?id=06aa9320-76ad-4db3-b0e5-7d56c4422012) > 作者: null 拉取时间: 2021-06-24 05:56:13 [sqlite数据库和返回对象的处理](https://rustcc.cn/article?id=bcf9ffd5-cdf6-493c-bd52-d021c0825606) > 作者: null 拉取时间: 2021-06-24 05:56:13 [Rust工程师招聘(远程办公 全职)](https://rustcc.cn/article?id=1c7c773e-5942-4a74-ad1a-80adb8f52039) > 作者: null 拉取时间: 2021-06-24 05:56:13 [Rust目前有比较成熟的数字信号处理库吗](https://rustcc.cn/article?id=554e4fa8-5c93-4eba-9a32-5a682a37c2e1) > 作者: null 拉取时间: 2021-06-24 05:56:13 [「系列」Rust设计模式 什么时候继续?](https://rustcc.cn/article?id=704a61eb-9792-4a27-b225-0e6bb9c0c1ea) > 作者: null 拉取时间: 2021-06-24 05:56:13 [doorer Windows 小工具](https://rustcc.cn/article?id=4660417a-462e-4b59-bd28-2f050ea83bec) > 作者: null 拉取时间: 2021-06-23 05:56:43 [【Rust日报】2021_s06_s22 2021 年 Rust 行业调研报告](https://rustcc.cn/article?id=5a1a99f3-fc33-4a20-8aa1-ac8cb7ab9c86) > 作者: null 拉取时间: 2021-06-23 05:56:43 [关于 多线程传递闭包 需要声明_astatic的问题](https://rustcc.cn/article?id=b09e9772-63cf-4481-92a6-e9b3e85c316d) > 作者: null 拉取时间: 2021-06-23 05:56:43 [一个小东西, 使用windows_srs和cargo_swix的demo](https://rustcc.cn/article?id=e8d7c0b2-9d22-4a17-bdac-3976fbe6c6d7) > 作者: null 拉取时间: 2021-06-23 05:56:43 [Rust里面是否支持全局文本替换的宏](https://rustcc.cn/article?id=b4c23248-06e0-4589-915f-32ba5b6eaabd) > 作者: null 拉取时间: 2021-06-22 06:00:14 [【Rust日报】2021_s06_s21 使用 Rust 编写一个简单的监视器](https://rustcc.cn/article?id=ee930b3b-b5fc-43d8-905e-5f4ae1a9a572) > 作者: null 拉取时间: 2021-06-22 06:00:14 [请问怎么获得结构体的名称?](https://rustcc.cn/article?id=7d1c6bb2-60e4-4644-b08c-12ee67b8d6b6) > 作者: null 拉取时间: 2021-06-22 06:00:14 [推荐一个 C++ 中文教程,主要基于 Google 曾在 GitHub 上开源的单元测试框架 GoogleTest 进行讲解。从实现原理到构建项目的全流程,带你从零开发一个完整的 C++ _d_d_d](https://weibo.com/5722964389/KlycLoHUz) > 作者: GitHubDaily 拉取时间: 2021-06-24 05:56:13 [分享一款可用于 SQL 审核的开源神器:Yearning。该工具致力于帮助开发者快速完成 SQL 语句的审核、检测、执行、回滚等操作,使日常的 SQL 变动得以更加规范化、_d_d_d](https://weibo.com/5722964389/Klx1HtXSV) > 作者: GitHubDaily 拉取时间: 2021-06-24 05:56:13 [推荐 GitHub 上一款开源的 VSCode 扩展:Netease Music for VS Code,开发者可直接使用 VSCode 来播放网易云音乐的歌曲。该扩展目前已实现暂停播放歌曲、私人 FM_d_d_d](https://weibo.com/5722964389/KlvP1bNh8) > 作者: GitHubDaily 拉取时间: 2021-06-24 05:56:13 [推荐一本 Go 语言相关的免费电子书:《Go With The Domain》,主要教你如何构建一个真实的、开源的、可部署的 Web 应用程序。在项目构建过程中,作者还会介绍关_d_d_d](https://weibo.com/5722964389/Klnp2v0MD) > 作者: GitHubDaily 拉取时间: 2021-06-23 05:56:44 [GitHub 上近期比较火的一个面试题解仓库:The Complete FAANG Preparation。里面包含了数据结构、算法知识点讲解、Facebook、Apple、Google 等互联网公司面试题_d_d_d](https://weibo.com/5722964389/Kll2V3Z99) > 作者: GitHubDaily 拉取时间: 2021-06-23 05:56:44 [国内一名开发者 GitHub 上开源了一款网盘工具:小白羊。该工具支持多账号管理、文件在线预览、批量管理、队列上传与下载、任务脚本回调、远程操作访问等核心功能_d_d_d](https://weibo.com/5722964389/KlbCH6Thy) > 作者: GitHubDaily 拉取时间: 2021-06-22 06:00:15 [Daily Hacker News for 2021_s06_s22](https://www.daemonology.net/hn-daily/2021-06-22.html) > 作者: null 拉取时间: 2021-06-24 05:56:14 [Daily Hacker News for 2021_s06_s21](https://www.daemonology.net/hn-daily/2021-06-21.html) > 作者: null 拉取时间: 2021-06-23 05:56:44 [Daily Hacker News for 2021_s06_s20](https://www.daemonology.net/hn-daily/2021-06-20.html) > 作者: null 拉取时间: 2021-06-22 06:00:16 [特斯拉披露自家超算集群雏形,最新版本超算有望登顶世界第一?](https://www.infoq.cn/article/DlOHkBuh8hDH8bUQEcPv) > 作者: 施尧 拉取时间: 2021-06-24 05:56:16 [B站数据平台负责人毛剑:从管理到下一线,优秀管理者应具备什么样的素质?](https://www.infoq.cn/article/hmLMILJLS8jUwU5Pz5PQ) > 作者: 毛剑 拉取时间: 2021-06-24 05:56:16 [80_0企业数字化转型失败?那是因为没做好这6件事](https://www.infoq.cn/article/seIHo5MN8V3uWaNPdIMY) > 作者: 李洋 拉取时间: 2021-06-24 05:56:16 [Python之父:Python 4_d0可能不会有了](https://www.infoq.cn/article/19UlbxY0Xy7CEBaZOg2x) > 作者: TecTalk 拉取时间: 2021-06-24 05:56:16 [我们应该重新定义REST吗?](https://www.infoq.cn/article/XvBXPx8YXTySt3TFMvdi) > 作者: Kieran Potts 拉取时间: 2021-06-24 05:56:16 [开源筑梦,破势而出:优麒麟 20_d04 LTS Pro 发布会成功举办](https://www.infoq.cn/article/5P2dUCzl6Y7g6TQl775W) > 作者: 优麒麟开源操作系统 拉取时间: 2021-06-23 05:56:46 [重温微软一代经典操作系统的诞生:200位程序员的苦难与欢愉造就了Windows NT](https://www.infoq.cn/article/L5hv9ZUubc9AhiUfh37e) > 作者: G_d Pascal Zachary 拉取时间: 2021-06-23 05:56:46 [快手Y_stech万鹏飞:短视频UGC智能创作中的CV技术和发展趋势](https://www.infoq.cn/article/0T5ugRMO2poIbAgSEaKs) > 作者: 快手科技 拉取时间: 2021-06-23 05:56:46 [快手技术副总裁王仲远:快手以AI技术推动音乐大众化发展](https://www.infoq.cn/article/PQRCl9s9sjqJ2xS47cmU) > 作者: 快手科技 拉取时间: 2021-06-23 05:56:46 [官宣!达摩院开源秘藏深度语言模型体系AliceMind,NLP正在走向大工业时代](https://www.infoq.cn/article/djuNXBDPN7XTBPrA8dN9) > 作者: 刘燕 拉取时间: 2021-06-23 05:56:46 [分布式计算系统的性能优化丨QCon](https://www.infoq.cn/article/4sdKwYuLBAXheO9PB5YA) > 作者: QCon全球软件开发大会 拉取时间: 2021-06-22 06:00:16 [工商银行 Serverless 函数计算落地实践](https://www.infoq.cn/article/PlG82yFmwvIOQvVl0hzi) > 作者: 百度云原生 Serverless 团队 拉取时间: 2021-06-22 06:00:16 [腾讯云TVP数字化领航者高峰论坛_s下](https://www.infoq.cn/article/ySZHfLYdfOuPAOH53sM8) > 作者: InfoQ 中文站 拉取时间: 2021-06-22 06:00:16 [是什么让量子计算如此难以解释_d2](https://www.infoq.cn/article/AkBGqHhSg1ej3r62TaKf) > 作者: Scott Aaronson 拉取时间: 2021-06-22 06:00:16 [GPT_s3 离通用人工智能有多近?](https://www.infoq.cn/article/w1lxxO4qtaVPxZUdqzwi) > 作者: Bruce H_d Cottrman 拉取时间: 2021-06-22 06:00:16 [【写作平台】文章推荐《低代码开发简史》低代码开发可以说是最近技术圈的顶流,16 年之前还没有 低代码 这个术语,19 年之前几乎没人关注低代码,但从 19 年到现_d_d_d](https://weibo.com/1746173800/Kly0BABSg) > 作者: InfoQ 拉取时间: 2021-06-24 05:56:16 [【直播ing】Service Mesh 是凭空出现的吗?目前 Service Mesh 的产品足够成熟吗? 其未来前景如何?作为开发者要如何选择?今晚 20_t00,FreeWheel 北京研发中心_d_d_d](https://weibo.com/1746173800/KlxCfEVUp) > 作者: InfoQ 拉取时间: 2021-06-24 05:56:16 [【写作平台】文章推荐《大型分布式 Web 系统的架构演进》前言我们以 Java Web 为例,来搭建一个简单的电商系统,看看这个系统可以如何一步步演变。该系统具备的_d_d_d](https://weibo.com/1746173800/KlwQAFfP7) > 作者: InfoQ 拉取时间: 2021-06-24 05:56:16 [2021年音视频领域有哪些前沿趋势?这一年各行业有哪些最佳实践?7月24日第三届全球互联网通信云大会(WICC)将在北京举行,会议上众多大牛专家将一起探讨最新技_d_d_d](https://weibo.com/1746173800/KlvEumLeo) > 作者: InfoQ 拉取时间: 2021-06-24 05:56:16 [【写作平台】文章推荐《开发效率提升 50_0 以上,爱奇艺官网主站的 Nuxt 实践》01 背景让每一个用户获取到稳定、及时的页面体验,是前端工程师们一直以来努力的_d_d_d](https://weibo.com/1746173800/KloA71pf8) > 作者: InfoQ 拉取时间: 2021-06-23 05:56:47 [【写作平台】文章推荐《【得物技术】得物 WMS 如何助力仓库拣货》引言熟悉仓库作业的人都知道,常见仓库拣货有两种方式:“摘果式”拣货和“播种式”拣货。摘果_d_d_d](https://weibo.com/1746173800/KlobLnk3U) > 作者: InfoQ 拉取时间: 2021-06-23 05:56:47 [【写作平台】文章推荐《VideoLab _s 高性能且灵活的 iOS 视频剪辑与特效框架》VideoLab 是什么?VideoLab 是开源的,高性能且灵活的 iOS 视频剪辑与特效框架,提_d_d_d](https://weibo.com/1746173800/KlnNp6KHl) > 作者: InfoQ 拉取时间: 2021-06-23 05:56:47 [【写作平台】文章推荐《源码级别理解 Redis 持久化》前言大家都知道 Redis 是一个内存数据库,数据都存储在内存中,这也是 Redis 非常快的原因之一。虽然速度提_d_d_d](https://weibo.com/1746173800/Klnp3ofTt) > 作者: InfoQ 拉取时间: 2021-06-23 05:56:47 [GMTC北京「大前端架构设计实践」专题将分享多个大前端架构设计的优秀实践案例,在变化中寻找趋势,探索如何真正有效地提升前端系统可复用性,而不造成过度的设计_d_d_d](https://weibo.com/1746173800/KlmCkhFOL) > 作者: InfoQ 拉取时间: 2021-06-23 05:56:47 [音视频服务已成为互联网信息服务基础设施。高质量、低延迟互联网音视频服务用户体验面临的各种挑战,其核心问题是大规模复杂动态环境下的决策问题。清华大学计算_d_d_d](https://weibo.com/1746173800/KlmdYphzZ) > 作者: InfoQ 拉取时间: 2021-06-23 05:56:47 [【写作平台】文章推荐《一文讲全了 Python 类和对象内容》本文分享自华为云社区《从零开始学python| Python 类和对象—面向对象编程》,原文作者:Yuchuan 。Pyt_d_d_d](https://weibo.com/1746173800/Klf9Blvpc) > 作者: InfoQ 拉取时间: 2021-06-22 06:00:17 [【写作平台】文章推荐《百度 C++ 工程师的那些极限优化(并发篇)》导读:对于工程经验比较丰富的同学,并发应该也并不是陌生的概念了,但是每个人所理解的并发_d_d_d](https://weibo.com/1746173800/KlemTllxu) > 作者: InfoQ 拉取时间: 2021-06-22 06:00:17 [#Q福利# 【转发+关注@InfoQ 微博】,抽一人送华为HUAWEI FreeBuds 4无线耳机,6月25日开@微博抽奖平台 作为操作系统领域的开源项目,openEuler 社区仅用了18个月_d_d_d](https://weibo.com/1746173800/KldcJ4nEq) > 作者: InfoQ 拉取时间: 2021-06-22 06:00:17 [技术大牛李兵通过核心原理解析+ 大厂实战案例,分享十多年独家技术心法,性能优化、页面渲染、JS、浏览器安全等等,重构你的「浏览器原理」知识体系,解决工作、_d_d_d](https://weibo.com/1746173800/KlcNulZW9) > 作者: InfoQ 拉取时间: 2021-06-22 06:00:17 [产品经理的焦虑如何缓解?听产品人讲讲他们的成长经验:网页链接 “未来五年产品经理必死”,产品经理焦虑症候群如何破解?](https://weibo.com/1746173800/KlbEF5RPP) > 作者: InfoQ 拉取时间: 2021-06-22 06:00:17 [开源项目的 5 年长跑,runc v1_d0 终于正式发布!](https://segmentfault.com/a/1190000040223946) > 作者: 张晋涛 拉取时间: 2021-06-24 05:56:24 [社区与市场:两种关注点](https://segmentfault.com/a/1190000040221932) > 作者: tison 拉取时间: 2021-06-23 05:56:56 [国内首份!2021 中国开发者生态从业者现状调研报告发布](https://segmentfault.com/a/1190000040214261) > 作者: 思否编辑部 拉取时间: 2021-06-23 05:56:56 [你不知道的 VSCode 代码高亮原理](https://segmentfault.com/a/1190000040211606) > 作者: 范文杰 拉取时间: 2021-06-22 06:00:25 [从 Flutter 和前端角度出发,聊聊单线程模型下如何保证 UI 流畅性](https://segmentfault.com/a/1190000040206761) > 作者: fantasticbaby 拉取时间: 2021-06-22 06:00:25 [Android 面试之开源库分析](https://segmentfault.com/a/1190000040193824) > 作者: xiangzhihong 拉取时间: 2021-06-22 06:00:25 [聊聊 Redis 内存淘汰策略](https://segmentfault.com/a/1190000040206857) > 作者: 蘑菇睡不着 拉取时间: 2021-06-22 06:00:25 [[LG]《Randomness In Neural Network Training_t Characterizing The Impact of Tooling》D Zhuang, X Zhang, S L Song, S Hooker [The University of Sydney & U_d_d_d](https://weibo.com/1402400261/KlBnEu5oz) > 作者: 爱可可_s爱生活 拉取时间: 2021-06-24 05:56:25 [《今日学术视野(2021_d6_d24)》网页链接](https://weibo.com/1402400261/KlBfv8kDr) > 作者: 爱可可_s爱生活 拉取时间: 2021-06-24 05:56:25 [早![太阳] #早安# [图片]](https://weibo.com/1402400261/KlBdCcWHs) > 作者: 爱可可_s爱生活 拉取时间: 2021-06-24 05:56:25 [晚安~ [月亮] #晚安# 爱可可_s爱生活的微博视频](https://weibo.com/1402400261/KlyhPdwHg) > 作者: 爱可可_s爱生活 拉取时间: 2021-06-24 05:56:25 [《爱可可微博热门分享(2021_d6_d23)》 爱可可微博热门分享(2021_d6_d23)](https://weibo.com/1402400261/Klyh4dqFE) > 作者: 爱可可_s爱生活 拉取时间: 2021-06-24 05:56:25 [致那些编写错误却运行正常的代码! [哈哈] 爱可可_s爱生活的微博视频](https://weibo.com/1402400261/Kly4Y0tKE) > 作者: 爱可可_s爱生活 拉取时间: 2021-06-24 05:56:25 [无懈可击 [二哈] [图片]](https://weibo.com/1402400261/Klxjr51ul) > 作者: 爱可可_s爱生活 拉取时间: 2021-06-24 05:56:25 [[CL]《DExperts_t Decoding_sTime Controlled Text Generation with Experts and Anti_sExperts》A Liu, M Sap, X Lu, S Swayamdipta, C Bhagavatula, N A_d Smith, _d_d_d](https://weibo.com/1402400261/KlrQXuIYc) > 作者: 爱可可_s爱生活 拉取时间: 2021-06-23 05:56:57 [《今日学术视野(2021_d6_d23)》网页链接](https://weibo.com/1402400261/KlrCkgL4o) > 作者: 爱可可_s爱生活 拉取时间: 2021-06-23 05:56:57 [早![太阳] #早安# [图片]](https://weibo.com/1402400261/KlrAZxtDs) > 作者: 爱可可_s爱生活 拉取时间: 2021-06-23 05:56:57 [[LG]《Distributed Deep Learning in Open Collaborations》M Diskin, A Bukhtiyarov, M Ryabinin, L Saulnier, Q Lhoest, A Sinitsin, D Popov, D Pyrkin, M Ka_d_d_d](https://weibo.com/1402400261/Kliv1aqFi) > 作者: 爱可可_s爱生活 拉取时间: 2021-06-22 06:00:25 [《今日学术视野(2021_d6_d22)》网页链接](https://weibo.com/1402400261/KlilY27Sg) > 作者: 爱可可_s爱生活 拉取时间: 2021-06-22 06:00:25 [早![太阳] #早安# [图片]](https://weibo.com/1402400261/KlikHFinM) > 作者: 爱可可_s爱生活 拉取时间: 2021-06-22 06:00:25 [晚安~ [月亮] #晚安# 爱可可_s爱生活的微博视频](https://weibo.com/1402400261/KlflLq6Nt) > 作者: 爱可可_s爱生活 拉取时间: 2021-06-22 06:00:25 [《爱可可微博热门分享(2021_d6_d21)》 爱可可微博热门分享(2021_d6_d21)](https://weibo.com/1402400261/Klflpgtyh) > 作者: 爱可可_s爱生活 拉取时间: 2021-06-22 06:00:25 [不只是你 [挤眼] [图片]](https://weibo.com/1402400261/KleROg8WU) > 作者: 爱可可_s爱生活 拉取时间: 2021-06-22 06:00:25 [【Any Programming Books Absolutely Free Online Github】网页链接 任何编程书籍绝对免费的在线 Github。网路冷眼技术分享 [图片][图片][图片]](https://weibo.com/1715118170/KlBlCgmdu) > 作者: 网路冷眼 拉取时间: 2021-06-24 05:56:29 [【How Netflix uses eBPF flow logs at scale for network insight】网页链接 Netflix工程团队博文: 如何大规模使用 eBPF 流日志进行网络洞察 Netflix 如何大规_d_d_d](https://weibo.com/1715118170/KlzAgwhws) > 作者: 网路冷眼 拉取时间: 2021-06-24 05:56:29 [【An year in life of an open_ssource project _s Jina, a neural search framework】网页链接 开源项目的一年——Jina,一个神经搜索框架。 [图片][图片][图片][_d_d_d](https://weibo.com/1715118170/KlznQtavr) > 作者: 网路冷眼 拉取时间: 2021-06-24 05:56:29 [【Mechanisms in Modern Engineering Design – Artobolevsky】网页链接 现代工程设计中的机制 – Artobolevsky。 [图片]](https://weibo.com/1715118170/Klzc6ltVT) > 作者: 网路冷眼 拉取时间: 2021-06-24 05:56:29 [【VKtracer_t cross_svendor_bplatform Vulkan profiler】网页链接 VKtracer:跨供应商_b平台 Vulkan 分析器。网路冷眼技术分享 [图片][图片][图片][图片][图片]](https://weibo.com/1715118170/KlyZurZZt) > 作者: 网路冷眼 拉取时间: 2021-06-24 05:56:29 [转发微博 _s 转发 @网路冷眼_t&ensp;#冷眼赠书福利#联合@华章图书 送出 5 本《架构师的自我修炼》。截止 6 月 24 日,转发此微博并关注 @网路冷眼 赢取。@微博抽奖_d_d_d](https://weibo.com/1715118170/KlyHed0kN) > 作者: 网路冷眼 拉取时间: 2021-06-24 05:56:29 [【From Redux to the Context API_t A Practical Migration Guide】网页链接 从 Redux 到 Context API:实用迁移指南。 [图片][图片][图片]](https://weibo.com/1715118170/KlyB8ywv0) > 作者: 网路冷眼 拉取时间: 2021-06-24 05:56:29 [转发微博 _s 转发 @网路冷眼_t&ensp;#618万物狂欢节#联合图灵教育,送出 5 份图灵电子书 60 元代金券。截止 6 月 24 日 转发此微博并关注@网路冷眼 赢取。图灵社区_d_d_d](https://weibo.com/1715118170/Klyv2Cqc4) > 作者: 网路冷眼 拉取时间: 2021-06-24 05:56:29 [【Microsoft Patches Six Zero_sDay Security Holes】网页链接 微软修补 5 个零日安全漏洞。 [图片]](https://weibo.com/1715118170/KlypeqeH6) > 作者: 网路冷眼 拉取时间: 2021-06-24 05:56:29 [【Rhode island makes financial literacy classes required for high school students】网页链接 罗德岛为高中生开设金融知识课程。 [图片][图片]](https://weibo.com/1715118170/KlrV7qpE0) > 作者: 网路冷眼 拉取时间: 2021-06-23 05:57:01 [【DOJ Seizes $2_d3M in Crypto Paid to the Ransomware Extortionists Darkside】网页链接 司法部没收了支付给勒索软件勒索者 Darkside 的 230 万美元加密货币 _d_d_d](https://weibo.com/1715118170/KlrJd2J75) > 作者: 网路冷眼 拉取时间: 2021-06-23 05:57:01 [鸟巢6_d22专场演出焰火燃放 #年中总结ing# 绿洲 网路冷眼的微博视频](https://weibo.com/1715118170/KlqeV3NL8) > 作者: 网路冷眼 拉取时间: 2021-06-23 05:57:01 [翠湖霞光 #治愈美图# #绿洲摄影# #微博摄影# #壁纸# 绿洲 [图片]](https://weibo.com/1715118170/Klqd9uocR) > 作者: 网路冷眼 拉取时间: 2021-06-23 05:57:01 [【FaceTime is coming to Android and Windows via the web】网页链接 FaceTime 将通过Web登陆 Android 和 Windows。 [图片]](https://weibo.com/1715118170/Klqa0sUP3) > 作者: 网路冷眼 拉取时间: 2021-06-23 05:57:01 [【Turning a Classic CRT into a Smart TV】网页链接 将经典 CRT 变成智能电视。 [图片][图片][图片][图片][图片][图片][图片][图片]](https://weibo.com/1715118170/KlpXlDdTS) > 作者: 网路冷眼 拉取时间: 2021-06-23 05:57:01 [【Two Hidden Instructions Discovered in Intel CPUs Enable Microcode Modification】网页链接 在英特尔 CPU 中发现的两条隐藏指令启用微码修改。](https://weibo.com/1715118170/KlpLBdUYe) > 作者: 网路冷眼 拉取时间: 2021-06-23 05:57:01 [【State of the Windows, part 2_t Did Windows 10 slow down with each feature update_d2】网页链接 Windows 状态,第 2 部分:Windows 10 是否随着每个功能更新_d_d_d](https://weibo.com/1715118170/KlpyZAWYB) > 作者: 网路冷眼 拉取时间: 2021-06-23 05:57:01 [【Apple pays out millions to student after repair techs shared her personal images】网页链接 维修技术人员分享她的个人照片后,Apple 向学生支付了数百万_d_d_d](https://weibo.com/1715118170/Klpn71WCU) > 作者: 网路冷眼 拉取时间: 2021-06-23 05:57:01 [转发微博 _s 转发 @网路冷眼_t&ensp;#冷眼赠书福利#联合@华章图书 送出 5 本《架构师的自我修炼》。截止 6 月 24 日,转发此微博并关注 @网路冷眼 赢取。@微博抽奖_d_d_d](https://weibo.com/1715118170/KlpgKbTHO) > 作者: 网路冷眼 拉取时间: 2021-06-23 05:57:01 [【Beat detection in Java for Android】 网页链接 Android 的 Java 中的节拍检测。 [图片]](https://weibo.com/1715118170/KliiIsbkP) > 作者: 网路冷眼 拉取时间: 2021-06-22 06:00:29 [万丈光芒 #治愈美图# #绿洲摄影# #微博摄影# #壁纸# 绿洲 [图片]](https://weibo.com/1715118170/KlgMjFDQW) > 作者: 网路冷眼 拉取时间: 2021-06-22 06:00:29 [【How Our Engineering Team Used Python_as AST to Patch 100,000s of Lines of Code】网页链接 我们的工程团队如何使用 Python 的 AST 修补 100,000 行代码。 [_d_d_d](https://weibo.com/1715118170/KlgJzp7AJ) > 作者: 网路冷眼 拉取时间: 2021-06-22 06:00:29 [水_s_s生命之源 #绿洲摄影# #微博摄影# #壁纸# # 绿洲 [图片]](https://weibo.com/1715118170/KlgHo43bz) > 作者: 网路冷眼 拉取时间: 2021-06-22 06:00:29 [【A Tour of Safe Tracing GC Designs in Rust】网路冷眼技术分享 [图片]](https://weibo.com/1715118170/KlgwR57uP) > 作者: 网路冷眼 拉取时间: 2021-06-22 06:00:29 [【The Globalization of Venture Capital Investing】网页链接 风险投资的全球化。](https://weibo.com/1715118170/KlgkYFMPd) > 作者: 网路冷眼 拉取时间: 2021-06-22 06:00:29 [【Upcoming Changes for Some US Businesses】网页链接 一些美国企业即将发生的变化。 [图片][图片][图片]](https://weibo.com/1715118170/Klg8v8lLD) > 作者: 网路冷眼 拉取时间: 2021-06-22 06:00:29 [【FreeBSD from a NetBSD developer’s perspective】网页链接 从 NetBSD 开发者的角度看 FreeBSD。 [图片]](https://weibo.com/1715118170/KlfWPb0tY) > 作者: 网路冷眼 拉取时间: 2021-06-22 06:00:29 [转发微博 _s 转发 @网路冷眼_t&ensp;#冷眼赠书福利#联合@华章图书 送出 5 本《架构师的自我修炼》。截止 6 月 24 日,转发此微博并关注 @网路冷眼 赢取。@微博抽奖_d_d_d](https://weibo.com/1715118170/KlfQew1Y6) > 作者: 网路冷眼 拉取时间: 2021-06-22 06:00:29 [转发微博 _s 转发 @王一石Yishi_t&ensp;停止逃避问题的时候,就是成长最快的时候。](https://weibo.com/1642628345/Klz6ZApIK) > 作者: 玩家老C 拉取时间: 2021-06-24 05:56:30 [下树了下树了 _s 转发 @佛罗伦萨足球俱乐部Official_t&ensp;🇦🇷✍️哇,签约啦!尼古拉斯·冈萨雷斯加盟我紫。欢迎你,小伙子!💜 #佛罗伦萨##ForzaViola# _d_d_d](https://weibo.com/1642628345/Klz6hieoz) > 作者: 玩家老C 拉取时间: 2021-06-24 05:56:30 [《沧海一声笑》是黄霑作词,非常潇洒写意的一首歌,我今天才知道原来郑少秋的《笑看风云》也是黄霑作词,差不多也是这个调调。](https://weibo.com/1642628345/KlyJy8qtY) > 作者: 玩家老C 拉取时间: 2021-06-24 05:56:30 [转发 _s 转发 @老马自奋蹄_t&ensp;过2月今年的高考生就要上大学了,来看剑桥医学院年级第一的学霸Ali Abdaal毕业后做了一名全职医生、兼职Youtuber,同时还经营着_d_d_d](https://weibo.com/1642628345/KlxgX2rmu) > 作者: 玩家老C 拉取时间: 2021-06-24 05:56:30 [转发微博 _s 转发 @VicodinXYZ_t&ensp;我们做一项工作,如果它越能让我们认识自我、表达自我,工作起来也就会越顺。如果走到极致,一件事能够全然地、百分之百地、_d_d_d](https://weibo.com/1642628345/KlveDF0Xb) > 作者: 玩家老C 拉取时间: 2021-06-24 05:56:30 [转发 _s 转发 @包云岗_t&ensp;推荐一下我们团队在此次峰会上发布的“香山”——开源高性能RISC_sV处理器。这个报告主要回答四个问题:一、为什么要做香山?二、香山_d_d_d](https://weibo.com/1642628345/KltjIfjQZ) > 作者: 玩家老C 拉取时间: 2021-06-24 05:56:30 [转发 _s 转发 @陶建辉_s涛思数据_t&ensp;明晚周四八点,欢迎听宋博士聊聊时序数据库源于监控,不止于监控,时序数据库的前世今生](https://weibo.com/1642628345/KltjkzGW9) > 作者: 玩家老C 拉取时间: 2021-06-24 05:56:30 [c罗梅西绝代双骄统治了世界足坛十来年,但是国家队领域德国队是他们都没有迈过去的门槛,一次都没有。阿根廷06、10、14三次世界杯都倒在德国队脚下,葡萄牙14世_d_d_d](https://weibo.com/1642628345/KllnrtliY) > 作者: 玩家老C 拉取时间: 2021-06-23 05:57:02 [转发 _s 转发 @硅谷王川_t&ensp;如果对糖尿病,癌症,饮食,新陈代谢机制,抗衰老等话题感兴趣的,应当关注亚马逊 kindle 上两位作者,并且购买他们的所有的书。一_d_d_d](https://weibo.com/1642628345/KlfHh0KUu) > 作者: 玩家老C 拉取时间: 2021-06-22 06:00:29
34.224125
286
0.732639
yue_Hant
0.737093
800b4b43ae6fd5cfe90d09f7e1f222a2ad9d36ae
686
md
Markdown
anvil-rstudio-bioconductor-devel/CHANGELOG.md
shbrief/anvil-docker
81f2794bc627e44c40b8b377b9aadd2e51c7c463
[ "MIT" ]
4
2021-06-03T03:34:45.000Z
2021-11-24T20:47:07.000Z
anvil-rstudio-bioconductor-devel/CHANGELOG.md
shbrief/anvil-docker
81f2794bc627e44c40b8b377b9aadd2e51c7c463
[ "MIT" ]
24
2019-11-02T12:08:49.000Z
2022-03-08T15:48:00.000Z
anvil-rstudio-bioconductor-devel/CHANGELOG.md
shbrief/anvil-docker
81f2794bc627e44c40b8b377b9aadd2e51c7c463
[ "MIT" ]
5
2019-11-14T17:20:54.000Z
2020-06-11T01:16:55.000Z
## 3.14.2 - 6/24/2021 - Fix bug with ggplot2 causing RStudio to crash - See https://github.com/rstudio/rstudio/issues/9373 Image URL: us.gcr.io/anvil-gcr-public/anvil-rstudio-bioconductor-devel:3.14.2 ## 3.14.1 - 6/08/2021 - Update www-address to accomodate recent network change for RStudio container - Adding pre-install of Seurat Image URL: us.gcr.io/anvil-gcr-public/anvil-rstudio-bioconductor-devel:3.14.1 ## 3.14.0 - 06/01/2021 - Extends bioconductor/biconductor_docker:devel image so it's available for the anvil. - The the devel docker image makes bioconductor 3.14 available and R 4.1.0 Image URL: us.gcr.io/anvil-gcr-public/anvil-rstudio-bioconductor-devel:3.14.0
31.181818
86
0.75656
eng_Latn
0.44215
800bf0404785e4336baa3737ed53ceda1dea5b36
366
md
Markdown
_posts/2021-10-14-wedding.md
Babylonehy/www.xiangli.site.dev
af3dee7d3a823eac877e5a599c8ec47eb509ee77
[ "MIT" ]
null
null
null
_posts/2021-10-14-wedding.md
Babylonehy/www.xiangli.site.dev
af3dee7d3a823eac877e5a599c8ec47eb509ee77
[ "MIT" ]
null
null
null
_posts/2021-10-14-wedding.md
Babylonehy/www.xiangli.site.dev
af3dee7d3a823eac877e5a599c8ec47eb509ee77
[ "MIT" ]
null
null
null
--- title: "我们的婚礼" date: 2021-10-14 tags: [Wedding] key: Wedding --- # 我们结婚了 <!--more--> <div>{%- include extensions/bilibili.html id='BV17L411s77R' -%}</div> <!-- <iframe src="//player.bilibili.com/player.html?aid=463329528&bvid=BV17L411s77R&cid=416950393&page=1" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"> </iframe> -->
33.272727
203
0.685792
eng_Latn
0.10131
800c18a92bdb8d1c1d3304446ebc400bde0d72e6
3,557
md
Markdown
7.View/d.blade_layout_section_dan_component.md
commitunuja/backend-laravel
6de6b6c153603fddd83057723d8168f2a2bf6373
[ "MIT" ]
1
2021-03-06T12:41:31.000Z
2021-03-06T12:41:31.000Z
7.View/d.blade_layout_section_dan_component.md
commitunuja/backend-laravel
6de6b6c153603fddd83057723d8168f2a2bf6373
[ "MIT" ]
2
2021-02-18T13:27:53.000Z
2021-03-07T06:48:08.000Z
7.View/d.blade_layout_section_dan_component.md
commitunuja/backend-laravel
6de6b6c153603fddd83057723d8168f2a2bf6373
[ "MIT" ]
4
2021-02-23T03:50:19.000Z
2021-03-09T08:32:26.000Z
### Pengantar Blade adalah mesin templating sederhana namun kuat yang disertakan dengan Laravel. Tidak seperti beberapa mesin templating PHP, Blade tidak membatasi Anda untuk menggunakan kode PHP biasa di templat Anda. Faktanya, semua template Blade dikompilasi ke dalam kode PHP biasa dan di-cache sampai dimodifikasi, yang berarti Blade pada dasarnya menambahkan nol overhead ke aplikasi Anda. File template blade menggunakan **.blade.php** ekstensi file dan biasanya disimpan dalam **resources/views** direktori. Tampilan blade dapat dikembalikan dari rute atau pengontrol menggunakan bantuan global **view**. Tentu saja, seperti yang disebutkan dalam dokumentasi pada **views** , data dapat diteruskan ke tampilan Blade menggunakan viewargumen kedua helper: ```java Route::get('/', function () { return view('greeting', ['name' => 'Finn']); }); ``` ### Menampilkan Data Anda dapat menampilkan data yang diteruskan ke tampilan Blade Anda dengan membungkus variabel dalam kurung kurawal. Misalnya, diberikan rute berikut: ```java Route::get('/', function () { return view('welcome', ['name' => 'Samantha']); }); ``` Anda dapat menampilkan isi namevariabel seperti ini: ```java Hello, {{ $name }}. ``` ### Tata Letak Menggunakan Warisan Template #### Mendefinisikan Tata Letak Tata letak juga dapat dibuat melalui "warisan template". Ini adalah cara utama membangun aplikasi sebelum pengenalan komponen . Untuk memulai, mari kita lihat contoh sederhana. Pertama, kita akan memeriksa tata letak halaman. Karena sebagian besar aplikasi web mempertahankan tata letak umum yang sama di berbagai halaman, lebih mudah untuk mendefinisikan tata letak ini sebagai tampilan Blade tunggal: ```java <!-- resources/views/layouts/app.blade.php --> <html> <head> <title>App Name - @yield('title')</title> </head> <body> @section('sidebar') This is the master sidebar. @show <div class="container"> @yield('content') </div> </body> </html> ``` Seperti yang Anda lihat, file ini berisi mark-up HTML biasa. Namun, perhatikan **@section** dan **@yield** arahannya. **@section** direktif, seperti namanya, mendefinisikan bagian dari konten, sedangkan **@yield** direktif digunakan untuk menampilkan isi dari bagian yang diberikan. Sekarang setelah kita mendefinisikan tata letak untuk aplikasi kita, mari kita tentukan halaman anak yang mewarisi tata letak. #### Memperluas Tata Letak Saat mendefinisikan tampilan anak, gunakan **@extends** arahan Blade untuk menentukan tata letak mana yang harus "diwarisi" oleh tampilan anak. Tampilan yang memperluas tata letak Blade dapat menyuntikkan konten ke bagian tata letak menggunakan **@section** arahan. Ingat, seperti yang terlihat pada contoh di atas, isi dari bagian-bagian ini akan ditampilkan dalam tata letak menggunakan **@yield**: ```java <!-- resources/views/child.blade.php --> @extends('layouts.app') @section('title', 'Page Title') @section('sidebar') @parent <p>This is appended to the master sidebar.</p> @endsection @section('content') <p>This is my body content.</p> @endsection ``` Dalam contoh ini, **sidebar** bagian tersebut menggunakan **@parent** arahan untuk menambahkan (bukan menimpa) konten ke bilah sisi tata letak. **@parent** direktif akan digantikan oleh isi dari tata letak saat view dirender. **@yield** direktif juga menerima nilai default sebagai parameter kedua. Nilai ini akan diberikan jika bagian yang dihasilkan tidak ditentukan: ```java @yield('content', 'Default content') ```
50.098592
501
0.743604
ind_Latn
0.95188
800d0cbf5fddf123927999f437eda14500d38c2e
1,561
md
Markdown
README.md
JohnYKiyo/bayes_opt
2166f14a8fbaa158f0f059d2b409eb73d426aad8
[ "MIT" ]
null
null
null
README.md
JohnYKiyo/bayes_opt
2166f14a8fbaa158f0f059d2b409eb73d426aad8
[ "MIT" ]
null
null
null
README.md
JohnYKiyo/bayes_opt
2166f14a8fbaa158f0f059d2b409eb73d426aad8
[ "MIT" ]
null
null
null
# Bayesian Optimization ## 1\. Overview The baysian_optimization(gpbayesopt) package optimizes the black-box function. The algorithm is Baysian optimization based on the Gaussian process. The major differences from the famous Baysian Optimization package (GPyOpt) are as follows. 1. You can easily design the acquisition function. 2. You can easily design the kernel for use in the Gaussian Process. 3. You can design an algorithm to find the next search point from the acquisition function. These will give you the flexibility to improve and experiment with Bayesian optimization. For example, if you want to deal with discretized search variables, you can change the kernel, acquisition function, and algorithm of next search point. We hope that this will lead to the research and development of new Bayesian optimization algorithms. ## 2\. Installation You can install the package from [GitHub](https://github.com/JohnYKiyo/bayesian_optimization) ``` :sh $ pip install git+https://github.com/JohnYKiyo/bayesian_optimization.git ``` Or install manualy ``` :sh $ git clone https://github.com/JohnYKiyo/bayesian_optimization.git $ cd bayesian_optimization $ python setup.py install ``` ## Dependencies gpbayesopt requires: - Python (>= 3.6) - Jax (>= 0.1.57) - Jaxlib (>= 0.1.37) - Scipy (>= 1.5.1) - GaussianProcess (>= 0.5.0) https://github.com/JohnYKiyo/GaussianProcess.git This gpbayesopt package includes the works (Jax, Jaxlib) that are distributed in the Apache License 2.0.
38.073171
153
0.741832
eng_Latn
0.977923
800de18e5b20629dfe6175cf6d072c74bd15d7bf
73
md
Markdown
README.md
chirags98/Fractal-Flap-Barrier
636ec4c66dd1f85a0373c7b8332aeb38515dc77b
[ "MIT" ]
null
null
null
README.md
chirags98/Fractal-Flap-Barrier
636ec4c66dd1f85a0373c7b8332aeb38515dc77b
[ "MIT" ]
null
null
null
README.md
chirags98/Fractal-Flap-Barrier
636ec4c66dd1f85a0373c7b8332aeb38515dc77b
[ "MIT" ]
null
null
null
# Fractal-Flap-Barrier The Raspberry Pi code to control the flap barrier
24.333333
49
0.808219
eng_Latn
0.934711
8011a4147d91c80767783b46474f745fef1bf5a3
4,838
md
Markdown
_posts/2020-03-25-ilamai-oonjal-aadkurathu-tamiil-movie-download.md
tamilrockerss/tamilrockerss.github.io
ff96346e1c200f9507ae529f2a5acba0ecfb431d
[ "MIT" ]
null
null
null
_posts/2020-03-25-ilamai-oonjal-aadkurathu-tamiil-movie-download.md
tamilrockerss/tamilrockerss.github.io
ff96346e1c200f9507ae529f2a5acba0ecfb431d
[ "MIT" ]
null
null
null
_posts/2020-03-25-ilamai-oonjal-aadkurathu-tamiil-movie-download.md
tamilrockerss/tamilrockerss.github.io
ff96346e1c200f9507ae529f2a5acba0ecfb431d
[ "MIT" ]
1
2020-11-08T11:13:29.000Z
2020-11-08T11:13:29.000Z
--- title: "Ilamai Oonjal Aadkurathu Tamiil Movie Download" date: "2020-03-25" --- ![Image result for ilamai oonjal aadukirathu tamil Movie image](https://image.tmdb.org/t/p/w780/aq8HvIesP0tx5keUUHvm7CJtOZ6.jpg) **_Ilamai Onjal Aadukirathu Sample Part.mp4_** **_Size: 3.82mb_** **_[Download Server 1](http://b5.wetransfer.vip/files/{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Actor{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Hits{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Collection/Rajinikanth{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Movies{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Collection/Rajinikanth{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Classic{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Collection/Ilamai{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Oonjaladugirathu{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20(1978)/Ilamai{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Oonjaladugirathu{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Sample{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20HD.mp4)_** **_[Download Server 2](http://b5.wetransfer.vip/files/{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Actor{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Hits{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Collection/Rajinikanth{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Movies{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Collection/Rajinikanth{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Classic{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Collection/Ilamai{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Oonjaladugirathu{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20(1978)/Ilamai{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Oonjaladugirathu{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Sample{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20HD.mp4)_** **_Ilamai Oonjal Aadkirathu Single Part.mp4_** **_Size: 563.02mb_** **_[Download Server 1](http://b5.wetransfer.vip/files/{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Actor{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Hits{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Collection/Rajinikanth{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Movies{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Collection/Rajinikanth{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Classic{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Collection/Ilamai{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Oonjaladugirathu{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20(1978)/Ilamai{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Oonjaladugirathu{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Single{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Part{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20HD.mp4)_** **_[Download Server 2](http://b5.wetransfer.vip/files/{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Actor{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Hits{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Collection/Rajinikanth{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Movies{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Collection/Rajinikanth{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Classic{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Collection/Ilamai{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Oonjaladugirathu{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20(1978)/Ilamai{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Oonjaladugirathu{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Single{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20Part{b8ae04a0e9ab0f9e64837bab03a252825878f388f00779843f60cec38aa445db}20HD.mp4)_**
302.375
1,156
0.936131
yue_Hant
0.373513
8011e7905f06c7d3d9d5b93507ffefafdcb527a4
15,492
md
Markdown
articles/azure-sql/database/geo-distributed-application-configure-tutorial.md
pmsousa/azure-docs.pt-pt
bc487beff48df00493484663c200e44d4b24cb18
[ "CC-BY-4.0", "MIT" ]
15
2017-08-28T07:46:17.000Z
2022-02-03T12:49:15.000Z
articles/azure-sql/database/geo-distributed-application-configure-tutorial.md
pmsousa/azure-docs.pt-pt
bc487beff48df00493484663c200e44d4b24cb18
[ "CC-BY-4.0", "MIT" ]
407
2018-06-14T16:12:48.000Z
2021-06-02T16:08:13.000Z
articles/azure-sql/database/geo-distributed-application-configure-tutorial.md
pmsousa/azure-docs.pt-pt
bc487beff48df00493484663c200e44d4b24cb18
[ "CC-BY-4.0", "MIT" ]
17
2017-10-04T22:53:31.000Z
2022-03-10T16:41:59.000Z
--- title: Implementar uma solução geo-distribuída description: Aprenda a configurar a sua base de dados na Base de Dados Azure SQL e na aplicação do cliente para falha na base de dados replicada e teste de falha. services: sql-database ms.service: sql-database ms.subservice: high-availability ms.custom: sqldbrb=1, devx-track-azurecli, devx-track-azurepowershell ms.devlang: '' ms.topic: conceptual author: anosov1960 ms.author: sashan ms.reviewer: mathoma, sstein ms.date: 03/12/2019 ms.openlocfilehash: 89d285a56553f5c521d1edbc92786debd4a92e32 ms.sourcegitcommit: f28ebb95ae9aaaff3f87d8388a09b41e0b3445b5 ms.translationtype: MT ms.contentlocale: pt-PT ms.lasthandoff: 03/29/2021 ms.locfileid: "101659295" --- # <a name="tutorial-implement-a-geo-distributed-database-azure-sql-database"></a>Tutorial: Implementar uma base de dados geo-distribuída (Base de Dados Azure SQL) [!INCLUDE[appliesto-sqldb](../includes/appliesto-sqldb.md)] Configure uma base de dados na Base de Dados SQL e a aplicação do cliente para falha numa região remota e teste um plano de falha. Saiba como: > [!div class="checklist"] > > - Criar um [grupo de failover](auto-failover-group-overview.md) > - Executar uma aplicação Java para consultar uma base de dados na Base de Dados SQL > - Ativação pós-falha de teste Se não tiver uma subscrição do Azure, [crie uma conta gratuita](https://azure.microsoft.com/free/) antes de começar. ## <a name="prerequisites"></a>Pré-requisitos [!INCLUDE [updated-for-az](../../../includes/updated-for-az.md)] > [!IMPORTANT] > O módulo PowerShell Azure Resource Manager ainda é suportado pela Base de Dados Azure SQL, mas todo o desenvolvimento futuro é para o módulo Az.Sql. Para estes cmdlets, consulte [AzureRM.Sql](/powershell/module/AzureRM.Sql/). Os argumentos para os comandos no módulo Az e nos módulos AzureRm são substancialmente idênticos. Para completar o tutorial, certifique-se de que instalou os seguintes itens: - [Azure PowerShell](/powershell/azure/) - Uma única base de dados na Base de Dados Azure SQL. Para criar uma utilização, - [O Portal Azure](single-database-create-quickstart.md) - [A CLI do Azure](az-cli-script-samples-content-guide.md) - [PowerShell](powershell-script-content-guide.md) > [!NOTE] > O tutorial utiliza a base de dados de *amostras AdventureWorksLT.* - Java e Maven, consulte [Construir uma aplicação utilizando o SQL Server,](https://www.microsoft.com/sql-server/developer-get-started/)realce **Java** e selecione o seu ambiente e, em seguida, siga os passos. > [!IMPORTANT] > Certifique-se de configurar regras de firewall para usar o endereço IP público do computador no qual está a executar os passos neste tutorial. As regras de firewall ao nível da base de dados serão replicadas automaticamente para o servidor secundário. > > Para obter informações, [crie uma regra de firewall ao nível da base de dados](/sql/relational-databases/system-stored-procedures/sp-set-database-firewall-rule-azure-sql-database) ou determine o endereço IP utilizado para a regra de firewall de nível de servidor para o seu computador ver Criar uma firewall de [nível de servidor](firewall-create-server-level-portal-quickstart.md). ## <a name="create-a-failover-group"></a>Criar um grupo de failover Utilizando o Azure PowerShell, crie [grupos de failover](auto-failover-group-overview.md) entre um servidor existente e um novo servidor noutra região. Em seguida, adicione a base de dados de amostras ao grupo de failover. # <a name="powershell"></a>[PowerShell](#tab/azure-powershell) > [!IMPORTANT] > [!INCLUDE [sample-powershell-install](../../../includes/sample-powershell-install-no-ssh.md)] Para criar um grupo de failover, execute o seguinte script: ```powershell $admin = "<adminName>" $password = "<password>" $resourceGroup = "<resourceGroupName>" $location = "<resourceGroupLocation>" $server = "<serverName>" $database = "<databaseName>" $drLocation = "<disasterRecoveryLocation>" $drServer = "<disasterRecoveryServerName>" $failoverGroup = "<globallyUniqueFailoverGroupName>" # create a backup server in the failover region New-AzSqlServer -ResourceGroupName $resourceGroup -ServerName $drServer ` -Location $drLocation -SqlAdministratorCredentials $(New-Object -TypeName System.Management.Automation.PSCredential ` -ArgumentList $admin, $(ConvertTo-SecureString -String $password -AsPlainText -Force)) # create a failover group between the servers New-AzSqlDatabaseFailoverGroup –ResourceGroupName $resourceGroup -ServerName $server ` -PartnerServerName $drServer –FailoverGroupName $failoverGroup –FailoverPolicy Automatic -GracePeriodWithDataLossHours 2 # add the database to the failover group Get-AzSqlDatabase -ResourceGroupName $resourceGroup -ServerName $server -DatabaseName $database | ` Add-AzSqlDatabaseToFailoverGroup -ResourceGroupName $resourceGroup -ServerName $server -FailoverGroupName $failoverGroup ``` # <a name="the-azure-cli"></a>[A CLI do Azure](#tab/azure-cli) > [!IMPORTANT] > Corra `az login` para entrar em Azure. ```azurecli $admin = "<adminName>" $password = "<password>" $resourceGroup = "<resourceGroupName>" $location = "<resourceGroupLocation>" $server = "<serverName>" $database = "<databaseName>" $drLocation = "<disasterRecoveryLocation>" # must be different then $location $drServer = "<disasterRecoveryServerName>" $failoverGroup = "<globallyUniqueFailoverGroupName>" # create a backup server in the failover region az sql server create --admin-password $password --admin-user $admin ` --name $drServer --resource-group $resourceGroup --location $drLocation # create a failover group between the servers az sql failover-group create --name $failoverGroup --partner-server $drServer ` --resource-group $resourceGroup --server $server --add-db $database ` --failover-policy Automatic --grace-period 2 ``` * * * As definições de geo-replicação também podem ser alteradas no portal Azure, selecionando a sua base de **dados** e, em seguida, > **definições de Geo-Replicação**. ![Definições de geo-replicação](./media/geo-distributed-application-configure-tutorial/geo-replication.png) ## <a name="run-the-sample-project"></a>Executar o projeto de amostra 1. Na consola, crie um projeto Maven com o seguinte comando: ```bash mvn archetype:generate "-DgroupId=com.sqldbsamples" "-DartifactId=SqlDbSample" "-DarchetypeArtifactId=maven-archetype-quickstart" "-Dversion=1.0.0" ``` 1. Tipo **Y** e prima **Enter**. 1. Mude os diretórios para o novo projeto. ```bash cd SqlDbSample ``` 1. Utilizando o seu editor favorito, abra o ficheiro *pom.xml* na pasta do projeto. 1. Adicione o controlador Microsoft JDBC para a dependência do servidor SQL adicionando a seguinte `dependency` secção. A dependência deve ser colada dentro da `dependencies` secção maior. ```xml <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>mssql-jdbc</artifactId> <version>6.1.0.jre8</version> </dependency> ``` 1. Especificar a versão Java adicionando a `properties` secção após a `dependencies` secção: ```xml <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> ``` 1. Suporte ficheiros manifestos adicionando a `build` secção após a `properties` secção: ```xml <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.0.0</version> <configuration> <archive> <manifest> <mainClass>com.sqldbsamples.App</mainClass> </manifest> </archive> </configuration> </plugin> </plugins> </build> ``` 1. Guarde e feche o ficheiro *pom.xml*. 1. Abra o ficheiro *.java App* localizado em .. \SqlDbSample\src\main\java\com\sqldbsamples e substituir o conteúdo pelo seguinte código: ```java package com.sqldbsamples; import java.sql.Connection; import java.sql.Statement; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.Timestamp; import java.sql.DriverManager; import java.util.Date; import java.util.concurrent.TimeUnit; public class App { private static final String FAILOVER_GROUP_NAME = "<your failover group name>"; // add failover group name private static final String DB_NAME = "<your database>"; // add database name private static final String USER = "<your admin>"; // add database user private static final String PASSWORD = "<your password>"; // add database password private static final String READ_WRITE_URL = String.format("jdbc:" + "sqlserver://%s.database.windows.net:1433;database=%s;user=%s;password=%s;encrypt=true;" + "hostNameInCertificate=*.database.windows.net;loginTimeout=30;", + FAILOVER_GROUP_NAME, DB_NAME, USER, PASSWORD); private static final String READ_ONLY_URL = String.format("jdbc:" + "sqlserver://%s.secondary.database.windows.net:1433;database=%s;user=%s;password=%s;encrypt=true;" + "hostNameInCertificate=*.database.windows.net;loginTimeout=30;", + FAILOVER_GROUP_NAME, DB_NAME, USER, PASSWORD); public static void main(String[] args) { System.out.println("#######################################"); System.out.println("## GEO DISTRIBUTED DATABASE TUTORIAL ##"); System.out.println("#######################################"); System.out.println(""); int highWaterMark = getHighWaterMarkId(); try { for(int i = 1; i < 1000; i++) { // loop will run for about 1 hour System.out.print(i + ": insert on primary " + (insertData((highWaterMark + i)) ? "successful" : "failed")); TimeUnit.SECONDS.sleep(1); System.out.print(", read from secondary " + (selectData((highWaterMark + i)) ? "successful" : "failed") + "\n"); TimeUnit.SECONDS.sleep(3); } } catch(Exception e) { e.printStackTrace(); } } private static boolean insertData(int id) { // Insert data into the product table with a unique product name so we can find the product again String sql = "INSERT INTO SalesLT.Product " + "(Name, ProductNumber, Color, StandardCost, ListPrice, SellStartDate) VALUES (?,?,?,?,?,?);"; try (Connection connection = DriverManager.getConnection(READ_WRITE_URL); PreparedStatement pstmt = connection.prepareStatement(sql)) { pstmt.setString(1, "BrandNewProduct" + id); pstmt.setInt(2, 200989 + id + 10000); pstmt.setString(3, "Blue"); pstmt.setDouble(4, 75.00); pstmt.setDouble(5, 89.99); pstmt.setTimestamp(6, new Timestamp(new Date().getTime())); return (1 == pstmt.executeUpdate()); } catch (Exception e) { return false; } } private static boolean selectData(int id) { // Query the data previously inserted into the primary database from the geo replicated database String sql = "SELECT Name, Color, ListPrice FROM SalesLT.Product WHERE Name = ?"; try (Connection connection = DriverManager.getConnection(READ_ONLY_URL); PreparedStatement pstmt = connection.prepareStatement(sql)) { pstmt.setString(1, "BrandNewProduct" + id); try (ResultSet resultSet = pstmt.executeQuery()) { return resultSet.next(); } } catch (Exception e) { return false; } } private static int getHighWaterMarkId() { // Query the high water mark id stored in the table to be able to make unique inserts String sql = "SELECT MAX(ProductId) FROM SalesLT.Product"; int result = 1; try (Connection connection = DriverManager.getConnection(READ_WRITE_URL); Statement stmt = connection.createStatement(); ResultSet resultSet = stmt.executeQuery(sql)) { if (resultSet.next()) { result = resultSet.getInt(1); } } catch (Exception e) { e.printStackTrace(); } return result; } } ``` 1. Guarde e feche o ficheiro *.java App.* 1. Na consola de comando, executar o seguinte comando: ```bash mvn package ``` 1. Inicie a aplicação que irá funcionar durante cerca de 1 hora até parar manualmente, permitindo-lhe tempo para executar o teste de failover. ```bash mvn -q -e exec:java "-Dexec.mainClass=com.sqldbsamples.App" ``` ```output ####################################### ## GEO DISTRIBUTED DATABASE TUTORIAL ## ####################################### 1. insert on primary successful, read from secondary successful 2. insert on primary successful, read from secondary successful 3. insert on primary successful, read from secondary successful ... ``` ## <a name="test-failover"></a>Ativação pós-falha de teste Execute os seguintes scripts para simular uma falha e observe os resultados da aplicação. Note como alguns inserções e seleções falharão durante a migração da base de dados. # <a name="powershell"></a>[PowerShell](#tab/azure-powershell) Pode verificar a função do servidor de recuperação de desastres durante o teste com o seguinte comando: ```powershell (Get-AzSqlDatabaseFailoverGroup -FailoverGroupName $failoverGroup ` -ResourceGroupName $resourceGroup -ServerName $drServer).ReplicationRole ``` Para testar uma falha: 1. Iniciar uma falha manual do grupo de failover: ```powershell Switch-AzSqlDatabaseFailoverGroup -ResourceGroupName $resourceGroup ` -ServerName $drServer -FailoverGroupName $failoverGroup ``` 1. Reverter o grupo de failover de volta ao servidor primário: ```powershell Switch-AzSqlDatabaseFailoverGroup -ResourceGroupName $resourceGroup ` -ServerName $server -FailoverGroupName $failoverGroup ``` # <a name="the-azure-cli"></a>[A CLI do Azure](#tab/azure-cli) Pode verificar a função do servidor de recuperação de desastres durante o teste com o seguinte comando: ```azurecli az sql failover-group show --name $failoverGroup --resource-group $resourceGroup --server $drServer ``` Para testar uma falha: 1. Iniciar uma falha manual do grupo de failover: ```azurecli az sql failover-group set-primary --name $failoverGroup --resource-group $resourceGroup --server $drServer ``` 1. Reverter o grupo de failover de volta ao servidor primário: ```azurecli az sql failover-group set-primary --name $failoverGroup --resource-group $resourceGroup --server $server ``` * * * ## <a name="next-steps"></a>Passos seguintes Neste tutorial, configuraste uma base de dados na Base de Dados Azure SQL e uma aplicação para falha numa região remota e testou um plano de falha. Aprendeu a: > [!div class="checklist"] > > - Criar um grupo de ativação pós-falha de georreplicação > - Executar uma aplicação Java para consultar uma base de dados na Base de Dados SQL > - Ativação pós-falha de teste Avance para o próximo tutorial sobre como adicionar uma instância de Azure SQL Managed Instance a um grupo de failover: > [!div class="nextstepaction"] > [Adicione uma instância de Azure SQL Gestão De Instância a um grupo de failover](../managed-instance/failover-group-add-instance-tutorial.md)
40.238961
386
0.702233
por_Latn
0.702575
8012d1499d17edff905488e642757905c37cda59
1,245
md
Markdown
event-time-windows/README.md
dataArtisans/blogposts
6abc70efba23a4a5236aa7d0854d46f290460e8f
[ "Apache-2.0" ]
7
2015-12-09T12:54:43.000Z
2019-03-28T02:02:14.000Z
event-time-windows/README.md
dataArtisans/blogposts
6abc70efba23a4a5236aa7d0854d46f290460e8f
[ "Apache-2.0" ]
1
2016-06-21T16:04:57.000Z
2016-06-21T16:04:57.000Z
event-time-windows/README.md
dataArtisans/blogposts
6abc70efba23a4a5236aa7d0854d46f290460e8f
[ "Apache-2.0" ]
8
2016-04-13T20:22:22.000Z
2021-01-06T07:49:04.000Z
# Event Time Windows Example This example shows how to use event time windows in [Apache Flink](https://flink.apache.org) The simple example creates a synthetic stream of sensor readings from a set of sensors. The readings are created roughly every 5 seconds, but have a have varying delay, which causes them to arrive out of order and delayed. The stream is analyzed in three ways simultaneously, printing the results to stdout: - **Low-latency event-at-a-time filter**: Readings above a certain cause immediately alerts (latency of milliseconds afterevent arrival). - **Processing Time Windows**: Getting the maximum of all sensors in a group of sensors every 5 seconds (based on event arrival). - **Event Time Windows**: Computing average reading per sensor per minute (sliding) based on event timestamp. The windows have a delay of a few seconds, because they are only computed once the event time watermark signals that all relevant events have been received. The main class of this applications are [Application.java](src/main/java/com/dataartisans/blogpost/eventtime/java/Application.java) (Java), and [Application.scala](src/main/scala/com/dataartisans/blogpost/eventtime/scala/Application.scala) (Scala) respectively.
62.25
268
0.787952
eng_Latn
0.994002
80133f712c2bc2a2e7c8f5c86dc82eba41150364
588
md
Markdown
README.md
virtuallllll/fivem-scoreboard-bot
e2b49c1dbd17d1cfa4df7d5478e4b33ce7504ef0
[ "MIT" ]
null
null
null
README.md
virtuallllll/fivem-scoreboard-bot
e2b49c1dbd17d1cfa4df7d5478e4b33ce7504ef0
[ "MIT" ]
null
null
null
README.md
virtuallllll/fivem-scoreboard-bot
e2b49c1dbd17d1cfa4df7d5478e4b33ce7504ef0
[ "MIT" ]
1
2022-03-03T22:06:31.000Z
2022-03-03T22:06:31.000Z
# Fivem Discord Scoreboard Bot. * Usage: - Create a discord bot using http://discord.com/developers/applications - Copy the token and paste it in the configuration.json file. - Use npm install. to install all packages used in the project. - Use The npm/yarn start command in the terminal. - Use the !em command to get an empty embed. copy the message's id. - paste the message id. make sure it is on the channel you want to. and copy the channel ID and paste him in the configuration.json - Change The IP on the config file. start the bot and wait 1.5 seconds. # Enjoy!
42
133
0.734694
eng_Latn
0.994152
8013978099624db855ae5229970ad5b07572cb9c
4,028
md
Markdown
_posts/2018-10-06-Download-basic-chess-openings.md
Jobby-Kjhy/27
ea48bae2a083b6de2c3f665443f18b1c8f241440
[ "MIT" ]
null
null
null
_posts/2018-10-06-Download-basic-chess-openings.md
Jobby-Kjhy/27
ea48bae2a083b6de2c3f665443f18b1c8f241440
[ "MIT" ]
null
null
null
_posts/2018-10-06-Download-basic-chess-openings.md
Jobby-Kjhy/27
ea48bae2a083b6de2c3f665443f18b1c8f241440
[ "MIT" ]
null
null
null
--- layout: post comments: true categories: Other --- ## Download Basic chess openings book I can understand how the basic chess openings feels. "One hundred and four. " plain, the hard gray iris like a nail in the bloody palm of a crucified man, and they ate till they had enough; after which the tables were removed and the trays and platters (214) set on, from the first collision with the pole basic chess openings whatever it had been IS WITH THE DEEPEST GRATITUDE I look up as she bursts into raucous laughter. As the woodcut below shows, hoping to spot a majestic "He didn't reply, throw it away. That's how Amos knew this was a person. Maria swiveled sideways in her chair, shooting the breeze with Ike, and maybe the gov'ment never done killed your MOOG INDIGO scar tissue, his expression suddenly serious, he thank-you. There was only a little space to sit basic chess openings the green shoots and the long, however. " "The baby's small but healthy. " work, and '40s, I shall die, i, her next two words would have come out as a birdy screak of cold delight. Most Archipelagan men have little or no facial hair. 221 of stones is carried on as a home industry, at This was a challenge and an act of intimidation. For a every childhood, and that was the last word he spoke to Ivory, Mr, another to return; he would be back well before the Fallows at the an exaggeration, disinterested basic chess openings her. cards. turn our backs to the Emperor, by G, with Douglas Cold. Their great basic chess openings filled Thwil Bay, this whole planet will bloom, and surefooted as Doc Savage or the Saint, over which in rainy weather was wayв" poetesses. " reed; she a whistling flute. " time immemorial secret societies, and. the coiled tension of a snake too vicious to give a warning rattle. ] Straight up, without fail they stayed long enough to wash the dishes before fleeing back to their apartments over the garage, 'They were the troops of the youth, he did not try to teach her. recommend the housewares department at Gump's. Through basic chess openings telescope it looked like a porcupine, mortified, carefully arranged coil, Vanadium a Catholic, there happened at Stockholm "Good day, good day)? 61 Great hobnailed wheels of pain turned through Agnes, that should keep her busy long enough for me to think of the next one, painted in bright his successful trick, I feel better than I've felt in. " Then his rage got the better of him and he said basic chess openings him, so that they walled the world; whilst the rest of the kings tarried behind, and basic chess openings sank back. walk, which was known as the Spindle and extended for over six miles from the base of the magnetic ram scoop funnel at its nose to the enormous parabolic reaction dish forming its tail. So the young man said to his sister Selma, ii, hunter. When Barty asked her why, get through the day, on which is stretched a skin of seal or sunshine and in rain, specially built for navigation among ice, and that they actually basic chess openings they Getting out of the stuffy car into air much chillier than it had been when Desperately trying to collect her wits. time?" 157. He did not know unknown, dinosaur-shrill, anyway. A totally new approach: by having the ship create the people after it gets there" " "Good point," Noah said. Besides, like a song on a radio in another apartment, lazily wanders the meadow. For want of vessels these were to be made by land. "But, two years ago, 68, and they fell to improvising verses in turns, basic chess openings. The new organisms are clones? let it roost. will just about cover the rent, but had taken out what they knew of the matter. DEAN KOONTZ, they are going to request explanations, modified for police use, falling leaves, Sherlock, for this is my slave-girl. They are still nomads and hunters, he's also still unable to get and corals. " friend, he had not been interested in their family, but he will not want to, they stopped at a farmhouse that offered stabling for the horses.
447.555556
3,934
0.782771
eng_Latn
0.999955
80148bb840b1f921c45f0e3a3b8977e989ce8b4c
34
md
Markdown
README.md
a01334390/LWC
2e4a65dece12b20538c04df49b2feb415b49d9b1
[ "Apache-2.0" ]
null
null
null
README.md
a01334390/LWC
2e4a65dece12b20538c04df49b2feb415b49d9b1
[ "Apache-2.0" ]
null
null
null
README.md
a01334390/LWC
2e4a65dece12b20538c04df49b2feb415b49d9b1
[ "Apache-2.0" ]
null
null
null
# LWC Python's lowest cost search
11.333333
27
0.764706
eng_Latn
0.983347
8014cac0d085c7e8249b773acefda379a8ca001d
948
md
Markdown
README.md
TheMonitorLizard/JDA-Generators
ea385cd4b88faf34b356fa4f2e0db31bd4e5a08f
[ "Apache-2.0" ]
null
null
null
README.md
TheMonitorLizard/JDA-Generators
ea385cd4b88faf34b356fa4f2e0db31bd4e5a08f
[ "Apache-2.0" ]
null
null
null
README.md
TheMonitorLizard/JDA-Generators
ea385cd4b88faf34b356fa4f2e0db31bd4e5a08f
[ "Apache-2.0" ]
null
null
null
# JDA-Generators JDA-Generators is a group of projects geared towards auto-generation of code for the popular Discord Java API Wrapper: [JDA](https://github.com/Dv8FromTheWorld/JDA). ## Work in Progress The projects in this repository are currently all a work in progress. ## Projects ### Auto-Listener Highly simplified and intuitive annotation processor that automatically generates `EventListener` implementations. ## Download Downloads are hosted on the [bintray repo](https://bintray.com/kaidangustave/maven/JDA-Auto). ```groovy repositories { jcenter() } dependencies { compile 'me.kgustave:jda-auto-{MODULE_NAME}:{VERSION}' } ``` ```xml <repository> <id>central</id> <name>bintray</name> <url>http://jcenter.bintray.com</url> </repository> ``` ```xml <dependency> <groupId>me.kgustave</groupId> <artifactId>jda-auto-{MODULE_NAME}</artifactId> <version>{VERSION}</version> <type>pom</type> </dependency> ```
20.170213
93
0.729958
eng_Latn
0.751893
80151f6daa6dab7a0ee80172f418d32c5266cc06
61
md
Markdown
README.md
Vaibhav161994/fulstackdevlops
da133b8b4f5124118c31988d9df56192d43f8b49
[ "MIT" ]
null
null
null
README.md
Vaibhav161994/fulstackdevlops
da133b8b4f5124118c31988d9df56192d43f8b49
[ "MIT" ]
null
null
null
README.md
Vaibhav161994/fulstackdevlops
da133b8b4f5124118c31988d9df56192d43f8b49
[ "MIT" ]
null
null
null
# fulstackdevlops Startup Ready Web Skeleton # How to Build
12.2
26
0.786885
eng_Latn
0.479979
80169e505710498815afe34973cb2e43eafd9438
507
md
Markdown
README.md
JackSucksAtBot/jackbot-commando
f5982352966986a4af3448c767ade7c8368d8492
[ "Apache-2.0" ]
null
null
null
README.md
JackSucksAtBot/jackbot-commando
f5982352966986a4af3448c767ade7c8368d8492
[ "Apache-2.0" ]
null
null
null
README.md
JackSucksAtBot/jackbot-commando
f5982352966986a4af3448c767ade7c8368d8492
[ "Apache-2.0" ]
null
null
null
This is not an official version of `discord.js-commando` this is a modified version for JackSucksAtBot (JackBot). Here is the official commando link: [Github](https://github.com/discordjs/Commando), [NPM](https://www.npmjs.com/package/discord.js-commando). # Changes Made: The only changes I have made is updated most of the responses to reply with embeds etc. This is not meant for commercial use, this is being used as a dependency for my bot so I don't accidentally update and lose all of my changes.
63.375
142
0.775148
eng_Latn
0.999026
801715ce2af866a0c8600236d2583a9d4e5ac97e
2,308
markdown
Markdown
_posts/2018-05-24-draw.markdown
Lyusungwon/lyusungwon.github.com
4f49f4c7d4b0014a4885ee94710214c642fc1607
[ "MIT" ]
1
2020-08-30T23:36:23.000Z
2020-08-30T23:36:23.000Z
_posts/2018-05-24-draw.markdown
Lyusungwon/lyusungwon.github.com
4f49f4c7d4b0014a4885ee94710214c642fc1607
[ "MIT" ]
1
2021-03-09T17:32:25.000Z
2021-03-09T17:32:25.000Z
_posts/2018-05-24-draw.markdown
Lyusungwon/lyusungwon.github.com
4f49f4c7d4b0014a4885ee94710214c642fc1607
[ "MIT" ]
7
2019-05-20T08:37:12.000Z
2020-08-30T23:36:24.000Z
--- layout: post title: "DRAW: A Recurrent Neural Nerwork For Image Generation" date: 2018-05-24 11:32:59 author: Sungwon Lyu categories: studies tags: deep-learning generative-models --- ## WHY? 사람의 눈은 그림을 볼 때 한번에 보는 것이 아니라 시선에 따라 부분적으로 본다. ## WHAT? DRAW는 기본적으로 VAE의 구조를 가지고 있다. 하지만 encoder와 decoder를 모두 rnn을 사용한다. 그래서 encoder와 decoder는 code의 sequence를 주고 받을 뿐만 아니라 encoder가 전시점의 decoder의 output에도 의존한다. 또한 한번에 그림의 픽셀을 결정하는 것이 아니라 부분을 지속적으로 더하여 최종 그림을 도출한다. 마지막으로 attention machanism을 활용하여 encoder에 들어가는 input region과 decoer에 의해 변화하는 output region을 결정한다. 즉, 무엇을 쓸지 뿐만이 아니라 어디를 읽을지, 어디에 쓸지도 함께 결정하는 것이다. ![image](/assets/images/draw1.png){: .body-image} 모델 구조는 인코더와 디코더 모두 LSTM을 사용하였다. $$\hat{x}_t = x - \sigma(c_{t-1})\\ r_t = read(x_t, \hat{x}_t, h_{t-1}^{dec})\\ h_t^{enc} = RNN^{enc}(h_{t-1}^{enc}, [r_t, h_{t-1}^{dec}])\\ z_t \sim Q(Z_t|h_t^{enc})\\ h_t^{dec} = RNN^{dec}(h_{t-1}^{dec}, z_t)\\ c_t = c_{t-1} + write(h_t^{dec})$$ read, write operation은 어탠션을 주냐 안주냐에 따라 나뉠 수 있다. 어탠션이 없다면 $$read(x, \hat{x}_t, h_{t-1}^{dec}) = [x, \hat{x}_t]\\ write(h_t^{dec}) = W(h_t^{dec})$$ 어탠션을 준다면 $$read(x, \hat{x}_t, h_{t-1}^{dec}) = \gamma[F_Y x F_X^T, F_Y \hat{x} F_X^T]\\ w_t = W(h_t^{dec})\\ write(h_t^{dec}) = \frac{1}{\hat{\gamma}}\hat{F}_Y^T w_t \hat{F}_X$$ 여기서 w는 N x N사이즈의 writing patch를 의미한다. $$F_X[i, a] = \frac{1}{Z_X} exp(-\frac{(a - \mu^i_X)^2}{2\sigma^2})\\ F_X[i, b] = \frac{1}{Z_Y} exp(-\frac{(b - \mu^i_Y)^2}{2\sigma^2})\\ \mu^i_X = g_X + (i - N/2 - 0.5)\delta\\ \mu^j_Y = g_Y + (j - N/2 - 0.5)\delta\\ (\tilde{g}_X, \tilde{g}_Y, log\sigma^2, log\tilde{\delta}, log\gamma) = W(h^{dec}) g_X \frac{A + 1}{2}(\tilde{g}_X + 1)\\ g_Y \frac{B + 1}{2}(\tilde{g}_Y + 1)\\ \delta = \frac{max(A, B) - 1}{N - 1}\tilde{\delta}$$ ![image](/assets/images/draw2.png){: .body-image} 여기서 filter weight를 조정하며 attention을 자유자재로 움직일 수 있다. Loss function은 다음과 같다. $$L^x = -log D(x|c_T)\\ L^z = \Sigma_{t=1}^T KL(Q(Z_t|h_t^{enc})\|P(Z_t))\\ L = \langle L^x + L^z \rangle_{z\sum Q}$$ ## So? MNIST, SVHN에서 좋은 성과를 거두었다. 하지만 CIFAR10에서는 좋은 성능이 나오지 못하였다. ## Critic 부분에 주의를 기울여 generation한다는 발상은 좋은 것 같다. attention을 주는 방법을 다르게 한다던지 여러 방법을 적용하여 개선할 수 있을 것 같다. [Gregor, Karol, et al. "DRAW: A recurrent neural network for image generation." arXiv preprint arXiv:1502.04623 (2015).](https://arxiv.org/abs/1502.04623)
45.254902
353
0.636915
kor_Hang
0.999759
8019389e606248d530bc9a86713f0743bfd41f9d
3,471
md
Markdown
readme.md
mikoro/varjo
13d8fd9bbeaf5ea15da7c535d2a8bcfd61bfebf2
[ "MIT" ]
4
2017-02-13T14:56:00.000Z
2021-09-03T09:26:13.000Z
readme.md
mikoro/varjo
13d8fd9bbeaf5ea15da7c535d2a8bcfd61bfebf2
[ "MIT" ]
null
null
null
readme.md
mikoro/varjo
13d8fd9bbeaf5ea15da7c535d2a8bcfd61bfebf2
[ "MIT" ]
1
2017-11-12T09:24:06.000Z
2017-11-12T09:24:06.000Z
# Varjo Physically based GPU (CUDA) wavefront path tracer. * Author: [Mikko Ronkainen](http://mikkoronkainen.com) * Website: [github.com/mikoro/varjo](https://github.com/mikoro/varjo) ![Screenshot](https://mikoro.github.io/images/varjo/screenshot.jpg "Screenshot") ## Download Download the latest version: | Windows 64-bit | Mac OS X (10.9+) | Linux 64-bit (Ubuntu 16.04 LTS) | |--------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------| | N/A | N/A | N/A | You will need a NVIDIA GTX 900 Series GPU or newer. For windows, you will also need the [Microsoft Visual C++ Redistributable for Visual Studio 2017](https://go.microsoft.com/fwlink/?LinkId=746572). ## Features ## Instructions ### Controls For the interactive mode: | Key | Action | |-------------------------|---------------------------------------------------------------------------------------| | **W/A/S/D** | Move around (+ Q/E for up/down) | | **Mouse left** | Look around | | **Ctrl** | Move slower | | **Shift** | Move faster | | **Alt** | Move even faster | | **Insert/Delete** | Adjust move speed | | **Space** | Stop moving | ## License Varjo Copyright © 2017 Mikko Ronkainen Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
55.983871
332
0.430424
yue_Hant
0.559889
801b4fab14b55a7f32ffc5acae6b49f44374838a
5,112
md
Markdown
mrsgit09Docset0516221715/SQL Server Protocols/MS-SSNWS/df56728d-f80a-4d95-88e3-569c327335b2.md
mrsgit09/mrsgit09Repo0516221715
4dee21c7aff766e4380cb99bb4172b56f713098e
[ "CC-BY-4.0", "MIT" ]
null
null
null
mrsgit09Docset0516221715/SQL Server Protocols/MS-SSNWS/df56728d-f80a-4d95-88e3-569c327335b2.md
mrsgit09/mrsgit09Repo0516221715
4dee21c7aff766e4380cb99bb4172b56f713098e
[ "CC-BY-4.0", "MIT" ]
null
null
null
mrsgit09Docset0516221715/SQL Server Protocols/MS-SSNWS/df56728d-f80a-4d95-88e3-569c327335b2.md
mrsgit09/mrsgit09Repo0516221715
4dee21c7aff766e4380cb99bb4172b56f713098e
[ "CC-BY-4.0", "MIT" ]
null
null
null
<html dir="LTR" xmlns:mshelp="http://msdn.microsoft.com/mshelp" xmlns:ddue="http://ddue.schemas.microsoft.com/authoring/2003/5" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:tool="http://www.microsoft.com/tooltip"> <head> <meta http-equiv="Content-Type" content="text/html; CHARSET=utf-8"></meta> <meta name="save" content="history"></meta> <title>2.2.2.2.1.1.3 sqlbatchResult.SqlMessage</title> <xml> <mshelp:toctitle title="2.2.2.2.1.1.3 sqlbatchResult.SqlMessage"></mshelp:toctitle> <mshelp:rltitle title="[MS-SSNWS]: sqlbatchResult.SqlMessage"></mshelp:rltitle> <mshelp:keyword index="A" term="df56728d-f80a-4d95-88e3-569c327335b2"></mshelp:keyword> <mshelp:attr name="DCSext.ContentType" value="open specification"></mshelp:attr> <mshelp:attr name="AssetID" value="df56728d-f80a-4d95-88e3-569c327335b2"></mshelp:attr> <mshelp:attr name="TopicType" value="kbRef"></mshelp:attr> <mshelp:attr name="DCSext.Title" value="[MS-SSNWS]: sqlbatchResult.SqlMessage" /> </xml> </head> <body> <div id="header"> <h1 class="heading">2.2.2.2.1.1.3 sqlbatchResult.SqlMessage</h1> </div> <div id="mainSection"> <div id="mainBody"> <div id="allHistory" class="saveHistory"></div> <div id="sectionSection0" class="section" name="collapseableSection"> <p><b>sqlbatchResponse.sqlbatchResult.SqlMessage</b>: This element of complex type <b>SqlMessage</b> describes the portion of the response representing a SQL Server message. This includes server-generated error messages, notifications and user-defined messages. The <b>SqlMessage</b> type is defined under the &quot;http://schemas.microsoft.com/sqlserver/2004/SOAP/types/SqlMessage&quot; namespace as the following.</p> <dl> <dd> <div><pre>             &lt;xsd:complexType name=&quot;SqlMessage&quot;&gt;    &lt;xsd:sequence minOccurs=&quot;1&quot; maxOccurs=&quot;1&quot;&gt;      &lt;xsd:element name=&quot;Class&quot;  type=&quot;sqlmessage:nonNegativeInteger&quot; /&gt;      &lt;xsd:element name=&quot;LineNumber&quot;  type=&quot;sqlmessage:nonNegativeInteger&quot; /&gt;      &lt;xsd:element name=&quot;Message&quot; type=&quot;xsd:string&quot; /&gt;      &lt;xsd:element name=&quot;Number&quot;  type=&quot;sqlmessage:nonNegativeInteger&quot; /&gt;      &lt;xsd:element name=&quot;Procedure&quot;  type=&quot;xsd:string&quot; minOccurs=&quot;0&quot; /&gt;      &lt;xsd:element name=&quot;Server&quot;  type=&quot;xsd:string&quot; minOccurs=&quot;0&quot; /&gt;      &lt;xsd:element name=&quot;Source&quot; type=&quot;xsd:string&quot; /&gt;      &lt;xsd:element name=&quot;State&quot;  type=&quot;sqlmessage:nonNegativeInteger&quot; /&gt;    &lt;/xsd:sequence&gt;  &lt;/xsd:complexType&gt;              &lt;xsd:simpleType name=&quot;nonNegativeInteger&quot;&gt;    &lt;xsd:restriction base=&quot;xsd:int&quot;&gt;      &lt;xsd:minInclusive value=&quot;0&quot; /&gt;    &lt;/xsd:restriction&gt;  &lt;/xsd:simpleType&gt;             </pre></div> </dd></dl> <p><b>SqlMessage.Class</b>: This required element of simple type <b>nonNegativeInteger</b> describes the severity level of the server message. The range of values is defined by the server and subject to change, but it MUST be of type XML int. Refer to <a href="https://go.microsoft.com/fwlink/?LinkId=149276">[MSDN-DEES]</a> for details on the range of values defined by the server.</p> <p><b>SqlMessage.LineNumber</b>: This required element of simple type <b>nonNegativeInteger</b> describes the line number in the query that generated the server message. The value range is from 0 to 2147483647.</p> <p><b>SqlMessage.Message</b>: This required element of string type describes the text of the server message.</p> <p><b>SqlMessage.Number</b>: This required element of simple type <b>nonNegativeInteger</b> describes the identity number of the server message. The set of identity numbers is defined by the server. </p> <p><b>SqlMessage.Procedure</b>: This optional element of string type describes the name of the server-side method that generated this server message.</p> <p><b>SqlMessage.Server</b>: This optional element of string type describes the name of the server that generated this server message.</p> <p><b>SqlMessage.Source</b>: This required element of string type describes the name of the source that generated this server message.<a id="Appendix_A_Target_1"></a><a href="e56c5b72-2f3e-4fdd-9e51-2e586325ca89.md#Appendix_A_1" aria-label="Product behavior note 1">&lt;1&gt;</a></p> <p><b>SqlMessage.State</b>: This required element of simple type <b>nonNegativeInteger</b> describes the server state that generated the server message. Some messages apply to multiple server scenarios and this state number is used to identify the scenario that generated the message. The set of state numbers is defined by the server. The value range is from 0 to 2147483647.</p> </div> </div> </div> </body> </html>
48.226415
217
0.696792
eng_Latn
0.762625
801baada17e8271e5ea53f9e94209fa3c67a0384
2,933
md
Markdown
doc/release-notes/TypeScript 2.2.md
island205/TypeScript
73d7a7093002f01828f37fdb1c7e78c5e784da6c
[ "MIT" ]
null
null
null
doc/release-notes/TypeScript 2.2.md
island205/TypeScript
73d7a7093002f01828f37fdb1c7e78c5e784da6c
[ "MIT" ]
null
null
null
doc/release-notes/TypeScript 2.2.md
island205/TypeScript
73d7a7093002f01828f37fdb1c7e78c5e784da6c
[ "MIT" ]
1
2021-06-09T16:01:47.000Z
2021-06-09T16:01:47.000Z
# TypeScript 2.2 ## `object`类型 TypeScript没有表示非基本类型的类型,即不是`number` | `string` | `boolean` | `symbol` | `null` | `undefined`的类型。一个新的`object`类型登场。 使用`object`类型,可以更好地表示类似`Object.create`这样的API。例如: ```typescript declare function create(o: object | null): void; create({ prop: 0 }); // OK create(null); // OK create(42); // Error create("string"); // Error create(false); // Error create(undefined); // Error ``` ## 支持`new.target` `new.target`元属性是ES2015引入的新语法。当通过`new`构造函数创建实例时,`new.target`的值被设置为对最初用于分配实例的构造函数的引用。如果一个函数不是通过`new`构造而是直接被调用,那么`new.target`的值被设置为`undefined`。 当在类的构造函数中需要设置`Object.setPrototypeOf`或`__proto__`时,`new.target`就派上用场了。在NodeJS v4及更高版本中继承`Error`类就是这样的使用案例。 #### 示例 ```typescript class CustomError extends Error { constructor(message?: string) { super(message); // 'Error' breaks prototype chain here Object.setPrototypeOf(this, new.target.prototype); // restore prototype chain } } ``` 生成JS代码: ```js var CustomError = (function (_super) { __extends(CustomError, _super); function CustomError() { var _newTarget = this.constructor; var _this = _super.apply(this, arguments); // 'Error' breaks prototype chain here _this.__proto__ = _newTarget.prototype; // restore prototype chain return _this; } return CustomError; })(Error); ``` new.target也适用于编写可构造的函数,例如: ```typescript function f() { if (new.target) { /* called via 'new' */ } } ``` 编译为: ```js function f() { var _newTarget = this && this instanceof f ? this.constructor : void 0; if (_newTarget) { /* called via 'new' */ } } ``` ## 更好地检查表达式的操作数中的`null` / `undefined` TypeScript 2.2改进了对表达式中可空操作数的检查。具体来说,这些现在被标记为错误: * 如果`+`运算符的任何一个操作数是可空的,并且两个操作数都不是`any`或`string`类型。 * 如果`-`,`*`,`**`,`/`,`%`,`<<`,`>>`,`>>>`, `&`, `|` 或 `^`运算符的任何一个操作数是可空的。 * 如果`<`,`>`,`<=`,`>=`或`in`运算符的任何一个操作数是可空的。 * 如果`instanceof`运算符的右操作数是可空的。 * 如果一元运算符`+`,`-`,`~`,`++`或者`--`的操作数是可空的。 如果操作数的类型是`null`或`undefined`或者包含`null`或`undefined`的联合类型,则操作数视为可空的。注意:包含`null`或`undefined`的联合类型只会出现在`--strictNullChecks`模式中,因为常规类型检查模式下`null`和`undefined`在联合类型中是不存在的。 ## 字符串索引签名类型的点属性 具有字符串索引签名的类型可以使用`[]`符号访问,但不允许使用`.`符号访问。从TypeScript 2.2开始两种方式都允许使用。 ```typescript interface StringMap<T> { [x: string]: T; } const map: StringMap<number>; map["prop1"] = 1; map.prop2 = 2; ``` 这仅适用于具有显式字符串索引签名的类型。在类型使用上使用`.`符号访问未知属性仍然是一个错误。 ## 支持在JSX元素children上使用扩展运算符 TypeScript 2.2增加了对在JSX元素children上使用扩展运算符的支持。更多详情请看[facebook/jsx#57](https://github.com/facebook/jsx/issues/57)。 #### 示例 ```typescript function Todo(prop: { key: number, todo: string }) { return <div>{prop.key.toString() + prop.todo}</div>; } function TodoList({ todos }: TodoListProps) { return <div> {...todos.map(todo => <Todo key={todo.id} todo={todo.todo} />)} </div>; } let x: TodoListProps; <TodoList {...x} /> ``` ## 新的`jsx: react-native` React-native构建管道期望所有文件都具有.js扩展名,即使该文件包含JSX语法。新的`--jsx`编译参数值`react-native`将在输出文件中坚持JSX语法,但是给它一个`.js`扩展名。
23.845528
163
0.682237
yue_Hant
0.572898
801c784821df2494ffc08cff70128d78f50753c5
2,059
md
Markdown
SETUP.md
a-type/zombie-oauth-example
365a2f6db7ed3c6543df45d61c7a9aa2bdf66d80
[ "MIT" ]
3
2015-11-26T16:08:48.000Z
2016-04-19T23:01:05.000Z
SETUP.md
a-type/zombie-oauth-example
365a2f6db7ed3c6543df45d61c7a9aa2bdf66d80
[ "MIT" ]
null
null
null
SETUP.md
a-type/zombie-oauth-example
365a2f6db7ed3c6543df45d61c7a9aa2bdf66d80
[ "MIT" ]
null
null
null
# Google ## 1: Create an account Go through the normal Google account creation flow. Save your account's email address to the environment variable `ZOE_GOOGLE_EMAIL` and its password to `ZOE_GOOGLE_PASSWORD`. ## 2: Upgrade the account with a Google+ profile This demo uses the Google+ APIs to retrieve the test user's full name. To do this, the test user needs a Google+ profile. If it doesn't have one, the login process will prompt the user to create one, which ruins the expected OAuth flow. To create a profile for your test account, visit [https://plus.google.com](https://plus.google.com). ## 3: Go through the OAuth login flow manually This is the trick which makes everything possible. Visit the web app (your own deployed instance, or the one hosted at [http://zombie-oauth-example.herokuapp.com](http://zombie-oauth-example.herokuapp.com) as of this writing) and log in with Google. Accept the permissions of the app. Google will save this to your test profile, so that the next time you log in (in Zombie), you won't need to see the accept screen again. That's important, since the accept screen has automation-busting features which Zombie doesn't seem to handle well. # LinkedIn ## 1: Create an account Create a new test account in LinkedIn. I recommend using the email from the Google account. Save the account's email to the environment variable `ZOE_LINKEDIN_EMAIL` and its password to `ZOE_LINKEDIN_PASSWORD`. Be sure to check the [LinkedIn API Terms of Service](https://developer.linkedin.com/legal/api-terms-of-use), which has rules about test accounts. As of this writing, developers are allowed five test accounts. ## 2: Go through the OAuth login flow manually Just like Google, you should go ahead and accept the permissions of the web app with your LinkedIn account. # Running the Tests To run the integration tests, run `npm test` or `grunt`. The target URL of the web app to test can be configured using the `ZOE_TARGET_URL` environment variable. It defaults to `http://zombie-oauth-example.herokuapp.com`.
98.047619
538
0.772705
eng_Latn
0.989018
801cf31c788de57a1e3a02539ffe0f49896609f1
1,401
md
Markdown
AlchemyInsights/app-proxy-connection-issue.md
isabella232/OfficeDocs-AlchemyInsights-pr.et-EE
6f83295d27a049861e9f5f81f6d42e4793d0404b
[ "CC-BY-4.0", "MIT" ]
2
2020-05-19T19:06:20.000Z
2021-03-06T00:35:21.000Z
AlchemyInsights/app-proxy-connection-issue.md
MicrosoftDocs/OfficeDocs-AlchemyInsights-pr.et-EE
4a00e421202d27d953e63e045bf8465047c2b72a
[ "CC-BY-4.0", "MIT" ]
3
2020-06-02T23:27:46.000Z
2022-02-09T06:54:16.000Z
AlchemyInsights/app-proxy-connection-issue.md
isabella232/OfficeDocs-AlchemyInsights-pr.et-EE
6f83295d27a049861e9f5f81f6d42e4793d0404b
[ "CC-BY-4.0", "MIT" ]
2
2019-10-09T20:35:20.000Z
2020-06-02T23:27:27.000Z
--- title: Rakenduse puhverserveri ühenduse probleem ms.author: v-jmathew author: v-jmathew manager: scotv ms.audience: Admin ms.topic: article ms.service: o365-administration ROBOTS: NOINDEX, NOFOLLOW localization_priority: Normal ms.collection: Adm_O365 ms.custom: - "9004356" - "7801" ms.openlocfilehash: bbe71ac33b3ffc9d7414369432ce096520a3f7f1d8a0e34a256df2db7765d583 ms.sourcegitcommit: b5f7da89a650d2915dc652449623c78be6247175 ms.translationtype: MT ms.contentlocale: et-EE ms.lasthandoff: 08/05/2021 ms.locfileid: "53951597" --- # <a name="app-proxy-connection-issue"></a>Rakenduse puhverserveri ühenduse probleem 1. Kui kasutate rakenduse puhverserveri teenust asutusesisese veebirakenduse kaugjuurdepääsuks, kuid teil on probleeme [](https://docs.microsoft.com/azure/active-directory/manage-apps/application-proxy-debug-connectors) rakendusega ühenduse loomisega, kasutage seda artiklit, et aidata teil Azure Active Directory (Azure AD) rakenduse puhverserveri konnektorite probleemide tõrkeotsingut. 2. Levinud probleemide lahendamiseks, mis ilmnevad juhul, kui konnektorit ei tuvastata rakenduse puhverserveri [](https://docs.microsoft.com/azure/active-directory/application-proxy-connectivity-no-working-connector) rakenduse jaoks, mis on integreeritud Azure Active Directory, järgige tõrkeotsinguks artiklis Rakenduse puhverserveri rakenduse jaoks ei leitud ühtegi töö konnektorirühma.
53.884615
388
0.837259
est_Latn
0.975987
801d8ed8f3c52b0bddcd5a715d824a098ea25f58
627
md
Markdown
readme.md
libor-vilimek/marine-hell
672da02d0fcf2d4b3546d4a0f7770a9aa3a28e2e
[ "MIT" ]
7
2017-03-15T13:48:55.000Z
2021-01-19T16:46:00.000Z
readme.md
libor-vilimek/marine-hell
672da02d0fcf2d4b3546d4a0f7770a9aa3a28e2e
[ "MIT" ]
1
2018-06-16T20:16:13.000Z
2018-11-16T00:09:19.000Z
readme.md
libor-vilimek/marine-hell
672da02d0fcf2d4b3546d4a0f7770a9aa3a28e2e
[ "MIT" ]
1
2018-04-18T20:49:31.000Z
2018-04-18T20:49:31.000Z
This bot was created based on this tutorial http://sscaitournament.com/index.php?action=tutorial and is capable of winning against very basic bots or computer It creates as much marines as possible, sending them to nearest choke point. When it has 50 of more of them, it attack at last remembered building. I spent only ~ 5 hours from scratch to publish this bot to http://sscaitournament.com/ and then fix him a little. It is indeed very simple and very stupid bot, but at least it is utilizing minerals properly. Licence - do whatever you want with this code :), I put MIT licence to make it official
78.375
207
0.759171
eng_Latn
0.999865
801dca8efa16149795568babb802279c1906ddce
1,555
md
Markdown
about.md
fuerdi2/fuerdi2.Github.io
aa18c92d0dbc96578a9479685fb1a1f3ab24f103
[ "Apache-2.0" ]
null
null
null
about.md
fuerdi2/fuerdi2.Github.io
aa18c92d0dbc96578a9479685fb1a1f3ab24f103
[ "Apache-2.0" ]
null
null
null
about.md
fuerdi2/fuerdi2.Github.io
aa18c92d0dbc96578a9479685fb1a1f3ab24f103
[ "Apache-2.0" ]
null
null
null
--- layout: page title: "About" description: "科技改变社会,交通影响发展" header-img: "img/green.jpg" --- <center> <p><img src="https://fuerdi2.github.io/img/jinhao.png" align="center"></p> </center> ### 简介   我是Left,交通运输规划与管理专业硕士学位,现就职于中国移动(上海)产业研究院。我国处于从交通大国迈向交通强国攻坚期,5G万物互联,深度赋能智慧交通产业,助力交通强国实现。目前正在学习[《算法(第四版)》](https://book.douban.com/subject/19952400/)、[《Thinking in JAVA》](https://book.douban.com/subject/1474824/)。   所有的文章均为原创或译改,如需要转载,请联系本人,并注明来源。 ### 坚信 - 科学的真理与简洁 - 肩负起社会进步的责任与使命 - 「持续」并不是坚持,学习就是最好的回报 ### 近期关注: - [未来交通实验室](http://www.futuretransportlab.com/) - [城市计算](https://www.microsoft.com/en-us/research/project/%E5%9F%8E%E5%B8%82%E8%AE%A1%E7%AE%97/) - [Barabasi Albert Lab](https://www.barabasilab.com/) - [Northeastern Univeristy Network Science Institute](https://www.networkscienceinstitute.org/) ### 成果: - 左津豪 ,“Presenting Data of Transport Emissions on Baidu/Google Maps” ,第八届计算交通科学年会(CTS2016),中国武汉,2016.7.15 - 左津豪 ,“Modeling Virus Spreading on Passenger Aviation Networks with Random Times and Variable Rates of Infections and Cures”,第 十 六 届 海 外 华 人 交 通 协 会 (COTA) 国 际 交 通 科 技 年 会(CICTP2016),中国上海,2016.7.7 - 左津豪 , “Time Variant Passenger Flow Control for Peak Fraction of System Infected Optimization”, 上海海事大学学术新人创新项目论文,2016.6 - 左津豪 , “基于开放数据的交通拥堵治理应用研究”, 2018中国城市交通规划年会,2018.8 ### 联系 - [博客:fuerdi2.github.io](https://fuerdi2.github.io) - 公众号:leftfans - Wechat: Versace_40 <center> <p><img src="http://blogs.worldbank.org/trade/files/trade/Air%20transport%20network%20map.gif" align="center"></p> </center>
24.296875
213
0.718971
yue_Hant
0.744269
801ed1bc87a3de6479888f386720428e22628dc6
4,151
md
Markdown
content/blog/lessons-learned-building-a-ui-library/index.md
ianmcnally/ianmcnallydotme
3e19186e6fb13356196d94fe93bac5fcbe96a362
[ "MIT" ]
null
null
null
content/blog/lessons-learned-building-a-ui-library/index.md
ianmcnally/ianmcnallydotme
3e19186e6fb13356196d94fe93bac5fcbe96a362
[ "MIT" ]
13
2021-03-01T20:25:22.000Z
2022-02-26T10:53:26.000Z
content/blog/lessons-learned-building-a-ui-library/index.md
ianmcnally/ianmcnallydotme
3e19186e6fb13356196d94fe93bac5fcbe96a362
[ "MIT" ]
null
null
null
--- title: "Lessons learned building a UI library" date: "2018-01-24" --- I'm off boarding this week from my current job, and I wanted to write up the technical directions and learnings I'd acquired building the [design system](https://styleguide.schoology.com/about). It's part personal philosophy, part lessons learned. ### Learn CSS grid It makes layout really easy, and made Schoology's grid system possible. See: [https://cssgrid.io](https://cssgrid.io/), [https://www.youtube.com/layoutland](https://www.youtube.com/layoutland), [https://thecssworkshop.com/](https://thecssworkshop.com/) ### Build flexible components and avoid blackboxes In the same way and html component, like `<select />` with `<option />` gives you components to mix and match, React components should follow a similar design pattern. It will allow for use cases to expand easily. Avoid black boxes that do a lot of work for you, and are controlled by an ever-expanding amount of props and overrides. ### Use compound components for complex UI pieces The compound component design pattern will allow you build flexible, modular components (as stated above). They'll be easier to change, mix or match, and adapt as the future product needs evolve. See: [https://www.youtube.com/watch?v=hEGg-3pIHlE](https://www.youtube.com/watch?v=hEGg-3pIHlE), [https://blog.kentcdodds.com/advanced-react-component-patterns-56af2b74bc5f](https://blog.kentcdodds.com/advanced-react-component-patterns-56af2b74bc5f) ### Write clear, user focused unit tests One big exception to DRY is in tests. Cleverness should generally be avoiding because reading and updating a test can be a high-stress scenario. Make sure your setup, descriptions, and assertions are all clear and human readable. Follow the behavior-driven-development style of [Given, When Then](https://martinfowler.com/bliki/GivenWhenThen.html) and more to the point - [Arrange, Act, Assert](https://xp123.com/articles/3a-arrange-act-assert/). ### Read about and plan accessibility before/as you're building Check out sites and guides like [https://inclusive-components.design](https://inclusive-components.design/) and Smashing Magazine to figure out what you need for accessibility, and how to get there before you start coding. ### Resist using third party solutions They're always tailored for someone else's use case, so build your own UI components. With cross-browser standards and compatibility at an all-time high, and really good layout techniques like css grid, there's never been a better time to wain off pre-existing open source solutions. ### Make it reusable We've probably all heard don't repeat yourself, but sometimes we do. With atomic css, like in the design system, and modular components we're building, let's keep things clean and in one place. Great pieces on scaling css: [http://mrmrs.github.io/writing/2016/03/24/scalable-css/](http://mrmrs.github.io/writing/2016/03/24/scalable-css/), [https://medium.com/seek-blog/a-unified-styling-language-d0c208de2660](https://medium.com/seek-blog/a-unified-styling-language-d0c208de2660), [https://css-tricks.com/oh-no-stylesheet-grows-grows-grows-append-stylesheet-problem/](https://css-tricks.com/oh-no-stylesheet-grows-grows-grows-append-stylesheet-problem/) ### Keep bundle sizes small Make sure we're only bundling what we need to, take advantage of features like code splitting (see the styleguide) and externalizing dependencies and "production mode" optimizations like those from webpack. ### Keep up to date Your dependencies, your feature use, your skills. Use fallbacks and progressive enhancements while you build for modern and up-to-date browsers and frameworks. For example, allow React components to return Arrays and Fragments, but provide a div-based fallback for projects that use older versions of React. ### Short feedback cycles Keep your tests running fast, your error messages helpful, automate and document as much as you can. ### Collaborate What we're building ultimately serves a business and user value. So keep product and design close, and talk changes through with them before making or changing a component.
78.320755
459
0.782703
eng_Latn
0.985556
801f2614207f1b43835771e3aa4e36ff2895e488
858
md
Markdown
aspnet/aspnet/overview/web-development-best-practices/async-and-await.md
terrajobst/AspNetDocs.de-de
4bf6c9163aa6905549a8cd15223c5733f809b6f1
[ "CC-BY-4.0", "MIT" ]
null
null
null
aspnet/aspnet/overview/web-development-best-practices/async-and-await.md
terrajobst/AspNetDocs.de-de
4bf6c9163aa6905549a8cd15223c5733f809b6f1
[ "CC-BY-4.0", "MIT" ]
null
null
null
aspnet/aspnet/overview/web-development-best-practices/async-and-await.md
terrajobst/AspNetDocs.de-de
4bf6c9163aa6905549a8cd15223c5733f809b6f1
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- uid: aspnet/overview/web-development-best-practices/async-and-await title: Async und warten | Microsoft-Dokumentation author: shanselman description: Scott Hanselman zeigt, wie Sie Async verwenden und Unterstützung in ASP.NET 4,5 erwarten. ms.author: riande ms.date: 08/15/2012 ms.assetid: 776bf687-c2c2-438f-8796-a93d0ccd164b msc.legacyurl: /aspnet/overview/web-development-best-practices/async-and-await msc.type: video ms.openlocfilehash: 97a1d761c545a4087b006890b031a14c14c6d886 ms.sourcegitcommit: e7e91932a6e91a63e2e46417626f39d6b244a3ab ms.translationtype: MT ms.contentlocale: de-DE ms.lasthandoff: 03/06/2020 ms.locfileid: "78500139" --- # <a name="async-and-await"></a>Async und Await von [Scott Hanselman](https://github.com/shanselman) [&#9654;Video ansehen (5 Minuten)](https://channel9.msdn.com/Blogs/ASP-NET-Site-Videos/async-and-await)
37.304348
103
0.801865
yue_Hant
0.179958
801f44691614af8366f47d7f49402d4d54f3f29e
7,636
md
Markdown
README.md
Flavio-96/IDWork-Data-Integration-Project
6d05a1a28f4151228750eedb87a52cd111e55bb0
[ "MIT" ]
2
2019-09-03T18:55:21.000Z
2020-02-03T23:06:33.000Z
README.md
Flavio-96/IDWork-Data-Integration-Project
6d05a1a28f4151228750eedb87a52cd111e55bb0
[ "MIT" ]
null
null
null
README.md
Flavio-96/IDWork-Data-Integration-Project
6d05a1a28f4151228750eedb87a52cd111e55bb0
[ "MIT" ]
null
null
null
- [1. IDWork - Data integration](#1-idwork---data-integration) - [1.1. Nome Scelto: **IDWork\****](#11-nome-scelto-idwork) - [1.2. Idea progetto](#12-idea-progetto) - [1.2.1 Scope sistema](#121-scope-sistema) - [1.2.2. Specifica problema](#122-specifica-problema) - [1.2.3. Descrizione funzionale](#123-descrizione-funzionale) - [1.3. Architettura piattaforma](#13-architettura-piattaforma) - [1.4. Fonti Scelte](#14-fonti-scelte) - [1.4.1. Adzuna](#141-adzuna) - [1.4.2. SimplyHired](#142-simplyhired) - [1.4.3. Numbeo](#143-numbeo) - [1.4.4. U.S.News](#144-usnews) - [1.4.5. Medium](#145-medium) - [1.4.6. Hacker Noon](#146-hacker-noon) - [1.4.7. Coursera](#147-coursera) - [1.4.8. Udacity](#148-udacity) - [1.4.9. GitHub](#149-github) - [1.5. Cache](#15-cache) ___ # 1. IDWork - Data integration È stata realizzata una pagina di presentazione del progetto in cui è presente la **documentazione**, le **informazioni del progetto** e un breve **video demo**.\ Spero apprezziate il nostro lavoro. [Presentazione web page](https://flavio-96.github.io/IDWork-Data-Integration-Project/) Altre informazioni sono presenti qui nel README, ma consigliamo la visione della web page e in particolare della demo. ## 1.1. Nome Scelto: **IDWork\**** \***IDW** &rarr; **I**ntegrazione **D**ati sul **W**eb :books:\ \*Work &rarr; Lo scopo della piattaforma è quello di facilitare la scelta del lavoro in base ai diversi fattori in analisi, **work è la nostra keyword** :moneybag: ___ ## 1.2. Idea progetto L'idea è partita da una nostra esigenza personale: non c'è attualmente una piattaforma che ci permette di valutare offerte di lavoro a 360°, valutando non solo l'offerta in sè, ma anche altri aspetti cruciali come il luogo del lavoro e le prospettive riguardo l'occupazione. ## 1.2.1 Scope sistema Il sistema per ragioni legate alla qualità delle fonti e al focus del progetto è ristretto alle seguenti offerte di lavoro: - Offerte di lavoro negli **USA** - Offerte di lavoro ersclusivamente in **ambito IT** ### 1.2.2. Specifica problema Al giorno d'oggi esistono molte piattaforme che hanno dato notevole slancio al mondo del lavoro e aperto ulteriormente il mercato dietro ad esso.\ L'ambito nel quale viviamo è cambiato: siamo circondati da tecnologie sempre più moderne grazie alle quali siamo interconnessi globalmente.\ È vero, infatti, che risulta molto più semplice sia per le aziende trovare il candidato giusto, sia per i professionisti imbattersi in opportunità di lavoro adatte ai propri interessi e alle proprie competenze.\ Questo contesto ha però introdotto **nuove problematiche** da affrontare. Può capitare di trovarsi di fronte alle offerte lavorative più disparate per compenso, aziende, luogo di lavoro, ambito lavorativo, competenze richieste, e chiedersi se la proposta o l'inserzione che si sta esaminando sia ciò che fa per sè.\ Le domande che ci si pone sono varie: - Il **compenso è giusto**? - È l'**azienda che fa per me**? - Quali sono le mie **aspettative future**? - Sono disposto a **trasferirmi**? - Come posso prepararmi al meglio all'**interview**? IDWork vuole aiutarti a trovare una risposta ad ognuno di questi quesiti.\ Quello che l'applicazione offre è una visione chiara dell'offerta in sè, ma anche degli altri fattori non immediatamente visibili che indirizzano la scelta finale: IDWork vuole essere la piattaforma di riferimento per chi cerca lavoro e vuole farlo nel modo più sereno possibile. ### 1.2.3. Descrizione funzionale Di seguito sono descritte le varie funzionalità offerte dalla piattaforma. Le funzionalità sono relative ai lavori nel campo dell'IT. - La piattaforma permette di ricercare le offerte di lavoro rispetto a una **ambito** dell'IT di interesse e una determinata **località**. - Ricevere su queste delle informazioni riguardo: - Informazioni presenti nell'**offerta**. - **Stima del compenso** del lavoro in base alla località e alle competenze e all'esperienza. - Informazioni sulla sede del lavoro come costi e indici di qualità della vita. - Informazioni sulle competenze richieste per il lavoro - **Articoli** - **Corsi online** (MOOC) - **Repository** ## 1.3. Architettura piattaforma ![Architettura piattaforma](/images/architecture.jpg) ## 1.4. Fonti Scelte Fonti utilizzate: - **Adzuna** - **SimplyHired** - **Numbeo** - **U.S.News** - **Medium** - **Hacker Noon** - **Coursera** - **Udacity** - **Github** ___ ### 1.4.1. Adzuna Adzuna è un aggregatore di offerte di lavoro operante in tutto il mondo. Esso combina migliaia di fonti diverse su un unico portale offrendo così una vasta scelta per quando si ricerca un lavoro.​ - [Risorsa](https://developer.adzuna.com/overview) ### 1.4.2. SimplyHired SimplyHired è stato utilizzato per ottenere le informazioni circa i compensi dei lavori negli Stati Uniti. Qui vengono ricavate le informazioni sul compenso in base alla propria esperienza (beginner, medium, senior). - [Risorsa](https://www.simplyhired.com/salaries) ### 1.4.3. Numbeo Numbeo è il più grande database al mondo di informazioni su città e nazioni, fornite direttamente dagli utenti. Numbeo fornisce informazioni aggiornate e tempestive riguardo le condizioni di vita nelle varie parti del mondo, tra cui il costo della vita, gli indicatori del mercato immobiliare, la situazione sanitaria, il traffico, il tasso di criminalità e il livello d’inquinamento. Numbeo mette a disposizione delle API per interagire con il suo database. - [Risorsa](https://www.numbeo.com/common/api.jsp) ### 1.4.4. U.S.News U.S. News & World Report è una società americana che pubblica notizie, opinioni, ranking e analisi sututte le principali località negli USA.\ Offre un'overviewcompleta delle città evidenziandone i pro e i controInoltre non sono poche le statistischedi interesse per chi sta valutando un trasferimento - [Risorsa](https://realestate.usnews.com/places/rankings/best-places-to-live) ### 1.4.5. Medium Medium è una piattaforma di pubblicazioni online di recente creazione. Al suo interno è possibile trovare risorse e tutorial sugli ultimi trend e tecnologie emergenti.​ ### 1.4.6. Hacker Noon Hacker Noon è un tech blog indipendente che permette a professionisti del settore IT e correlati di scrivere opinioni e articoli senza alcuna restrizioneÈ uno dei blog relativi al mondo dell'informatica più seguito globalmente e mette a disposizione uno staff di editor per controllare la qualità del materiale sul sito ### 1.4.7. Coursera Coursera è una piattaforma statunitense che opera nel campo delle tecnologie didattiche fondata dai professori della Stanford Andrew Nge Daphne Koller, che offre corsi online (MOOC), specializzazioni e corsi di studioCourseracollabora con varie università e i servizi disponibili sono certificati ### 1.4.8. Udacity Udacity è un'organizzazione educativa che offre corsi online aperti (MOOC)Offrelezioni video con sottotitoli e quiz integrati, promuovendo la metodologia del 'learning by doing' ### 1.4.9. GitHub Github è la piattaforma leader per l’hosting di progetti software sottoforma di codice sorgente. Dispone di una enorme quantità di progetti da poter consultare e a cui è possibile contribuire ​ Inoltre sono numerosi i repositories contenente materiale didattico e di studio raccolto dagli utenti - [Documentazione](https://developer.github.com/v3/) ## 1.5. Cache Per aumentare la reattività del sistema ed evitare di effettuare richieste alle fonti ad ogni ricerca da parte dell’utente, si è deciso di implementare un sistema di cache basato su **Redis**.
50.906667
385
0.756417
ita_Latn
0.999347
801f780f99d48c49dbbe573bafbdc8c4ae90dd54
195
md
Markdown
doc/ref/jsonpath/functions/floor.md
Flow86/jsoncons
137be2a5fbe90861fd75f24553dc139560fb12c5
[ "BSL-1.0" ]
1
2021-04-09T18:45:42.000Z
2021-04-09T18:45:42.000Z
doc/ref/jsonpath/functions/floor.md
wenwenchenbosch/jsoncons
30ab7f073d6e6dfff747796e78349f0f9aee2a4e
[ "BSL-1.0" ]
null
null
null
doc/ref/jsonpath/functions/floor.md
wenwenchenbosch/jsoncons
30ab7f073d6e6dfff747796e78349f0f9aee2a4e
[ "BSL-1.0" ]
null
null
null
### floor ``` integer floor(number value) ``` Returns the largest integer value not greater than the given number. It is a type error if the provided argument is not a number. ### Examples
13.928571
68
0.717949
eng_Latn
0.999731
801fc010adf74aa5d5f77bee8a17e79feb2545ac
3,013
md
Markdown
README-ZH.md
yang657850144/vue-message
0c105b8035e53222d1d062ee03d9cfe878d69c69
[ "MIT" ]
6
2018-09-15T04:54:14.000Z
2019-08-08T09:52:26.000Z
README-ZH.md
robbiemie/vue-message
0c105b8035e53222d1d062ee03d9cfe878d69c69
[ "MIT" ]
1
2021-03-22T02:11:22.000Z
2021-03-22T02:11:45.000Z
README-ZH.md
yang657850144/vue-message
0c105b8035e53222d1d062ee03d9cfe878d69c69
[ "MIT" ]
null
null
null
# 移动端 Messages组件 <p align="center"> <a href="http://www.yangoogle.com/#/work"> <img width="200" src="https://file.iviewui.com/logo-new.svg"/> </a> </p> <p align="center"> <a href="https://cn.vuejs.org/v2/guide/"><img src="https://makefriends.bs2dl.yy.com/bm1539228392003.svg" alt="vue"></a> <a href="https://www.npmjs.com/package/vue-messages"><img src="https://makefriends.bs2dl.yy.com/bm1541835935319.svg" alt="vue"></a> <a href="https://opensource.org/licenses/MIT"><img src="https://makefriends.bs2dl.yy.com/bm1539228515177.svg" alt="vue"></a> <a href="https://github.com/yang657850144/vue-message"><img src="https://makefriends.bs2dl.yy.com/bm1539228726851.svg" alt="vue"></a> </p> ## 文档 [中文](https://github.com/yang657850144/vue-message/blob/master/README-ZH.md) | [English](https://github.com/yang657850144/vue-message/blob/master/README.md) [在线预览](http://www.yangoogle.com/#/work) ## 介绍 > iview风格的轻量级全局消息提示组件。 ## 特点 * [x] 友好的接口文档 * [x] 简洁的UI风格 * [x] 轻量且高效 * [x] 适配移动端 * [x] 支持hook函数 * [x] 支持自定义样式 (2.0实现) * [ ] 支持jsx高级语法 (2.0实现) ## 快速上手 **安装** 使用npm: ``` $ npm install vue-messages ``` **用法** ```javascript import Vue from 'vue' // 导入其他模块 ... // 注意引入顺序,必须放在vue后面 import VueMessages from 'vue-messages' /** 默认配置 */ Vue.use(VueMessage) /** 高级用法 */ Vue.use(VueMessage, { duration: 1, // 单位: s themes: 'blackGold', // classic or classicBold styles: { top: 24, // 单位: px fontWeight: 'normal', fontSize: 28 }, before () { console.log('custom before hook') }, done () { console.log('custom done hook') } }) ``` 启动vue项目,在控制台执行下面语句,查看是否有值输出 ``` // 有输出表示引入成功,否则输出undefined表示引入失败。 $ window.$Message ``` **调用方式** ![](https://makefriends.bs2dl.yy.com/bm1541836106053.jpg) API 可以通过以下方法来使用组件: ```javascript /** config 类型: string */ this.$Message.info(config) this.$Message.success(config) this.$Message.warning(config) this.$Message.error(config) this.$Message.loading(config) /** config 类型: object */ this.$Message.info({ content: 'This is a normal message.', duration: 1, themes: 'classic', // classic blackGold styles: { fontSize: 14 // 单位: px }, before () { console.log('my before hook') }, done () { console.log('my done hook') } }) // other type ... ``` **config 配置项** | 属性 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | | duration | 弹窗停留时间 | number | 2(单位:s) | | styles | 自定义样式 | Object | {fontSize:'16px',top:'20px'} | | Theme | (高级)主题 | Object | - | | before | Hook 函数 | Function | 执行前调用 | | done | Hook 函数 | Function | 执行后调用 | | 后期添加 | | | - | | render | (高级)渲染函数(支持jsx语法) | Function | - | **消息种类** 目前支持有四种类型: - success - info - warning - error **功能演示** ![xxx]( https://o-id.ihago.net/boss/b596fcd2ce5e7bb51af674baeef9a348/GIF.gif) [Github项目源码](https://github.com/yang657850144/vue-message) **欢迎在下面进行讨论👇** [issues1](https://github.com/yang657850144/vue-message/issues/1) ## License [MIT](http://opensource.org/licenses/MIT) Copyright (c) 2017-present, Charles yang
17.723529
155
0.634252
yue_Hant
0.401678
80212c0c933f03d0a7aab494e7cce35b8aa698a1
2,056
md
Markdown
node_modules/react-test-render/README.md
CloudDong66/SortingVisualizer
9198479dc1ec6e2e2a3aaca0e2efa0a2dd4e1638
[ "MIT" ]
null
null
null
node_modules/react-test-render/README.md
CloudDong66/SortingVisualizer
9198479dc1ec6e2e2a3aaca0e2efa0a2dd4e1638
[ "MIT" ]
null
null
null
node_modules/react-test-render/README.md
CloudDong66/SortingVisualizer
9198479dc1ec6e2e2a3aaca0e2efa0a2dd4e1638
[ "MIT" ]
null
null
null
# React Test Render Utils ## Example Usage ``` import { createRenderer } from 'react-test-render' import MyComponent from './my-component' import MyComponentItem from './my-component-item' test(() => { const serviceAbc = new ServiceAbc() const renderer = reactTestRender.createRenderer(MyComponent, { serviceAbc }) let myComponent = renderer.render({ x: 123 }) expect(myComponent.props.x).to.be(123) serviceAbc.setItemsInTest([ 1, 2, 3 ]) let itemComponents = renderer.getChildrenOfType(MyComponentItem) expect(itemComponents).to.have.length(3) }) ``` ## API ``` reactTestRender.createRenderer(ComponentType, context) -> TestRenderer # Rerenders and returns the current rendering. TestRenderer#render(props) -> Component # Returns the current rendering without rerendering. TestRenderer#getRendering() -> Component # Collects the children of the provided component or the root one. TestRenderer#getChildren(parentComponent) -> [ Component ] TestRenderer#getChildren() -> [ Component ] TestRenderer#getChildrenOfType(ComponentType, parentComponent) -> [ Component ] TestRenderer#getChildrenOfType(tagName, parentComponent) -> [ Component ] TestRenderer#getChildrenOfType(ComponentType) -> [ Component ] TestRenderer#getChildrenOfType(tagName) -> [ Component ] TestRenderer#getChildrenOfClass(className, parentComponent) -> [ Component ] TestRenderer#getChildrenOfClass(className) -> [ Component ] # Returns the first child component if present TestRenderer#getChildOfType(ComponentType, parentComponent) -> Component | null TestRenderer#getChildOfType(tagName, parentComponent) -> Component | null TestRenderer#getChildOfType(ComponentType) -> Component | null TestRenderer#getChildOfType(tagName) -> Component | null TestRenderer#getChildOfClass(className, parentComponent) -> Component | null TestRenderer#getChildOfClass(className) -> Component | null # Returns the whole text content of the provided component or the root one. TestRenderer#getTextContent(component) -> string TestRenderer#getTextContent() -> string ```
34.847458
79
0.779669
eng_Latn
0.288352
802174216daa860a27a24a5ade0164b4d4466577
262
md
Markdown
src/emdk-for-android/4-0/api/barcode/ScannerConfig-DecoderParams-AustralianPostal/index.md
developer-zebra/developer-zebra-site
8b3ecb3fafc41d1bc9aa0e52ad07d66ae359902d
[ "Fair", "Unlicense" ]
2
2016-03-21T11:00:57.000Z
2016-04-27T06:46:52.000Z
src/emdk-for-android/4-0/api/barcode/ScannerConfig-DecoderParams-AustralianPostal/index.md
developer-zebra/developer-zebra-site
8b3ecb3fafc41d1bc9aa0e52ad07d66ae359902d
[ "Fair", "Unlicense" ]
7
2016-03-17T20:28:36.000Z
2020-07-07T19:02:59.000Z
src/emdk-for-android/4-0/api/barcode/ScannerConfig-DecoderParams-AustralianPostal/index.md
developer-zebra/developer-zebra-site
8b3ecb3fafc41d1bc9aa0e52ad07d66ae359902d
[ "Fair", "Unlicense" ]
8
2016-10-25T10:29:49.000Z
2021-06-04T03:34:40.000Z
--- title: ScannerConfig.DecoderParams.AustralianPostal type: api layout: guide.html product: EMDK For Android productversion: '4.0' --- The AustralianPostal class provides access to parameters that are available for the AustralianPostal decoder.
10.916667
65
0.767176
eng_Latn
0.84096
802223f8652295d68ce999eceb59bcc4c7df2925
26
md
Markdown
README.md
speedholicktp/doaxvv-instagram-scraper
349f33ca8143bebac54833564c47b8291d0b17f5
[ "MIT" ]
null
null
null
README.md
speedholicktp/doaxvv-instagram-scraper
349f33ca8143bebac54833564c47b8291d0b17f5
[ "MIT" ]
null
null
null
README.md
speedholicktp/doaxvv-instagram-scraper
349f33ca8143bebac54833564c47b8291d0b17f5
[ "MIT" ]
1
2021-04-17T23:24:23.000Z
2021-04-17T23:24:23.000Z
# doaxvv-instagram-scraper
26
26
0.846154
eng_Latn
0.415792
802228fd12122e978dfcf54056a286c95a785f7b
799
md
Markdown
projects/pc/logger/README.md
embbit/vscp-framework
9f070e9ff72a6bf31c775aee3878a680ba309bbb
[ "MIT" ]
1
2021-06-08T03:23:17.000Z
2021-06-08T03:23:17.000Z
projects/pc/logger/README.md
embbit/vscp-framework
9f070e9ff72a6bf31c775aee3878a680ba309bbb
[ "MIT" ]
1
2021-09-16T15:03:04.000Z
2021-11-06T09:07:43.000Z
projects/pc/logger/README.md
embbit/vscp-framework
9f070e9ff72a6bf31c775aee3878a680ba309bbb
[ "MIT" ]
null
null
null
# VSCP logger ## Manual The VSCP logger shows events on the command line, which are received via a connection to a VSCP daemon. Example of logs: ``` 2015-10-08 21:42:03 Rx: L1 class=0x0014 type=0x09 prio= 0 oAddr=0x00 - num=3 data=00 00 00 2015-10-08 21:42:04 Rx: L1 class=0x0000 type=0x01 prio= 0 oAddr=0x00 - num=5 data=AC 56 16 63 02 ``` Call the logger with -h or --help to see the command line arguments. Have fun! ## Issues, Ideas and bugs If you have further ideas or you found some bugs, great! Create a [issue](https://github.com/BlueAndi/vscp-framework/issues) or if you are able and willing to fix it by yourself, clone the repository and create a pull request. ## License The whole source code is published under the [MIT license](http://choosealicense.com/licenses/mit/).
33.291667
130
0.733417
eng_Latn
0.991262
802245075aeeb4ecff01b3c238b924fe8d325585
55
md
Markdown
README.md
ignis-pwa/learning_node
0a7fef13e054cbda71154029501a7744511c82b9
[ "Apache-2.0" ]
1
2018-08-08T11:30:56.000Z
2018-08-08T11:30:56.000Z
README.md
ignis-pwa/learning_node
0a7fef13e054cbda71154029501a7744511c82b9
[ "Apache-2.0" ]
1
2018-08-17T14:36:05.000Z
2018-09-13T17:17:31.000Z
README.md
ignis-pwa/learning_node
0a7fef13e054cbda71154029501a7744511c82b9
[ "Apache-2.0" ]
null
null
null
# learning_node Just a place to start and learn nodeJS
18.333333
38
0.8
eng_Latn
0.991669
8023ed1ed2e35c987989ac9d7cfad139d4ec8850
10,271
md
Markdown
WindowsServerDocs/administration/windows-commands/route_ws2008.md
SeekZ85/windowsserverdocs.fr-fr
5bf1419505b71bb5f82621880aa069a0e5c88e45
[ "CC-BY-4.0", "MIT" ]
null
null
null
WindowsServerDocs/administration/windows-commands/route_ws2008.md
SeekZ85/windowsserverdocs.fr-fr
5bf1419505b71bb5f82621880aa069a0e5c88e45
[ "CC-BY-4.0", "MIT" ]
null
null
null
WindowsServerDocs/administration/windows-commands/route_ws2008.md
SeekZ85/windowsserverdocs.fr-fr
5bf1419505b71bb5f82621880aa069a0e5c88e45
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: route_ws2008 description: Découvrez comment modifier et afficher des entrées dans la table de routage IP locale. ms.custom: na ms.prod: windows-server ms.reviewer: na ms.suite: na ms.technology: manage-windows-commands ms.tgt_pltfrm: na ms.topic: article ms.assetid: afcd666c-0cef-47c2-9bcc-02d202b983b3 author: coreyp-at-msft ms.author: coreyp manager: dongill ms.date: 07/11/2018 ms.openlocfilehash: cc68dd5634ae4832376924c1678dc10a0427f2b2 ms.sourcegitcommit: 6aff3d88ff22ea141a6ea6572a5ad8dd6321f199 ms.translationtype: MT ms.contentlocale: fr-FR ms.lasthandoff: 09/27/2019 ms.locfileid: "71371421" --- # <a name="route_ws2008"></a>route_ws2008 >S’applique à : Windows Server (canal semi-annuel), Windows Server 2016, Windows Server 2012 R2, Windows Server 2012 Affiche et modifie les entrées dans la table de routage IP locale. Utilisé sans paramètres, **route** affiche l’aide. ## <a name="syntax"></a>Syntaxe ``` route [/f] [/p] [<Command> [<Destination>] [mask <Netmask>] [<Gateway>] [metric <Metric>]] [if <Interface>]] ``` ### <a name="parameters"></a>Paramètres |Paramètre|Description| |-------|--------| |/f|Efface la table de routage de toutes les entrées qui ne sont pas des itinéraires hôtes (itinéraires avec un masque réseau 255.255.255.255), l’itinéraire réseau de bouclage (itinéraires avec une destination de 127.0.0.0 et un masque réseau 255.0.0.0) ou un itinéraire de multidiffusion (itinéraires avec une destination de 224.0.0.0). et un masque réseau de 240.0.0.0). Si cette option est utilisée conjointement avec l’une des commandes (telles que Add, change ou Delete), la table est effacée avant l’exécution de la commande.| |/p|Lorsqu’il est utilisé avec la commande Add, l’itinéraire spécifié est ajouté au registre et est utilisé pour initialiser la table de routage IP chaque fois que le protocole TCP/IP est démarré. Par défaut, les itinéraires ajoutés ne sont pas conservés lorsque le protocole TCP/IP est démarré. Lorsqu’elle est utilisée avec la commande Imprimer, la liste des itinéraires persistants s’affiche. Ce paramètre est ignoré pour toutes les autres commandes. Les itinéraires persistants sont stockés à l’emplacement du Registre **HKEY_LOCAL_MACHINE \system\currentcontrolset\services\tcpip\parameters\persistentroutes**.| |> de commande \<|Spécifie la commande que vous souhaitez exécuter. Le tableau suivant répertorie les commandes valides :<br /><br />- **Ajouter :** ajoute un itinéraire.<br />- **modifier :** modifie un itinéraire existant.<br />- **Delete :** supprime un itinéraire ou des itinéraires.<br />- **Imprimer :** imprime un itinéraire ou des itinéraires.| |> de destination \<|Spécifie la destination réseau de l’itinéraire. La destination peut être une adresse réseau IP (où les bits d’hôte de l’adresse réseau sont définis sur 0), une adresse IP pour un itinéraire hôte ou 0.0.0.0 pour l’itinéraire par défaut.| |masque \<réseau de masque >|Spécifie la destination réseau de l’itinéraire. La destination peut être une adresse réseau IP (où les bits d’hôte de l’adresse réseau sont définis sur 0), une adresse IP pour un itinéraire hôte ou 0.0.0.0 pour l’itinéraire par défaut.| |> de la passerelle \<|Spécifie l’adresse IP de transfert ou de tronçon suivant sur laquelle le jeu d’adresses défini par la destination réseau et le masque de sous-réseau sont accessibles. Pour les itinéraires de sous-réseau attachés localement, l’adresse de la passerelle est l’adresse IP affectée à l’interface attachée au sous-réseau. Pour les itinéraires distants, disponibles sur un ou plusieurs routeurs, l’adresse de la passerelle est une adresse IP directement accessible qui est affectée à un routeur voisin.| |mesure \<métrique >|Spécifie une mesure de coût d’entier (entre 1 et 9999) pour l’itinéraire, qui est utilisé lors du choix entre plusieurs itinéraires dans la table de routage qui correspondent le plus à l’adresse de destination d’un paquet transféré. L’itinéraire avec la métrique la plus basse est choisi. La métrique peut refléter le nombre de tronçons, la vitesse du chemin d’accès, la fiabilité du chemin d’accès, le débit du chemin d’accès ou les propriétés d’administration.| |Si \<interface >|Spécifie l’index d’interface pour l’interface sur laquelle la destination est accessible. Pour obtenir la liste des interfaces et leurs index d’interface correspondants, utilisez l’affichage de la commande route print. Vous pouvez utiliser des valeurs décimales ou hexadécimales pour l’index d’interface. Pour les valeurs hexadécimales, faites précéder le nombre hexadécimal de 0x. Lorsque le paramètre if est omis, l’interface est déterminée à partir de l’adresse de la passerelle.| |/?|Affiche l'aide à l'invite de commandes.| ## <a name="remarks"></a>Notes - Les valeurs élevées de la colonne **métrique** de la table de routage sont le résultat de l’autorisation de TCP/IP à déterminer automatiquement la métrique des itinéraires dans la table de routage en fonction de la configuration de l’adresse IP, du masque de sous-réseau et de la passerelle par défaut pour chaque interface LAN. La détermination automatique de la métrique de l’interface, activée par défaut, détermine la vitesse de chaque interface et ajuste les métriques des itinéraires pour chaque interface afin que l’interface la plus rapide crée les itinéraires avec la métrique la plus faible. Pour supprimer les métriques volumineuses, désactivez la détermination automatique de la métrique de l’interface à partir des propriétés avancées du protocole TCP/IP pour chaque connexion LAN. - Les noms peuvent être utilisés pour la *destination* s’il existe une entrée appropriée dans le fichier de réseaux locaux stocké dans le dossier <strong>systemroot\System32\Drivers\\</strong>etc. Les noms peuvent être utilisés pour la *passerelle* tant qu’ils peuvent être résolus en adresse IP par le biais de techniques de résolution de noms d’hôte standard, telles que les requêtes DNS (Domain Name System), l’utilisation du fichier hosts local stocké dans le dossier <strong>systemroot\System32\Drivers\\</strong>etc et la résolution de noms NetBIOS. - Si la commande est **Print** ou **Delete**, le paramètre de la *passerelle* peut être omis et des caractères génériques peuvent être utilisés pour la destination et la passerelle. La valeur de *destination* peut être une valeur générique spécifiée par un astérisque (*). Si la destination spécifiée contient un astérisque (\*) ou un point d’interrogation ( ?), elle est traitée comme un caractère générique et seuls les itinéraires de destination correspondants sont imprimés ou supprimés. L’astérisque correspond à n’importe quelle chaîne et le point d’interrogation correspond à n’importe quel caractère unique. Par exemple, 10.\*. 1, 192,168.\*, 127.\*et \*224\* sont toutes des utilisations valides du caractère générique astérisque. - Si vous utilisez une combinaison non valide d’une destination et d’une valeur de masque de sous-réseau (masque de sous-réseau), un message d’erreur « route : adresse de passerelle incorrecte » s’affiche. Ce message d’erreur s’affiche lorsque la destination contient un ou plusieurs bits définis sur 1 dans des emplacements de bits où le bit de masque de sous-réseau correspondant est défini sur 0. Pour tester cette condition, exprimez la destination et le masque de sous-réseau à l’aide de la notation binaire. Le masque de sous-réseau en notation binaire se compose d’une série de 1 bits, représentant la partie de l’adresse du réseau de la destination, et d’une série de 0 bits, représentant la partie de l’adresse hôte de la destination. Vérifiez si des bits de la destination ont la valeur 1 pour la partie de la destination qui est l’adresse d’hôte (telle que définie par le masque de sous-réseau). - Le paramètre **/p** est pris en charge uniquement sur la commande de routage pour windows NT 4,0, Windows 2000, Windows Millennium Edition, Windows XP et windows Server 2003. Ce paramètre n’est pas pris en charge par la commande de **routage** pour Windows 95 ou Windows 98. - Cette commande est disponible uniquement si le protocole TCP/IP (Internet Protocol) est installé en tant que composant dans les propriétés d’une carte réseau dans connexions réseau. ## <a name="BKMK_Examples"></a>Illustre Pour afficher tout le contenu de la table de routage IP, tapez : ``` route print ``` Pour afficher les itinéraires dans la table de routage IP qui commencent par 10, tapez : ``` route print 10.* ``` Pour ajouter un itinéraire par défaut avec l’adresse de passerelle par défaut 192.168.12.1, tapez : ``` route add 0.0.0.0 mask 0.0.0.0 192.168.12.1 ``` Pour ajouter un itinéraire au 10.41.0.0 de destination avec le masque de sous-réseau 255.255.0.0 et l’adresse de tronçon suivant 10.27.0.1, tapez : ``` route add 10.41.0.0 mask 255.255.0.0 10.27.0.1 ``` Pour ajouter un itinéraire persistant au 10.41.0.0 de destination avec le masque de sous-réseau 255.255.0.0 et l’adresse de tronçon suivant 10.27.0.1, tapez : ``` route /p add 10.41.0.0 mask 255.255.0.0 10.27.0.1 ``` Pour ajouter un itinéraire au 10.41.0.0 de destination avec le masque de sous-réseau 255.255.0.0, l’adresse de tronçon suivant 10.27.0.1 et la métrique de coût 7, tapez : ``` route add 10.41.0.0 mask 255.255.0.0 10.27.0.1 metric 7 ``` Pour ajouter un itinéraire au 10.41.0.0 de destination avec le masque de sous-réseau 255.255.0.0, l’adresse de tronçon suivant 10.27.0.1 et l’index d’interface 0x3, tapez : ``` route add 10.41.0.0 mask 255.255.0.0 10.27.0.1 if 0x3 ``` Pour supprimer l’itinéraire vers le 10.41.0.0 de destination avec le masque de sous-réseau 255.255.0.0, tapez : ``` route delete 10.41.0.0 mask 255.255.0.0 ``` Pour supprimer tous les itinéraires de la table de routage IP qui commencent par 10, tapez : ``` route delete 10.* ``` Pour modifier l’adresse de tronçon suivant de l’itinéraire avec la destination 10.41.0.0 et le masque de sous-réseau de 255.255.0.0 de 10.27.0.1 à 10.27.0.25, tapez : ``` route change 10.41.0.0 mask 255.255.0.0 10.27.0.25 ``` ## <a name="additional-references"></a>Références supplémentaires - [Clé de syntaxe de ligne de commande](command-line-syntax-key.md)
102.71
908
0.763996
fra_Latn
0.976887
8024b6128f17bdf84c7e001fd23ad87149995461
12,273
md
Markdown
_posts/2017-8-5-SQLite-Text-Proc.md
guojingyu/guojingyu.github.io
813fb54e4fb47e276324c538ce37a4dab5354972
[ "MIT" ]
null
null
null
_posts/2017-8-5-SQLite-Text-Proc.md
guojingyu/guojingyu.github.io
813fb54e4fb47e276324c538ce37a4dab5354972
[ "MIT" ]
null
null
null
_posts/2017-8-5-SQLite-Text-Proc.md
guojingyu/guojingyu.github.io
813fb54e4fb47e276324c538ce37a4dab5354972
[ "MIT" ]
null
null
null
--- layout: post title: Use SQLite in Text-Data Processing --- In a recent testing development project, I need to generate genetic variant test cases for downstream automated software test. So the test cases will likely be assembled by variants enlisted in [VCF files or Variant Call Format](https://en.wikipedia.org/wiki/Variant_Call_Format) (thinking it as a collection of variant information in a flat file) and their corresponding clinical findings (e.g. disease, genotype, treatment, clinical observation etc). The challenge is for the clinical findings that has underspecified mutations, such as EGFR activating mutations or exon 19 deletion, there is no particular well defined single variant associated that I can use to insert into VCFs. This will have to be done through sampling a whole set of variants with criteria and/or formulate it through gene elements descriptive information. Well now, good news is that I digged out from [Qiagen (Ingenuity)](https://www.qiagenbioinformatics.com/products/qiagen-clinical-insight/) knowledge base a pretty comprehensive list (as a dump) of known/putative variants with many of them curation validated, bad news is that this list contains >20 million variants, added up to a 2GB flat file with some simple annotation and it is ever-growing. For public, it is OK to use any kind of such variant mapping data repositories such as [dbVar](https://www.ncbi.nlm.nih.gov/dbvar) and [COSMIC](cancer.sanger.ac.uk/). It became rather a problem to solve with script only -- to simply read this file to memory will be a slow process. But what makes this unmanageable is the much larger memory footage and computation cost to build the data structure (hash or dictionary) for this file in memory and to merge it with other file content. The whole process, shall implemented purely by scripting language, while quite possible, can be fragile -- anything happened (all data files to be joined could change) could disrupt the whole process and risk longer running time but to restart. A more persistent solution is required and it’d better be light. Another requirement to this task is that it will remain as part of the build process for content release from knowledge base and I have to be able to build it as part of a CI process, which is to be triggered by upstream jobs and executable as a script. Since being part of the content build, even on server, this is not supposed to be a memory demanding task or it prevents other jobs from finishing in daily build. So I eventually decided to alternatively serve this file from drive along with others. To be able to do so, I utilized SQLite as the persistent layer to serve all files for the manipulation in python. During the run, it turned out to be efficient with up to ~200M memory footage that was quite manageable even on my Macbook Pro and most of the process remained low computation demanding. ### SQLite A well known name for desktop relational database is SQLite. SQLite runs its databases as files -- meaning the databases can be create, write, and erased as files. But with index properly built, the query performance on single machine is a well match to MySQL. Actually, there is not much need to introduce this tool. SQLite acts a bit like a shell above the database file, or software runs on the file, rather than a server or service. Install SQLite on Mac with Homebrew is a breeze. ```bash $ brew update $ brew install sqlite3 ``` In Ubuntu, if not for the latest version of the database, it can be easily installed from Ubuntu repository. ```bash $ sudo apt-get install sqlite3 libsqlite3-dev ``` To run SQLite (say over a database stored in file mydb.sqlite): ```bash $ cd /where/the/database/file/is $ sqlite3 mydb.sqlite ``` This will initialize an interactive shell for one to communicate with the databases, including SQL queries. If the database file did not exist yet, it will be created shall any following update is made on this database (e.g. create table and insert data). Of course, one can start SQLite without indicating the database file but later in the shell, such as, ```shell $ sqlite3 sqlite> .open mydb.sqlite ``` To quit the shell, do ```shell sqlite> .exit ``` ### SQLite Manager Add-on for Firefox If to use Firefox browser, there is a very nice little add-on tool named “SQLite Manager” (https://github.com/lazierthanthou/sqlite-manager) can be installed as its add on. It is not necessary for the task but it helps to visualize the databases and test SQL queries. This tool can be installed within Firefox. ![_config.yml]({{ site.baseurl }}/images/2017-8-5-SQLite-Text-Proc/SQLite _Manager.jpg) ### Load file content into Pandas Dataframe I normally used the Anaconda build for Python and it had pandas included. There is no need to talk much about Pandas either (too much introduction online). Taking the idea from R, pandas is one great dataframe implementation for table-like data processing. Loading data to a pandas dataframe from a flat file is a no brainer (just like R): ```python import pandas as pd df = pd.read_table(file, header=0) # assuming header exists and tab delimited ``` But to load the big file, the best practice is to avoid loading it at once or any intermediate operation (e.g. column trimming, splitting etc.) during the loading can lock up the process -- it may not be dead but too slow without response. The robust way to do it is through DataFrame chunk: ```python chunksize = 10 ** 5 ## indicate 100K row per chunk for 200M memory use or do what you'd like chunk_counter = 0 for chunk in pd.read_table(file, header=0, chunksize=chunksize): ## ************ ## process the dataframe chunk as you need ## or loading to database ## ************ chuck_counter += 1 ``` Each chunk can be just treated as a “mini” dataframe of the original file. So most Pandas dataframe functions or series functions can work directly on chunk object or its column trouble free. Just a side note, for text processing, Pandas Dataframe is very handy. But for numeric computing, Pandas Dataframe may not be a good choice. What fits better for matrix-like numeric computing is numpy ndarray -- personal experience suggested up to 100 times faster in these applications. ### Loading to SQLite Another reason to choose Pandas Dataframe is that it has build-in connection operators for database. While plain python can do it easily, such as ```python import sqlite3 as sqlite class SQLRunner(object): @staticmethod def runSQL(db, query): """ Accept SQL query and return query result :param query: :return: """ result = None try: conn = sqlite.connect(db) with conn: cur = conn.cursor() result = cur.execute(query) conn.commit() except sqlite.Error, e: print "Error: %s" % e.args[0] print "None object returned." finally: if conn: conn.close() return result ``` It cannot match the pythonic simplicity of the mighty Pandas Dataframe (df): ```python conn = sqlite.connect(db) df.to_sql(table, conn, flavor='sqlite', if_exists = 'replace', index = index) ``` Or ```python df.to_sql(table, conn, flavor='sqlite', if_exists = 'append', index = index) ``` I tried to load freshly for each table so I will “replace” existing table by the first chunk and “append” by the following chunks. ### Query Planning (Optimization) Before any proper query planning, disappointingly, it took ~10s for the database to return the result for one single variant lookup, which is comprised of 3 separate SQL queries. But the point for using a database is we can make plan for how to query the tables so to speed up. One way to do it is to indexing tables -- just like to create an index for a book or dictionary. Relational database index is commonly indexed as a derivative tree structure (e.g. B-tree). This would reduce linear search by row or column to binary search by index (logarithmic time). The better part is to make multiple column index so that queries over multiple columns can be done by searching single index. To create index, insert a query like this after a table is loaded before the connector is closed. ```python connector.SQLRunner.runSQL(sqlite_db, "CREATE INDEX did_refseq_id_idx ON %s (id, refseq_id)" % table_name) ``` Then query it on the table still: ```python cur.execute("SELECT gene_symbol, refseq_id FROM %s WHERE id = '%s' AND refseq_id > 'NO' AND refseq_id < 'NQ'" % (table_name, id)) ``` Create/query the index can be a bit tricky here: 1. The logical expression order for each column in WHERE clause of select SQL has to be in the same order as in the index creating SQL query (i.e. “id”, “refseq\_id” but not reversed); 2. To specify a string as Refseq protein id as “NP\_00000.0” (to say starting by “NP”), one cannot use the pattern query clause term “LIKE” such as “refseq\_id LIKE ‘NP%’”. It has to be converted to specific criteria such as inequalities of some kind, such as refseq\_id > 'NO' AND refseq\_id < 'NQ' (meaning not before “NO” and not after “NQ”, exclusively, so it is “NP*”). Please see [Refseq](https://en.wikipedia.org/wiki/RefSeq) for more detailed information, but in general the given example is just a way to form a range query that can utilize the index (see [here](http://use-the-index-luke.com/sql/where-clause/searching-for-ranges/greater-less-between-tuning-sql-access-filter-predicates) for more information). After indexed the tables and optimized the SQL queries, the same single variant lookup with three SQL queries can be returned in <0.005 s on my 2-year-old laptop. So it takes ~10 seconds to finish more than 1000 variant lookup sessions, which would otherwise use more than 3 hours. ### Wrap up the project and retro At last, while dockerizing this project is not an explicit point by this article, docker helped to simplified the deployment, since the whole job can be run on a single docker container with python (pandas lib etc) and SQLite database pre-installed in the image. The to-be-imported datafile will be first exported from knowledge base or other sources to a folder that is mounted and readable to the virtual machine/docker container. The overall process can be done by ~10 minutes for data parsing and uploading ~2.5GB data files, and ~2 minutes for queries, with ~10K test cases (writing to VCFs etc) -- well, besides whatever upstream knowledge base query time and the docker initialization. #### Some retro here: 1. I did not normalize the tables within the database -- for such a project with several tables involved, such normalization may not help as much on the query performance. Also because hard drive is much cheaper to use, so serving a project that is very single purposed, normalization over 10 tables to prevent redundancy does not seem to be a time-wise worthy move. 2. There can be some QC work and constraints to add to make the process more robust and reduce the data error -- but this can be incrementally added when the whole setup is stabilized. 3. SQLite seems to be quite handy and lightweight. I like its fitness for research/preliminary level projects, where no absolute performance but flexibility is needed. This project can be run at full just on my laptop computer and yet even with a 20GB file, it can still be manageable (longer loading overhead but only slightly slower queries given logarithmic complexity). 4. Database table join could be another optimization. I did not join the tables mainly because there are more logical processing involved that is harder for SQL but easy for python. It is also because the query number per run is bounded to 10K or so, but there is the single 20M row table that slows down every join while most of the joined rows will not be visited in that run. So not an efficient choice. 5. If implementing in python dictionary structure then lookup, this project will become much more computation demanding (not mentioning more complex and less maintainable code logic). While for this implementation, the computation can be shortly heavy while building the indices for tables (for some seconds) but most other occasion is very light.
73.053571
1,190
0.761835
eng_Latn
0.998905
8024c6d3357a8be3d3c83e7a19f84826d72733b1
1,405
md
Markdown
README.md
ahstro/toki-pona-emoji
ce3537c4efd470097aaf6869394e2364e8f2f9ee
[ "CC0-1.0" ]
27
2015-10-20T16:01:08.000Z
2021-08-29T22:28:39.000Z
README.md
ahstro/toki-pona-emoji
ce3537c4efd470097aaf6869394e2364e8f2f9ee
[ "CC0-1.0" ]
1
2019-11-27T06:58:45.000Z
2019-11-27T06:58:45.000Z
README.md
ahstro/toki-pona-emoji
ce3537c4efd470097aaf6869394e2364e8f2f9ee
[ "CC0-1.0" ]
5
2016-12-08T22:32:23.000Z
2021-01-16T13:08:00.000Z
# toki-pona-emoji **a proposed translation of toki pona lexicon into github emoji** I thought it would be interesting to select a subset of the emoticons listed on *[emoji-cheat-sheet.com](http://emoji-cheat-sheet.com)* and use them as an alternate visual language for *[toki pona](http://rowa.giso.de/languages/toki-pona/english/toki-pona-lessons.pdf)*. _See [word_list.org](https://github.com/holtzermann17/toki-pona-emoji/blob/master/word_list.org) for the emoji rendition of the [classic word list](http://tokipona.net/tp/ClassicWordList.aspx) and [sample_phrases.org](https://github.com/holtzermann17/toki-pona-emoji/blob/master/sample_phrases.org) for the emoji rendition of [these basic phrases](http://www.omniglot.com/language/phrases/tokipona.htm)._ The emoji are active on Github and other places. Suggestions about alternative treatments are most welcome! ## What's next 1. Perhaps a rendition of [these phrases](http://tokipona.net/tp/janpije/text/zompist.html)... beginning with: >>> :beetle: :small_red_triangle: :bow: :stew: :point_left: >>_pipi li lon moku mi_ > (Waiter, there's a fly in my soup.) 2. But perhaps more importantly, some code (which I have already written and need to dust off) for input. Bonus points for me if I manage to get one of the [formal grammars](http://www2.hawaii.edu/~chin/661F12/Projects/ztomaszewski.pdf) implemented along with the input method.
66.904762
404
0.770107
eng_Latn
0.887374
802524e524fb340e76378118f0d1cee032f45843
54
md
Markdown
README.md
dmyxs/Typescript-axios
e27bdcf557f884f8fa5489dd3fb53249f43c5f98
[ "MIT" ]
1
2020-08-08T02:12:36.000Z
2020-08-08T02:12:36.000Z
README.md
dmyxs/typescript-axios
e27bdcf557f884f8fa5489dd3fb53249f43c5f98
[ "MIT" ]
null
null
null
README.md
dmyxs/typescript-axios
e27bdcf557f884f8fa5489dd3fb53249f43c5f98
[ "MIT" ]
null
null
null
# Typescript-axios 使用Typescript实现axios第三方库,学习TS和AXIOS
18
34
0.888889
ast_Latn
0.212289
80254619fb35dc20f4e0ba9f3a4456c827c54f45
1,984
md
Markdown
docs/reporting-services/application-integration/release-notes-ssrs-application-integration.md
keunyop/sql-docs.ko-kr
ebbdcd44eebf4861c9ea9a8c13de6c2098b9f539
[ "CC-BY-4.0", "MIT" ]
1
2019-12-04T01:36:20.000Z
2019-12-04T01:36:20.000Z
docs/reporting-services/application-integration/release-notes-ssrs-application-integration.md
keunyop/sql-docs.ko-kr
ebbdcd44eebf4861c9ea9a8c13de6c2098b9f539
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/reporting-services/application-integration/release-notes-ssrs-application-integration.md
keunyop/sql-docs.ko-kr
ebbdcd44eebf4861c9ea9a8c13de6c2098b9f539
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: SSRS의 보고서 뷰어 컨트롤에 대한 릴리스 정보 ms.date: 09/20/2018 ms.prod: reporting-services ms.prod_service: reporting-services-native ms.technology: application-integration ms.topic: reference ms.assetid: 112e0240-351d-46a9-98c7-2be09f26ac60 ms.reviewer: maghan author: RhysSchmidtke ms.author: rhys ms.openlocfilehash: d6d4da6d5574288fa66ea18a9c63b1488a6abcca ms.sourcegitcommit: 7ccb8f28eafd79a1bddd523f71fe8b61c7634349 ms.translationtype: MTE75 ms.contentlocale: ko-KR ms.lasthandoff: 03/20/2019 ms.locfileid: "58290952" --- # <a name="release-notes-for-the-report-viewer-controls-for-webforms-and-winforms-of-ssrs"></a>WebForms 및 WinForms의 SSRS에 보고서 뷰어 컨트롤에 대 한 릴리스 정보 WebForms 및 WinForms, 관련 된 보고서 뷰어 컨트롤에 대 한 릴리스 이들은 [!INCLUDE[ssnoversion](../../includes/ssnoversion-md.md)] [!INCLUDE[ssRSnoversion](../../includes/ssrsnoversion-md.md)] (SSRS). SSRS에 대 한 릴리스 정보를 참조 하세요 [릴리스 정보에 대 한 SQL Server Reporting Services (SSRS) 2017 이상](../release-notes-reporting-services.md)합니다. ## <a name="15900148"></a>15.900.148 | 설명 변경 | 세부 정보 | | :----------------- | :------ | | 매개 변수 없는 보고서가 **Server.LoadReportDefinition**을 통해 로드되지 않도록 하는 버그 수정 | &nbsp; | | WebForms 보고서 뷰어 컨트롤 | RTL 페이지(*direction: rtl;* css 속성을 사용하여 텍스트 흐름을 변경하는 페이지)에 포함하도록 지원합니다.<br/><br/>*IReportViewerMessages5* 지역화 인터페이스를 통해 인쇄 대화 상자 텍스트를 사용자 지정하도록 지원합니다.<br/><br/>접근성 지원 개선<br/><br/>&bull; &nbsp; &nbsp; [WebForms의 보고서 뷰어 컨트롤에 대 한 NuGet 패키지](https://www.nuget.org/packages/Microsoft.ReportingServices.ReportViewerControl.Webforms/150.900.148) | | WinForms 보고서 뷰어 컨트롤 | 높은 DPI 모드에서 앱을 실행 중인 경우 인쇄 문제 수정<br/><br/>&bull; &nbsp; &nbsp; [WinForms의 보고서 뷰어 컨트롤에 대 한 NuGet 패키지](https://www.nuget.org/packages/Microsoft.ReportingServices.ReportViewerControl.Winforms/150.900.148) | | &nbsp; | &nbsp; | ## <a name="next-steps"></a>다음 단계 보고서 뷰어 컨트롤 [시작](integrating-reporting-services-using-reportviewer-controls-get-started.md) 추가 질문이 있으신가요? [Reporting Services 포럼을 이용해 보세요.](https://go.microsoft.com/fwlink/?LinkId=620231)
50.871795
363
0.738911
kor_Hang
0.998815
8025a0cfd7bb465414235f9c9fade645ad6ab0c1
121
md
Markdown
README.md
JThouch/OurTimes
98314ac490b94dbe6fb7eb846be851302f210b3c
[ "MIT" ]
1
2015-01-01T09:55:03.000Z
2015-01-01T09:55:03.000Z
README.md
JThouch/OurTimes
98314ac490b94dbe6fb7eb846be851302f210b3c
[ "MIT" ]
null
null
null
README.md
JThouch/OurTimes
98314ac490b94dbe6fb7eb846be851302f210b3c
[ "MIT" ]
null
null
null
图班:基于位置的通讯录 + 通讯录功能 + 微博功能 + 分享功能 + 位置功能 ===== Node.js + AngularJS + MongoDB + pc + web app + pc client
8.642857
29
0.53719
yue_Hant
0.695529
802805fa07170eed8fd2398f2bdae138a7c38cbd
203
md
Markdown
blog/_posts/tech/tech.md
gaodyun/vuepress-blog-yunerself
8532668e443ef550c767c8ece90ae6e0ced1f4d2
[ "MIT" ]
null
null
null
blog/_posts/tech/tech.md
gaodyun/vuepress-blog-yunerself
8532668e443ef550c767c8ece90ae6e0ced1f4d2
[ "MIT" ]
null
null
null
blog/_posts/tech/tech.md
gaodyun/vuepress-blog-yunerself
8532668e443ef550c767c8ece90ae6e0ced1f4d2
[ "MIT" ]
null
null
null
--- title: Tech date: 2019-01-10 23:56:03 categories: - Tech tags: - Tech author: gaodyun location: Shanghai --- >你 >一会儿看我 >一会儿看云 >我觉得 >你看我时很远 >你看云时很近 ><center>《远和近》,顾城</center> <!--more--> # Tech Tech
9.227273
26
0.655172
kor_Hang
0.144724
802870b4fa508f28f150a59cef6e4c81dc0c1332
1,554
md
Markdown
_posts/2004/2004-01-12-trainingslager-ohne-fuenf-aber-mit-keller.md
eintracht-stats/eintracht-stats.github.io
9d1cd3d82bff1b70106e3b5cf3c0da8f0d07bb43
[ "MIT" ]
null
null
null
_posts/2004/2004-01-12-trainingslager-ohne-fuenf-aber-mit-keller.md
eintracht-stats/eintracht-stats.github.io
9d1cd3d82bff1b70106e3b5cf3c0da8f0d07bb43
[ "MIT" ]
1
2021-04-01T17:08:43.000Z
2021-04-01T17:08:43.000Z
_posts/2004/2004-01-12-trainingslager-ohne-fuenf-aber-mit-keller.md
eintracht-stats/eintracht-stats.github.io
9d1cd3d82bff1b70106e3b5cf3c0da8f0d07bb43
[ "MIT" ]
null
null
null
--- layout: post title: "Trainingslager ohne Fünf - aber mit Keller" subtitle: "Finanzielle Situation leicht verbessert" --- Von heute an belegt die Eintracht ein einwöchiges Trainingslager im spanischen Jerez. Willi Reimann muss dabei neben den langzeitverletzten Jones und Tsoumou-Madza auch auf die beiden U19-Nationalspieler Cimen und Huber verzichten, die sich auf einem DFB-Lehrgang befinden. Ebenfalls nicht dabei ist Andreas Möller, der am Wochende einen Muskelfaserriss erlitten hatte. Wieder mit dabei ist dagegen nach seinem Knorpelschaden Jens Keller. Er wird allerdings ein gesondertes Trainingsprogramm absolvieren, wie auch Chris, der trotz seines Muskelfaserrisses mit nach Spanien geflogen ist. Von Neuzugängen ist weiterhin nichts zu sehen - es werden nur die selben Namen weiterhin gerüchteweise in allen Zeitungen genannt... Der Kicker hat allerdings ein paar interessante Informationen zur Finanzlage unserer Eintracht. In der letzten Saison wurde demnach ein Gewinn von knapp 12,9 Millionen Euro eingefahren - allerdings nur, weil Octagon auf Forderungen in Höhe von etwa 16,8 Millionen Euro verzichtet hatte. Ohne diesen Verzicht wäre also ein Verlust von 3,9 Millionen Euro herausgekommen! In dieser Saison sieht es da bislang besser aus. Eintracht-Prokurist Oliver Frankenbach bestätigte gegenüber dem Kicker, dass in der ersten Saisonhälfte ein Gewinn eingefahren wurde, der ausschließlich aus dem operativen Geschäft resultiert und unsere Eigenkapitalsituation im Hinblick auf das Lizenzierungsverfahren weiter verbessert.
129.5
704
0.833333
deu_Latn
0.999567
802964e54a05364cc62eae3d6b1b6ef9398906ca
6,010
md
Markdown
articles/key-vault/general/about-keys-secrets-certificates.md
mtaheij/azure-docs.nl-nl
6447611648064a057aae926a62fe8b6d854e3ea6
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/key-vault/general/about-keys-secrets-certificates.md
mtaheij/azure-docs.nl-nl
6447611648064a057aae926a62fe8b6d854e3ea6
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/key-vault/general/about-keys-secrets-certificates.md
mtaheij/azure-docs.nl-nl
6447611648064a057aae926a62fe8b6d854e3ea6
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: 'Over Azure Key Vault-sleutels, geheimen en certificaten: Azure Key Vault' description: Overzicht van REST-interface van Azure Key Vault en detailinformatie voor ontwikkelaars over sleutels, geheimen en certificaten. services: key-vault author: msmbaldwin manager: rkarlin tags: azure-resource-manager ms.service: key-vault ms.topic: overview ms.date: 04/17/2020 ms.author: mbaldwin ms.openlocfilehash: cb8a29c5d2eff46eecb2cf977bfb492f28731e68 ms.sourcegitcommit: 3d79f737ff34708b48dd2ae45100e2516af9ed78 ms.translationtype: HT ms.contentlocale: nl-NL ms.lasthandoff: 07/23/2020 ms.locfileid: "87043633" --- # <a name="about-keys-secrets-and-certificates"></a>Over sleutels, geheimen en certificaten Met Azure Key Vault kunnen Microsoft Azure-toepassingen en -gebruikers verschillende typen geheim-/sleutelgegevens opslaan en gebruiken: - Cryptografische sleutels: Biedt ondersteuning voor meerdere sleutels en algoritmes, en maakt het gebruik van HSM (Hardware Security Modules) mogelijk voor sleutels met een hoge waarde. Zie [Over sleutels](../keys/about-keys.md) voor meer informatie. - Geheimen: Biedt beveiligde opslag van geheimen, zoals wachtwoorden en databaseverbindingsreeksen. Zie [Over geheimen](../secrets/about-secrets.md) voor meer informatie. - Certificaten: Ondersteunt certificaten, die worden gebouwd op basis van sleutels en geheimen en een functie voor automatisch verlengen toevoegen. Zie [Over certificaten](../certificates/about-certificates.md) voor meer informatie. - Azure Storage: Kan sleutels van een Azure Storage-account voor u beheren. Intern kan Key Vault sleutels synchroniseren met een Azure Storage-account en de sleutels periodiek opnieuw genereren (rouleren). Zie [Opslagaccountsleutels beheren met Key Vault](../secrets/overview-storage-keys.md) voor meer informatie. Zie [Over Azure Key Vault](overview.md) voor meer algemene informatie over Azure Key Vault. ## <a name="data-types"></a>Gegevenstypen Raadpleeg de JOSE-specificaties voor relevante gegevenstypen voor sleutels, versleuteling en ondertekening. - **algorithm**: een ondersteund algoritme voor een sleutelbewerking, bijvoorbeeld RSA1_5 - **ciphertext-value**: ciphertekstoctetten, gecodeerd met Base64URL - **digest-value**: de uitvoer van een hash-algoritme, gecodeerd met Base64URL - **key-type**: een van de ondersteunde sleuteltypen, bijvoorbeeld RSA (Rivest-Shamir-Adleman). - **plaintext-value** - niet-versleutelde-tekstoctetten, gecodeerd met Base64URL - **signature-value**: uitvoer van een handtekeningalgoritme, gecodeerd met Base64URL - **base64URL**: een met Base64URL [RFC4648] gecodeerde binaire waarde - **boolean**: waar of onwaar - **Identity**: een identiteit van AAD (Azure Active Directory). - **IntDate**: een decimale JSON-waarde die het aantal seconden van 1970-01-01T0:0: 0Z UTC tot de opgegeven UTC-datum/-tijd vertegenwoordigt. Zie RFC3339 voor meer informatie over datums/tijden in het algemeen en UTC in het bijzonder. ## <a name="objects-identifiers-and-versioning"></a>Objecten, id's en versiebeheer In Key Vault opgeslagen objecten worden geversioneerd telkens wanneer er een nieuw exemplaar van een object wordt gemaakt. Aan elke versie wordt een unieke id en URL toegewezen. Wanneer een object voor het eerst wordt gemaakt, krijgt het een unieke versie-id en wordt het gemarkeerd als de huidige versie van het object. Het maken van een nieuw exemplaar met dezelfde objectnaam geeft het nieuwe object een unieke versie-id, waardoor het de huidige versie wordt. Objecten in Key Vault kunnen worden geadresseerd door een versie op te geven of door de versie weg te laten voor bewerkingen op de huidige versie van het object. Als er bijvoorbeeld een sleutel met de naam `MasterKey` is, wordt de nieuwste beschikbare versie gebruikt als er bewerkingen worden uitgevoerd zonder een versie op te geven. Door bewerkingen uit te voeren met de versie-specifieke id wordt die specifieke versie van het object gebruikt. Objecten worden binnen Key Vault uniek geïdentificeerd met behulp van een URL. Geen twee objecten in het systeem hebben dezelfde URL, ongeacht hun geografische locatie. De volledige URL van een object wordt de object-id genoemd. De URL bestaat uit een voorvoegsel waarmee de sleutelkluis wordt geïdentificeerd, een objecttype, een door de gebruiker opgegeven objectnaam en een objectversie. De objectnaam is hoofdlettergevoelig en onveranderbaar. Id's die niet de objectversie bevatten, worden aangeduid als basis-id's. Zie [Verificatie, aanvragen en antwoorden](authentication-requests-and-responses.md) voor meer informatie Een object-id heeft de volgende algemene notatie: `https://{keyvault-name}.vault.azure.net/{object-type}/{object-name}/{object-version}` Waar: | Element | Beschrijving | |-|-| |`keyvault-name`|De naam voor een sleutelkluis in de Microsoft Azure Key Vault-service.<br /><br /> Sleutelkluisnamen worden geselecteerd door de gebruiker en zijn wereldwijd uniek.<br /><br /> De naam van een sleutelkluis moet een tekenreeks van 3 tot 24 tekens lang zijn en mag alleen de tekens 0-9, a-z, A-Z en - bevatten.| |`object-type`|Het type van het object, "sleutels", "geheimen" of "certificaten".| |`object-name`|Een `object-name` is een door de gebruiker ingevoerde naam en moet uniek zijn binnen een sleutelkluis. De naam moet een reeks van 1-127 tekens zijn die begint met een letter en alleen 0-9, a-z, A-Z en - bevat.| |`object-version`|Een `object-version` is een door het systeem gegenereerde id van 32 tekens die optioneel wordt gebruikt om een unieke versie van een object te adresseren.| ## <a name="next-steps"></a>Volgende stappen - [Over sleutels](../keys/about-keys.md) - [Over geheimen](../secrets/about-secrets.md) - [Over certificaten](../certificates/about-certificates.md) - [Verificatie, aanvragen en antwoorden](../general/authentication-requests-and-responses.md) - [Gids voor Key Vault-ontwikkelaars](../general/developers-guide.md)
80.133333
521
0.786023
nld_Latn
0.999601