hexsha
stringlengths
40
40
size
int64
5
1.04M
ext
stringclasses
6 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
3
344
max_stars_repo_name
stringlengths
5
125
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
listlengths
1
11
max_stars_count
int64
1
368k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
344
max_issues_repo_name
stringlengths
5
125
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
listlengths
1
11
max_issues_count
int64
1
116k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
344
max_forks_repo_name
stringlengths
5
125
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
listlengths
1
11
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
5
1.04M
avg_line_length
float64
1.14
851k
max_line_length
int64
1
1.03M
alphanum_fraction
float64
0
1
lid
stringclasses
191 values
lid_prob
float64
0.01
1
dc1710d7fdfc2ca558085dd661cda2eda48e1bc1
183
md
Markdown
topics/transcriptomics/tutorials/ref-based/faqs/rnastar_bam.md
PlushZ/training-material
f2c0d4da65a2c29874a881db0259fdcf97cec304
[ "MIT" ]
2
2019-05-01T07:54:34.000Z
2019-05-01T07:56:45.000Z
topics/transcriptomics/tutorials/ref-based/faqs/rnastar_bam.md
NordicESMhub/training-material
3685769ee88c2648908ab694f9d694a22c508a28
[ "MIT" ]
2
2021-09-23T21:25:20.000Z
2022-03-30T11:21:37.000Z
topics/transcriptomics/tutorials/ref-based/faqs/rnastar_bam.md
NordicESMhub/training-material
3685769ee88c2648908ab694f9d694a22c508a28
[ "MIT" ]
2
2018-07-19T19:05:27.000Z
2018-07-24T17:53:30.000Z
--- title: Is it possible to visualize the RNA STAR bam file using the JBrowse tool? area: mapping box_type: question layout: faq contributors: [bebatut] --- Yes, that should work.
18.3
81
0.743169
eng_Latn
0.990941
dc18345bf7a0065f5ef8c774cf4ea5908392a729
5,647
md
Markdown
reading_pages/YinYang/ts10.md
lady-h-world/My_Garden
3b2bea500d79210a7166be3e3768033b403bf5d5
[ "MIT" ]
null
null
null
reading_pages/YinYang/ts10.md
lady-h-world/My_Garden
3b2bea500d79210a7166be3e3768033b403bf5d5
[ "MIT" ]
null
null
null
reading_pages/YinYang/ts10.md
lady-h-world/My_Garden
3b2bea500d79210a7166be3e3768033b403bf5d5
[ "MIT" ]
1
2021-11-29T17:04:52.000Z
2021-11-29T17:04:52.000Z
### Greykite Changepoint Detection Greykite changepoint detection includes both trend and seasonality changepoints detection. The trend changepoint detection is similar to Kats trend detection. To detect changepoints, Greykite will preprocess the time series with mean aggregation to avoid trend picks up small fluctuations or seasonality effects, then it places a great number of changepoints uniformly over the whole time span. Next, to remove those insignificant changepoints, it applies adaptive lasso to shrink their coefficients to 0. Finally, it also does a post filtering to eliminate changepoints that are too close. Remember that in Kats changepoint detection, Lady H. simply could not make it work on the sales data? With Greykite, the changepoint detection works on all the 3 time series (sales, temperature and humidity). #### Trend Changepoint Detection The configuration for trend detection is shown as below, no matter it's univariate time series or multivariate time series input, you just need to specify the time series variable name. <p align="left"> <img src="https://github.com/lady-h-world/My_Garden/blob/main/images/Garden_Totem_images/detection/gk_trend_cp.png" width="1006" height="734" /> </p> The plot of changepoints allows more info to be added, such as trend line, seasonality, etc. The example below shows the trend changepoints on the sales data: <p align="left"> <img src="https://github.com/lady-h-world/My_Garden/blob/main/images/Garden_Totem_images/detection/gk_trend_cp1.png" width="1000" height="360" /> </p> These are the trend changepoints for humidity and temperature data: <p align="left"> <img src="https://github.com/lady-h-world/My_Garden/blob/main/images/Garden_Totem_images/detection/gk_trend_cp2.png" width="1000" height="360" /> </p> <p align="left"> <img src="https://github.com/lady-h-world/My_Garden/blob/main/images/Garden_Totem_images/detection/gk_trend_cp3.png" width="1000" height="360" /> </p> However we don't know the detected changepoints here indicate increasing trend or decreasing trend. 🌻 [Check detailed code in Greykite Trend Changepoint Detection >>][1] #### Seasonality Changepoint Detection The configuration for seasonality changepoint detection is similar to Greykite trend detection, but just to change to another function: <p align="left"> <img src="https://github.com/lady-h-world/My_Garden/blob/main/images/Garden_Totem_images/detection/gk_seasonality_cp.png" width="768" height="441" /> </p> Greykite will show seasonality changepoints for different components (daily, weekly, yearly). For example, for the sales data, it has detected weekly and yearly changepoints: <p align="left"> <img src="https://github.com/lady-h-world/My_Garden/blob/main/images/Garden_Totem_images/detection/gk_seasaonlity_cp1.png" width="1200" height="360" /> </p> These are the seasonality changepoints for humidity and temperature data: <p align="left"> <img src="https://github.com/lady-h-world/My_Garden/blob/main/images/Garden_Totem_images/detection/gk_seasonality_cp2.png" width="1200" height="360" /> </p> <p align="left"> <img src="https://github.com/lady-h-world/My_Garden/blob/main/images/Garden_Totem_images/detection/gk_seasonality_cp3.png" width="1200" height="360" /> </p> But some items in the plot can be confusing. Such as, why the trend line can be much higher than the whole time series? Why there can be yearly changepoint while the overall time series is less than 1 year length? Comparing with [Kats changepoint detection][3], which output makes more sense to you? [Welcome to share your thoughts here][2]! 🌻 [Check detailed code in Greykite Seasonality Changepoint Detection >>][1] # <p align="left"> <img src="https://github.com/lady-h-world/My_Garden/blob/main/images/follow_us.png" width="120" height="50" /> </p> [Keep going >>][4] <p align="right"> <img src="https://github.com/lady-h-world/My_Garden/blob/main/images/going_back.png" width="60" height="44" /> </p> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[<< Looking back][3] [1]:https://github.com/lady-h-world/My_Garden/blob/main/code/yinyang/greykite_experiments/gk_changepoints.ipynb [2]:https://github.com/lady-h-world/My_Garden/discussions/categories/show-and-tell [3]:https://github.com/lady-h-world/My_Garden/blob/main/reading_pages/YinYang/ts9.md [4]:https://github.com/lady-h-world/My_Garden/blob/main/reading_pages/YinYang/ts11.md
69.716049
1,227
0.742518
eng_Latn
0.548187
dc1a00bae782194a858cacc56bca7b6593045a77
3,107
md
Markdown
writing.md
esamjones/esamjones.github.io
de6c44e30b78b8d15bd2ab134dc07e1775609952
[ "MIT" ]
null
null
null
writing.md
esamjones/esamjones.github.io
de6c44e30b78b8d15bd2ab134dc07e1775609952
[ "MIT" ]
null
null
null
writing.md
esamjones/esamjones.github.io
de6c44e30b78b8d15bd2ab134dc07e1775609952
[ "MIT" ]
null
null
null
--- layout: page title: Selected less academic writing --- <style> table:nth-of-type(1) { display:table; width:100%; } table:nth-of-type(1) th:nth-of-type(1) { width:20%; } </style> | Date | Link | | :--- | :--- | | 2021, May 21 | [Mozambique’s difficult decade: three lessons to inform next steps](https://theconversation.com/mozambiques-difficult-decade-three-lessons-to-inform-next-steps-161107) | | 2021, Mar 02 | [Infrastructure spend: insights from the effect of a bridge across the Zambezi on maize prices](https://theconversation.com/infrastructure-spend-insights-from-the-effect-of-a-bridge-across-the-zambezi-on-maize-prices-155515) | | 2020, Jul 27 | [Beyond lockdown: rebuilding the social contract](https://www.globaldev.blog/blog/beyond-lockdown-rebuilding-social-contract) | | 2020, Apr 20 | [The five criteria low income countries must have in place for lockdowns to work](https://theconversation.com/the-five-criteria-low-income-countries-must-have-in-place-for-lockdowns-to-work-136263) | | 2020, Apr | [Is Mozambique prepared for a lockdown during the COVID-19 pandemic?](https://www.wider.unu.edu/publication/mozambique-prepared-lockdown-during-covid-19-pandemic) | | 2019, Oct 23 | [Nobel prize in economics: experiments are no substitute for diagnosis](https://theconversation.com/nobel-prize-in-economics-experiments-are-no-substitute-for-diagnosis-125575) | | 2019, Aug 19 | [Mozambique case study shows that poverty is about much more than income](https://theconversation.com/mozambique-case-study-shows-that-poverty-is-about-much-more-than-income-121639) | | 2019, Jun | [The vital role of aid in development ](https://www.wider.unu.edu/publication/vital-role-aid-development) | | 2017, Nov | [Has the quality of Mozambique’s education been sacrificed at the altar of access?](https://www.wider.unu.edu/publication/has-quality-mozambique%E2%80%99s-education-been-sacrificed-altar-access) | | 2016, May 24 | [Growth is not enough for Mozambique’s informal workers](https://blogs.worldbank.org/jobs/growth-not-enough-mozambique-s-informal-workers) | | 2016, May 12 | [How Mozambique can contain its debt crisis and avoid long-term damage](https://theconversation.com/how-mozambique-can-contain-its-debt-crisis-and-avoid-long-term-damage-59180) | | 2016, Apr 07 | [How Mozambique can avoid stepping into the abyss](https://theconversation.com/how-mozambique-can-avoid-stepping-into-the-abyss-57356) | | 2016, Feb 03 | [Development aid works over time, but must adapt to 21st-century needs](https://theconversation.com/development-aid-works-over-time-but-must-adapt-to-21st-century-needs-52910) | | 2015, Dec 30 | [Many East African kids attend school – but not enough are actually learning](https://theconversation.com/many-east-african-kids-attend-school-but-not-enough-are-actually-learning-48529) | | 2015, Dec | [Building on success in development aid ](https://www.wider.unu.edu/publication/building-success-development-aid) | | 2008, Feb 28 | [Afrika - den nye finansielle frontløber](https://www.information.dk/udland/2008/02/afrika-nye-finansielle-frontloeber) |
100.225806
243
0.764081
eng_Latn
0.57397
dc1a1e8e344576240ffbddbcdbe9117d483c1dc2
53
md
Markdown
README.md
CliveUnger/BigGAN-Videos
4b58c8324fdfacba0189a2f2c0f65f4da0a96760
[ "MIT" ]
null
null
null
README.md
CliveUnger/BigGAN-Videos
4b58c8324fdfacba0189a2f2c0f65f4da0a96760
[ "MIT" ]
2
2021-06-08T21:24:44.000Z
2022-01-13T02:37:02.000Z
README.md
CliveUnger/BigGAN-Videos
4b58c8324fdfacba0189a2f2c0f65f4da0a96760
[ "MIT" ]
null
null
null
# BigGAN-Videos Create generative videos with BigGAN
17.666667
36
0.830189
eng_Latn
0.715217
dc1b3214472c5222d694faf7e72fceca305f04b1
806
md
Markdown
src/_ideas/find-an-organiser.md
jamesgorrie/ideas-for-inclusive-events
84c4cfcd9a3df3ab2c586ae8ba95690871dbdac7
[ "CC-BY-4.0" ]
5
2019-02-05T07:38:36.000Z
2019-11-07T21:20:09.000Z
src/_ideas/find-an-organiser.md
jamesgorrie/ideas-for-inclusive-events
84c4cfcd9a3df3ab2c586ae8ba95690871dbdac7
[ "CC-BY-4.0" ]
4
2019-02-06T08:13:30.000Z
2019-09-28T00:12:29.000Z
src/_ideas/find-an-organiser.md
jamesgorrie/ideas-for-inclusive-events
84c4cfcd9a3df3ab2c586ae8ba95690871dbdac7
[ "CC-BY-4.0" ]
1
2019-09-17T20:01:25.000Z
2019-09-17T20:01:25.000Z
--- layout: page title: Make it easy to spot the organisers category: inside-the-venue summary: >- If somebody has a question, a concern, or wants to talk about the code of conduct, they need to find an organiser. Make them easy to spot. --- Possible approaches include brightly coloured, branded t-shirts, or different lanyards from everyone else. If you have places that are continuously staffed during conference hours (for example, the registration desk), make sure you tell people. It may not always be the most convenient, but it's good to know that fallback exists. If you're using branded t-shirts, make sure you get them [in appropriate shapes and sizes]({{ site.url }}/ideas/thoughtful-swag/). Don't be the conference that only bought men's t-shirts for a mixed group of organisers.
44.777778
137
0.764268
eng_Latn
0.999719
dc1ba871338d98cce3510aa76ab10b7af2d3c21b
8,357
md
Markdown
AATCC/lab-report/w16/README.md
kancheng/kan-cs-report-in-2022
2a1e1eaa515349d59803c7831a7bd4cbea890a44
[ "MIT" ]
null
null
null
AATCC/lab-report/w16/README.md
kancheng/kan-cs-report-in-2022
2a1e1eaa515349d59803c7831a7bd4cbea890a44
[ "MIT" ]
null
null
null
AATCC/lab-report/w16/README.md
kancheng/kan-cs-report-in-2022
2a1e1eaa515349d59803c7831a7bd4cbea890a44
[ "MIT" ]
null
null
null
# AATCC - 算法分析和复杂性理论 - Analysis of Algorithms and Theory of Computational Complexity > 2101212850 干皓丞 PKU 2022 個人實驗報告作業 ## Details 第 16 週課堂課堂複習與作業。 報告科研中使用算法與 LeetCode 的關係,同時整理因為配合門課同時旁聽的兩門課程。並總結。 - 成功大學 Linux 核心設計 - 金門大學系統程式 - 工具書 : 由片語學習 C 程式設計,劉邦鋒 ### 楼梯算法 (SD) 楼梯算法 (SD) 在思路上和 O(1) 算法有很大不同,它抛弃了动态优先级的概念。而采用了一种完全公平的思路。前任算法的主要复杂性来自动态优先级的计算,调度器根据平均睡眠时间和一些很难理解的经验公式来修正进程的优先级以及区分交互式进程。这样的代码很难阅读和维护。楼梯算法思路简单,但是实验证明它对应交互式进程的响应比其前任更好,而且极大地简化了代码。 和 O(1) 算法一样,楼梯算法也同样为每一个优先级维护一个进程列表,并将这些列表组织在 Active 数组中。当选取下一个被调度进程时,SD 算法也同样从active数组中直接读取。与 O(1) 算法不同在于,当进程用完了自己的时间片后,并不是被移到 expire 数组中。而是被加入 active 数组的低一优先级列表中,即将其降低一个级别。不过请注意这里只是将该任务插入低一级优先级任务列表中,任务本身的优先级并没有改变。当时间片再次用完,任务被再次放入更低一级优先级任务队列中。就象一部楼梯,任务每次用完了自己的时间片之后就下一级楼梯。任务下到最低一级楼梯时,如果时间片再次用完,它会回到初始优先级的下一级任务队列中。 比如某进程的优先级为 1,当它到达最后一级台阶 140 后,再次用完时间片时将回到优先级为 2 的任务队列中,即第二级台阶。不过此时分配给该任务的 time_slice 将变成原来的 2 倍。比如原来该任务的时间片 time_slice 为 10ms,则现在变成了 20ms。基本的原则是,当任务下到楼梯底部时,再次用完时间片就回到上次下楼梯的起点的下一级台阶。并给予该任务相同于其最初分配的时间片。总结如下:设任务本身优先级为P,当它从第N级台阶开始下楼梯并到达底部后,将回到第 N+1 级台阶。并且赋予该任务 N+1 倍的时间片。 以上描述的是普通进程的调度算法,实时进程还是采用原来的调度策略,即 FIFO 或者 Round Robin。 楼梯算法能避免进程饥饿现象,高优先级的进程会最终和低优先级的进程竞争,使得低优先级进程最终获得执行机会。对于交互式应用,当进入睡眠状态时,与它同等优先级的其他进程将一步一步地走下楼梯,进入低优先级进程队列。当该交互式进程再次唤醒后,它还留在高处的楼梯台阶上,从而能更快地被调度器选中,加速了响应时间。 楼梯算法的优点:从实现角度看,SD基本上还是沿用了 O(1) 的整体框架,只是删除了 O(1) 调度器中动态修改优先级的复杂代码;还淘汰了 expire 数组,从而简化了代码。它最重要的意义在于证明了完全公平这个思想的可行性。 完全公平调度器 (英语:Completely Fair Scheduler,缩写为 CFS),Linux 内核的一部分,负责进程调度。参考了 Con Kolivas 提出的调度器源代码后,由匈牙利程式员 Ingo Molnar 所提出。在 Linux kernel 2.6.23 之后采用,取代先前的 O(1) 调度器,成为系统预设的调度器。它负责将 CPU 资源,分配给正在执行中的进程,目标在于最大化程式互动效能与整体 CPU 的使用率。使用红黑树来实作,算法效率为 O(log(n))。 ### 背景 CFS 是首支以公平伫列 (fair queuing) 的调度器可应用于一般用途操作系统 (general-purpose operating system).[1] CFS调度器参考了康恩·科里瓦斯 (Con Kolivas) 所开发的楼梯调度算法(staircase scheduler)与RSDL(The Rotating Staircase Deadline Schedule)的经验 ,选取花费 CPU 执行时间最少的进程来进行调度。CFS主要由 sched_entity 内含的 vruntime所决定,不再跟踪 process 的 sleep time,并扬弃 active/expire 的概念, runqueue 里面所有的进程都平等对待,CFS 使用“虚拟运行时”virtual running time 来表示某个任务的时间量。 CFS改使用红黑树算法,将执行时间越少的工作 (即 sched_entity) 排列在红黑树的左边,时间复杂度是 O(log N),节点 (即rb_node)的安插工作则由dequeue_entity()和enqueue_entity() 来完成。当前执行的task通过呼叫 put_prev_task 返回红黑树,下一个待执行的 task 则由 pick_next_task 来呼叫。蒙内表示, CFS 在百分之八十时间都在确实模拟处理器的处理时间。 ### 争议 因为在 Linux 2.6.23 将 CFS 合并到 mainline。放弃了 RSDL,引起康恩·科里瓦斯的不满,一度宣布脱离 Linux 开发团队。数年后, Con Kolivas 卷土重来, 重新开发脑残调度器来对决 CFS, Jens Axboe 写了一个名为 Latt.c 的程序进行比对,Jens 发现 BFS 确实稍稍优于 CFS,而且 CFS 的 sleeper fairness 在某些情况下会出现调度延迟。Ingo不得不暂时关闭该特性,很快的在一周内提出新的 Gentle Fairness,彻底解决该问题。 ### LeetCode 141. Linked List Cycle 环形链表 Given head, the head of a linked list, determine if the linked list has a cycle in it. There is a cycle in a linked list if there is some node in the list that can be reached again by continuously following the next pointer. Internally, pos is used to denote the index of the node that tail's next pointer is connected to. Note that pos is not passed as a parameter. Returntrue if there is a cycle in the linked list. Otherwise, return false. 给你一个链表的头节点 head ,判断链表中是否有环。 如果链表中有某个节点,可以通过连续跟踪 next 指针再次到达,则链表中存在环。 为了表示给定链表中的环,评测系统内部使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。注意:pos 不作为参数进行传递。仅仅是为了标识链表的实际情况。 如果链表中存在环,则返回 true 。 否则,返回 false 。 ![b-w4-1.png](attachment:b-w4-1.png) Example 1: ``` Input: head = [3,2,0,-4], pos = 1 Output: true Explanation: There is a cycle in the linked list, where the tail connects to the 1st node (0-indexed). 链表中有一个环,其尾部连接到第二个节点。 ``` Example 2: ``` Input: head = [1,2], pos = 0 Output: true Explanation: There is a cycle in the linked list, where the tail connects to the 0th node. 链表中有一个环,其尾部连接到第一个节点。 ``` Example 3: ``` Input: head = [1], pos = -1 Output: false Explanation: There is no cycle in the linked list. 链表中没有环。 ``` Constraints: - The number of the nodes in the list is in the range(链表中节点的数目范围是) [0, $10^4$]. - $-10^5 <= Node.val <= 10^5$ - pos is -1 or a valid index in the linked-list.(pos 为 -1 或者链表中的一个 有效索引 。) Follow up: Can you solve it using O(1) (i.e. constant) memory?(你能用 O(1)(即,常量)内存解决此问题吗?) #### 解题思路 给 2 个指针,一个指针是另外一个指针的下一个指针。快指针一次走 2 格,慢指针一次走 1 格。如果存在环,那么前一个指针一定会经过若干圈之后追上慢的指针。 #### Reference - Jserv Linux 核心設計/實作 : https://hackmd.io/@sysprog/linux2022-lab0 - 你所不知道的 C 語言: linked list 和非連續記憶體 : https://hackmd.io/@sysprog/c-linked-list ``` # Linked List Cycle class Solution(object): def hasCycle(self, head): fast, slow = head, head while fast and fast.next: fast, slow = fast.next.next, slow.next if fast == slow: return True return False ``` #### circular linked list > 引用段落 : 自你所不知道的 C 語言: linked list 和非連續記憶體 環狀鏈結串列 (circular linked list) 是鏈結串列的最後一個節點所指向的下一個節點,會是第一個節點,而不像鏈結串列中的最後一個結點指向 NULL: ![b-w4-2.png](attachment:b-w4-2.png) 其優點為: 從 head 找到 tail 的時間複雜度為 O(n),但若新增一個 tail pointer (此為 last) 時間複雜度可降為 O(1) - 容易做到反向查詢 - 若要走訪整個 linked list,任何節點都可作為起始節點 - 避免保留 NULL 這樣特別的記憶體地址 (在沒有 MMU 的 bare metal 環境中,(void *) 0 地址空間存取時,沒有特別的限制) bare metal : https://en.wikipedia.org/wiki/Bare_machine #### 用「龜兔賽跑」(Floyd’s Cycle detection)來偵測是否有 cycle 產生。 Floyd’s Cycle detection : https://en.wikipedia.org/wiki/Cycle_detection 有 3 種狀態需要做討論 > * $a$ 為起始點 > * $b$ 為連接點 > * $c$ 為龜兔相遇位置 我們需要求得 a, b, c 三點位置,才能進行處理。 假設 $\overline{ac}$ 距離為 $X$ ,這代表 tortoise 行經 $X$ 步,那麼 hare 走了 $2X$ 步,$X$ 數值為多少並不重要,只代表要花多少時間兩點才會相遇,不影響求出 $\mu$ 和 $\lambda$。 接下來要分成三個步驟來處理 1. tortoise 速度為每次一步,hare 為每次兩步,兩者同時從起點 $a$ 出發,相遇時可以得到點 $c$。若是上述「狀況 2: 頭尾相連」,在第 1 步結束就求完三點了 2. 兩點分別從點 $a$ 和 $c$ 出發,速度皆為一次一步,相遇時可得到點 $b$。因為 $\overline{ac}$ 長度為 $X$,那麼 $cycle$ $c$ 長度也為 $X$,相遇在點 $b$ 時,所走的距離剛好都是 $X - \overline{bc}$ 3. 從點 $b$ 出發,速度為一次一步,再次回到點 $b$ 可得到 cycle 的長度 #### cycle finding 如果只需要判斷是否為 circular linked list,那麼只要執行上述的第 1 部分。 除了計算 $\mu$ 和 $\lambda$,還需要記錄整個串列的長度,若不記錄,會影響到後續進行 sorting 一類的操作。 ```cpp static inline Node *move(Node *cur) { return cur ? cur->next : NULL; } bool cycle_finding(Node *HEAD, Node **TAIL, int *length, int *mu, int *lambda) { // lambda is length // mu is the meet node's index Node *tortoise = move(HEAD); Node *hare = move(move(HEAD)); // get meet point while (hare && tortoise) { /* Maybe while (hare && tortoise && (hare != tortoise)) ?*/ tortoise = move(tortoise); hare = move(move(hare)); } // not loop if (!hare) { *TAIL = NULL; *length = 0; tortoise = HEAD; while (tortoise && (tortoise = move(tortoise))) (*length)++; return false; } // get mu *mu = 0; tortoise = HEAD; while (tortoise != hare) { (*mu)++; tortoise = tortoise->next; hare = hare->next; } // get lambda *lambda = 1; tortoise = move(tortoise); *TAIL = tortoise; while (tortoise != hare) { *TAIL = tortoise; (*lambda)++; tortoise = move(tortoise); } *length = *mu + *lambda; return true; } ``` ## Reference 1. Linux 核心設計: 不只挑選任務的排程器 https://hackmd.io/@sysprog/linux-scheduler https://www.youtube.com/watch?v=O-z0RRkW-9c https://www.youtube.com/watch?v=2yo8Ot0FjMw https://www.youtube.com/watch?v=-wn-ttOvQl0 2. leetcode 刷题 - 树, 红黑树, B树 https://zhuanlan.zhihu.com/p/63272157 3. Con Kolivas https://en.wikipedia.org/wiki/Con_Kolivas 4. LKML https://lkml.org/lkml/2004/3/24/208 5. Linux进程调度策略的发展和演变--Linux进程的管理与调度 (十六) https://www.cnblogs.com/linhaostudy/p/9763925.html 6. 完全公平调度器 Completely Fair Scheduler https://www.cnblogs.com/rsapaper/p/16279760.html 7. 红黑树的应用与力扣 456 号算法题 132 模式详解, go 语言解题 https://blog.csdn.net/pythonstrat/article/details/121676741 8. 2020.02.06 linux进程调度CFS 1 (红黑树) https://zhuanlan.zhihu.com/p/105494455 9. Linux的公平调度 CFS 原理 https://www.cnblogs.com/lh03061238/p/12297214.html 10. BFS 简介,Linux 桌面的极速未来? https://thruth.tumblr.com/post/106631835866/bfs-linux 11. Linux 核心實作 (2022): 第 7 週 https://www.youtube.com/watch?v=UpPdSqsonys https://www.youtube.com/watch?v=yLr3qDkVEgA https://www.youtube.com/watch?v=OeKib06vKxY 12. 你所不知道的 C 語言:記憶體管理、對齊及硬體特性 https://hackmd.io/@sysprog/c-memory?type=view 13. Linux 核心設計/實作 (Linux Kernel Internals) http://wiki.csie.ncku.edu.tw/linux/schedule 14. Jason Note https://www.cntofu.com/book/46/README.md 15. Transforming a binary tree into a right-skewed tree https://leetcode.com/problems/flatten-binary-tree-to-linked-list/discuss/1347362/transforming-a-binary-tree-into-a-right-skewed-tree
28.328814
313
0.724423
yue_Hant
0.67299
dc1bd2de8ecbfd55350f59f1dc819688761b9f6f
915
md
Markdown
node_modules/gitbook-plugin-codeblock-filename/README.md
hemiao3000/java-note-2020
281fff0a9dbb9c87acf90268249f1e6f07abaee4
[ "Apache-2.0" ]
11
2015-02-02T14:03:50.000Z
2019-06-03T17:01:59.000Z
node_modules/gitbook-plugin-codeblock-filename/README.md
hemiao3000/java-note-2020
281fff0a9dbb9c87acf90268249f1e6f07abaee4
[ "Apache-2.0" ]
6
2015-06-06T06:54:34.000Z
2020-01-24T21:55:32.000Z
node_modules/gitbook-plugin-codeblock-filename/README.md
hemiao3000/java-note-2020
281fff0a9dbb9c87acf90268249f1e6f07abaee4
[ "Apache-2.0" ]
5
2015-06-05T10:36:27.000Z
2020-11-29T08:42:05.000Z
# Gitbook Plugin: Add Filename to Codeblock This is a gitbook plugin. Add filename to codeblock. ## Usage You can install this plugin via NPM and save it to `package.json`. ``` $ npm install gitbook-plugin-codeblock-filename --save ``` Add the plugin to your `book.json`: ``` { plugins: [ "codeblock-filename" ] } ``` Then, you need only to insert before codeblock the code below. <pre><code> !FILENAME filename ``` codeblock ``` </code></pre> You can also write below like qiita, <pre><code> ```js:test.js codeblock ``` </code></pre> Code format is not necessary. So you can exclude `js`. You can also write below, <pre><code> ```:test.js codeblock ``` </code></pre> Then, you can see the filename on top of the codeblock. ## Example write this code ↓ <pre><code> !FILENAME test.js ``` var a = 10; a = a + 1; console.log(a); ``` </code></pre> then result is ↓ ![screenshot](screenshot.png)
13.26087
66
0.668852
eng_Latn
0.973285
dc1e0863a849fbde17184ae7ead31629f718d1dc
136
md
Markdown
docs/types/ProcessingMode.md
panva/oauth4webapi
b04b3ffd5c6386c71c876dd14b625f95b3a0453d
[ "MIT" ]
21
2022-03-16T16:16:56.000Z
2022-03-31T19:10:16.000Z
docs/types/ProcessingMode.md
panva/oauth4webapi
b04b3ffd5c6386c71c876dd14b625f95b3a0453d
[ "MIT" ]
1
2022-03-16T16:21:49.000Z
2022-03-16T16:21:49.000Z
docs/types/ProcessingMode.md
panva/oauth4webapi
b04b3ffd5c6386c71c876dd14b625f95b3a0453d
[ "MIT" ]
null
null
null
# Type alias: ProcessingMode [💗 Help the project](https://github.com/sponsors/panva) Ƭ **ProcessingMode**: ``"oidc"`` \| ``"oauth2"``
22.666667
55
0.654412
yue_Hant
0.46449
dc1e3176aa4a88701eaeddecdef779dc61472d96
1,498
md
Markdown
packages/mrm-task-lint-staged/Readme.md
Hermanya/mrm-tasks
844c93a381b6aa79c2a9cb26fe74c65209b34bce
[ "MIT" ]
2
2019-07-28T07:21:25.000Z
2020-05-24T23:46:44.000Z
packages/mrm-task-lint-staged/Readme.md
Hermanya/mrm-tasks
844c93a381b6aa79c2a9cb26fe74c65209b34bce
[ "MIT" ]
null
null
null
packages/mrm-task-lint-staged/Readme.md
Hermanya/mrm-tasks
844c93a381b6aa79c2a9cb26fe74c65209b34bce
[ "MIT" ]
1
2020-05-24T23:46:45.000Z
2020-05-24T23:46:45.000Z
# mrm-task-lint-staged [Mrm](https://github.com/sapegin/mrm) task that adds [lint-staged](https://github.com/okonet/lint-staged). **Note:** supports only Prettier, ESLint and Stylelint now, pull requests are welcome. ## What it does - Creates a config in `package.json` - Sets up a pre-commit Git hook - Installs dependencies ## Usage ``` npm install -g mrm mrm-task-lint-staged mrm lint-staged ``` ## Options See [Mrm docs](https://github.com/sapegin/mrm#usage) and [lint-staged docs](https://github.com/okonet/lint-staged/blob/master/README.md) for more details. ### `lintStagedRules` (default: infer) Custom rules. By default will try to infer by project dependencies. ### `eslintExtensions` (default: infer or `.js`) File extensions to run ESLint on. By default will try to infer from your `lint` npm script or use `.js`. ### `prettierExtensions` (default: infer or `.js`) File extensions to run Prettier on. By default will try to infer from your `format` npm script or use `.js`. ### `stylelintExtensions` (default: `.css`) File extensions to run stylelint on. ## Change log The change log can be found in [Changelog.md](Changelog.md). ## Contributing Everyone is welcome to contribute. Please take a moment to review the [contributing guidelines](../../Contributing.md). ## Authors and license [Artem Sapegin](http://sapegin.me) and [contributors](https://github.com/sapegin/mrm-tasks/graphs/contributors). MIT License, see the included [License.md](License.md) file.
28.264151
154
0.730307
eng_Latn
0.75483
dc1e5b0327fac7167cb26cffea7064a509de95cf
1,403
md
Markdown
_posts/2019-01-28-A-new-evaluation-framework-for-topic-modeling-algorithms-based-on-synthetic-corpora.md
AMDS123/papers
80ccfe8c852685e4829848229b22ba4736c65a7c
[ "MIT" ]
7
2018-02-11T01:50:19.000Z
2020-01-14T02:07:17.000Z
_posts/2019-01-28-A-new-evaluation-framework-for-topic-modeling-algorithms-based-on-synthetic-corpora.md
AMDS123/papers
80ccfe8c852685e4829848229b22ba4736c65a7c
[ "MIT" ]
null
null
null
_posts/2019-01-28-A-new-evaluation-framework-for-topic-modeling-algorithms-based-on-synthetic-corpora.md
AMDS123/papers
80ccfe8c852685e4829848229b22ba4736c65a7c
[ "MIT" ]
4
2018-02-04T15:58:04.000Z
2019-08-29T14:54:14.000Z
--- layout: post title: "A new evaluation framework for topic modeling algorithms based on synthetic corpora" date: 2019-01-28 17:41:19 categories: arXiv_CL tags: arXiv_CL Classification author: Hanyu Shi, Martin Gerlach, Isabel Diersen, Doug Downey, Luis A. N. Amaral mathjax: true --- * content {:toc} ##### Abstract Topic models are in widespread use in natural language processing and beyond. Here, we propose a new framework for the evaluation of probabilistic topic modeling algorithms based on synthetic corpora containing an unambiguously defined ground truth topic structure. The major innovation of our approach is the ability to quantify the agreement between the planted and inferred topic structures by comparing the assigned topic labels at the level of the tokens. In experiments, our approach yields novel insights about the relative strengths of topic models as corpus characteristics vary, and the first evidence of an "undetectable phase" for topic models when the planted structure is weak. We also establish the practical relevance of the insights gained for synthetic corpora by predicting the performance of topic modeling algorithms in classification tasks in real-world corpora. ##### Abstract (translated by Google) ##### URL [http://arxiv.org/abs/1901.09848](http://arxiv.org/abs/1901.09848) ##### PDF [http://arxiv.org/pdf/1901.09848](http://arxiv.org/pdf/1901.09848)
53.961538
884
0.791162
eng_Latn
0.982072
dc1e80a3ffba48fe46a4aa80c159296e717166cb
1,709
md
Markdown
README.md
dan-kiss-dev-this/node_server
2b411de3fecb8981193d1304790a4d3807e2aa53
[ "MIT" ]
null
null
null
README.md
dan-kiss-dev-this/node_server
2b411de3fecb8981193d1304790a4d3807e2aa53
[ "MIT" ]
null
null
null
README.md
dan-kiss-dev-this/node_server
2b411de3fecb8981193d1304790a4d3807e2aa53
[ "MIT" ]
null
null
null
# To get the project up and running run the commands below. Install Homebrew if you don't have it with $ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" Install Postgres if you don't have it with $ brew install postgresql In the project root add a .env file and in that file write DATABASE_URL=postgres://username:password@localhost:5432/database_name your env file may look like the text below assuming no password is used. DATABASE_URL=postgres://macbook@localhost:5432/todoapp "development": { "use_env_variable": "DATABASE_URL" }, $ createdb todoapp $ npm install $ export DATABASE_URL=postgres://macbook@localhost:5432/todoapp $ node_modules/.bin/sequelize db:migrate $ npm run start Now you have a RESTful API written in node.js. The APIs in this project offer functionality to Create, Read, Update and Destroy data for a specific table. The data is persistent. Get and Post at http://localhost:5000/api/v1/todos see post occuring below Put at http://localhost:5000/api/v1/todos/1 Delete at http://localhost:5000/api/v1/todos/1 ![Post](/img/post.png?raw=true "post") See the comments in the code to understand the code also. Note: We are creating an endpoint to add todos, package body-parser parses aka converts incoming request bodies in a middleware before your handlers, availible under the req.body.property so if you have a json data coming from the client to the server { "id": 1, "title": "Lunch at 1", "createdAt": "2019-02-02T01:11:07.311Z", "updatedAt": "2019-02-02T01:43:24.495Z" } after the req middlewhere runs you can do req.body.title aka make the json info a js object! MIT License Author: Dan Kiss Feb 3 2019
37.977778
202
0.760094
eng_Latn
0.946796
dc1f2791969f71b6e69653b485d9cc9a784ea993
1,162
md
Markdown
Home.md
RazazR/99321534-razazr-users.99321534-razazr-users.noreply.github.com.noreply.github.com.
cf8535c84496b863a733207e43c07ec8bc809820
[ "Apache-2.0" ]
1
2022-02-22T03:21:01.000Z
2022-02-22T03:21:01.000Z
Home.md
RazazR/99321534-razazr-users.99321534-razazr-users.noreply.github.com.noreply.github.com.
cf8535c84496b863a733207e43c07ec8bc809820
[ "Apache-2.0" ]
null
null
null
Home.md
RazazR/99321534-razazr-users.99321534-razazr-users.noreply.github.com.noreply.github.com.
cf8535c84496b863a733207e43c07ec8bc809820
[ "Apache-2.0" ]
null
null
null
Documentation resources ----------------------- * [Developer Guide](https://developers.google.com/protocol-buffers/docs/overview) **protobuf.js 6** (current master) * [README](https://github.com/protobufjs/protobuf.js/blob/master/README.md) * [API documentation](http://protobufjs.github.io/protobuf.js/) **protobuf.js 5** (old master) * [README](https://github.com/protobufjs/protobuf.js/blob/ProtoBuf5/README.md) * [API documentation](http://htmlpreview.github.io/?https://raw.githubusercontent.com/protobufjs/protobuf.js/ProtoBuf5/docs/index.html) Frequently asked questions -------------------------- * [Why protobuf.js instead of, let's say, JSON?](https://github.com/protobufjs/protobuf.js/wiki/ProtoBuf.js-vs-JSON) * [How to reverse engineer a buffer by hand](https://github.com/protobufjs/protobuf.js/wiki/How-to-reverse-engineer-a-buffer-by-hand) * [How to read binary data in the browser / under node.js?](https://github.com/protobufjs/protobuf.js/wiki/How-to-read-binary-data-in-the-browser-or-under-node.js%3F) * [What about google/protobuf/descriptor.proto?](https://github.com/protobufjs/protobuf.js/tree/master/google/protobuf)
64.555556
167
0.726334
yue_Hant
0.512461
dc1fd9cd1b6eb6cd6f1b5de42df5814826357e38
293
md
Markdown
README.md
khunny7/khunny7blog
3ad66cbce4967babe1efb40493f8cf04d378bbec
[ "MIT" ]
null
null
null
README.md
khunny7/khunny7blog
3ad66cbce4967babe1efb40493f8cf04d378bbec
[ "MIT" ]
null
null
null
README.md
khunny7/khunny7blog
3ad66cbce4967babe1efb40493f8cf04d378bbec
[ "MIT" ]
null
null
null
# gatsby-starter-blog Gatsby starter for creating a blog Install this starter (assuming Gatsby is installed) by running from your CLI: `gatsby new gatsby-blog https://github.com/gatsbyjs/gatsby-starter-blog` ## Running in development `gatsby develop` # khunny7blog
26.636364
78
0.720137
eng_Latn
0.82789
dc21376bc6b0577e4a318189768f0895ed8cfa57
1,410
md
Markdown
content/post/pieces-of-september-11th.md
mjh16/digital-revolutions-eportfolio
3396daef00981e151263573f7bd132cbad151ca5
[ "MIT" ]
null
null
null
content/post/pieces-of-september-11th.md
mjh16/digital-revolutions-eportfolio
3396daef00981e151263573f7bd132cbad151ca5
[ "MIT" ]
null
null
null
content/post/pieces-of-september-11th.md
mjh16/digital-revolutions-eportfolio
3396daef00981e151263573f7bd132cbad151ca5
[ "MIT" ]
null
null
null
+++ title = "Pieces of September 11th" date = 2017-12-13T14:51:44-05:00 draft = false +++ Below is a piece of born digital scholarship examining public memory, memorilization, and the circulation of artifacts from September 11th, including steel. Portions of the video do not have audio, which is intentional to allow room for making connections between the audio, video, and text. {{< youtube J72wvvr7kiI >}} #### Works Cited Blaire, Carole, Greg Dickinson, and Brian L. Ott. Introduction. *Rhetoric/Memory/Place*, by Blaire, Dickinson, and Ott. U of Alabama P, 2010, pp. 1-54. eBook. Haskins, Ekaterina. "Between the Archive and Participation: Public Memory in the Digital Age." *Rhetoric Society Quarterly*, vol. 37, 2007, pp. 401-422. PDF. Hess, Aaron, and Art Herbig. "Recalling the Ghosts of 9/11: Convergent Memorializing at the Opening of the National 9/11 Memorial." *International Journal of Communication*, vol. 7, 2013, pp. 2207-2230. PDF. Pollock, Della. "Memory, Remembering, and Histories of Change: A Performance Praxis." *The Sage Handbook of Performance Studies*, edited by D. Soyini Madison and Judith Hamera, Sage Publications, 2006, pp. 87-105. eBook. Porter, James E. "Recovering Delivery for Digital Rhetoric." *Computers and Composition*, vol. 26, 2009, pp. 207-224. PDF. Yancey, Kathleen Blake. "Tombstones, QR Codes, and the Circulation of Past Present Texts." pp. 1-26. PDF.
61.304348
291
0.753191
eng_Latn
0.788749
dc21f68a230ed204212fa6a299d206774c3bbea7
136
markdown
Markdown
_clients/region-occitanie.markdown
johnantoni/opensourcepolitics.github.io
34c84fa7a11b0ead18e1242bc7220fb97bbf564e
[ "Apache-2.0" ]
null
null
null
_clients/region-occitanie.markdown
johnantoni/opensourcepolitics.github.io
34c84fa7a11b0ead18e1242bc7220fb97bbf564e
[ "Apache-2.0" ]
null
null
null
_clients/region-occitanie.markdown
johnantoni/opensourcepolitics.github.io
34c84fa7a11b0ead18e1242bc7220fb97bbf564e
[ "Apache-2.0" ]
null
null
null
--- nom: Région Occitanie site-url: none img: occitanie.png alt: logo Région Occitanie type: public date: 2018-03-01 15:48:25 +0000 ---
15.111111
31
0.720588
fra_Latn
0.610827
dc2211a9e2c8de49179038297f5df297231c1c48
588
md
Markdown
.github/ISSUE_TEMPLATE/02-new-story-backend.md
nlMeminger/django-rit-grasa
b4bf91db518bd69934643ddb8e8790baf381eac7
[ "BSD-2-Clause" ]
6
2019-11-07T13:54:42.000Z
2021-03-08T06:19:46.000Z
.github/ISSUE_TEMPLATE/02-new-story-backend.md
nlMeminger/django-rit-grasa
b4bf91db518bd69934643ddb8e8790baf381eac7
[ "BSD-2-Clause" ]
134
2019-09-14T01:25:18.000Z
2022-03-18T17:20:51.000Z
.github/ISSUE_TEMPLATE/02-new-story-backend.md
nlMeminger/django-rit-grasa
b4bf91db518bd69934643ddb8e8790baf381eac7
[ "BSD-2-Clause" ]
2
2019-08-31T19:23:51.000Z
2021-03-24T00:31:13.000Z
--- name: New story - back-end about: New task or goal for back-end team title: 'BE Story: ' labels: enhancement, backend assignees: leong96, eguy006 --- # Summary <!-- one sentence summary of what needs to be done --> # Background <!-- context or information to understand the task and/or why it needs to be done – don't put implementation details here --> # Details <!-- details to understand how this task should be completed or carried out – what are the next steps? --> # Outcome <!-- one sentence to describe what the end result will be once this ticket is complete -->
21
125
0.709184
eng_Latn
0.998986
dc222a49f80f4a506c442207b02690917d054245
661
md
Markdown
CGtask2/CGtask2.md
FanqingM/TJCG
b7093da9fd4b6f2363e2eecda2239d3ad2870593
[ "MIT" ]
1
2021-09-21T05:48:11.000Z
2021-09-21T05:48:11.000Z
CGtask2/CGtask2.md
FanqingM/TJCG
b7093da9fd4b6f2363e2eecda2239d3ad2870593
[ "MIT" ]
null
null
null
CGtask2/CGtask2.md
FanqingM/TJCG
b7093da9fd4b6f2363e2eecda2239d3ad2870593
[ "MIT" ]
null
null
null
# Task2 **1950679 孟繁青** **test.ipynb中是人脸融合的程序,test.ipynb2中是关于猫逐渐变虎的程序** **引言**:对于人脸(脸部)融合,其关键点是课堂上所说的对于图片赋予不同的权重,其权重相加为1,最后对于每个图片的像素点做同样的操作得到结果,但是这样做有一个很大的问题,就是容易出现特征点的错位,导致出来的图片四不像,比如下面这幅图(**引用**) <img src="/Users/fanqing_m/Library/Application Support/typora-user-images/image-20210915204938326.png" alt="image-20210915204938326" style="zoom:50%;" /> 所以,我认为在做关键的插入权重之前,首先应当对图片提取特征(比如对于人脸来说,眼睛,嘴巴,鼻子等五官是比较明显的特征),之后再对图片做一定的仿射变换(**可以理解为平移+线性变换(旋转加伸缩)**),使其相同的特征点尽量处于图片的同一区域,最后进行插值融合,可以得到较好的效果。 有了想法之后,受限于能力,我**无法从零实现**特征提取以及图片的仿射变化操作,**这里采用dlib库所提供的模型以及相应参数实现人脸的68个特征提取,采用scipy中的Delaunay实现面部的三角化分割操作(也是为了之后的仿射变换对齐)** **并采用了opencv提供的对于图片的读取,写入,以及仿射变换函数。**
38.882353
153
0.813918
yue_Hant
0.451562
dc22f9b3b961db622cc17a5bc1d4ca5c8ed105dc
280
md
Markdown
README.md
kadamwhite/blitzball-datavis
2adbed851dbb9f6017ab1069ee6602248a03724d
[ "MIT" ]
null
null
null
README.md
kadamwhite/blitzball-datavis
2adbed851dbb9f6017ab1069ee6602248a03724d
[ "MIT" ]
null
null
null
README.md
kadamwhite/blitzball-datavis
2adbed851dbb9f6017ab1069ee6602248a03724d
[ "MIT" ]
null
null
null
# Blitzball Datavis Work-in-progress ## Installing & running the application Install dependencies with `npm install`. Once installed, use the command `npm start` to spin up the development server, which will then be accessible at [http://localhost:8080](http://localhost:8080)
35
199
0.775
eng_Latn
0.962241
dc23bdf6c775855283c06bf50146887efbfc9a36
751
md
Markdown
CreatingPackages.md
MikeXL/R
e6c3ede979bce6d712f5b6ccce7c023f0ced12a2
[ "BSD-3-Clause" ]
null
null
null
CreatingPackages.md
MikeXL/R
e6c3ede979bce6d712f5b6ccce7c023f0ced12a2
[ "BSD-3-Clause" ]
null
null
null
CreatingPackages.md
MikeXL/R
e6c3ede979bce6d712f5b6ccce7c023f0ced12a2
[ "BSD-3-Clause" ]
null
null
null
# Creating Package 🖖 Here is the command to create the skeleton / structure of the new package named *MyFirstPackage* package.skeleton(name="*MyFirstPackage*") What's in there? * DESCRIPTION file * *man/* subdirectory for documentation, mostly don't needed today as mostly we prefer putting documentations and manpages on github * *R/* the only folder definitely required for your R code * *data/* if any dataset to be shared * *src/* if external code required for instance C, C++ or Fortran * *inst/* miscellaneous other stuff Here is the command to build the package R CMD BUILD *MyFirstPackage* And you must know how to install it already? or else R CMD INSTALL *MyFirstPackage_ver.tar.gz* LLAP
22.757576
132
0.719041
eng_Latn
0.995995
dc23f68f84a2af56e6161d3bfb5d865434083e25
2,096
md
Markdown
content/en/docs/Developerguide/gauss-04291----gauss-04300.md
opengauss-mirror/docs
869e517825cf56059243a7104f5e4fa6fc490e69
[ "MIT" ]
8
2020-07-01T07:14:05.000Z
2022-03-08T09:20:56.000Z
content/en/docs/Developerguide/gauss-04291----gauss-04300.md
opengauss-mirror/docs
869e517825cf56059243a7104f5e4fa6fc490e69
[ "MIT" ]
null
null
null
content/en/docs/Developerguide/gauss-04291----gauss-04300.md
opengauss-mirror/docs
869e517825cf56059243a7104f5e4fa6fc490e69
[ "MIT" ]
6
2020-07-01T15:40:22.000Z
2021-05-28T07:43:19.000Z
# GAUSS-04291 -- GAUSS-04300<a name="EN-US_TOPIC_0302073257"></a> GAUSS-04291: "tsquery is too large" SQLSTATE: 54000 Description:Internal system error. Solution:Contact technical support. GAUSS-04292: "bit string length exceeds the maximum allowed \(%d\)" SQLSTATE: 54000 Description:Internal system error. Solution:Contact technical support. GAUSS-04293: "language validation function %u called for language %u instead of %u" SQLSTATE: 42501 Description:Internal system error. Solution:Contact technical support. GAUSS-04294:"The name of memory context is too long\(\>=%dbytes\)" SQLSTATE: 42602 Description: The name of the memory context exceeds the limit **MEMORY\_CONTEXT\_NAME\_LEN**. Solution: Ensure that the memory context is valid. GAUSS-04295:"Fail to send signal to backend\(tid:%lu\). " SQLSTATE: XX000 Description: Failed to send an internal signal to the backend thread. Solution: The backend may have exited. Let the user check whether the backend exists. GAUSS-04296:"out of memory when preparing zlib encoder. " SQLSTATE: 53200 Description: Failed to allocate a large volume of memory required for compression because the system memory is insufficient. Solution: Release unnecessary processes in the system and import data again. GAUSS-04297:"level %d is invalid when preparing zlib encoder. " SQLSTATE: XX000 Description: The zlib compression level is incorrect. Solution: Use the low or middle compression level during the import. GAUSS-04298: "version is incompatible when preparing zlib encoder." SQLSTATE: XX000 Description: Internal system error. Solution:Contact technical support. GAUSS-04299:"error %d occurs when preparing zlib encoder. " SQLSTATE: XX000 Description: System resources are insufficient. Solution: Release unnecessary memory in the system and import data again. GAUSS-04300:"RLE decompress failed, expected bytes %d, real size %d " SQLSTATE: XX001 Description: The data is damaged. Solution: Use backed up data for restoration.
25.253012
125
0.750954
eng_Latn
0.949228
dc248626bf7fe1f4148b284909e25392e2269310
708
md
Markdown
NEWS.md
waltervanheuven/strngrams
f0a949e4cfc37eacdd2ae1e8a27e3a5b89259509
[ "MIT" ]
1
2020-07-05T16:51:52.000Z
2020-07-05T16:51:52.000Z
NEWS.md
waltervanheuven/strngrams
f0a949e4cfc37eacdd2ae1e8a27e3a5b89259509
[ "MIT" ]
null
null
null
NEWS.md
waltervanheuven/strngrams
f0a949e4cfc37eacdd2ae1e8a27e3a5b89259509
[ "MIT" ]
null
null
null
## strngrams 0.3.6 - Corrected bug in sbf_rank. - Included additional examples in the README. ## strngrams 0.3.5 - Improved anagrams function. ## strngrams 0.3.4 - Anagrams function returns only strings that are words if wordList is provided. - Anagrams function can handle strings that contain a space. - Progress bars can be turned off. ## strngrams 0.3.3 - Fixed bug with position specific token frequencies. ## strngrams 0.3.2 - Fixed issue with using integers for type parameter. ## strngrams 0.3.1 - Added pbapply to show progress bar. ## strngrams 0.3.0 - Improved function names. - Improved documentation. ## strngrams 0.2.0 - Added documentation. ## strngrams 0.1.0 - First release.
18.153846
80
0.734463
eng_Latn
0.990683
dc24eea1c6ef1e638e89af98719f6c1631c6bd2c
44
md
Markdown
_cards/FUGE.md
stokeclimsland/stokeclimsland
93ce79c0012842783608410a6823c4bb46b0b466
[ "MIT" ]
null
null
null
_cards/FUGE.md
stokeclimsland/stokeclimsland
93ce79c0012842783608410a6823c4bb46b0b466
[ "MIT" ]
null
null
null
_cards/FUGE.md
stokeclimsland/stokeclimsland
93ce79c0012842783608410a6823c4bb46b0b466
[ "MIT" ]
null
null
null
--- title: FUGE is_name: true --- FUGE
4
13
0.545455
eng_Latn
0.857187
dc25dbe46a32cd195fee2a6ab97f76d950afb19b
3,378
md
Markdown
README.md
rjs1197/iceamericano
d2830473ad911fe6beded2ef7d7b627b71a8a2b1
[ "MIT" ]
null
null
null
README.md
rjs1197/iceamericano
d2830473ad911fe6beded2ef7d7b627b71a8a2b1
[ "MIT" ]
null
null
null
README.md
rjs1197/iceamericano
d2830473ad911fe6beded2ef7d7b627b71a8a2b1
[ "MIT" ]
null
null
null
# iceamericano Algorithm Solving is cool your head. therefore i naming to short name is AA(Ice Americano). 알고리즘 아카이브의 줄임말 아아를 모티브로 만든 알고리즘 저장소. "알고리즘 학습의 끝은 존재하지 않지만, 이 저장소의 마지막은 실상의 문제에 대해 자연스럽게 어떤 알고리즘이 최적한지를 명확하게 판단하는 그 순간이다." ### Writing rule * Commit message는 다음과 같이 작성한다. ``` feat: Add #1000 Add problem A+B ``` ``` feat: Solve #1000 Solve problem A+B ``` ## Solved problem ### Beakjoon Online Judge * [#1000 - A + B](/beakjoon/1000/contents.md) * [#1001 - A - B](/beakjoon/1001/contents.md) * [#1008 - A / B](/beakjoon/1008/contents.md) * [#1924 - 2007년](/beakjoon/1924/contents.md) * [#2557 - Hello World](/beakjoon/2557/contents.md) * [#2558 - A + B -2](/beakjoon/2558/contents.md) * [#2577 - 숫자의 개수](/beakjoon/2577/contents.md) * [#2741 - N 찍기](/beakjoon/2741/contents.md) * [#2742 - 기찍 N](/beakjoon/2742/contents.md) * [#9498 - 시험 성적](/beakjoon/9498/contents.md) * [#10172 - 개](/beakjoon/10172/contents.md) * [#10430 - 나머지](/beakjoon/10430/contents.md) * [#10718 - We love kriii](/beakjoon/10718/contents.md) * [#10817 - 세 수](/beakjoon/10817/contents.md) * [#10869 - 사칙연산](/beakjoon/10869/contents.md) * [#10998 - A * B](/beakjoon/10998/contents.md) * [#11719 - 그대로 출력하기2](/beakjoon/11719/contents.md) ### Univ. - Computer Algorithm * [#univ - Binary Search](/univ/binsearch.cpp) * [#univ - Fectorial](/univ/fectorial.cpp) * [#univ - Fibonacci](/univ/fibonacci.cpp) * [#univ - Merge Sort](/univ/mergesort.cpp) * [#univ - N-Queens](/univ/n-queens.cpp) * [#univ - Quick Sort](/univ/quicksort.cpp) * [#univ - Sequential Search](/univ/seqsearch.cpp) * [#univ - Coin](/univ/coin.cpp) * [#univ - Heap Sort](/univ/heapsort.cpp) * [#univ - Interpolation Search](/univ/interpolationsearch.cpp) * [#univ - Insertion Sort](/univ/insertionsort.cpp) * [#univ - Knapsack](/univ/knapsack.cpp) * [#univ - Selection Sort](/univ/selectionsort.cpp) ### Univ. - Operating System ### Programmers(https://programmers.co.kr/) * [#programmers - 2016](/programmers/2016.cpp) * [#programmers - 가운데 글자 가져오기](/programmers/middlechar.cpp) * [#programmers - 가장 긴 팰린드롬](/programmers/longestpalindrome.cpp) * [#programmers - 올바른 괄호](/programmers/collectnum.cpp) * [#programmers - 같은 숫자는 싫어](/programmers/hatesamenum.cpp) * [#programmers - 정수 A부터 B까지의 합](/programmers/sumatob.cpp) * [#programmers - 문자열 내 p와 y의 개수](/programmers/pnynum.cpp) * [#programmers - 나누어 떨어지는 숫자 배열](/programmers/divnumarr.cpp) * [#programmers - 자릿수 더하기](/programmers/adddigit.cpp) * [#programmers - 자연수 뒤집어 배열로 만들기](/programmers/reverselong.cpp) * [#programmers - 정수 내림차순으로 배치하기](/programmers/sortlongdesc.cpp) * [#programmers - 약수의 합](/programmers/sumofdivisors.cpp) * [#programmers - 문자열을 정수로 바꾸기](/programmers/stringtoint.cpp) * [#programmers - 수박수박수박수박수박수?](/programmers/melon.cpp) * [#programmers - 소수 찾기](/programmers/finddecimal.cpp) ## Unsolved problem ### Beakjoon Online Judge * [#1152 - 단어의 개수](/beakjoon/1152/contents.md) * [#1546 - 평균](/beakjoon/1546/contents.md) * [#2750 - 수 정렬하기](/beakjoon/2750/contents.md) * [#2839 - 설탕배달](/beakjoon/2839/contents.md) * [#4344 - 평균은 넘겠지](/beakjoon/4344/contents.md) * [#4673 - 셀프 넘버](/beakjoon/4673/contents.md) * [#10039 - 평균 점수](/beakjoon/10039/contents.md) * [#10871 - X보다 작은 수](/beakjoon/10871/contents.md)
33.78
95
0.656602
kor_Hang
0.633139
dc27b2426b4d227876c10aa29e47740c0c4e60f3
6,537
md
Markdown
_posts/2018-06-29-city-selector.md
Rynxiao/Rynxiao.github.io
ad69f0fa5c9696cff0128b4daa8ca1b03aeab412
[ "MIT" ]
2
2017-12-13T07:25:01.000Z
2019-10-06T07:11:45.000Z
_posts/2018-06-29-city-selector.md
Rynxiao/Rynxiao.github.io
ad69f0fa5c9696cff0128b4daa8ca1b03aeab412
[ "MIT" ]
null
null
null
_posts/2018-06-29-city-selector.md
Rynxiao/Rynxiao.github.io
ad69f0fa5c9696cff0128b4daa8ca1b03aeab412
[ "MIT" ]
2
2017-03-22T14:21:44.000Z
2017-09-11T01:54:51.000Z
--- layout: post title: "【react】开发一款城市选择组件" date: 2018-06-29 categories: 技术 excerpt: ' 想到做这个,是因为无意中在github上看到了这一个仓库[https://github.com/lunlunshiwo/ChooseCity](https://github.com/lunlunshiwo/ChooseCity),做的就是一个城市选择控件,是用vue写的,说的是阿里的一道题目,然后想想自己闲着也是闲着,就动手用react又重新做了一遍。演示 地址:[城市选择控件](http://city-selector.rynxiao.cn/) github: [https://github.com/Rynxiao/city-selector](https' tag: [react,城市选择控件] --- 想到做这个,是因为无意中在github上看到了这一个仓库[https://github.com/lunlunshiwo/ChooseCity](https://github.com/lunlunshiwo/ChooseCity),做的就是一个城市选择控件,是用vue写的,说的是阿里的一道题目,然后想想自己闲着也是闲着,就动手用react又重新做了一遍。 ## 演示 地址:[城市选择控件](http://city-selector.rynxiao.cn/) github: [https://github.com/Rynxiao/city-selector](https://github.com/Rynxiao/city-selector) 整体效果如下: ![demo](http://oyo3prim6.bkt.clouddn.com/city-selector/demo.gif) ## 运行 运行需知:首先去百度开放云平台申请自己的AK,申请方法见下面的**定位** ```cmd # dev npm install npm start # deploy npm run build npm install http-server -g http-server ./build -p 38083 -s -P http://www.msece.com localhost:38083 # test npm run test ``` ## 要求 - 可定位到当前所在城市,可支持传城市 - 下次打开优先选取上次定位城市,如本次定位和上次不一样,则取本地城市,同时展示最近选择的城市,最近选择的城市可配 - 城市列表按字母分组,如B组:北京、包头,同时左侧带A-Z导航符条,点击对应字母定位至对应的组位置,如点击C则定位至C组,同时弹出提示为C - 支持城市搜索,页头带搜索框,可支持联想功能,注意性能 - 选择对应城市,会将对应城市数据带回给使用页面 - 支持单个页面上同时存在多个城市组件 - 页面用flex布局(css) ## 说明 个人采用的路由形式,因此没有做成一个具体的组件(要组件化也就是把state换成props传值即可),但是在整个页面中做了很小单元的拆分。另外“上次定位”的功能暂时未完善,容之后补上。 ## 技术栈 采用的是react官网提供的脚手架[create-react-app](https://github.com/facebook/create-react-app),因此整体技术是`react`,采用`webpack`进行打包构建,`jest`测试。同时在此基础上新增了一些东西。 ### sass 脚手架最开始不支持sass,开启sass需要如下配置: ```cmd # 安装依赖包 npm install --save node-sass-chokidar npm install --save npm-run-all # 脚本中增加build-css与watch-css # 修改start和build命令,让其可以同时运行多个命令 "scripts": { + "build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/", + "watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive", "test": "react-scripts test --env=jsdom", - "start": "react-scripts start", - "build": "react-scripts build", + "start-js": "react-scripts start", + "start": "npm-run-all -p watch-css start-js", + "build-js": "react-scripts build", + "build": "npm-run-all build-css build-js" } # .gitignore中去除生成的css文件 src/**/*.css ``` ### react-router ```cmd npm install --save react-router-dom ``` 安装依赖之后,增加了一个全局入口,在`src/container/index.js`中,如下: ```javascript <Switch> <Route exact path="/" component={ App } /> <Route path="/city" component={ City } /> </Switch> ``` 增加两个页面,路由分别如上配置。 ### 定位 需要定位到当前城市,采用的是百度地图的定位,需要首先去百度地图开放平台上申请一个秘钥,地址在这里[http://lbsyun.baidu.com/apiconsole/key](http://lbsyun.baidu.com/apiconsole/key),进去之后查看js文档,这里不再赘述,可以自己去了解。 - 在`src/public/index.html`中加入百度开放平台提供的脚本链接,填上自己的秘钥。 ```html <script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=your_ak"></script> ``` - `src/services/locationServices.js`中加入定位代码 ```javascript async function getLocalCity() { return new Promise(resolve => { var myCity = new window.BMap.LocalCity(); myCity.get(result => { resolve(result.name); }); }); } ``` ### 获取城市数据 获取城市的接口API,历经千辛万苦终于在网上找到了一个能用的【这个接口有可能随时会挂哟😁😁😁】,但是数据格式可能不太满意,只能自己转化。如果不想用这个格式,你也可以自己起一个后台服务器,然后输出你自己喜欢的格式,这里我算是偷懒了。 之前的格式是按照省份区分的: ![before-format-json](http://oyo3prim6.bkt.clouddn.com/city-selector/before-format-json.png) 格式化之后的格式是按照拼音字母来区分的: ![after-format-json](http://oyo3prim6.bkt.clouddn.com/city-selector/after-format-json.png) **设置代理** 因为请求的地址域名不一致,肯定会有跨域问题,这里在package.json中设置了代理,如下: ```javascript "proxy": "http://www.msece.com" ``` **获取城市** ```javascript // src/services/cityServices.js async function getAllCities() { const json = await axios.get(CITY_API); return formatCites(json); } ``` ### UI UI方面自己没有什么创意,所以使用了阿里的`antd-mobile`,可以去这里看:[antd-mobile](https://mobile.ant.design/docs/react/introduce-cn) ```javascript // 安装依赖 npm install antd-mobile --save // 按需加载 // 1. 安装依赖 npm install react-app-rewired --save-dev npm install babel-plugin-import --save-dev // 2. 在package.json中,将script中的 react-scripts 换成 react-app-rewired // 3. 在根目录下建立config-overrides.js,内容如下: const { injectBabelPlugin } = require('react-app-rewired'); module.exports = function override(config, env) { config = injectBabelPlugin(['import', { libraryName: 'antd-mobile', style: 'css' }], config); return config; }; // 4. 更改引入方式 // before import Button from 'antd-mobile/lib/button'; // after import { Button } from 'antd-mobile'; ``` ## coding 进行了组件的拆分,主要为: - 头部 - 搜索区域 - 需要定位的城市区域(分为最近城市和热门城市) - 列表区域 - 右侧导航区域 - 搜索弹层区域 具体可以参看`src/components/city`下的组件 ### 最近选择城市 采用的是本地localstorage进行存储,默认最多存储两个,后选择的城市会替换掉第一个,如果选择的城市中有相同的,则不进行替换。页面公用本地存储,若不想公用,可以在之后区分id即可。 ### 热门城市 热门城市是自己预先定义的,如果不希望预先定义,也可以参照某些API,这里算是偷懒。 ### 导航条滑动 之前的写过一篇文章[移动端效果之IndexList](http://rynxiao.com/%E6%8A%80%E6%9C%AF/2017/10/20/webapp-indexList.html),具体实现可以参看。 ### 搜索联动 支持中/英文搜索,中文搜索是进行了全数据遍历,英文搜索是进行了首字符判断,然后再进行子集遍历。在搜索方面,使用了函数节流,如果在1秒中之内还没有输入完成,则必须进行一次搜索。 ```javascript // src/utils/index.js function throttle(fn, wait = 500, period = 1000) { let startTime = new Date().getTime(); let timeout; return (...args) => { return new Promise(resolve => { const now = new Date().getTime(); if (now - startTime >= period) { startTime = now; resolve(fn.apply(null, args)); } else { timeout && clearTimeout(timeout); timeout = setTimeout(() => { resolve(fn.apply(null, args)); }, wait); } }); } } // src/pages/city/City.js const searchCity = throttle(searchCityByName); onSearchInput = async value => { if (!value) { this.hideMenuDialog(); return; } const { labels, city } = this.state; const cities = await searchCity(value, labels, city); this.setState({ searchArea: true, searchCities: transformCityMenuData(cities) }); } ``` ### 部署方面 本来是想使用`heroku`来部署应用的,但是经过一番折腾之后,在heroku的日志中看到服务是已经启动了的,但是外网访问不了,还需要技术支持^_^ ![heroku-logs](http://oyo3prim6.bkt.clouddn.com/city-selector/heroku-logs.png) 后来只能就部署到自己的腾讯云上面去了,案例地址为:[城市选择控件](http://city-selector.rynxiao.cn/) ## 总结 自己看到后就想写来玩玩而已,在其中也进一步了解了测试、react-router 4的用法,以及蚂蚁金服的UI库,也不是说没有收获。在项目中,也经过了一系列的代码重构,比如组件拆分、公共类库提取等等,写案例的同时也是在训练自己的意识,特意分享出来,大家共勉。 最后,代码仓库为:[https://github.com/Rynxiao/city-selector](https://github.com/Rynxiao/city-selector),如果觉得有点意思,多谢star。
23.770909
283
0.698027
yue_Hant
0.645976
dc27b25396292853ba9e11e7711a016add5182cb
702
md
Markdown
content/portfolio/super-smash-skyrim/index.md
andreduvoisin/andreduvoisin-web
d72ab26e12fc96bb04254e07849d12d71008680b
[ "MIT" ]
null
null
null
content/portfolio/super-smash-skyrim/index.md
andreduvoisin/andreduvoisin-web
d72ab26e12fc96bb04254e07849d12d71008680b
[ "MIT" ]
null
null
null
content/portfolio/super-smash-skyrim/index.md
andreduvoisin/andreduvoisin-web
d72ab26e12fc96bb04254e07849d12d71008680b
[ "MIT" ]
null
null
null
--- title: Super Smash Skyrim index: 5 --- <iframe src="https://youtube.com/embed/4ifTNHY9b8s" width="640" height="360" frameborder="0" allowfullscreen></iframe> Super Smash Skyrim is a networked multiplayer game where the object is to attack and grab enemies in order to hurl them off the stage. Super Smash Skyrim was created with a team of 4 people. It is written using Prime Engine, a custom C++ game engine, with Maya, Lua, and Python for level editing. ### Contributions - Loading assets on level start - Networked 4-player support using both TCP and UDP - Movement and attack mechanics - Physics system (as it relates to gameplay) - Time syncing and client-side prediction - Win conditions
35.1
161
0.763533
eng_Latn
0.994922
dc28ceb61175708166bcb6cbb2f64c3845e4f0d3
3,595
md
Markdown
_posts/2010-08-19-1520.md
TkTech/skins.tkte.ch
458838013820531bc47d899f920916ef8c37542d
[ "MIT" ]
1
2020-11-20T20:39:54.000Z
2020-11-20T20:39:54.000Z
_posts/2010-08-19-1520.md
TkTech/skins.tkte.ch
458838013820531bc47d899f920916ef8c37542d
[ "MIT" ]
null
null
null
_posts/2010-08-19-1520.md
TkTech/skins.tkte.ch
458838013820531bc47d899f920916ef8c37542d
[ "MIT" ]
null
null
null
--- title: > Francis layout: post permalink: /view/1520 votes: 3 preview: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACUAAAAgCAIAAAAaMSbnAAAABnRSTlMA/wD/AP5AXyvrAAABW0lEQVRIiWP8//8fAwwwnjVlwAb+G5/GKo4GiNHOgipxhpGR8f///4xnTZC5DAz/ibGPGMCE4kCIZYyMWLlUAaj++/8f2Q44l2b+O2vCcMaYkZGR4YwxnAEJW2oBRuT0wjCLCbuqtH/YxdHMIjW9MKZjN+h/GjHWEQVQ428mlHGsXIqBgcGq8xnV7IEBxv8n+eCcp5wFWBVJf5+A4Jh9QJE7JUCSdhwRRjNAE/s4vZZxei2jk31wm7BaycLIrArnPIExpBWaGBgYnj6og3CR1aDlfEztQo9vv5NVhTCeXq5HU4PFfxDLkBkkAYhlyAxkwIIp9PRBHZr/SALft0Xx35VjYGD4qPwIU5be6ROL/xjI9RkcYPUZFvvyGq5gV1VFlDXEaGdkOGNMlGEwgFbX4yqjcQGM+Lv1DTtJJCCknZHO7ZdhUX6O2jdq36h9g9I+lPrhCZs3JWYRox0AyZaMlmmlUKEAAAAASUVORK5CYII=" --- <dl class="side-by-side"> <dt>Preview</dt> <dd> <img class="preview" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACUAAAAgCAIAAAAaMSbnAAAABnRSTlMA/wD/AP5AXyvrAAABW0lEQVRIiWP8//8fAwwwnjVlwAb+G5/GKo4GiNHOgipxhpGR8f///4xnTZC5DAz/ibGPGMCE4kCIZYyMWLlUAaj++/8f2Q44l2b+O2vCcMaYkZGR4YwxnAEJW2oBRuT0wjCLCbuqtH/YxdHMIjW9MKZjN+h/GjHWEQVQ428mlHGsXIqBgcGq8xnV7IEBxv8n+eCcp5wFWBVJf5+A4Jh9QJE7JUCSdhwRRjNAE/s4vZZxei2jk31wm7BaycLIrArnPIExpBWaGBgYnj6og3CR1aDlfEztQo9vv5NVhTCeXq5HU4PFfxDLkBkkAYhlyAxkwIIp9PRBHZr/SALft0Xx35VjYGD4qPwIU5be6ROL/xjI9RkcYPUZFvvyGq5gV1VFlDXEaGdkOGNMlGEwgFbX4yqjcQGM+Lv1DTtJJCCknZHO7ZdhUX6O2jdq36h9g9I+lPrhCZs3JWYRox0AyZaMlmmlUKEAAAAASUVORK5CYII="> </dd> <dt>Original</dt> <dd> <img class="preview" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAAgCAMAAACVQ462AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAMAUExURQAAAFJSUn9/fwCmKQDMMwD/M8UQGu0cJP+ZAP/JDv/yAOTSfvOvnP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIG43LAAAAEAdFJOU////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wBT9wclAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQBQYWludC5ORVQgdjMuNS41SYr84AAAAQtJREFUSEvdlIsOgyAMRTsV6lT+/3NZq60UHBnTxCzrEh4dPdwWAaLYINaLqf/Yo/eYvPA9IHpvqCcAP6AA8WINsrqeqEF+LtcBev61PgLsm+je1gWfALyACQGCNFFdK68J4KKLEAjDDU2E2QaI4AaSTKFBGoDBpayMAhq+0UMajzUwri1kzCwrS/1Sbf8IgEWqjWcATQqyW7gfKQ94S34G1DmLqRTrt+vWFP4AUH7Kmn/ZPwvbi3gHAJHkXFBALxgR2gHTxOmbNiCGeS5TrdZgIuP41G4KmgF2bxkvC0m6EWA+AL6f5b0o78fhCXkYg64DnTanYBdSdPXNzE6BZXLg2vfmB5BmhQQFvACgXyKtZsNdrAAAAABJRU5ErkJggg=="> </dd> <dt>Title</dt> <dd>Francis</dd> <dt>Description</dt> <dd>Francis, from the game Super Paper Mario.</dd> <dt>Added By</dt> <dd>The Great Gatsby</dd> <dt>Added On</dt> <dd>2010-08-19</dd> <dt>Votes</dt> <dd>3</dd> </dl>
119.833333
2,002
0.833102
kor_Hang
0.987566
dc296517edc481400f478791cfa06f9cfea4a659
74
md
Markdown
README.md
Lujke9/Operation-Pseudo-Chaff
7e9e597abd1cb0b3463ac77f790ebfbd331fc235
[ "MIT" ]
null
null
null
README.md
Lujke9/Operation-Pseudo-Chaff
7e9e597abd1cb0b3463ac77f790ebfbd331fc235
[ "MIT" ]
null
null
null
README.md
Lujke9/Operation-Pseudo-Chaff
7e9e597abd1cb0b3463ac77f790ebfbd331fc235
[ "MIT" ]
null
null
null
# Operation-Pseudo-Chaff 2nd mission in our Arma 3 campaign <!-- oom -->
14.8
34
0.689189
eng_Latn
0.778856
dc297ac00e2e39c97f95b214420df728c5a2f5a0
160
md
Markdown
puzzles-by-year/2016/Meta 4/README.md
obloomfield/peaph-archive
ccc0cde41d98c03b1c81f27ed971a59f2aa91323
[ "MIT" ]
null
null
null
puzzles-by-year/2016/Meta 4/README.md
obloomfield/peaph-archive
ccc0cde41d98c03b1c81f27ed971a59f2aa91323
[ "MIT" ]
null
null
null
puzzles-by-year/2016/Meta 4/README.md
obloomfield/peaph-archive
ccc0cde41d98c03b1c81f27ed971a59f2aa91323
[ "MIT" ]
null
null
null
--- sort: 5 --- # Meta 4 #### [Puzzle Page](4-p.pdf) | *Solution Missing* #### *Authorship Missing* ##### Puzzles in Meta: {% include list.liquid all=true %}
14.545455
48
0.5875
eng_Latn
0.473705
dc2a54ccea2d3b1801f771f7380ecb284884c28f
34,507
md
Markdown
docs/resources/appfwprofile.md
Dogers/terraform-provider-citrixadc
788c1ef88fc686a6b02bc3995f7177a8a7953b05
[ "Apache-2.0" ]
52
2019-09-17T14:26:04.000Z
2022-03-17T21:39:02.000Z
docs/resources/appfwprofile.md
Dogers/terraform-provider-citrixadc
788c1ef88fc686a6b02bc3995f7177a8a7953b05
[ "Apache-2.0" ]
68
2019-09-17T16:29:46.000Z
2022-03-31T10:01:21.000Z
docs/resources/appfwprofile.md
Dogers/terraform-provider-citrixadc
788c1ef88fc686a6b02bc3995f7177a8a7953b05
[ "Apache-2.0" ]
25
2019-10-25T20:58:02.000Z
2022-02-27T13:19:38.000Z
--- subcategory: "Application Firewall" --- # Resource: appfwprofile The `appfwprofile` resource is used to create Applicatin Firewall Profile. ## Example usage ``` hcl resource citrixadc_appfwprofile demo_appfw { name = "demo_appfw1" bufferoverflowaction = ["none"] contenttypeaction = ["none"] cookieconsistencyaction = ["none"] creditcard = ["none"] creditcardaction = ["none"] crosssitescriptingaction = ["none"] csrftagaction = ["none"] denyurlaction = ["none"] dynamiclearning = ["none"] fieldconsistencyaction = ["none"] fieldformataction = ["none"] fileuploadtypesaction = ["none"] inspectcontenttypes = ["none"] jsondosaction = ["none"] jsonsqlinjectionaction = ["none"] jsonxssaction = ["none"] multipleheaderaction = ["none"] sqlinjectionaction = ["none"] starturlaction = ["none"] type = ["HTML"] xmlattachmentaction = ["none"] xmldosaction = ["none"] xmlformataction = ["none"] xmlsoapfaultaction = ["none"] xmlsqlinjectionaction = ["none"] xmlvalidationaction = ["none"] xmlwsiaction = ["none"] xmlxssaction = ["none"] } ``` ## Argument Reference * `name` - Name for the profile. Must begin with a letter, number, or the underscore character (_), and must contain only letters, numbers, and the hyphen (-), period (.), pound (#), space ( ), at (@), equals (=), colon (:), and underscore (_) characters. Cannot be changed after the profile is added. The following requirement applies only to the Citrix ADC CLI: If the name includes one or more spaces, enclose the name in double or single quotation marks (for example, "my profile" or 'my profile'). * `defaults` - (Optional) Default configuration to apply to the profile. Basic defaults are intended for standard content that requires little further configuration, such as static web site content. Advanced defaults are intended for specialized content that requires significant specialized configuration, such as heavily scripted or dynamic content. CLI users: When adding an application firewall profile, you can set either the defaults or the type, but not both. To set both options, create the profile by using the add appfw profile command, and then use the set appfw profile command to configure the other option. Possible values: [ basic, advanced ] * `starturlaction` - (Optional) One or more Start URL actions. Available settings function as follows: * Block - Block connections that violate this security check. * Learn - Use the learning engine to generate a list of exceptions to this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -startURLaction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -startURLaction none". Possible values: [ none, block, learn, log, stats ] * `contenttypeaction` - (Optional) One or more Content-type actions. Available settings function as follows: * Block - Block connections that violate this security check. * Learn - Use the learning engine to generate a list of exceptions to this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -contentTypeaction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -contentTypeaction none". Possible values: [ none, block, learn, log, stats ] * `inspectcontenttypes` - (Optional) One or more InspectContentType lists. * application/x-www-form-urlencoded * multipart/form-data * text/x-gwt-rpc CLI users: To enable, type "set appfw profile -InspectContentTypes" followed by the content types to be inspected. Possible values: [ none, application/x-www-form-urlencoded, multipart/form-data, text/x-gwt-rpc ] * `starturlclosure` - (Optional) Toggle the state of Start URL Closure. Possible values: [ on, off ] * `denyurlaction` - (Optional) One or more Deny URL actions. Available settings function as follows: * Block - Block connections that violate this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. NOTE: The Deny URL check takes precedence over the Start URL check. If you enable blocking for the Deny URL check, the application firewall blocks any URL that is explicitly blocked by a Deny URL, even if the same URL would otherwise be allowed by the Start URL check. CLI users: To enable one or more actions, type "set appfw profile -denyURLaction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -denyURLaction none". Possible values: [ none, block, log, stats ] * `refererheadercheck` - (Optional) Enable validation of Referer headers. Referer validation ensures that a web form that a user sends to your web site originally came from your web site, not an outside attacker. Although this parameter is part of the Start URL check, referer validation protects against cross-site request forgery (CSRF) attacks, not Start URL attacks. Possible values: [ OFF, if_present, AlwaysExceptStartURLs, AlwaysExceptFirstRequest ] * `cookieconsistencyaction` - (Optional) One or more Cookie Consistency actions. Available settings function as follows: * Block - Block connections that violate this security check. * Learn - Use the learning engine to generate a list of exceptions to this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -cookieConsistencyAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -cookieConsistencyAction none". Possible values: [ none, block, learn, log, stats ] * `cookietransforms` - (Optional) Perform the specified type of cookie transformation. Available settings function as follows: * Encryption - Encrypt cookies. * Proxying - Mask contents of server cookies by sending proxy cookie to users. * Cookie flags - Flag cookies as HTTP only to prevent scripts on user's browser from accessing and possibly modifying them. CAUTION: Make sure that this parameter is set to ON if you are configuring any cookie transformations. If it is set to OFF, no cookie transformations are performed regardless of any other settings. Possible values: [ on, off ] * `cookieencryption` - (Optional) Type of cookie encryption. Available settings function as follows: * None - Do not encrypt cookies. * Decrypt Only - Decrypt encrypted cookies, but do not encrypt cookies. * Encrypt Session Only - Encrypt session cookies, but not permanent cookies. * Encrypt All - Encrypt all cookies. Possible values: [ none, decryptOnly, encryptSessionOnly, encryptAll ] * `cookieproxying` - (Optional) Cookie proxy setting. Available settings function as follows: * None - Do not proxy cookies. * Session Only - Proxy session cookies by using the Citrix ADC session ID, but do not proxy permanent cookies. Possible values: [ none, sessionOnly ] * `addcookieflags` - (Optional) Add the specified flags to cookies. Available settings function as follows: * None - Do not add flags to cookies. * HTTP Only - Add the HTTP Only flag to cookies, which prevents scripts from accessing cookies. * Secure - Add Secure flag to cookies. * All - Add both HTTPOnly and Secure flags to cookies. Possible values: [ none, httpOnly, secure, all ] * `fieldconsistencyaction` - (Optional) One or more Form Field Consistency actions. Available settings function as follows: * Block - Block connections that violate this security check. * Learn - Use the learning engine to generate a list of exceptions to this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -fieldConsistencyaction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -fieldConsistencyAction none". Possible values: [ none, block, learn, log, stats ] * `csrftagaction` - (Optional) One or more Cross-Site Request Forgery (CSRF) Tagging actions. Available settings function as follows: * Block - Block connections that violate this security check. * Learn - Use the learning engine to generate a list of exceptions to this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -CSRFTagAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -CSRFTagAction none". Possible values: [ none, block, learn, log, stats ] * `crosssitescriptingaction` - (Optional) One or more Cross-Site Scripting (XSS) actions. Available settings function as follows: * Block - Block connections that violate this security check. * Learn - Use the learning engine to generate a list of exceptions to this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -crossSiteScriptingAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -crossSiteScriptingAction none". Possible values: [ none, block, learn, log, stats ] * `crosssitescriptingtransformunsafehtml` - (Optional) Transform cross-site scripts. This setting configures the application firewall to disable dangerous HTML instead of blocking the request. CAUTION: Make sure that this parameter is set to ON if you are configuring any cross-site scripting transformations. If it is set to OFF, no cross-site scripting transformations are performed regardless of any other settings. Possible values: [ on, off ] * `crosssitescriptingcheckcompleteurls` - (Optional) Check complete URLs for cross-site scripts, instead of just the query portions of URLs. Possible values: [ on, off ] * `sqlinjectionaction` - (Optional) One or more HTML SQL Injection actions. Available settings function as follows: * Block - Block connections that violate this security check. * Learn - Use the learning engine to generate a list of exceptions to this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -SQLInjectionAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -SQLInjectionAction none". Possible values: [ none, block, learn, log, stats ] * `sqlinjectiontransformspecialchars` - (Optional) Transform injected SQL code. This setting configures the application firewall to disable SQL special strings instead of blocking the request. Since most SQL servers require a special string to activate an SQL keyword, in most cases a request that contains injected SQL code is safe if special strings are disabled. CAUTION: Make sure that this parameter is set to ON if you are configuring any SQL injection transformations. If it is set to OFF, no SQL injection transformations are performed regardless of any other settings. Possible values: [ on, off ] * `sqlinjectiononlycheckfieldswithsqlchars` - (Optional) Check only form fields that contain SQL special strings (characters) for injected SQL code. Most SQL servers require a special string to activate an SQL request, so SQL code without a special string is harmless to most SQL servers. Possible values: [ on, off ] * `sqlinjectiontype` - (Optional) Available SQL injection types. -SQLSplChar : Checks for SQL Special Chars -SQLKeyword : Checks for SQL Keywords -SQLSplCharANDKeyword : Checks for both and blocks if both are found -SQLSplCharORKeyword : Checks for both and blocks if anyone is found. Possible values: [ SQLSplChar, SQLKeyword, SQLSplCharORKeyword, SQLSplCharANDKeyword ] * `sqlinjectionchecksqlwildchars` - (Optional) Check for form fields that contain SQL wild chars . Possible values: [ on, off ] * `fieldformataction` - (Optional) One or more Field Format actions. Available settings function as follows: * Block - Block connections that violate this security check. * Learn - Use the learning engine to generate a list of suggested web form fields and field format assignments. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -fieldFormatAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -fieldFormatAction none". Possible values: [ none, block, learn, log, stats ] * `defaultfieldformattype` - (Optional) Designate a default field type to be applied to web form fields that do not have a field type explicitly assigned to them. * `defaultfieldformatminlength` - (Optional) To disable the minimum and maximum length settings and allow data of any length to be entered into the field, set this parameter to zero (0). * `defaultfieldformatmaxlength` - (Optional) * `bufferoverflowaction` - (Optional) One or more Buffer Overflow actions. Available settings function as follows: * Block - Block connections that violate this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -bufferOverflowAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -bufferOverflowAction none". Possible values: [ none, block, log, stats ] * `bufferoverflowmaxurllength` - (Optional) * `bufferoverflowmaxheaderlength` - (Optional) * `bufferoverflowmaxcookielength` - (Optional) * `creditcardaction` - (Optional) One or more Credit Card actions. Available settings function as follows: * Block - Block connections that violate this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -creditCardAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -creditCardAction none". Possible values: [ none, block, learn, log, stats ] * `creditcard` - (Optional) Credit card types that the application firewall should protect. Possible values: [ none, visa, mastercard, discover, amex, jcb, dinersclub ] * `creditcardmaxallowed` - (Optional) This parameter value is used by the block action. It represents the maximum number of credit card numbers that can appear on a web page served by your protected web sites. Pages that contain more credit card numbers are blocked. * `creditcardxout` - (Optional) Mask any credit card number detected in a response by replacing each digit, except the digits in the final group, with the letter "X.". Possible values: [ on, off ] * `dosecurecreditcardlogging` - (Optional) Setting this option logs credit card numbers in the response when the match is found. Possible values: [ on, off ] * `streaming` - (Optional) Setting this option converts content-length form submission requests (requests with content-type "application/x-www-form-urlencoded" or "multipart/form-data") to chunked requests when atleast one of the following protections : SQL injection protection, XSS protection, form field consistency protection, starturl closure, CSRF tagging is enabled. Please make sure that the backend server accepts chunked requests before enabling this option. Possible values: [ on, off ] * `trace` - (Optional) Toggle the state of trace. Possible values: [ on, off ] * `requestcontenttype` - (Optional) Default Content-Type header for requests. A Content-Type header can contain 0-255 letters, numbers, and the hyphen (-) and underscore (_) characters. * `responsecontenttype` - (Optional) Default Content-Type header for responses. A Content-Type header can contain 0-255 letters, numbers, and the hyphen (-) and underscore (_) characters. * `jsonerrorobject` - (Optional) Name to the imported JSON Error Object to be set on application firewall profile. The following requirement applies only to the Citrix ADC CLI: If the name includes one or more spaces, enclose the name in double or single quotation marks \(for example, "my JSON error object" or 'my JSON error object'\). * `jsondosaction` - (Optional) One or more JSON Denial-of-Service (JsonDoS) actions. Available settings function as follows: * Block - Block connections that violate this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -JSONDoSAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -JSONDoSAction none". Possible values: [ none, block, log, stats ] * `jsonsqlinjectionaction` - (Optional) One or more JSON SQL Injection actions. Available settings function as follows: * Block - Block connections that violate this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -JSONSQLInjectionAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -JSONSQLInjectionAction none". Possible values: [ none, block, log, stats ] * `jsonsqlinjectiontype` - (Optional) Available SQL injection types. -SQLSplChar : Checks for SQL Special Chars -SQLKeyword : Checks for SQL Keywords -SQLSplCharANDKeyword : Checks for both and blocks if both are found -SQLSplCharORKeyword : Checks for both and blocks if anyone is found. Possible values: [ SQLSplChar, SQLKeyword, SQLSplCharORKeyword, SQLSplCharANDKeyword ] * `jsonxssaction` - (Optional) One or more JSON Cross-Site Scripting actions. Available settings function as follows: * Block - Block connections that violate this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -JSONXssAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -JSONXssAction none". Possible values: [ none, block, log, stats ] * `xmldosaction` - (Optional) One or more XML Denial-of-Service (XDoS) actions. Available settings function as follows: * Block - Block connections that violate this security check. * Learn - Use the learning engine to generate a list of exceptions to this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -XMLDoSAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -XMLDoSAction none". Possible values: [ none, block, learn, log, stats ] * `xmlformataction` - (Optional) One or more XML Format actions. Available settings function as follows: * Block - Block connections that violate this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -XMLFormatAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -XMLFormatAction none". Possible values: [ none, block, log, stats ] * `xmlsqlinjectionaction` - (Optional) One or more XML SQL Injection actions. Available settings function as follows: * Block - Block connections that violate this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -XMLSQLInjectionAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -XMLSQLInjectionAction none". Possible values: [ none, block, log, stats ] * `xmlsqlinjectiononlycheckfieldswithsqlchars` - (Optional) Check only form fields that contain SQL special characters, which most SQL servers require before accepting an SQL command, for injected SQL. Possible values: [ on, off ] * `xmlsqlinjectiontype` - (Optional) Available SQL injection types. -SQLSplChar : Checks for SQL Special Chars -SQLKeyword : Checks for SQL Keywords -SQLSplCharANDKeyword : Checks for both and blocks if both are found -SQLSplCharORKeyword : Checks for both and blocks if anyone is found. Possible values: [ SQLSplChar, SQLKeyword, SQLSplCharORKeyword, SQLSplCharANDKeyword ] * `xmlsqlinjectionchecksqlwildchars` - (Optional) Check for form fields that contain SQL wild chars . Possible values: [ on, off ] * `xmlsqlinjectionparsecomments` - (Optional) Parse comments in XML Data and exempt those sections of the request that are from the XML SQL Injection check. You must configure the type of comments that the application firewall is to detect and exempt from this security check. Available settings function as follows: * Check all - Check all content. * ANSI - Exempt content that is part of an ANSI (Mozilla-style) comment. * Nested - Exempt content that is part of a nested (Microsoft-style) comment. * ANSI Nested - Exempt content that is part of any type of comment. Possible values: [ checkall, ansi, nested, ansinested ] * `xmlxssaction` - (Optional) One or more XML Cross-Site Scripting actions. Available settings function as follows: * Block - Block connections that violate this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -XMLXSSAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -XMLXSSAction none". Possible values: [ none, block, learn, log, stats ] * `xmlwsiaction` - (Optional) One or more Web Services Interoperability (WSI) actions. Available settings function as follows: * Block - Block connections that violate this security check. * Learn - Use the learning engine to generate a list of exceptions to this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -XMLWSIAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -XMLWSIAction none". Possible values: [ none, block, learn, log, stats ] * `xmlattachmentaction` - (Optional) One or more XML Attachment actions. Available settings function as follows: * Block - Block connections that violate this security check. * Learn - Use the learning engine to generate a list of exceptions to this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -XMLAttachmentAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -XMLAttachmentAction none". Possible values: [ none, block, learn, log, stats ] * `xmlvalidationaction` - (Optional) One or more XML Validation actions. Available settings function as follows: * Block - Block connections that violate this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -XMLValidationAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -XMLValidationAction none". Possible values: [ none, block, log, stats ] * `xmlerrorobject` - (Optional) Name to assign to the XML Error Object, which the application firewall displays when a user request is blocked. Must begin with a letter, number, or the underscore character \(_\), and must contain only letters, numbers, and the hyphen \(-\), period \(.\) pound \(\#\), space \( \), at (@), equals \(=\), colon \(:\), and underscore characters. Cannot be changed after the XML error object is added. The following requirement applies only to the Citrix ADC CLI: If the name includes one or more spaces, enclose the name in double or single quotation marks \(for example, "my XML error object" or 'my XML error object'\). * `customsettings` - (Optional) Object name for custom settings. This check is applicable to Profile Type: HTML, XML. . * `signatures` - (Optional) Object name for signatures. This check is applicable to Profile Type: HTML, XML. . * `xmlsoapfaultaction` - (Optional) One or more XML SOAP Fault Filtering actions. Available settings function as follows: * Block - Block connections that violate this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. * Remove - Remove all violations for this security check. CLI users: To enable one or more actions, type "set appfw profile -XMLSOAPFaultAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -XMLSOAPFaultAction none". Possible values: [ none, block, log, remove, stats ] * `usehtmlerrorobject` - (Optional) Send an imported HTML Error object to a user when a request is blocked, instead of redirecting the user to the designated Error URL. Possible values: [ on, off ] * `errorurl` - (Optional) URL that application firewall uses as the Error URL. * `htmlerrorobject` - (Optional) Name to assign to the HTML Error Object. Must begin with a letter, number, or the underscore character \(_\), and must contain only letters, numbers, and the hyphen \(-\), period \(.\) pound \(\#\), space \( \), at (@), equals \(=\), colon \(:\), and underscore characters. Cannot be changed after the HTML error object is added. The following requirement applies only to the Citrix ADC CLI: If the name includes one or more spaces, enclose the name in double or single quotation marks \(for example, "my HTML error object" or 'my HTML error object'\). * `logeverypolicyhit` - (Optional) Log every profile match, regardless of security checks results. Possible values: [ on, off ] * `stripcomments` - (Optional) Strip HTML comments. This check is applicable to Profile Type: HTML. . Possible values: [ on, off ] * `striphtmlcomments` - (Optional) Strip HTML comments before forwarding a web page sent by a protected web site in response to a user request. Possible values: [ none, all, exclude_script_tag ] * `stripxmlcomments` - (Optional) Strip XML comments before forwarding a web page sent by a protected web site in response to a user request. Possible values: [ none, all ] * `exemptclosureurlsfromsecuritychecks` - (Optional) Exempt URLs that pass the Start URL closure check from SQL injection, cross-site script, field format and field consistency security checks at locations other than headers. Possible values: [ on, off ] * `defaultcharset` - (Optional) Default character set for protected web pages. Web pages sent by your protected web sites in response to user requests are assigned this character set if the page does not already specify a character set. The character sets supported by the application firewall are: * iso-8859-1 (English US) * big5 (Chinese Traditional) * gb2312 (Chinese Simplified) * sjis (Japanese Shift-JIS) * euc-jp (Japanese EUC-JP) * iso-8859-9 (Turkish) * utf-8 (Unicode) * euc-kr (Korean). * `dynamiclearning` - (Optional) One or more security checks. Available options are as follows: * SQLInjection - Enable dynamic learning for SQLInjection security check. * CrossSiteScripting - Enable dynamic learning for CrossSiteScripting security check. * fieldFormat - Enable dynamic learning for fieldFormat security check. * None - Disable security checks for all security checks. CLI users: To enable dynamic learning on one or more security checks, type "set appfw profile -dynamicLearning" followed by the security checks to be enabled. To turn off dynamic learning on all security checks, type "set appfw profile -dynamicLearning none". Possible values: [ none, SQLInjection, CrossSiteScripting, fieldFormat, startURL, cookieConsistency, fieldConsistency, CSRFtag, ContentType ] * `postbodylimit` - (Optional) * `postbodylimitsignature` - (Optional) * `fileuploadmaxnum` - (Optional) * `canonicalizehtmlresponse` - (Optional) Perform HTML entity encoding for any special characters in responses sent by your protected web sites. Possible values: [ on, off ] * `enableformtagging` - (Optional) Enable tagging of web form fields for use by the Form Field Consistency and CSRF Form Tagging checks. Possible values: [ on, off ] * `sessionlessfieldconsistency` - (Optional) Perform sessionless Field Consistency Checks. Possible values: [ OFF, ON, postOnly ] * `sessionlessurlclosure` - (Optional) Enable session less URL Closure Checks. This check is applicable to Profile Type: HTML. . Possible values: [ on, off ] * `semicolonfieldseparator` - (Optional) Allow '; ' as a form field separator in URL queries and POST form bodies. . Possible values: [ on, off ] * `excludefileuploadfromchecks` - (Optional) Exclude uploaded files from Form checks. Possible values: [ on, off ] * `sqlinjectionparsecomments` - (Optional) Parse HTML comments and exempt them from the HTML SQL Injection check. You must specify the type of comments that the application firewall is to detect and exempt from this security check. Available settings function as follows: * Check all - Check all content. * ANSI - Exempt content that is part of an ANSI (Mozilla-style) comment. * Nested - Exempt content that is part of a nested (Microsoft-style) comment. * ANSI Nested - Exempt content that is part of any type of comment. Possible values: [ checkall, ansi, nested, ansinested ] * `invalidpercenthandling` - (Optional) Configure the method that the application firewall uses to handle percent-encoded names and values. Available settings function as follows: * apache_mode - Apache format. * asp_mode - Microsoft ASP format. * secure_mode - Secure format. Possible values: [ apache_mode, asp_mode, secure_mode ] * `type` - (Optional) Application firewall profile type, which controls which security checks and settings are applied to content that is filtered with the profile. Available settings function as follows: * HTML - HTML-based web sites. * XML - XML-based web sites and services. * JSON - JSON-based web sites and services. * HTML XML (Web 2.0) - Sites that contain both HTML and XML content, such as ATOM feeds, blogs, and RSS feeds. * HTML JSON - Sites that contain both HTML and JSON content. * XML JSON - Sites that contain both XML and JSON content. * HTML XML JSON - Sites that contain HTML, XML and JSON content. Possible values: [ HTML, XML, JSON ] * `checkrequestheaders` - (Optional) Check request headers as well as web forms for injected SQL and cross-site scripts. Possible values: [ on, off ] * `optimizepartialreqs` - (Optional) Optimize handle of HTTP partial requests i.e. those with range headers. Available settings are as follows: * ON - Partial requests by the client result in partial requests to the backend server in most cases. * OFF - Partial requests by the client are changed to full requests to the backend server. Possible values: [ on, off ] * `urldecoderequestcookies` - (Optional) URL Decode request cookies before subjecting them to SQL and cross-site scripting checks. Possible values: [ on, off ] * `comment` - (Optional) Any comments about the purpose of profile, or other useful information about the profile. * `percentdecoderecursively` - (Optional) Configure whether the application firewall should use percentage recursive decoding. Possible values: [ on, off ] * `multipleheaderaction` - (Optional) One or more multiple header actions. Available settings function as follows: * Block - Block connections that have multiple headers. * Log - Log connections that have multiple headers. * KeepLast - Keep only last header when multiple headers are present. CLI users: To enable one or more actions, type "set appfw profile -multipleHeaderAction" followed by the actions to be enabled. Possible values: [ block, keepLast, log, none ] * `rfcprofile` - (Optional) Object name of the rfc profile. * `fileuploadtypesaction` - (Optional) One or more file upload types actions. Available settings function as follows: * Block - Block connections that violate this security check. * Log - Log violations of this security check. * Stats - Generate statistics for this security check. * None - Disable all actions for this security check. CLI users: To enable one or more actions, type "set appfw profile -fileUploadTypeAction" followed by the actions to be enabled. To turn off all actions, type "set appfw profile -fileUploadTypeAction none". Possible values: [ none, block, log, stats ] * `verboseloglevel` - (Optional) Detailed Logging Verbose Log Level. Possible values: [ pattern, patternPayload, patternPayloadHeader ] * `archivename` - (Optional) Source for tar archive. ## Attribute Reference In addition to the arguments, the following attributes are available: * `id` - The id of the `appfwprofile`. It has the same value as the `name` attribute.
237.97931
824
0.769728
eng_Latn
0.983684
dc2adf02cc607cef8cda399a43e6d617d06c7ddb
3,300
md
Markdown
wdk-ddi-src/content/storport/nf-storport-storportwaitforsingleobject.md
MikeMacelletti/windows-driver-docs-ddi
5436c618dff46f9320544766618c9ab4bef6a35e
[ "CC-BY-4.0", "MIT" ]
null
null
null
wdk-ddi-src/content/storport/nf-storport-storportwaitforsingleobject.md
MikeMacelletti/windows-driver-docs-ddi
5436c618dff46f9320544766618c9ab4bef6a35e
[ "CC-BY-4.0", "MIT" ]
null
null
null
wdk-ddi-src/content/storport/nf-storport-storportwaitforsingleobject.md
MikeMacelletti/windows-driver-docs-ddi
5436c618dff46f9320544766618c9ab4bef6a35e
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- UID: NF:storport.StorPortWaitForSingleObject title: StorPortWaitForSingleObject function author: windows-driver-content description: A miniport can call StorPortWaitForSingleObject function to put the current thread into a wait state until the given dispatcher object is set to signaled state or optionally times out. tech.root: storage ms.assetid: 36dba4d1-de52-4522-ba07-f8b57357b48e ms.author: windowsdriverdev ms.date: 03/24/2020 ms.topic: function ms.keywords: StorPortWaitForSingleObject req.header: storport.h f1_keywords: - "storport/StorPortWaitForSingleObject" req.include-header: req.target-type: req.target-min-winverclnt: Windows 10, version 2004 req.target-min-winversvr: req.kmdf-ver: req.umdf-ver: req.lib: req.dll: req.irql: req.ddi-compliance: req.unicode-ansi: req.idl: req.max-support: req.namespace: req.assembly: req.type-library: topic_type: - apiref api_type: - api_location: - api_name: - StorPortWaitForSingleObject product: - Windows targetos: Windows --- # StorPortWaitForSingleObject function ## -description A miniport can call **StorPortWaitForSingleObject** function to put the current thread into a wait state until the given dispatcher object is set to signaled state or optionally times out. ## -parameters ### -param HwDeviceExtension Pointer to the storage miniport's device extension. ### -param Object Pointer to the initialized dispatcher object (event, mutex, semaphore, thread, or timer). ### -param Alertable Boolean value set TRUE if the wait is alertable and FALSE otherwise. ### -param Timeout Pointer to the timeout value that specifies the absolute or relative time, in 100-nanosecond units, at which the wait is to be completed. A positive value specifies an absolute time, relative to January 1, 1601. A negative value specifies an interval relative to the current time. Absolute expiration times track any changes in the system time; relative expiration times are not affected by system time changes. If *Timeout* = 0, the routine returns without waiting. If the miniport supplies a NULL pointer, the routine waits indefinitely until the dispatcher object is set to the signaled state. For more information, see the following Remarks section. ## -returns **StorPortSetEvent** returns a status code such as one of the following: | Return code | Description | | ----------- | ----------- | | STOR_STATUS_INVALID_PARAMETER | One or more of the parameters are invalid. | | STOR_STATUS_SUCCESS | The ETW event was successfully logged. | | STOR_STATUS_UNSUCCESSFUL | The operation failed. | ## -remarks See [**KeWaitForSingleObject**](https://docs.microsoft.com/windows-hardware/drivers/ddi/wdm/nf-wdm-kewaitforsingleobject) for more details. Callers of **StorportWaitForSingleObject** must be running at IRQL <= DISPATCH_LEVEL. However, if *Timeout* = NULL or *Timeout* != 0, the caller must be running at IRQL <= APC_LEVEL and in a nonarbitrary thread context. (If *Timeout* != NULL and *Timeout* = 0, the caller must be running at IRQL <= DISPATCH_LEVEL.) ## -see-also [**KeWaitForSingleObject**](https://docs.microsoft.com/windows-hardware/drivers/ddi/wdm/nf-wdm-kewaitforsingleobject) [**StorportInitializeEvent**](nf-storport-storportinitializeevent.md) [**StorportSetEvent**](nf-storport-storportsetevent.md)
34.375
315
0.778485
eng_Latn
0.913314
dc2b410fe84a66f269ece78f55cd77ab7901f195
150
md
Markdown
README.md
rusucosmin/node-js
6a107b0a594a57599eb111272bd9f8523ce35d39
[ "MIT" ]
1
2020-01-08T20:34:08.000Z
2020-01-08T20:34:08.000Z
README.md
rusucosmin/node-js
6a107b0a594a57599eb111272bd9f8523ce35d39
[ "MIT" ]
null
null
null
README.md
rusucosmin/node-js
6a107b0a594a57599eb111272bd9f8523ce35d39
[ "MIT" ]
null
null
null
#Simple Node.js server [![Build Status](https://travis-ci.org/rusucosmin/node-js.svg?branch=master)](https://travis-ci.org/rusucosmin/node-js) :joy:
50
143
0.74
yue_Hant
0.335973
dc2bc82c105e83cfe882885a2a13c86de73ef1a9
732
md
Markdown
docs/assets/solana-native-assets/lido-assets.md
saber-hq/docs
ab5e6dddf4d0a80349b96f1be7f422d7681f90b5
[ "Apache-2.0" ]
3
2022-03-01T05:58:14.000Z
2022-03-23T20:35:47.000Z
docs/assets/solana-native-assets/lido-assets.md
saber-hq/docs
ab5e6dddf4d0a80349b96f1be7f422d7681f90b5
[ "Apache-2.0" ]
15
2022-03-18T13:51:52.000Z
2022-03-31T13:59:57.000Z
docs/assets/solana-native-assets/lido-assets.md
saber-hq/docs
ab5e6dddf4d0a80349b96f1be7f422d7681f90b5
[ "Apache-2.0" ]
1
2022-03-02T00:27:00.000Z
2022-03-02T00:27:00.000Z
--- title: Lido stSOL description: Lido stSOL --- ![](/assets/assets/lido.png) ## About stSOL is a liquid stake pool token. This means that you can deposit SOL with LIDO, let them stake the SOL with various validators to earn interest, and gain capital efficiency using the stSOL stake pool token to reprsent your deposit. The risks involved include Lido delegated validators being dishonest and having their SOL slashed when slashing is implemented on mainnet.&#x20; ## How to Mint stSOL Head to [https://solana.lido.fi/](https://solana.lido.fi) and stake SOL to receive stSOL. Note that it may take 2 to 3 days (1 Solana epoch) to unstake from a validator and receive your SOL back.&#x20; ![](/assets/assets/mint-stsol.png)
43.058824
379
0.759563
eng_Latn
0.994647
dc2d8e9e1005fa6a060ac14844454feb435e6473
544
md
Markdown
assets/refresh_order.mermaid.md
mentero/Positioner
c1771b064a35805bf495b9974459c67f45764543
[ "MIT" ]
1
2021-07-26T11:47:56.000Z
2021-07-26T11:47:56.000Z
assets/refresh_order.mermaid.md
mentero/Positioner
c1771b064a35805bf495b9974459c67f45764543
[ "MIT" ]
null
null
null
assets/refresh_order.mermaid.md
mentero/Positioner
c1771b064a35805bf495b9974459c67f45764543
[ "MIT" ]
null
null
null
graph LR subgraph init ["Current state"] a1["Apple [1]"] a2["Banana [2]"] a3["Orange [3]"] end subgraph repo_insert ["Repo insert"] b1["Apple [1]"] b2["Banana [2]"] x1["Watermelon [3]"] style x1 stroke:green,fill:lightgreen b3["Orange [3]"] end a1 --> b1 a2 --> b2 a3 --> b3 subgraph ordered ["refresh_order!/3"] c1["Apple [1]"] c2["Banana [2]"] x2["Watermelon [3]"] style x2 stroke:green,fill:lightgreen c3["Orange [4]"] end b1 --> c1 b2 --> c2 b3 --> c3 x1 --> x2
19.428571
41
0.540441
eng_Latn
0.161366
dc2d921a91ec53d09903a32213f5fb638b488efd
35
md
Markdown
examples/packager/example/Readme.md
aki237/dibba
ee4c513ba0003393a0ddca3d2621762ed09cda13
[ "BSD-3-Clause" ]
null
null
null
examples/packager/example/Readme.md
aki237/dibba
ee4c513ba0003393a0ddca3d2621762ed09cda13
[ "BSD-3-Clause" ]
null
null
null
examples/packager/example/Readme.md
aki237/dibba
ee4c513ba0003393a0ddca3d2621762ed09cda13
[ "BSD-3-Clause" ]
null
null
null
# Readme This is a sample readme.
8.75
24
0.714286
eng_Latn
1
dc2e118ebc58650d2807c39defbfeac957fb7ccf
584
md
Markdown
docs/object.md
swipesapp/val-js
5a1328f5f36f1aeb0852b43ac6f31359eb6b33c0
[ "MIT" ]
11
2017-01-09T09:00:39.000Z
2018-05-31T08:50:47.000Z
docs/object.md
swipesapp/valjs
5a1328f5f36f1aeb0852b43ac6f31359eb6b33c0
[ "MIT" ]
null
null
null
docs/object.md
swipesapp/valjs
5a1328f5f36f1aeb0852b43ac6f31359eb6b33c0
[ "MIT" ]
null
null
null
``` import { object } from 'valjs'; ``` ## Defaults ``` object.test({}) // standard tester object.require().test('hello') // require to be set object.custom((value) => { return null }) // custom handler, return string if error ``` ## Iteratives ``` object.of(1, 2, 3).test({one: 1, two: 2}) // An object with values of either 1, 2 or 3 object.of([1, 2, 3]).test({one: 1, two: 2}) // Same as above but with array as arg. ``` ## Bounds ``` object.max(2).test({ one: 1, two: 2 }) // max size object.min(2).test({ one: 1, two: 2 }) // min size object.empty().test({}) // empty object ```
27.809524
86
0.604452
eng_Latn
0.845058
dc2e412dffe7f4eaaf92adb2cf02bfc6b74eb0f7
1,312
md
Markdown
README.md
DominikLudwig1995/HiveStack
3e940d35ba98167e0b2ac6f138e2e0a1c7ed362e
[ "Apache-2.0" ]
null
null
null
README.md
DominikLudwig1995/HiveStack
3e940d35ba98167e0b2ac6f138e2e0a1c7ed362e
[ "Apache-2.0" ]
null
null
null
README.md
DominikLudwig1995/HiveStack
3e940d35ba98167e0b2ac6f138e2e0a1c7ed362e
[ "Apache-2.0" ]
null
null
null
# Docker Hive ## Installation Hive * cd docker-hive * make && docker build -t hive-metastore . * docker-compose up * source ${HIVE_HOME}/.profile ## JDBC * /opt/apache-hive-3.1.2-bin/bin/hiveserver2 * /opt/apache-hive-3.1.2-bin/bin/beeline -u jdbc:hive2:// * /opt/apache-hive-3.1.2-bin/bin/beeline -u jdbc:hive2://localhost:10000 ## Hive UI * http://127.0.0.1:10002/ * http://127.0.0.1:10002/logs/hive.log ## UDF * https://acadgild.com/blog/hive-udf-python ## Utils * docker exec -u 0 -it hivedb bash * docker-compose start ## MariaDB Fix * ALTER DATABASE CHARACTER SET latin1 ## Jenkins * https://mike42.me/blog/2019-05-how-to-integrate-gitea-and-jenkins * http://127.0.0.1:8081/login?from=%2F ## Monitoring * http://0.0.0.0:3030/d/000000127/telegraf-system-dashboard?orgId=1&refresh=1m * http://127.0.0.1:9000/#/containers ## HDFS * http://www.mtitek.com/tutorials/bigdata/hive/install.php ## UDF Deployment add jar /opt/apache-hive-3.1.2-bin/udf/similarity-0.0.1-SNAPSHOT.jar; CREATE FUNCTION levenshtein AS 'edu.hda.se.LevenshteinDistance'; select levenshtein('123','123434535'); drop function sumint; add jar /opt/apache-hive-3.1.2-bin/udf/similarity-0.0.1-SNAPSHOT.jar; CREATE FUNCTION sumint AS 'edu.hda.se.SumInt'; select sumint(ts) from data.player; select sumint(fname) from data.mytable4;
26.77551
78
0.721799
yue_Hant
0.744671
dc2eca2a8c5995fd8913a929ed3cdcde655ebd69
2,316
md
Markdown
packages/jquery-app/Readme.md
tecla5/easy-graphql-auth
14a8b1573abea414cbee7b58c0124b6acd3fde24
[ "MIT" ]
12
2017-05-25T21:54:08.000Z
2018-09-13T19:35:35.000Z
packages/jquery-app/Readme.md
tecla5/easy-graphql-auth
14a8b1573abea414cbee7b58c0124b6acd3fde24
[ "MIT" ]
1
2017-10-29T12:17:08.000Z
2017-10-29T12:17:08.000Z
packages/jquery-app/Readme.md
tecla5/easy-graphql-auth
14a8b1573abea414cbee7b58c0124b6acd3fde24
[ "MIT" ]
null
null
null
# jQuery GraphCool Auth0 app Demo app demonstrating GraphCool and Auth0 integration in a simple [jQuery](https://jquery.com/) Web app ## Pre-requisites On [Auth0 university](https://auth0.com/university/) watch: - [Auth0 101 course](https://auth0.com/university/2/auth0-101) - [Getting Started with the lock](https://auth0.com/university/3/getting-started-with-the-lock) On [GraphCool youtube channel](https://www.youtube.com/channel/UCptAHlN1gdwD89tFM3ENb6w), watch the first 2 minutes of GraphCool [User Authentication with Auth0 for React and Apollo](https://www.youtube.com/watch?v=5uxq8Om-AZQ) which demonstrates how to create an Auth0 client app and configure a GraphCool app for Auth0 integration. Now you should be good to go! ## Development Enausre you are loading [babel-polyfill](https://stackoverflow.com/questions/33527653/babel-6-regeneratorruntime-is-not-defined-with-async-await) in order for async/await to work. See `webpack/webpack.app.js` configuration: ```js entry: [ 'babel-polyfill', path.join(__dirname, '../src/app.js') ], ``` Install `webpack-dev-server` `$ npm i -g webpack-dev-server` Watch files, compile and trigger reload of dev server `$ npm run watch` ## Build Project needs to be compiled using Babel `$ npm run build` ## Start server Ensure you have built a `dist/app.js` which is used by the HTML file. Start development server: `$ npm run dev` ## Alternative: Run file server Start a [local HTTP file server](https://www.npmjs.com/package/local-web-server) Install HTTP file server globally `$ npm i local-web-server -g` Start it ```bash $ npm run start serving at http://localhost:8000 ``` Open a browser at `localhost:8000` `$ open http://localhost:8000` Time to play! ## Troubleshooting `Super expression must either be null or a function, not undefined` If all else fails try adding `babel-polyfill` directly in html `<script>` element or as first statement in included code `import 'babel-polyfill'` ```html <script src="node_modules/babel-polyfill/dist/polyfill.js"></script> ``` ES7 `await/async` statements and some other ES6/ES7 syntax still needs to be "handled" with extra super magic enchantments!! Let us know if you find/have better solutions ;) ## License MIT - [Tecla5](http://tecla5.com) 2017, Kristian Mandrup
26.62069
334
0.744387
eng_Latn
0.813185
dc2ee2248136880bf8ce6a917e4382ee7dfd810d
14,137
md
Markdown
2021-09/2021-09-19_short.md
admariner/trending_archive
ffca6522c4fdaa5203c3f18d9a5a7d7da098169c
[ "MIT" ]
80
2015-02-13T16:52:22.000Z
2022-03-10T20:13:08.000Z
2021-09/2021-09-19_short.md
admariner/trending_archive
ffca6522c4fdaa5203c3f18d9a5a7d7da098169c
[ "MIT" ]
65
2021-10-02T05:54:01.000Z
2021-12-28T22:50:23.000Z
2021-09/2021-09-19_short.md
admariner/trending_archive
ffca6522c4fdaa5203c3f18d9a5a7d7da098169c
[ "MIT" ]
16
2015-10-08T11:06:28.000Z
2021-06-30T07:26:49.000Z
### 2021-09-19 diff between today and yesterday #### python * [jumpserver/jumpserver](https://github.com/jumpserver/jumpserver): JumpServer 是全球首款开源的堡垒机,是符合 4A 的专业运维安全审计系统。 * [jackfrued/Python-100-Days](https://github.com/jackfrued/Python-100-Days): Python - 100天从新手到大师 * [willmcgugan/rich](https://github.com/willmcgugan/rich): Rich is a Python library for rich text and beautiful formatting in the terminal. * [521xueweihan/HelloGitHub](https://github.com/521xueweihan/HelloGitHub): 分享 GitHub 上有趣、入门级的开源项目 * [django/django](https://github.com/django/django): The Web framework for perfectionists with deadlines. * [jina-ai/jina](https://github.com/jina-ai/jina): Cloud-native neural search framework for 𝙖𝙣𝙮 kind of data * [facebookresearch/3detr](https://github.com/facebookresearch/3detr): Code & Models for 3DETR - an End-to-end transformer model for 3D object detection * [frappe/erpnext](https://github.com/frappe/erpnext): Free and Open Source Enterprise Resource Planning (ERP) * [wgpsec/DBJ](https://github.com/wgpsec/DBJ): 大宝剑-边界资产梳理工具(红队、蓝队、企业组织架构、子域名、Web资产梳理、Web指纹识别、ICON_Hash资产匹配) * [babysor/MockingBird](https://github.com/babysor/MockingBird): 🚀AI拟声: 5秒内克隆您的声音并生成任意语音内容 Clone a voice in 5 seconds to generate arbitrary speech in real-time * [tychxn/jd-assistant](https://github.com/tychxn/jd-assistant): 京东抢购助手:包含登录,查询商品库存/价格,添加/清空购物车,抢购商品(下单),查询订单等功能 * [qtile/qtile](https://github.com/qtile/qtile): 🍪 A full-featured, hackable tiling window manager written and configured in Python * [sherlock-project/sherlock](https://github.com/sherlock-project/sherlock): 🔎 Hunt down social media accounts by username across social networks * [PaddlePaddle/Paddle](https://github.com/PaddlePaddle/Paddle): PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice (『飞桨』核心框架,深度学习&机器学习高性能单机、分布式训练和跨平台部署) * [python/cpython](https://github.com/python/cpython): The Python programming language * [facebookresearch/ParlAI](https://github.com/facebookresearch/ParlAI): A framework for training and evaluating AI models on a variety of openly available dialogue datasets. #### go * [milvus-io/milvus](https://github.com/milvus-io/milvus): An open-source vector database for embedding similarity search and AI applications. * [filecoin-project/lotus](https://github.com/filecoin-project/lotus): Implementation of the Filecoin protocol, written in Go * [go-admin-team/go-admin](https://github.com/go-admin-team/go-admin): 基于Gin + Vue + Element UI的前后端分离权限管理系统脚手架(包含了:多租户的支持,基础用户管理功能,jwt鉴权,代码生成器,RBAC资源控制,表单构建,定时任务等)3分钟构建自己的中后台项目;文档:https://doc.go-admin.dev Demo: https://www.go-admin.dev * [fatedier/frp](https://github.com/fatedier/frp): A fast reverse proxy to help you expose a local server behind a NAT or firewall to the internet. * [go-kratos/kratos](https://github.com/go-kratos/kratos): A Go framework for microservices. * [panjf2000/ants](https://github.com/panjf2000/ants): 🐜🐜🐜 ants is a high-performance and low-cost goroutine pool in Go, inspired by fasthttp./ ants 是一个高性能且低损耗的 goroutine 池。 * [gohugoio/hugo](https://github.com/gohugoio/hugo): The world’s fastest framework for building websites. * [pingcap/tidb](https://github.com/pingcap/tidb): TiDB is an open source distributed HTAP database compatible with the MySQL protocol * [yedf/dtm](https://github.com/yedf/dtm): 🔥A cross-language distributed transaction manager. go分布式事务管理器。 * [syncthing/syncthing](https://github.com/syncthing/syncthing): Open Source Continuous File Synchronization * [ethereum/go-ethereum](https://github.com/ethereum/go-ethereum): Official Go implementation of the Ethereum protocol * [asim/go-micro](https://github.com/asim/go-micro): A Go framework for distributed systems development * [v2fly/v2ray-core](https://github.com/v2fly/v2ray-core): A platform for building proxies to bypass network restrictions. * [v2rayA/v2rayA](https://github.com/v2rayA/v2rayA): A Linux web GUI client of Project V which supports V2Ray, Xray, SS, SSR, Trojan and Pingtunnel 🚀 * [drakkan/sftpgo](https://github.com/drakkan/sftpgo): Fully featured and highly configurable SFTP server with optional FTP/S and WebDAV support - S3, Google Cloud Storage, Azure Blob * [ory/kratos](https://github.com/ory/kratos): Next-gen identity server (think Auth0, Okta, Firebase) with Ory-hardened authentication, MFA, FIDO2, profile management, identity schemas, social sign in, registration, account recovery, and IoT auth. Golang, headless, API-only - without templating or theming headaches. * [tailscale/tailscale](https://github.com/tailscale/tailscale): The easiest, most secure way to use WireGuard and 2FA. * [gogs/gogs](https://github.com/gogs/gogs): Gogs is a painless self-hosted Git service * [ava-labs/avalanchego](https://github.com/ava-labs/avalanchego): Go implementation of an Avalanche node. * [JanDeDobbeleer/oh-my-posh](https://github.com/JanDeDobbeleer/oh-my-posh): A prompt theme engine for any shell. #### rust * [seed-rs/seed](https://github.com/seed-rs/seed): A Rust framework for creating web apps * [pingcap/talent-plan](https://github.com/pingcap/talent-plan): open source training courses about distributed database and distributed systemes * [a-b-street/abstreet](https://github.com/a-b-street/abstreet): A traffic simulation game exploring how small changes to roads affect cyclists, transit users, pedestrians, and drivers. * [alacritty/alacritty](https://github.com/alacritty/alacritty): A cross-platform, OpenGL terminal emulator. * [rust-lang/rustfmt](https://github.com/rust-lang/rustfmt): Format Rust code * [tikv/tikv](https://github.com/tikv/tikv): Distributed transactional key-value database, originally created to complement TiDB * [tokio-rs/tokio](https://github.com/tokio-rs/tokio): A runtime for writing reliable asynchronous applications with Rust. Provides I/O, networking, scheduling, timers, ... * [project-serum/anchor](https://github.com/project-serum/anchor): ⚓ Solana Sealevel Framework * [shadowsocks/shadowsocks-rust](https://github.com/shadowsocks/shadowsocks-rust): A Rust port of shadowsocks * [ruffle-rs/ruffle](https://github.com/ruffle-rs/ruffle): A Flash Player emulator written in Rust * [hyperium/hyper](https://github.com/hyperium/hyper): An HTTP library for Rust * [rust-analyzer/rust-analyzer](https://github.com/rust-analyzer/rust-analyzer): A Rust compiler front-end for IDEs * [launchbadge/sqlx](https://github.com/launchbadge/sqlx): 🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, SQLite, and MSSQL. * [tauri-apps/tauri](https://github.com/tauri-apps/tauri): Build smaller, faster, and more secure desktop applications with a web frontend. * [RustPython/RustPython](https://github.com/RustPython/RustPython): A Python Interpreter written in Rust * [emilk/egui](https://github.com/emilk/egui): egui: an easy-to-use immediate mode GUI in pure Rust #### cpp * [bitcoin/bitcoin](https://github.com/bitcoin/bitcoin): Bitcoin Core integration/staging tree * [ethereum/solidity](https://github.com/ethereum/solidity): Solidity, the Smart Contract Programming Language * [taichi-dev/taichi](https://github.com/taichi-dev/taichi): Parallel programming for everyone. * [TheCherno/Hazel](https://github.com/TheCherno/Hazel): Hazel Engine * [microsoft/calculator](https://github.com/microsoft/calculator): Windows Calculator: A simple yet powerful calculator that ships with Windows * [vnpy/vnpy](https://github.com/vnpy/vnpy): 基于Python的开源量化交易平台开发框架 * [FreeCAD/FreeCAD](https://github.com/FreeCAD/FreeCAD): This is the official source code of FreeCAD, a free and opensource multiplatform 3D parametric modeler. Issues are managed on our own bug tracker at https://www.freecadweb.org/tracker * [apple/swift](https://github.com/apple/swift): The Swift Programming Language * [MarlinFirmware/Marlin](https://github.com/MarlinFirmware/Marlin): Marlin is an optimized firmware for RepRap 3D printers based on the Arduino platform. | Many commercial 3D printers come with Marlin installed. Check with your vendor if you need source code for your specific machine. * [ValveSoftware/GameNetworkingSockets](https://github.com/ValveSoftware/GameNetworkingSockets): Reliable & unreliable messages over UDP. Robust message fragmentation & reassembly. P2P networking / NAT traversal. Encryption. * [opencv/opencv](https://github.com/opencv/opencv): Open Source Computer Vision Library * [TrinityCore/TrinityCore](https://github.com/TrinityCore/TrinityCore): TrinityCore Open Source MMO Framework (master = 9.1.0.40120, 3.3.5 = 3.3.5a.12340) * [PaddlePaddle/Paddle-Lite](https://github.com/PaddlePaddle/Paddle-Lite): Multi-platform high performance deep learning inference engine (『飞桨』多平台高性能深度学习预测引擎) * [taskflow/taskflow](https://github.com/taskflow/taskflow): A General-purpose Parallel and Heterogeneous Task Programming System * [topjohnwu/Magisk](https://github.com/topjohnwu/Magisk): The Magic Mask for Android * [Tencent/MMKV](https://github.com/Tencent/MMKV): An efficient, small mobile key-value storage framework developed by WeChat. Works on Android, iOS, macOS, Windows, and POSIX. * [ZLMediaKit/ZLMediaKit](https://github.com/ZLMediaKit/ZLMediaKit): WebRTC/RTSP/RTMP/HTTP/HLS/HTTP-FLV/WebSocket-FLV/HTTP-TS/HTTP-fMP4/WebSocket-TS/WebSocket-fMP4/GB28181 server and client framework based on C++11 * [EdgeTX/edgetx](https://github.com/EdgeTX/edgetx): EdgeTX is the cutting edge of OpenTx * [ceph/ceph](https://github.com/ceph/ceph): Ceph is a distributed object, block, and file storage platform * [cartographer-project/cartographer](https://github.com/cartographer-project/cartographer): Cartographer is a system that provides real-time simultaneous localization and mapping (SLAM) in 2D and 3D across multiple platforms and sensor configurations. * [microsoft/STL](https://github.com/microsoft/STL): MSVC's implementation of the C++ Standard Library. #### javascript * [ToolJet/ToolJet](https://github.com/ToolJet/ToolJet): An open-source no-code platform for building and deploying internal tools 🚀 * [smiek2221/scripts](https://github.com/smiek2221/scripts): * [zero205/JD_tencent_scf](https://github.com/zero205/JD_tencent_scf): 自用京东JS脚本,支持【青龙】、【腾讯云函数】、【elecV2P】。低调使用,请勿fork!!! * [Koenkk/zigbee2mqtt](https://github.com/Koenkk/zigbee2mqtt): Zigbee 🐝 to MQTT bridge 🌉, get rid of your proprietary Zigbee bridges 🔨 * [shufflewzc/faker2](https://github.com/shufflewzc/faker2): 不知名大佬备份 * [NervJS/taro](https://github.com/NervJS/taro): 开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5/React Native 等应用。 https://taro.zone/ * [Binaryify/NeteaseCloudMusicApi](https://github.com/Binaryify/NeteaseCloudMusicApi): 网易云音乐 Node.js API service * [KieSun/fucking-frontend](https://github.com/KieSun/fucking-frontend): 干爆前端。一网打尽前端面试、学习路径、优秀好文等各类内容,帮助大家一年内拿到期望的 offer! * [carbon-app/carbon](https://github.com/carbon-app/carbon): 🖤 Create and share beautiful images of your source code * [yuannian1112/jd_scripts](https://github.com/yuannian1112/jd_scripts): * [mifi/lossless-cut](https://github.com/mifi/lossless-cut): The swiss army knife of lossless video/audio editing * [rolling-scopes-school/tasks](https://github.com/rolling-scopes-school/tasks): * [rahuldkjain/github-profile-readme-generator](https://github.com/rahuldkjain/github-profile-readme-generator): 🚀 Generate GitHub profile README easily with the latest add-ons like visitors count, GitHub stats, etc using minimal UI. * [iamadamdev/bypass-paywalls-chrome](https://github.com/iamadamdev/bypass-paywalls-chrome): Bypass Paywalls web browser extension for Chrome and Firefox. * [ZerioDev/Music-bot](https://github.com/ZerioDev/Music-bot): A complete code to download for a music bot. Using a module (discord-player). * [pedroslopez/whatsapp-web.js](https://github.com/pedroslopez/whatsapp-web.js): A WhatsApp client library for NodeJS that connects through the WhatsApp Web browser app #### typescript * [pancakeswap/pancake-frontend](https://github.com/pancakeswap/pancake-frontend): 🥞 Pancake main features (farms, pools, IFO, lottery, profiles) * [wechaty/wechaty](https://github.com/wechaty/wechaty): Conversational RPA SDK for Chatbot Makers * [vuejs/vue-next](https://github.com/vuejs/vue-next): 🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web. * [swc-project/swc](https://github.com/swc-project/swc): swc is a super-fast compiler written in rust; producing widely-supported javascript from modern standards and typescript. * [solana-labs/wallet-adapter](https://github.com/solana-labs/wallet-adapter): Modular TypeScript wallet adapters and components for Solana applications. * [polkadot-js/extension](https://github.com/polkadot-js/extension): Simple browser extension for managing accounts in a browser and allowing the signing of extrinsics using these accounts. Also provides a simple interface for compliant extensions for dapps. * [pancakeswap/pancake-subgraph](https://github.com/pancakeswap/pancake-subgraph): 📊 Pancake subgraph (blocks, profile, prediction, NFT's, ...) * [ryo-ma/github-profile-trophy](https://github.com/ryo-ma/github-profile-trophy): 🏆 Add dynamically generated GitHub Stat Trophies on your readme * [openkraken/kraken](https://github.com/openkraken/kraken): A high-performance, web standards-compliant rendering engine based on Flutter. * [discordjs/voice](https://github.com/discordjs/voice): Implementation of the Discord Voice API for discord.js and other JS/TS libraries * [vitejs/vite](https://github.com/vitejs/vite): Next generation frontend tooling. It's fast! * [sparrow-js/sparrow](https://github.com/sparrow-js/sparrow): 🎉场景化低代码(LowCode)搭建工作台,实时输出源代码 * [ant-design/ant-design-mobile](https://github.com/ant-design/ant-design-mobile): A configurable Mobile UI * [microsoft/vscode](https://github.com/microsoft/vscode): Visual Studio Code * [netless-io/flat](https://github.com/netless-io/flat): Project flat is the Web, Windows and macOS client of Agora Flat open source classroom. * [react-hook-form/react-hook-form](https://github.com/react-hook-form/react-hook-form): 📋 React Hooks for forms validation (Web + React Native)
117.808333
317
0.780505
eng_Latn
0.332931
dc2ee71f618803fc19128fa3d9777fc11912c4bd
5,471
md
Markdown
docs/mac/platform/target-framework.md
MaximeEglem/xamarin-docs.fr-fr
d0c5bb07e4a70664480bc49e339f5469f5169538
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/mac/platform/target-framework.md
MaximeEglem/xamarin-docs.fr-fr
d0c5bb07e4a70664480bc49e339f5469f5169538
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/mac/platform/target-framework.md
MaximeEglem/xamarin-docs.fr-fr
d0c5bb07e4a70664480bc49e339f5469f5169538
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Framework cible pour Xamarin.Mac description: Cet article traite de l’infrastructure cible (bibliothèques de classes de Base) disponible pour Xamarin.Mac et les conséquences de leur utilisation dans votre projet Xamarin.Mac. ms.prod: xamarin ms.assetid: AF21BE16-3F92-4121-AB4C-D51AC863D92D ms.technology: xamarin-mac author: bradumbaugh ms.author: brumbaug ms.date: 11/10/2017 ms.openlocfilehash: 28d312ae10ce736a1720384fe76714910c3ff8f5 ms.sourcegitcommit: ea1dc12a3c2d7322f234997daacbfdb6ad542507 ms.translationtype: MT ms.contentlocale: fr-FR ms.lasthandoff: 06/05/2018 ms.locfileid: "34792500" --- # <a name="target-framework-for-xamarinmac"></a>Framework cible pour Xamarin.Mac _Cet article traite de l’infrastructure cible (bibliothèques de classes de Base) disponible pour Xamarin.Mac et les conséquences de leur utilisation dans votre projet Xamarin.Mac._ ![Cibler les options de l’infrastructure pour Xamarin.Mac](target-framework-images/select-target.png "Target framework des options pour Xamarin.Mac") ## <a name="background"></a>Présentation Chaque programme .NET ou une bibliothèque dépend des fonctionnalités fournies par la bibliothèque de classes de Base (BCL). Cette BCL inclut les assemblys qui fournissent les fonctionnalités courantes intégrées à tous les langages .NET tels que mscorlib, système, System.Net.Http et System.Xml. Au fil des années, vous avez développé plusieurs versions différentes de cette BCL, optimisées pour différents cas d’usage. La BCL « bureau » inclut un ensemble plus riche de bibliothèques qui peuvent être trop haute densité pour les autres cas d’utilisation, tandis que mobile se concentre sur la garantie de Qu'api est sécurisés pour la liaison, ce qui supprime le code non utilisé pour réduire l’encombrement de l’application. Une de ces différentes infrastructures de cible, les répercussions plus importantes est que tous les assemblys dans un programme donné *doit* cibler des assemblys BCL compatibles. Si cela n’était pas le cas, vous pouvez avoir deux assemblys liés avec différentes versions de la **System.dll** désaccord sur la signature d’un type donné. Une bibliothèque partagée peut soit cible [.NET Standard 2](https://blog.xamarin.com/share-code-net-standard-2-0/), qui est le sous-ensemble commun de l’infrastructure cible ou une infrastructure cible spécifique. Il existe trois options de cible de .NET Framework pour Xamarin.Mac, chacun avec un compromis et différents avantages : - **Moderne** (appelé Mobile dans la documentation plus ancienne) – un sous-ensemble très similaire pour les puissances Xamarin.iOS, un réglage précis pour les performances et la taille. Cette infrastructure cible est l’éditeur de liens sécurisé, ces projets peuvent avoir leur occupation finale considérablement réduite en supprimant le code non utilisé. - **Complète** (appelé XM 4.5 dans la documentation plus ancienne) – un sous-ensemble très similaire à la BCL « bureau », avec quelques suppressions petites. Que le Framework cible est presque identique à net45 (et versions ultérieures), il peut consommer facilement des nombreuses nugets qui ne fournissent pas soit netstandard2 ou de Xamarin.Mac spécifique. Toutefois, en raison de l’utilisation de System.Configuration, il est incompatible avec la liaison. - **Non pris en charge** (appelé système dans la documentation plus ancienne) – à la place d’un lien vers une BCL fournie par Xamarin.Mac, utilisez le mono système en cours. Cela fournit le jeu est saturé d’assemblys, y compris certains problèmes (System.Drawing par exemple). Cette option existe uniquement a « dernier recours » et il est fortement recommandé d’épuiser les autres options avant de l’utiliser. Comme son nom l’indique, l’utilisation non pris en charge par les canaux de prise en charge officielle. ## <a name="setting-the-target-framework"></a>Définir la version .NET framework cible Pour modifier le type de cible de .NET Framework pour un projet Xamarin.Mac, procédez comme suit : 1. Ouvrez le projet Xamarin.Mac dans Visual Studio pour Mac. 2. Dans l’**Explorateur de solutions**, double-cliquez sur le fichier projet pour ouvrir la boîte de dialogue **Options du projet**. 3. À partir de la **général** , sélectionnez le type de **Framework cible** qui répond aux besoins de votre application : [![À l’aide de la fenêtre des Options de projet pour choisir une infrastructure cible](target-framework-images/select-target-full.png "à l’aide de la fenêtre des Options de projet pour choisir une infrastructure cible")](target-framework-images/select-target-full-large.png#lightbox) 4. Cliquez sur le bouton **OK** pour enregistrer vos changements. Vous devez **Clean** , puis **reconstruire** votre projet Xamarin.Mac après le passage du type de cible de .NET Framework. ## <a name="summary"></a>Récapitulatif Cet article a couvert brièvement les différents types d’infrastructure cible (bibliothèques de classes de Base) disponible pour une application Xamarin.Mac et lors de chaque type de framework doit être utilisé. ## <a name="related-links"></a>Liens associés - [iOS et Mac partage de code](~/cross-platform/macios/index.md) - [API unifiée](~/cross-platform/macios/unified/index.md) - [Bibliothèques de classes portables](~/cross-platform/app-fundamentals/pcl.md) - [Assemblys](~/cross-platform/internals/available-assemblies.md) - [Mise à jour d’applications Mac existantes](~/cross-platform/macios/unified/updating-mac-apps.md)
84.169231
550
0.793091
fra_Latn
0.971806
dc2eff9b5c7a6b7d9b04121993b0e6199a58a7d4
3,500
md
Markdown
README.md
abhilater/java8-training
9c5b4c50745aaf6311b59490a5b206111cf949b2
[ "MIT" ]
null
null
null
README.md
abhilater/java8-training
9c5b4c50745aaf6311b59490a5b206111cf949b2
[ "MIT" ]
1
2022-01-21T23:49:07.000Z
2022-01-21T23:49:07.000Z
README.md
abhilater/java8-training
9c5b4c50745aaf6311b59490a5b206111cf949b2
[ "MIT" ]
null
null
null
# java8-training ## Design patterns using Lambda **Composition:** 1st fundamental operation of functional programming ### Lamdas * The JVM does not create a new object every time we create a Lambda * New object is created (expensive) everytime we create anonymous interface objects * Stream is an object on which one can define operations * Stream object does not hold data, instead it holds pipeline of stages of operations like map, filter, reduce etc * Pipeline of operations are performed on collection in one pass * It doesn't change the data, helps in parallel processing thread safety * Stream is a very light-weight object, can be recreated * Only once terminal operation i.e cannot be reused by another terminal * https://drive.google.com/drive/folders/1buPCHYHd2ksRLbaBWSQgk3jo60hFm4QP ### Chaining Lamdas * Adding a `Default method` on functional interfaces, provides a way to chain Lambdas * Do not forget to fail fast -> `Objects.requireNonNull` * `Factory methods` in functional interfaces mostly to create helper lambdas * `PlayWithConsumers` ### Combining and negating predicates * `PlayWithPredicates` ### Chaining and composing functions * Difference between chaining and composing functions * Composition is only possible for functions * Not for predicates or consumers * `PlayWithFunctions` ### Identity functions * Uses factory (static) methods in the FI * `PlayWithIdentity` ### Comparators * They can be chained, reversed (using factory methods) * Comparator only depends on the type of item it compares on * Needs a function to extract the key item * Using it can be easily build using a factor `comparing` * `PlayWithComparators` ### Creational Design patterns * Design Factory, Registry and Builder * A `Factory` is an object to create other objects * It can be modeled by a Supplier FI by adding `default` and `factory` methods * Abstract generic factories * We can make factory to return Singletons too instead of creating new instance * `Registry` is similar to a factory but takes in a key to identify which objects to create (switch case) * This needs to know all object's at compile time and is hence static * We can create a dynamic registry using Hash maps and `Builders` 1. Add elements to registry 2. Build the registry and seal it (Not allowed to add more elements) * `PlayWithSwitchRegistry` ### Visitor Pattern using Functions and Composition * A class hierarchy or object structure in which elements can be visited * Without any code change needed in class structure * All elements need to be ready with accept(visitor) method * With lambdas you can define operations on classes WITHOUT ADDING THEM TO THE CLASS * Lambdas can be either passed as params to methods or stored in `Registry` * So if we have `Registry` of classes and lambdas for classes you can define operations on classes WITHOUT ADDING... ### Validator pattern * Validate a set of fields, report single mother exception wrapping and supressing all the other exceptions with messages * `PlayWithValidator` ### Conclusion * How to model a problem with a function * Top down approach * Write the client pattern in the way you want to * Try to understand the underlying function * They can be created using functional interface * Factory methods to provide helper implementations to create functions * default methods to chain and compose the functions * Supplier is the right lambda if you want to handle exceptions
42.682927
85
0.770857
eng_Latn
0.997583
dc2f13fb1c9653755f59cb1fc22ca9560b59e0d2
327
md
Markdown
V-dispositions-finales.md
senegalouvert/Loi-Startup-au-Senegal
c8c0f206bfaad61512a0604ce29f26582b546580
[ "MIT" ]
1
2020-01-24T16:57:05.000Z
2020-01-24T16:57:05.000Z
V-dispositions-finales.md
senegalouvert/Loi-Startup-au-Senegal
c8c0f206bfaad61512a0604ce29f26582b546580
[ "MIT" ]
null
null
null
V-dispositions-finales.md
senegalouvert/Loi-Startup-au-Senegal
c8c0f206bfaad61512a0604ce29f26582b546580
[ "MIT" ]
1
2021-10-02T14:59:11.000Z
2021-10-02T14:59:11.000Z
### Chapitre V. Dispositions finales **Article 18.**- La présente loi est applicable à toute entreprise déjà constituée sur le territoire national et ayant vocation à bénéficier du statut de startup. **Article 19.**- Les modalités d’application de la présente loi sont fixées par décret. [Retour](/Loi-Startup-au-Senegal/)
40.875
162
0.767584
fra_Latn
0.978291
dc2f25f5585ecc9fd656dd9a00a6746bc672d384
378
md
Markdown
README.md
szumszym/upside-down
b1acc502172ce269003f6724c6726d62430ab6c3
[ "MIT" ]
null
null
null
README.md
szumszym/upside-down
b1acc502172ce269003f6724c6726d62430ab6c3
[ "MIT" ]
null
null
null
README.md
szumszym/upside-down
b1acc502172ce269003f6724c6726d62430ab6c3
[ "MIT" ]
null
null
null
# upside-down It flips a text uʍop ǝpᴉsdn. ## Installation ``` npm install @szum.szym/upside-down ``` ## Usage ``` var upsideDown = require('@szum.szym/upside-down'); upsideDown('https://github.com/szumszym/upside-down'); // uʍopǝpᴉsdn\ɯʎzsɯnzs\ɯoɔ˙qnɥʇᴉɓ\\:sdʇʇɥ upsideDown('uʍopǝpᴉsdn\\ɯʎzsɯnzs\\ɯoɔ˙qnɥʇᴉɓ\\\\:sdʇʇɥ'); // https://github.com/szumszym/upside-down ```
21
102
0.695767
hun_Latn
0.253276
dc2f431ecf6d80f89fc4a18aae75f4053bfd7bf3
17
md
Markdown
README.md
AyushGupta0202/Guess-to-live
651d6f7a01cf315c15058713d395ef8a091ecf04
[ "Apache-2.0" ]
null
null
null
README.md
AyushGupta0202/Guess-to-live
651d6f7a01cf315c15058713d395ef8a091ecf04
[ "Apache-2.0" ]
null
null
null
README.md
AyushGupta0202/Guess-to-live
651d6f7a01cf315c15058713d395ef8a091ecf04
[ "Apache-2.0" ]
null
null
null
# Guess To Live!
8.5
16
0.647059
deu_Latn
0.162197
dc2f72399dc76962ef1493afc23f9c6401a61a71
497
md
Markdown
DailyProgrammer/1. Difficult (Python)/Readme.md
gunstarpl/Solved-Programming-Challenges
9578f05acb97db8715d11a00ba3804b0364a3f14
[ "MIT", "Unlicense" ]
null
null
null
DailyProgrammer/1. Difficult (Python)/Readme.md
gunstarpl/Solved-Programming-Challenges
9578f05acb97db8715d11a00ba3804b0364a3f14
[ "MIT", "Unlicense" ]
null
null
null
DailyProgrammer/1. Difficult (Python)/Readme.md
gunstarpl/Solved-Programming-Challenges
9578f05acb97db8715d11a00ba3804b0364a3f14
[ "MIT", "Unlicense" ]
null
null
null
DailyProgrammer - Difficult 1 ----------------------------- ### Challenge > We all know the classic "guessing game" with higher or lower prompts. Lets do a role reversal; You create a program that will guess numbers between 1-100, and respond appropriately based on whether users say that the number is too high or too low. Try to make a program that can guess your number based on user input and great code! Link: https://www.reddit.com/r/dailyprogrammer/comments/pii6j/difficult_challenge_1/
55.222222
334
0.742455
eng_Latn
0.999069
dc3200c386e1e2903d31008561ffd4086c6f89f1
54
md
Markdown
README.md
sicabi/dudas
515e6fbe63083ad7f6a48058c562a57de3da188c
[ "MIT" ]
1
2021-07-02T19:12:12.000Z
2021-07-02T19:12:12.000Z
README.md
sicabi/dudas
515e6fbe63083ad7f6a48058c562a57de3da188c
[ "MIT" ]
2
2021-04-07T14:53:49.000Z
2021-04-07T20:06:05.000Z
README.md
sicabi/dudas
515e6fbe63083ad7f6a48058c562a57de3da188c
[ "MIT" ]
1
2021-04-07T06:28:06.000Z
2021-04-07T06:28:06.000Z
# dudas un espacio para compartir preguntas que tengo
18
45
0.814815
spa_Latn
0.996015
dc3223958386e1a0718e7fa207b4982c05145f7d
3,349
md
Markdown
_posts/2021-08-05-August5thAmazonMock.md
AsheBlade/ShadowArchive
b64d31987cacb75731819928d6683057b2ca2d22
[ "MIT" ]
null
null
null
_posts/2021-08-05-August5thAmazonMock.md
AsheBlade/ShadowArchive
b64d31987cacb75731819928d6683057b2ca2d22
[ "MIT" ]
31
2021-06-15T07:26:34.000Z
2022-01-15T02:58:24.000Z
_posts/2021-08-05-August5thAmazonMock.md
AsheBlade/ShadowArchive
b64d31987cacb75731819928d6683057b2ca2d22
[ "MIT" ]
null
null
null
--- layout: post title: August 5th Amazon Mock Interview date: 2021-08-05 author: Shadow Walker tags: [Interview] --- with jinhui , about LinkedList. 基本还可以, 漏掉了结尾进位的edge case. 不过老师说没什么问题. ```java Node { int value Node next public Node(int value){ this.value = value; } } example: 728, 8 -> 2 -> 7 123, 3 -> 2 -> 1 result 1 -> 5 -> 8 728, 7 -> 2 -> 8 123, 1 -> 2 -> 3 8 -> 5 -> 1 7 -> 2 -> 8 1 -> 2 -> 0 0<= num < 10. 1 -> 1 -> 1 1 -> 0 -> 0 8 7 no negative. will there be any leading zeros. NO. class Solution{ public Node addTwonUmbers(Node node1, Node node2){ Node dummyHead = new Node(-1); Node prev = dummyHead; int plusOne = 0; Stack stack1 = getStack(node1); 8 is top. 8 -> 2 -> 7 Stack stack2 = getStack(node2); 3 -> 2 -> 1 Stack result = new Stack<>(); while(!stack1.isEmpty() || !stack1.isEmpty()){ int value1 = !stack1.isEmpty() ? stack1.pop():0; // 8, 2, 7 int value2 = !stack1.isEmpty() ? stack2.pop():0; // 3, 2 int sum = value1 + value2 + plusOne; // 11, 5, 8 plusOne = setPlusOne(sum); sum %= 10; result.add(sum); // 1,5, 8 8is top. } if(plusOne == 1){ result.add(1); } while(!result.isEmpty()){ prev.next = new Node(stack.pop()); prev = prev.next; } return dummyHead.next; ) private Stack<Integer> getStack(Node head){ Stack<Integer> stack = new Stack<>(); while(head!=null){ stack.add(head.value); head = head.next; } return stack; } public Node addTwonUmbers(Node node1, Node node2){ Node dummyHead = new Node(-1); Node prev = dummyHead; int plusOne = 0; while(node1!=null || node2!=null){ int value1 = node1!=null ? node1.value:0; int value2 = node2!=null ? node2.value:0; int sum = value1 + value2 + plusOne; // 11, 5, 8 plusOne = setPlusOne(sum); sum %= 10; prev.next = new Node(sum); // prev.next = 1, 5, 8 prev = prev.next; if(node1!=null) node1 = node1.next; if(node2!=null) node2 = node2.next; } return dummyHead.next; ) public Node addTwonUmbers(Node node1, Node node2){ Node dummyHead = new Node(-1); Node prev = dummyHead; int plusOne = 0; while(node1!=null && node2!=null){ int sum = node1.value + node2.value + plusOne; // 11, 5, 8 plusOne = setPlusOne(sum); sum %= 10; prev.next = new Node(sum); // prev.next = 1, 5, 8 prev = prev.next; node1 = node1.next; node2 = node2.next; } while(node1!=null){ int sum = node1.value + plusOne; if(sum >= 10){ plusOne = 1; sum = sum - 10; }else{ plusOne = 0; } prev.next = new Node(sum); prev = prev.next; node1 = node1.next; } while(node2!=null){ int sum = node2.value + plusOne; if(sum >= 10){ plusOne = 1; sum = sum - 10; }else{ plusOne = 0; } prev.next = new Node(sum); prev = prev.next; node2 = node2.next; } return dummyHead.next; ) private int setPlusOne(int sum){ if(sum >= 10){ sum = sum - 10; return 1; }else{ return 0; } } } ```
18.814607
68
0.522544
kor_Hang
0.288866
dc33884e833e87421e0128c7c063286edc41b37b
2,377
md
Markdown
README.md
a-mountain/realworld-spring-webflux
67a00a88208aa7d34e4c2cccbb6f74b464d10f25
[ "MIT" ]
3
2021-09-02T00:52:35.000Z
2022-01-16T23:37:31.000Z
README.md
a-mountain/realworld-spring-webflux
67a00a88208aa7d34e4c2cccbb6f74b464d10f25
[ "MIT" ]
null
null
null
README.md
a-mountain/realworld-spring-webflux
67a00a88208aa7d34e4c2cccbb6f74b464d10f25
[ "MIT" ]
1
2022-02-23T15:11:39.000Z
2022-02-23T15:11:39.000Z
# ![RealWorld Example App](spring-logo.png) > ### Spring boot + WebFlux codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API. This codebase was created to demonstrate a fully fledged fullstack application built with **Spring boot + WebFlux** including CRUD operations, authentication, routing, pagination, and more. We've gone to great lengths to adhere to the **Spring boot + WebFlux** community styleguides & best practices. For more information on how to this works with other frontends/backends, head over to the [RealWorld](https://github.com/gothinkster/realworld) repo. # How it works It uses Spring Reactive Stack: WebFlux + Spring Data Reactive MongoDB. It provides ability to handle concurrency with a small number of threads and scale with fewer hardware resources. - [WebFlux](https://docs.spring.io/spring-framework/docs/current/reference/html/web-reactive.html) - [MongoDB Reactive](https://docs.spring.io/spring-data/mongodb/docs/current/reference/html/#mongo.reactive) ## Database It uses embedded MongoDB database for demonstration purposes. ## Basic approach The quality & architecture of this Conduit implementation reflect something similar to an early stage startup's MVP: functionally complete & stable, but not unnecessarily over-engineered. ## Project structure ``` - api - web layer which contains enpoints and web specific dto. - article - contains all features connected with articles. - exceptions - exceptions and exception handlers. - lib - helpers, system code - security - security settings. - user - contains all features connected with users. - validation - custom validators and validation settings. ``` ## Tests - All endpoints covered with positive tests. - Unit tests cover dangerous places (if statements, exceptions throwing...) # Getting started You need Java 16 installed. ``` ./gradlew bootRun ``` # For Kotlin Developers It's [Kotlin Version](https://github.com/a-mountain/realworld-spring-webflux-kt) of RealWorld Implementation with same structure, technologies and design approach. - (+) Comparing to Java Kotlin Coroutines incredibly simplify and reduce the amount of code. (1404 vs 1009 lines) - (-) Kotlin is not well-supported by Spring as Java that entails some pitfalls and inconvenience.
42.446429
192
0.777451
eng_Latn
0.975241
dc35215a7cfea51fea552c7d1679f6ef7df337e1
13,740
md
Markdown
memdocs/configmgr/core/servers/deploy/configure/troubleshoot-microsoft-connected-cache.md
Mr-Tbone/memdocs.sv-se
e369d5c63d1706200c13c9606c9d7d4f536f0395
[ "CC-BY-4.0", "MIT" ]
null
null
null
memdocs/configmgr/core/servers/deploy/configure/troubleshoot-microsoft-connected-cache.md
Mr-Tbone/memdocs.sv-se
e369d5c63d1706200c13c9606c9d7d4f536f0395
[ "CC-BY-4.0", "MIT" ]
null
null
null
memdocs/configmgr/core/servers/deploy/configure/troubleshoot-microsoft-connected-cache.md
Mr-Tbone/memdocs.sv-se
e369d5c63d1706200c13c9606c9d7d4f536f0395
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: Felsöka ansluten cache titleSuffix: Configuration Manager description: Teknisk information för Microsoft Connected cache för att hjälpa dig att felsöka problem. ms.date: 11/29/2019 ms.prod: configuration-manager ms.technology: configmgr-core ms.topic: conceptual ms.assetid: 121e0341-4f51-4d54-a357-732c26caf7c5 author: aczechowski ms.author: aaroncz manager: dougeby ms.openlocfilehash: b24ed0aa963373fc0933a2c34b7b036d77cc9a2b ms.sourcegitcommit: 99084d70c032c4db109328a4ca100cd3f5759433 ms.translationtype: MT ms.contentlocale: sv-SE ms.lasthandoff: 08/20/2020 ms.locfileid: "88699219" --- # <a name="troubleshoot-microsoft-connected-cache-in-configuration-manager"></a>Felsök Microsoft Connected cache i Configuration Manager Den här artikeln innehåller teknisk information om Microsoft Connected cache i Configuration Manager. Använd den för att felsöka problem som du kan ha i din miljö. Mer information om hur det fungerar och hur du använder det finns i [Microsoft Connected cache i Configuration Manager](../../../plan-design/hierarchy/microsoft-connected-cache.md). > [!NOTE] > Från och med version 1910 heter funktionen nu **Microsoft Connected cache**. Det kallades tidigare för leverans optimering i nätverket. ## <a name="verify"></a>Verifiera När du installerar cache-servern för leverans optimering korrekt och konfigurerar klienterna på rätt sätt, hämtas de från den cache-server som är installerad på distributions platsen i stället för Internet. Verifiera detta beteende [på en klient](#bkmk_verify-client) eller [på servern](#bkmk_verify-server). ### <a name="verify-on-a-client"></a><a name="bkmk_verify-client"></a> Verifiera på en klient 1. På klienten som kör Windows 10, version 1809 eller senare, laddar du ned moln hanterat innehåll. Mer information om vilka typer av innehåll som anslöt till cacheminnet finns i [Verifiera ansluten cache](../../../plan-design/hierarchy/microsoft-connected-cache.md#verify). 2. Öppna PowerShell och kör följande kommando: `Get-DeliveryOptimizationStatus` Exempel: ```PowerShell PS C:\> Get-DeliveryOptimizationStatus FileId : ec523d49c4f7c3c4444f0d9b952286ce40fdcee4 FileSize : 549064 TotalBytesDownloaded : 549064 PercentPeerCaching : 0 BytesFromPeers : 0 BytesFromHttp : 0 Status : Caching Priority : Background BytesFromCacheServer : 549064 BytesFromLanPeers : 0 BytesFromGroupPeers : 0 BytesFromInternetPeers : 0 BytesToLanPeers : 0 BytesToGroupPeers : 0 BytesToInternetPeers : 0 DownloadDuration : 00:00:00.0780000 HttpConnectionCount : 2 LanConnectionCount : 0 GroupConnectionCount : 0 InternetConnectionCount : 0 DownloadMode : 99 SourceURL : http://au.download.windowsupdate.com/c/msdownload/update/software/defu/2019/09/am_delta_p atch_1.301.664.0_ec523d49c4f7c3c4444f0d9b952286ce40fdcee4.exe NumPeers : 0 PredefinedCallerApplication : WU Client Download ExpireOn : 9/6/2019 8:36:19 AM IsPinned : False ``` Observera att `BytesFromCacheServer` attributet inte är noll. Om klienten inte har kon figurer ATS korrekt, eller om cache-servern inte är korrekt installerad, kommer leverans optimerings klienten tillbaka till den ursprungliga moln källan. Sedan kommer BytesFromCacheServer-attributet att vara noll. ### <a name="verify-on-the-server"></a><a name="bkmk_verify-server"></a> Verifiera på servern Kontrol lera först att register egenskaperna är korrekt konfigurerade: `HKLM\SOFTWARE\Microsoft\Delivery Optimization In-Network Cache` . Till exempel är enhetens cache-plats `PrimaryDrivesInput\DOINC-E77D08D0-5FEA-4315-8C95-10D359D59294` , där `PrimaryDrivesInput` kan vara flera enheter, till exempel `C,D,E` . Använd sedan följande metod för att simulera en begäran om klient hämtning till servern med de obligatoriska rubrikerna. 1. Öppna ett 64-bitars PowerShell-fönster som administratör. 2. Kör följande kommando och ersätt namnet eller IP-adressen för servern för `<DoincServer>` : ```PowerShell Invoke-WebRequest -URI "http://<DoincServer>/mscomtest/wuidt.gif" -Headers @{"Host"="b1.download.windowsupdate.com"} ``` Utdata ser ut ungefär som i följande exempel: ```PowerShell PS C:\WINDOWS\system32> Invoke-WebRequest -URI "http://SERVER01.CONTOSO.COM/mscomtest/wuidt.gif" -Headers @{"Host"="b1.download.windowsupdate.com"} StatusCode : 200 StatusDescription : OK Content : {71, 73, 70, 56...} RawContent : HTTP/1.1 200 OK X-HW: 1567797125.dop019.se2.t,1567797125.cds058.se2.s,1567797125.dop114.at2.r,1567797125.cds079.at2 .p,1567797125.cds058.se2.p X-CCC: cdP+dRBgUCoZO1mezA9zhg2VwQ7P1JWTh9k+GhfQmu8=_SLwv... Headers : {[X-HW, 1567797125.dop019.se2.t,1567797125.cds058.se2.s,1567797125.dop114.at2.r,1567797125.cds079.a t2.p,1567797125.cds058.se2.p], [X-CCC, cdP+dRBgUCoZO1mezA9zhg2VwQ7P1JWTh9k+GhfQmu8=_SLwvtSBQdT3uPQ5ikBe1ABMbdYIIncem+h5dtcLI6GY=], [X-CID, 100], [Accept-Ranges, bytes]...} RawContentLength : 969710 ``` Följande attribut indikerar att det är klart: - `StatusCode : 200` - `StatusDescription : OK` ## <a name="log-files"></a>Loggfiler - Installations logg för ARR: `%temp%\arr_setup.log` - Server installations logg för cachelagring: `SMS_DP$\Ms.Dsp.Do.Inc.Setup\DoincSetup.log` på distributions platsen och `DistMgr.log` på plats servern - Drift loggar i IIS: som standard `%SystemDrive%\inetpub\logs\LogFiles` - Kör cache-serverns operativa logg: `C:\Doinc\Product\Install\Logs` > [!TIP] > I den här loggen kan du använda den här loggen för att identifiera anslutnings problem med Microsoft-molnet. ## <a name="setup-error-codes"></a>Installations fel koder När Configuration Manager installerar den anslutna cache-komponenten på distributions platsen, visas de möjliga fel koder som kan uppstå i följande tabell: | Felkod | Felbeskrivning | |------------|-------------------| | 0x00000000 | Klart | | 0x00000BC2 | Lyckades, omstart krävs | | 0x00000643 | Allmänt installations problem | | 0x00D00001 | Det går bara att köra installations programmet för anslutna cacheminnen om Internet Information Services (IIS) har installerats | | 0x00D00002 | Det går bara att köra installations programmet för anslutna cacheminnen om en "standard webbplats" finns på servern | | 0x00D00003 | Du kan inte installera den anslutna cachen om du redan har installerat programbegärans dirigering (ARR) | | 0x00D00004 | Det går bara att köra installations programmet för anslutna cache om ARR (Application Request routing) har installerats av Install.ps1-skriptet | | 0x00D00005 | Installationen av den anslutna cachen kräver en PowerShell-session som körs som administratör | | 0x00D00006 | Det går bara att köra installations programmet för anslutna cacheminnen från en 64-bitars PowerShell-miljö | | 0x00D00007 | Det går bara att köra installations programmet för anslutna cacheminnen på en Windows Server | | 0x00D00008 | Fel: antalet angivna cache-enheter måste matcha antalet angivna procent andelar för cache-enheten | | 0x00D00009 | Failure: ett giltigt ID för cache-nod måste anges | | 0x00D0000A | Failure: en giltig cache-enhet måste anges | | 0x00D0000B | Det gick inte att ange en giltig storlek procent för cache-enhet måste anges | | 0x00D0000C | Ett problem: en giltig cachestorlek i procent eller cache-hårddisk storlek i GB måste anges | | 0x00D0000D | Det gick inte att ange en giltig storlek för cache-enheten och cache-enhetens storlek i GB kan inte båda anges | | 0x00D0000E | Fel: antalet angivna cache-enheter måste matcha antalet cache-enheter i GB som anges | | 0x00D0000F | Problem: det gick inte att säkerhetskopiera applicationhost.config filen från $AppHostConfig till $AppHostConfigDestinationName | | 0x00D00010 | Problem: det gick inte att säkerhetskopiera standard webbplatsen web.config filen från $WebsiteConfigFilePath till $WebConfigDestinationName | | 0x00D00011 | Fel: ett undantag inträffade i SetupARRWebFarm.ps1 | | 0x00D00012 | Fel: ett undantag inträffade i SetupARRWebFarmRewriteRules.ps1 | | 0x00D00013 | Fel: ett undantag inträffade i SetupARRWebFarmProperties.ps1 | | 0x00D00014 | Fel: ett undantag inträffade i SetupAllowableServerVariables.ps1 | | 0x00D00015 | Fel: ett undantag inträffade i SetupFirewallRules.ps1 | | 0x00D00016 | Fel: ett undantag inträffade i SetupAppPoolProperties.ps1 | | 0x00D00017 | Fel: ett undantag inträffade i SetupARROutboundRules.ps1 | | 0x00D00018 | Fel: ett undantag inträffade i SetupARRDiskCache.ps1 | | 0x00D00019 | Fel: ett undantag inträffade i SetupARRProperties.ps1 | | 0x00D0001A | Fel: ett undantag inträffade i SetupARRHealthProbes.ps1 | | 0x00D0001B | Fel: ett undantag inträffade i VerifyIISSItesStarted.ps1 | | 0x00D0001C | Fel: ett undantag inträffade i SetDrivesToHealthy.ps1 | | 0x00D0001D | Fel: ett undantag inträffade i VerifyCacheNodeSetup.ps1 | | 0x00D0001E | Du kan inte installera den anslutna cachen om standard webbplatsen inte finns på port 80 | | 0x00D0001F | Problem: allokeringen av cache-enheten i procent får inte överstiga 100 | | 0x00D00020 | Failure: allokeringen av cache-enheten i GB får inte överskrida enhetens lediga utrymme | | 0x00D00021 | Failure: allokeringen av cache-enheten i procent måste vara större än 0 | | 0x00D00022 | Failure: allokeringen av cache-enheten i GB måste vara större än 0 | | 0x00D00023 | Fel: ett undantag inträffade i RegisterScheduledTask_CacheNodeKeepAlive | | 0x00D00024 | Fel: ett undantag inträffade i RegisterScheduledTask_Maintenance | | 0x00D00025 | Fel: ett undantag uppstod vid inställning av reglerna för omskrivning för HTTPS-servergrupp: $FarmName | | 0x00D00026 | Fel: ett undantag uppstod vid inställning av omskrivnings reglerna för HTTP-servergruppen: $FarmName | | 0x00D00027 | Du kan inte installera den anslutna cachen eftersom det inte gick att installera den beroende program varan för programbegäran (ARR). Se logg filen som finns på% Temp% \ arr_setup. log | ## <a name="iis-configurations"></a>IIS-konfigurationer Installationen av gör cache-servern gör flera ändringar i IIS-konfigurationen på distributions platsen. ### <a name="application-request-routing"></a>Routning av programbegäran Kör cache-servern installerar och konfigurerar IIS [-programbegäran routning (arr)](https://www.iis.net/downloads/microsoft/application-request-routing). För att undvika potentiella konflikter kan distributions platsen inte redan ha den här komponenten installerad. ### <a name="allowed-server-variables"></a>Tillåtna servervariabler När du har installerat kör cache-servern har standard webbplatsen följande *lokala* servervariabler: - HTTP_HOST - QUERY_STRING - X-KOPIA - X-CID - X-DOINC-UTGÅENDE ### <a name="rewrite-rules"></a>Skriv om regler Den gör cache-servern lägger till följande omskrivnings regler: #### <a name="inbound-rewrite-rules"></a>Regler för inkommande omskrivning - `Doinc_ForwardToFarm_shswda01.download.manage-selfhost.microsoft.com_E77D08D0-5FEA-4315-8C95-10D359D59294` - `Doinc_ForwardToFarm_swdc01.manage.microsoft.com_E77D08D0-5FEA-4315-8C95-10D359D59294` - `Doinc_ForwardToFarm_swdc02.manage.microsoft.com_E77D08D0-5FEA-4315-8C95-10D359D59294` - `Doinc_ForwardToFarm_dl.delivery.mp.microsoft.com_E77D08D0-5FEA-4315-8C95-10D359D59294` - `Doinc_ForwardToFarm_officecdn.microsoft.com_E77D08D0-5FEA-4315-8C95-10D359D59294` - `Doinc_ForwardToFarm_b1.download.windowsupdate.com_E77D08D0-5FEA-4315-8C95-10D359D59294` - `Doinc_ForwardToFarm_download.windowsupdate.com_E77D08D0-5FEA-4315-8C95-10D359D59294` - `Doinc_ForwardToFarm_officecdn.microsoft.com.edgesuite.net_E77D08D0-5FEA-4315-8C95-10D359D59294` - `Doinc_ForwardToFarm_au.b1.download.windowsupdate.com_E77D08D0-5FEA-4315-8C95-10D359D59294` - `Doinc_ForwardToFarm_assets1.xboxlive.com_E77D08D0-5FEA-4315-8C95-10D359D59294` - `Doinc_ForwardToFarm_au.download.windowsupdate.com_E77D08D0-5FEA-4315-8C95-10D359D59294` - `Doinc_ForwardToFarm_emdl.ws.microsoft.com_E77D08D0-5FEA-4315-8C95-10D359D59294` - `Doinc_ForwardToFarm_tlu.dl.delivery.mp.microsoft.com_E77D08D0-5FEA-4315-8C95-10D359D59294` - `Doinc_ForwardToFarm_assets2.xboxlive.com_E77D08D0-5FEA-4315-8C95-10D359D59294` #### <a name="outbound-rewrite-rules"></a>Regler för utgående omskrivning - `Doinc_Outbound_SetHeader_X_CID_E77D08D0-5FEA-4315-8C95-10D359D59294` - `Doinc_Outbound_SetHeader_X_CCC_E77D08D0-5FEA-4315-8C95-10D359D59294` ## <a name="manage-server-resources"></a>Hantera Server resurser Disk utrymme som krävs för varje server-cache kan variera beroende på organisationens uppdaterings krav. 100 GB ska vara tillräckligt med utrymme för att cachelagra följande innehåll: - En funktions uppdatering - Två till tre månaders kvalitet och Microsoft 365 uppdateringar av appar - Microsoft Intune appar och appar för Windows-Inkorgen Server-cachen ska inte förbruka mycket system minne eller processor tid. När du har installerat kör cache-servern kan du analysera loggfilerna för IIS och ARR om du upptäcker betydande process-eller minnes resursförbrukning. Om IIS-och ARR-loggfilerna tar upp för mycket utrymme på servern finns det flera metoder som du kan använda för att hantera loggfilerna. Mer information finns i [Hantera IIS-logg File Storage](/iis/manage/provisioning-and-managing-iis/managing-iis-log-file-storage#overview). ## <a name="see-also"></a>Se även [Microsoft Connected cache i Configuration Manager](../../../plan-design/hierarchy/microsoft-connected-cache.md)
58.468085
345
0.771325
swe_Latn
0.930652
dc35dd2aa6bd0cc41784fe664c0adabeb9be1c3e
27,852
md
Markdown
_BACKUP/z_HTML-VERSIONS/version4/bgoonz42.gitbook.io/datastructures-in-pytho/abstract-data-structures/untitled-1/tree/red_black-tree.md
bgoonz/python-gitbook
d3b1321a42064e3cf46d1ac16ec1d7c67e4ae04f
[ "MIT" ]
2
2021-10-01T22:14:38.000Z
2021-11-29T00:32:52.000Z
_BACKUP/z_HTML-VERSIONS/version4/bgoonz42.gitbook.io/datastructures-in-pytho/abstract-data-structures/untitled-1/tree/red_black-tree.md
bgoonz/python-gitbook
d3b1321a42064e3cf46d1ac16ec1d7c67e4ae04f
[ "MIT" ]
14
2021-09-04T13:28:28.000Z
2021-09-22T04:06:35.000Z
_BACKUP/z_HTML-VERSIONS/version4/bgoonz42.gitbook.io/datastructures-in-pytho/abstract-data-structures/untitled-1/tree/red_black-tree.md
bgoonz/python-gitbook
d3b1321a42064e3cf46d1ac16ec1d7c67e4ae04f
[ "MIT" ]
1
2021-11-27T20:28:11.000Z
2021-11-27T20:28:11.000Z
<a href="https://bgoonz42.gitbook.io/datastructures-in-pytho/" class="link-a079aa82--primary-53a25e66--logoLink-10d08504"></a> <img src="https://gblobscdn.gitbook.com/spaces%2F-Mij72ebV4OjqJvBacMy%2Favatar-rectangle-1631155247747.png?alt=media" class="image-67b14f24--logo-35ac2404--small-5fbe8ad7" /> <a href="https://bgoonz42.gitbook.io/datastructures-in-pytho/" class="link-a079aa82--primary-53a25e66--logoLink-10d08504"></a> <img src="https://gblobscdn.gitbook.com/spaces%2F-Mij72ebV4OjqJvBacMy%2Favatar-rectangle-1631155247747.png?alt=media" class="image-67b14f24--logo-35ac2404--medium-5fbe8af6" /> <a href="https://bgoonz-blog.netlify.app/#gsc.tab=0" class="button-36063075--medium-6e2a217a--button-f76f0854--linkButton-67c61496--links-282dde1f"><span class="text-4505230f--UIH400-4e41e82a--textContentFamily-49a318e1--text-8ee2c8b2"><span class="text-4505230f--UIH400-4e41e82a--textContentFamily-49a318e1">My Blog</span></span></a> <a href="https://www.notion.so/webdevhub42/Python-Data-Structures-Unit-1da9a5d55db844f4b62aff6fd2b4d1ce" class="button-36063075--medium-6e2a217a--button-f76f0854--linkButton-67c61496--links-282dde1f"><span class="text-4505230f--UIH400-4e41e82a--textContentFamily-49a318e1--text-8ee2c8b2"><span class="text-4505230f--UIH400-4e41e82a--textContentFamily-49a318e1">Notion Notes</span></span></a> <a href="https://bgoonz-branch-the-algos.vercel.app/" class="button-36063075--medium-6e2a217a--button-f76f0854--linkButton-67c61496--links-282dde1f"><span class="text-4505230f--UIH400-4e41e82a--textContentFamily-49a318e1--text-8ee2c8b2"><span class="text-4505230f--UIH400-4e41e82a--textContentFamily-49a318e1">The Algorithms</span></span></a> <a href="https://thealgorithms.netlify.app/#" class="button-36063075--medium-6e2a217a--button-f76f0854--linkButton-67c61496--links-282dde1f"><span class="text-4505230f--UIH400-4e41e82a--textContentFamily-49a318e1--text-8ee2c8b2"><span class="text-4505230f--UIH400-4e41e82a--textContentFamily-49a318e1">Python Module Website</span></span></a> <a href="https://bgoonz42.gitbook.io/datastructures-in-pytho/" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Home</span></a> <a href="../../../index.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Downloads &amp; Misc-Assets</span></a> <a href="../../../readme-1.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">README</span></a> <a href="../../../navigation.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Navigation</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f"><span class="text-4505230f--InfoH200-3a8a7a86--textContentFamily-49a318e1">Cirriculumn</span></span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Outline</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">wk17</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">wk18</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">wk19</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">wk20</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f"><span class="text-4505230f--InfoH200-3a8a7a86--textContentFamily-49a318e1">Abstract Data Structures</span></span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Abstract Data Structures:</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Data Structures Overview</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Array</span> <a href="../../../practice/untitled/binary-search.html" class="navButton-94f2579c--pageItemWithChildrenNested-2c5d8183--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Binary Search</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Exotic</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Graphs</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Hash Table</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Heap</span> <a href="../string.html" class="navButton-94f2579c--pageItemWithChildrenNested-2c5d8183--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">String</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Map</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Queue</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Tree</span> <a href="in-order-traversal.html" class="navButton-94f2579c--pageItemWithChildrenNested-2c5d8183--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">In Order Traversal</span></a> <a href="tree-equal.html" class="navButton-94f2579c--pageItemWithChildrenNested-2c5d8183--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Tree Equal ?</span></a> <a href="ternary-search-trees.html" class="navButton-94f2579c--pageItemWithChildrenNested-2c5d8183--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Ternary-search-trees</span></a> <a href="red_black-tree.html" class="navButton-94f2579c--pageItemWithChildrenNested-2c5d8183--navButtonClickable-161b88ca--navButtonOpened-6a88552e"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Red_Black Tree</span></a> <a href="tree-mirror.html" class="navButton-94f2579c--pageItemWithChildrenNested-2c5d8183--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Tree Mirror:</span></a> <a href="tree-traversal.html" class="navButton-94f2579c--pageItemWithChildrenNested-2c5d8183--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Tree Traversal</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Binary Search Tree</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Binary Tree</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Recursion</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Linked List</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Set</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Sorting</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Stack</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Searching</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f"><span class="text-4505230f--InfoH200-3a8a7a86--textContentFamily-49a318e1">Utilities</span></span> <a href="../../../utilities/code-lab-notebooks.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Code lab Notebooks</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Repl.IT</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Utilites</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f"><span class="text-4505230f--InfoH200-3a8a7a86--textContentFamily-49a318e1">practice</span></span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">GCA Sprint Prep:</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Supplemental Practice:</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f"><span class="text-4505230f--InfoH200-3a8a7a86--textContentFamily-49a318e1">Resources</span></span> <a href="../../../resources/python-cheat-sheet.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Python Cheat Sheet</span></a> <a href="../../../resources/intro-2-python.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Intro 2 Python</span></a> <a href="../../../resources/untitled-2.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Inheritance</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Strings</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Dictionaries</span> <a href="../../../resources/python-vs-javascript.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Python VS JavaScript</span></a> <a href="../../../resources/untitled-1.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Misc. Resources</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Things To Internalize:</span> <a href="../../../resources/intro-to-python-w-jupyter-notebooks.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Intro To Python w Jupyter Notebooks</span></a> <a href="../../../resources/calculating-big-o.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Calculating Big O</span></a> <a href="../../../resources/awesome-python.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Awesome Python</span></a> <a href="../../../resources/youtube.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Youtube</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Useful Links</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f"><span class="text-4505230f--InfoH200-3a8a7a86--textContentFamily-49a318e1">quick-reference</span></span> <a href="../../../quick-reference/my-medium-articles.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">My Medium Articles</span></a> <a href="../../../quick-reference/free-python-books.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Free Python Books</span></a> <a href="../../../quick-reference/why-python.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">WHY Python?</span></a> <a href="../../../quick-reference/python-snippets.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Python Snippets</span></a> <a href="../../../quick-reference/python3-regex.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Python3 Regex</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Python Module Index:</span> <a href="../../../quick-reference/creating-python-modules.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Creating Python Modules</span></a> <a href="../../../quick-reference/untitled.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Useful Info</span></a> <a href="../../../quick-reference/python-glossary.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Python Glossary</span></a> <a href="../../../quick-reference/untitled-1.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Python Snippets</span></a> <a href="../../../quick-reference/bash-commands.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">List Of Python Cheat Sheets</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f"><span class="text-4505230f--InfoH200-3a8a7a86--textContentFamily-49a318e1">Docs</span></span> <a href="../../../stdlib/touple.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Touple</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Docs</span> <a href="../../../stdlib/basic-syntax.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Basic Syntax</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Lists</span> <a href="../../../stdlib/conditionals-and-loops.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Conditionals and loops</span></a> <a href="../../../stdlib/dictionaries.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Dictionaries</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Classes and objects</span> <a href="../../../stdlib/untitled-1.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Functions</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Built In Functions</span> <a href="../../../stdlib/untitled-2.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Built-in Types</span></a> <a href="../../../stdlib/dictionaries-sets-files-and-modules.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Dictionaries, sets, files, and modules</span></a> <a href="../../../stdlib/queue-and-stacks.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Queue &amp; Stacks</span></a> <a href="../../../stdlib/values-expressions-and-statments.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Values Expressions &amp; Statments</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f"><span class="text-4505230f--InfoH200-3a8a7a86--textContentFamily-49a318e1">MISC</span></span> <a href="../../../misc/built-in-methods-and-functions.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Built-in Methods &amp; Functions</span></a> <a href="../../../misc/math.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Math</span></a> <a href="../../../misc/unsorted-examples.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Unsorted Examples</span></a> <a href="../../../misc/outline.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Outline</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">About Python</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f"><span class="text-4505230f--InfoH200-3a8a7a86--textContentFamily-49a318e1">Interview Prep</span></span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Interview Resources</span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f"><span class="text-4505230f--InfoH200-3a8a7a86--textContentFamily-49a318e1">Installations Setup & Env</span></span> <a href="../../../installations-setup-and-env/untitled.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">python-setup</span></a> <a href="../../../installations-setup-and-env/installing-python-modules.html" class="navButton-94f2579c--navButtonClickable-161b88ca"><span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Installing Python Modules</span></a> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f"><span class="text-4505230f--InfoH200-3a8a7a86--textContentFamily-49a318e1">Aux-Exploration</span></span> <span class="text-4505230f--UIH300-2063425d--textContentFamily-49a318e1--navButtonLabel-14a4968f">Subject</span> <a href="https://www.gitbook.com/?utm_source=content&amp;utm_medium=trademark&amp;utm_campaign=bgoonz42" class="reset-3c756112--trademark-a8da4b94"></a> <span class="text-4505230f--TextH200-a3425406--textUIFamily-5ebd8e40">Powered by **GitBook**</span> # <span class="text-4505230f--DisplayH900-bfb998fa--textContentFamily-49a318e1">Red_Black Tree</span> <span class="text-4505230f--UIH300-2063425d--textUIFamily-5ebd8e40--text-8ee2c8b2"></span> <span class="text-4505230f--UIH300-2063425d--textUIFamily-5ebd8e40--text-8ee2c8b2"></span> # Faster insertion and deletion than AVL, slower searchclass Color: RED = 1 BLACK = 2​​class Node:​ def __init__(self, data, parent=None, color=Color.RED): self.data = data self.color = color self.parent = parent self.left = None self.right = None​​class RedBlackTree:​ def __init__(self): self.root = None​ def insert(self, data): if not self.root: self.root = Node(data) self.violate(self.root) else: self.insert_node(data, self.root)​ def insert_node(self, data, node):​ if data < node.data: if node.left: self.insert_node(data, node.left) else: node.left = Node(data, node) self.violate(node.left) else: if node.right: self.insert_node(data, node.right) else: node.right = Node(data, node) self.violate(node.right)​ def violate(self, node):​ parent_node = None grand_parent_node = None​ while node != self.root and node.parent.color == Color.RED:​ parent_node = node.parent grand_parent_node = parent_node.parent​ if grand_parent_node is None: return​ if parent_node == grand_parent_node.left:​ uncle = grand_parent_node.right​ if uncle and uncle.color == Color.RED: # case 1 and case 4 print("Re-coloring node %s to RED" % grand_parent_node.data) grand_parent_node.color = Color.RED print("Re-coloring node %s to BLACK" % parent_node.data) parent_node.color = Color.BLACK uncle.color = Color.BLACK node = grand_parent_node else: # case 2: uncle node is black and node is a right child if node == parent_node.right: self.rotate_left(parent_node) node = parent_node parent_node = node.parent​ # case 3 parent_node.color = Color.BLACK grand_parent_node.color = Color.RED print("Re-color %s to BLACK" % parent_node.data) print("Re-color %s to RED" % grand_parent_node.data) self.rotate_right(grand_parent_node) else:​ uncle = grand_parent_node.left​ if uncle and uncle.color == Color.RED: # case 1 and case 4 print("Re-coloring node %s to RED" % grand_parent_node.data) grand_parent_node.color = Color.RED print("Re-coloring node %s to BLACK" % parent_node.data) parent_node.color = Color.BLACK uncle.color = Color.BLACK node = grand_parent_node else: # case 2: uncle node is black and node is a right child if node == parent_node.left: self.rotate_right(parent_node) node = parent_node parent_node = node.parent​ # case 3 parent_node.color = Color.BLACK grand_parent_node.color = Color.RED print("Re-color %s to BLACK" % parent_node.data) print("Re-color %s to RED" % grand_parent_node.data) self.rotate_left(grand_parent_node)​ if self.root.color == Color.RED: print("Recoloring the root to black...") self.root.color = Color.BLACK​ def traverse(self): if self.root is not None: self.traverse_in_order(self.root)​ def traverse_in_order(self, node): if node.left: self.traverse_in_order(node.left)​ l = '' r = '' p = ''​ if node.left is not None: l = node.left.data else: l = 'NULL'​ if node.right is not None: r = node.right.data else: r = 'NULL'​ if node.parent is not None: p = node.parent.data else: p = 'NULL'​ print("%s left: %s right: %s parent: %s color: %s" % (node.data, l, r, p, node.color))​ if node.right: self.traverse_in_order(node.right)​ def rotate_right(self, node): print("Rotating to the right on node ", node.data)​ temp_left_node = node.left t = temp_left_node.right​ temp_left_node.right = node node.left = t​ if t is not None: t.parent = node​ temp_parent = node.parent node.parent = temp_left_node temp_left_node.parent = temp_parent​ if temp_left_node.parent is not None and temp_left_node.parent.left == node: temp_left_node.parent.left = temp_left_node​ if temp_left_node.parent is not None and temp_left_node.parent.right == node: temp_left_node.parent.right = temp_left_node​ if node == self.root: self.root = temp_left_node​ def rotate_left(self, node): print("Rotating to the left on node ", node.data)​ temp_right_node = node.right t = temp_right_node.left​ temp_right_node.left = node node.right = t​ if t is not None: t.parent = node​ temp_parent = node.parent node.parent = temp_right_node temp_right_node.parent = temp_parent​ if temp_right_node.parent is not None and temp_right_node.parent.left == node: temp_right_node.parent.left = temp_right_node​ if temp_right_node.parent is not None and temp_right_node.parent.right == node: temp_right_node.parent.right = temp_right_node​ if node == self.root: self.root = temp_right_node​​rbt = RedBlackTree()rbt.insert(32)rbt.insert(10)rbt.insert(55)rbt.insert(1)rbt.insert(19)rbt.insert(79)rbt.insert(16)rbt.insert(23)rbt.insert(12)​rbt.traverse()​​​ <a href="ternary-search-trees.html" class="reset-3c756112--card-6570f064--whiteCard-fff091a4--cardPrevious-56a5e674"></a> <span class="text-4505230f--TextH200-a3425406--textContentFamily-49a318e1">Previous</span> <span class="text-4505230f--UIH400-4e41e82a--textContentFamily-49a318e1">Ternary-search-trees</span> <a href="tree-mirror.html" class="reset-3c756112--card-6570f064--whiteCard-fff091a4--cardNext-19241c42"></a> <span class="text-4505230f--TextH200-a3425406--textContentFamily-49a318e1">Next</span> <span class="text-4505230f--UIH400-4e41e82a--textContentFamily-49a318e1">Tree Mirror:</span> <img src="https://avatars.githubusercontent.com/u/66654881?v=4" class="image-67b14f24--avatar-1c1d03ec" /> <span class="text-4505230f--TextH200-a3425406--textContentFamily-49a318e1">Last updated 2 days ago</span> <a href="https://github.com/bgoonz/python-gitbook/blob/master/abstract-data-structures/untitled-1/tree/red_black-tree.md" class="reset-3c756112--menuItem-aa02f6ec--menuItemLight-757d5235--menuItemInline-173bdf97--pageSideMenuItem-22949732"></a> <span class="text-4505230f--UIH300-2063425d--textUIFamily-5ebd8e40">Edit on GitHub</span> <span class="text-4505230f--UIH300-2063425d--textUIFamily-5ebd8e40">Export as PDF</span>
114.147541
6,072
0.74106
yue_Hant
0.626915
dc36b37fc47862a0956fe3f1fcbc949df69b6299
201
md
Markdown
README.md
nilobject/mdp
97b0f668230f918c8883ccbf9e3f5dd7ba185645
[ "MIT" ]
null
null
null
README.md
nilobject/mdp
97b0f668230f918c8883ccbf9e3f5dd7ba185645
[ "MIT" ]
null
null
null
README.md
nilobject/mdp
97b0f668230f918c8883ccbf9e3f5dd7ba185645
[ "MIT" ]
null
null
null
# mdp mdp (Markdown Planner) is a simple project ideation tool utilizing Markdown for textual descriptions, and renders a simple graph from a combination of directory structure and toml configurations
67
194
0.830846
eng_Latn
0.974069
dc370ce09333948557d4b1185574da29a868f51b
271
md
Markdown
GitcoinStep1/README.md
betosmith2000/NervosGitcoin
d6d7a11c7f58910301c92f3916e2ac2cf74c30ee
[ "MIT" ]
1
2021-08-11T22:04:28.000Z
2021-08-11T22:04:28.000Z
GitcoinStep1/README.md
betosmith2000/NervosGitcoin
d6d7a11c7f58910301c92f3916e2ac2cf74c30ee
[ "MIT" ]
null
null
null
GitcoinStep1/README.md
betosmith2000/NervosGitcoin
d6d7a11c7f58910301c92f3916e2ac2cf74c30ee
[ "MIT" ]
null
null
null
# NervosGitcoin Task 0: Set up node, Indexer and sync with aggron test net Account list ![Node](NewAccount.png) Layer 1 address https://explorer.nervos.org/aggron/address/ckt1qyq99c50thylykmkpkct0gq7e9q3jvkx3mzq38rhk9 Desposit Layer 2 ![Indexer](Layer2Deposit.png)
19.357143
89
0.800738
eng_Latn
0.286641
dc373218d27c0697cf20e957161e17ee5b2ab2c0
193
md
Markdown
Cpu/ST/STM32F10X/README.md
hdp7891000/MOE
fee09423f8fc0a33a19ea9506f1d501a4e6fa421
[ "MIT" ]
54
2016-06-23T03:21:00.000Z
2022-03-25T02:24:25.000Z
Cpu/ST/STM32F10X/README.md
amigomcu/MOE
13c30d58ca2df3f48d980e725cef27adc35252e7
[ "MIT" ]
13
2016-07-04T08:30:21.000Z
2019-07-15T14:53:54.000Z
Cpu/ST/STM32F10X/README.md
amigomcu/MOE
13c30d58ca2df3f48d980e725cef27adc35252e7
[ "MIT" ]
31
2016-06-30T06:58:35.000Z
2021-01-28T07:48:16.000Z
## Cpu related file of STM32F10X ### RCC- Reset and clock control module RCC files realise the basic function of clcok configuration and provides HCLK, SYSCLK, PCLK1, PCKL2 clock information.
38.6
118
0.787565
eng_Latn
0.923539
dc37ff47f65c1287a0cf38bfef064cac9b21f8c9
1,073
md
Markdown
_posts/2021-07-22-2-2.md
erurang/erurang.github.io
5f4dac07345f1195f9caa0267d151a2b7fad5b32
[ "MIT" ]
1
2021-05-05T04:36:01.000Z
2021-05-05T04:36:01.000Z
_posts/2021-07-22-2-2.md
erurang/erurang.github.io
5f4dac07345f1195f9caa0267d151a2b7fad5b32
[ "MIT" ]
1
2020-12-02T22:11:37.000Z
2020-12-02T22:11:37.000Z
_posts/2021-07-22-2-2.md
erurang/erurang.github.io
5f4dac07345f1195f9caa0267d151a2b7fad5b32
[ "MIT" ]
null
null
null
--- layout: post title: "유효한 펠린드롬 (정규식, Askii, reverse(), join(), split())" subtitle: "유효한 펠린드롬 (정규식, Askii, reverse(), join(), split())" categories: boj tags: string comments: true --- 현재 문제에서는 영어만 판별하여 대소문자 구분없이 펠린드롬인지 판별하는 문제 ``` function solution(str) { let p = "" for (let a of str) { // 알파벳인지 판별.. if (65 <= a.charCodeAt() && a.charCodeAt() <= 90 || 97 <= a.charCodeAt() && a.charCodeAt() <= 122) { p+=a } } p = p.toLowerCase() if(p === p.split("").reverse().join('')) return "YES" else return "NO" } let str="found7, time: study; Yduts; emit, 7Dnuof"; console.log(solution(str)); ``` 정규식 방법을 몰라서, 자바스크립트에서 아스키코드번호를 얻을수있는 `charCodeAt()`을 이용하였다. 아래는 외워두자. ``` 'a'.charCodeAt() // 97 'z'.charCodeAt() // 122 'A'.charCodeAt() // 65 'Z'.charCodeAt() // 90 ``` 소문자 `a~z`는 아스키코드로 `97~122`, 대문자 `A~Z`는 아스키코드로 `65~90` 아래는 정규식을 사용하여 푼 방법이다. ``` str = str.toLowerCase() str.replace(/[^a-z]/g , '') ``` `[a-z]` a부터 z까지의 문자를 `g` 글로벌하게 (전체)를 처리한다. 어떻게? `a-z` 문자를 `^` 제외한 나머지를 `, ''` 공백으로 변경한다 라는뜻
17.883333
108
0.55918
kor_Hang
0.99897
dc386bd9368064f5349e13adfc059e121a1dcf4a
514
md
Markdown
project/brs_oa/src/docs/markdown/generated/all.md
tinyjjlin/learn_springboot
fe312a95e8080b0d214bed213b95366e1f68b267
[ "Apache-2.0" ]
null
null
null
project/brs_oa/src/docs/markdown/generated/all.md
tinyjjlin/learn_springboot
fe312a95e8080b0d214bed213b95366e1f68b267
[ "Apache-2.0" ]
null
null
null
project/brs_oa/src/docs/markdown/generated/all.md
tinyjjlin/learn_springboot
fe312a95e8080b0d214bed213b95366e1f68b267
[ "Apache-2.0" ]
1
2019-02-02T05:17:04.000Z
2019-02-02T05:17:04.000Z
# 贝若偲OA系统 后台服务接口 <a name="overview"></a> ## 概览 API 描述 ### 版本信息 *版本* : 1.0 ### 联系方式 *名字* : tiny lin ### URI scheme *域名* : localhost:8080 *基础路径* : / ### 标签 * department-controller : Department Controller * home-controller : Home Controller * login-controller : Login Controller * permission-controller : Permission Controller * role-controller : Role Controller * salary-monthly-controller : Salary Monthly Controller * staff-controller : Staff Controller * vo-field-controller : Vo Field Controller
14.685714
55
0.702335
eng_Latn
0.184703
dc3899a263d4cb719ee640236f872e55b16148ec
104
md
Markdown
android-mini/README.md
etkim97/mobiledev
9e68e91b8ba31753e2590a373ae2479956977c55
[ "MIT" ]
null
null
null
android-mini/README.md
etkim97/mobiledev
9e68e91b8ba31753e2590a373ae2479956977c55
[ "MIT" ]
null
null
null
android-mini/README.md
etkim97/mobiledev
9e68e91b8ba31753e2590a373ae2479956977c55
[ "MIT" ]
null
null
null
# android-mini-app-kimnguyen android-mini-app-kimnguyen created by GitHub Classroom Tested on: Nexus 7
20.8
54
0.807692
eng_Latn
0.395643
dc38e84bf04d27217a7b162cc2ae34d61d498a82
537
md
Markdown
README.md
ndxbxrme/generator-ndx
7072f8b3ce2853c4489d4875953afa54af77798e
[ "MIT" ]
null
null
null
README.md
ndxbxrme/generator-ndx
7072f8b3ce2853c4489d4875953afa54af77798e
[ "MIT" ]
null
null
null
README.md
ndxbxrme/generator-ndx
7072f8b3ce2853c4489d4875953afa54af77798e
[ "MIT" ]
null
null
null
# NDX Generator > Yeoman generator for creating NDX apps. Available Generators: - [ndx:directive](#directive) #### directive generates a new angular directive Example: ```bash yo ndx:directive myDirective [?] Where would you like to create this directive? src/client/directives/ [?] Does this directive need an external html file? Yes ``` Produces: src/client/directives/my-directive/my-directive.coffee src/client/directives/my-directive/my-directive.jade src/client/directives/my-directive/my-directive.stylus
24.409091
73
0.75419
eng_Latn
0.931626
dc39593f6552ae8a020ec9c270e2246e863ebc28
2,266
md
Markdown
node_modules/react-fake-props/README.md
szyszkoit/react-blog-app
baadfadcb489ed55103292839f9a5a80ab078815
[ "MIT" ]
null
null
null
node_modules/react-fake-props/README.md
szyszkoit/react-blog-app
baadfadcb489ed55103292839f9a5a80ab078815
[ "MIT" ]
null
null
null
node_modules/react-fake-props/README.md
szyszkoit/react-blog-app
baadfadcb489ed55103292839f9a5a80ab078815
[ "MIT" ]
null
null
null
# react-fake-props [![Build Status](https://travis-ci.org/typicode/react-fake-props.svg?branch=master)](https://travis-ci.org/typicode/react-fake-props) [![npm](https://badge.fury.io/js/react-fake-props.svg)](https://www.npmjs.com/package/react-fake-props) > Magically generate fake props for your React tests 🔮 `react-fake-props` parses your Component prop types using [react-docgen](https://github.com/reactjs/react-docgen) and generates fake props. Supports [Flow](https://flow.org) and [PropTypes](https://github.com/facebook/prop-types). Works great with [Jest](https://facebook.github.io/jest/) snapshots and [Enzyme](https://github.com/airbnb/enzyme). ## Install ```sh yarn add react-fake-props --dev ``` ```sh npm install react-fake-props --save-dev ``` ## Example Assuming the following Component with Flow types: ```jsx // @flow type Props = { id: number, name: string } class Component extends React.Component<Props> { // ... } ``` Or PropTypes: ```jsx class Component extends React.Component { // ... } Component.propTypes = { id: PropTypes.number.isRequired, name: PropTypes.string.isRequired } ``` With `react-fake-props`, you can generate valid props based on your Component prop types: ```jsx const props = fakeProps(componentPath) /* { id: 1, name: 'name' } */ <Component {...props} /> ``` ## Usage ```js import path from 'path' import fakeProps from 'react-fake-props' const componentPath = path.join(__dirname, './Component.jsx') const props = fakeProps(componentPath) ``` To include optional props, pass `{ optional: true }`. Please note: - `custom` validators and `PropTypes.instanceOf` aren't supported, you'll still need to set them manually. - `react-fake-props` requires the component path to be passed, instead of the component itself, to be able to support Flow and PropTypes. ## API `fakeProps(componentPath[, { optional: false } ])` ## Tip When checking for a value, use `props.A` rather than `'A'` as `react-fake-props` output may change. ```jsx const wrapper = shallow(<Component {...props} />) wrapper.text().to.contain('A') // bad wrapper.text().to.contain(props.A) // good ``` ## License MIT - [Typicode :cactus:](https://github.com/typicode) - [Patreon](https://www.patreon.com/typicode)
24.365591
346
0.70609
eng_Latn
0.68981
dc3a2b7712ca4428fe719f023f746b47ecc913a0
1,837
md
Markdown
README.md
vishnuz1611/Cameo
149b51f44da7377047b414b07e53bf02291bad9b
[ "MIT" ]
null
null
null
README.md
vishnuz1611/Cameo
149b51f44da7377047b414b07e53bf02291bad9b
[ "MIT" ]
null
null
null
README.md
vishnuz1611/Cameo
149b51f44da7377047b414b07e53bf02291bad9b
[ "MIT" ]
null
null
null
# Cameo Web application made with Django that gives information about movies and series. ## Getting Started [Python 3.6 or later](https://www.python.org/downloads/) is required to run the project ### Cloning the repository Download directly via GitHub or by using Git: ```sh git clone https://github.com/vishnuz1611/Cameo.git ``` ### Install the dependencies Install **virtualenv** ```sh pip install virtualenv ``` #### Create a virtual environment ```sh virtualenv venv ``` #### Activate the virtual environment From the project's root directory: ```sh cd venv/Scripts activate ``` ### Install dependencies from `requirements.txt` From the project's root directory ```sh pip install -r requirements.txt ``` ## Start the project From the project's root directory ```sh cd core python manage.py runserver ``` To stop the server press `Ctrl + C` ### Deactivate the virtual environment To stop the server ```sh deactivate ``` ## Screenshots #### Home Page ![image](https://user-images.githubusercontent.com/64272628/150679085-6296e78a-c792-401f-a982-ae5e7856f5d2.png) ![image](https://user-images.githubusercontent.com/64272628/150679146-fbdae271-a11c-4a82-834d-4b66b661136a.png) #### Search Results ![image](https://user-images.githubusercontent.com/64272628/150679302-0ddcfc3e-efee-4fb2-9643-0b9340c67bcd.png) #### Description page ![image](https://user-images.githubusercontent.com/64272628/150679483-03276e0e-fe80-4863-b918-f49894aaa5ef.png) #### Watchlist ![image](https://user-images.githubusercontent.com/64272628/150679533-8fa8fea3-005b-46e3-a684-40e79bacaeda.png) #### Login & Register ![image](https://user-images.githubusercontent.com/64272628/150679603-1892f1d9-1267-4a0d-8b23-1e3553546a67.png) ![image](https://user-images.githubusercontent.com/64272628/150679627-d35f41a9-4961-4b02-b494-669c17172d7d.png)
24.824324
111
0.761568
eng_Latn
0.433816
dc3b1c5160746a3aaabdfb7c71fece5d8a92a5ad
33
md
Markdown
README.md
SharifClick/svelte-particle-effect-button
88c5aea8ea66680d0694a32a9a9064ead17b78b0
[ "MIT" ]
2
2019-10-08T09:09:35.000Z
2019-12-21T17:58:59.000Z
README.md
SharifClick/svelte-particle-effect-button
88c5aea8ea66680d0694a32a9a9064ead17b78b0
[ "MIT" ]
null
null
null
README.md
SharifClick/svelte-particle-effect-button
88c5aea8ea66680d0694a32a9a9064ead17b78b0
[ "MIT" ]
1
2019-10-07T14:43:14.000Z
2019-10-07T14:43:14.000Z
# svelte-particle-effect-button
11
31
0.787879
fra_Latn
0.426151
dc3c101087251aa2dd1b7ccaec897b0a1942f642
429
md
Markdown
README.md
TooDrunkToCode/totalcomments
0c04c071f7ef9b5e20eed00fe103b09ab82f55f0
[ "Apache-2.0" ]
1
2017-06-15T13:33:37.000Z
2017-06-15T13:33:37.000Z
README.md
TooDrunkToCode/totalcomments
0c04c071f7ef9b5e20eed00fe103b09ab82f55f0
[ "Apache-2.0" ]
null
null
null
README.md
TooDrunkToCode/totalcomments
0c04c071f7ef9b5e20eed00fe103b09ab82f55f0
[ "Apache-2.0" ]
null
null
null
totalcomments ============= Скрипт LeproTotalComments перестал работать, поскольку, во–первых, внутри Лепрозорий 2.0 поменялся еще более значительно, чем снаружи, а во–вторых, скрипт был написан немножко некомпетентно и должен был сломаться при первом же серьезном обновлении Лепры. Официальный исходник скрипта в последней версии теперь здесь. Это для будущей починки, устанавливать его сейчас не нужно, он все равно нерабочий.
85.8
254
0.808858
rus_Cyrl
0.993989
dc3e24054f976524fc82f91431ba8aa0830a7093
221
md
Markdown
README.md
alexsmonte/CakeNews
c3f50a94d980754df44f6c1606c4cadc97934ac9
[ "MIT" ]
3
2016-07-15T17:01:40.000Z
2017-09-06T22:51:37.000Z
README.md
alexsmonte/CakeNews
c3f50a94d980754df44f6c1606c4cadc97934ac9
[ "MIT" ]
null
null
null
README.md
alexsmonte/CakeNews
c3f50a94d980754df44f6c1606c4cadc97934ac9
[ "MIT" ]
null
null
null
# CakeNews Instalçao via composer: composer require asmpkg/cakenews Carregando o plugin: bin/cake plugin load CakeNews - Deve ser colocado route => true Instalando base de dados: bin/cake migrations migrate -p CakeNews
31.571429
84
0.800905
kor_Hang
0.362685
dc400231745cf02c018bcd42148da3f2cfffea77
335
md
Markdown
index.md
itrifun/itrifun.git.io
20926b4a9893bb67c87b145e4516b1c6984a7f67
[ "MIT" ]
null
null
null
index.md
itrifun/itrifun.git.io
20926b4a9893bb67c87b145e4516b1c6984a7f67
[ "MIT" ]
null
null
null
index.md
itrifun/itrifun.git.io
20926b4a9893bb67c87b145e4516b1c6984a7f67
[ "MIT" ]
null
null
null
--- layout: page excerpt: "About Me..." --- I am creating this content at a workshiop at Oregon Health & Science University. ## Current Interests and Projects: - Website Design - [GitHub Pages](http://github.io) - Academia ! [Jetpacktocat](https://octodex.github.com/images/jetpacktocat.png) ! [](images/project_idea_-_patio.jpg)
19.705882
80
0.722388
eng_Latn
0.456566
dc40e5cc5b8116928bcd27edf360c57a87a74895
5,426
md
Markdown
user/pages/05.blog/01.twio/2018-08-06-this-week-in-opennms/item.md
opennms-forge/opennms.org
ff152a3cc2f97357425de2e3a5d957719c7916c8
[ "MIT" ]
1
2021-02-25T22:58:48.000Z
2021-02-25T22:58:48.000Z
user/pages/05.blog/01.twio/2018-08-06-this-week-in-opennms/item.md
opennms-forge/opennms.org
ff152a3cc2f97357425de2e3a5d957719c7916c8
[ "MIT" ]
18
2016-07-15T21:25:07.000Z
2018-10-04T14:32:10.000Z
user/pages/05.blog/01.twio/2018-08-06-this-week-in-opennms/item.md
opennms-forge/opennms.org
ff152a3cc2f97357425de2e3a5d957719c7916c8
[ "MIT" ]
7
2016-07-11T16:00:28.000Z
2017-08-14T20:06:12.000Z
--- title: This Week in OpenNMS: August 6th, 2018 date: 12:13 08/06/2018 author: Benjamin Reed body_classes: header-lite fullwidth blogstyling taxonomy: category: twio tag: [vmware, radius, provisiond, sflow, kafka, sextant, alarmd, minion, topology, enlinkd, bootstrap, uknof, ouce] --- It's time for This Week in OpenNMS! Last week we continued work on RPC over Kafka, Sextant, Enlinkd, and other bug fixes. <!-- git log --author=bamboo@opennms.org --invert-grep --all --no-merges --since='2018-07-30 00:00:00' --until='2018-08-06 00:00:00' --format='%Cblue%ai %Cgreen%aN %Creset%s %Cblue(%H)%Cred%d' --author-date-order | sort | less -R --> ## Github Project Updates * __Internals, APIs, and Documentation__ * Christian wrapped up his VMware cleanups. * Markus wrapped up fixes for a RADIUS authentication bug. * Jeff fixed a logging issue in provisioning that could cause excess logs relating to "not-polled" services. * Christian did more work on handling non-directional SFlow data. * Chandra did more work on support for RPC over Kafka. * David continued implementing a feedback mechanism for training/tuning Sextant correlations. * David Hustace did more work on his branch to clean up the handling of alarm clearing. * Jesse worked added some metric checks to the health check tool. * Markus updated the internal service API to support timing out, along with some other refactoring. * Markus did more work on the health check tool. * I worked on implementing a minion status tracker to update the minion status in the minion UI. * __Web & UI__ * Markus continued his experiment with simplifying our Bootstrap-based theme code. * Patrick continued work on changes to make dates in the web UI consistent, and also configurable. * Sebastian did more work on a daemon-reload page in the admin UI. * Antonio continued his work on fixing the topology UI showing enlinkd links properly. * Jesse added MD5 checksum handling to Helm. * David worked on Sextant feedback support in Helm. ## OUCE Is Coming Up Fast! Don't forget to sign up for next month's [OpenNMS User Conference Europe 2018](https://ouce.opennms.eu/) in Munich, Germany. A number of folks from the core OpenNMS development team will be there speaking on a variety of subjects from development to integration to advanced configuration. [Join us September 20th-21st in Munich!](https://ouce.opennms.eu/) ## Upcoming Events and Appearances * **[UK Network Operators' Forum - September 11th, 2018](https://indico.uknof.org.uk/event/43)** Tarus will be [speaking at the UK Network Operators Forum](https://indico.uknof.org.uk/event/43/contributions) on September 11th, 2018. He'll be giving a talk called "What's Happening with OpenNMS" going over some of the recent enhancements to OpenNMS to extend scalability. * **[OpenNMS User Conference Europe 2018 - September 20th through 21st, 2018](https://ouce.opennms.eu/)** [OUCE 2018](https://ouce.opennms.eu/) will be held at the [Rilano Hotel in Munich, Germany](https://www.rilano-hotel-muenchen.de/). A reception will be held on Wednesday the 19th, with talks and workshops the following Thursday and Friday. The [call for papers](https://ouce.opennms.eu/cfp/2018/) is open for submissions. ## Until Next Week… If there’s anything you’d like me to talk about in a future TWiO, or you just have a comment or criticism you’d like to share, don’t hesitate to [say hi](mailto:twio@opennms.org). \- Ben <!-- https://github.com/OpenNMS/twio-fodder/blob/master/scripts/twio-issues-list.pl --> ## Resolved Issues Since Last TWiO * [HZN-1329](https://issues.opennms.org/browse/HZN-1329): warnings and exceptions in telemetryd.log with sflow * [HZN-1334](https://issues.opennms.org/browse/HZN-1334): Streamline documentation for installation of OpenNMS and Minion * [HZN-1339](https://issues.opennms.org/browse/HZN-1339): Rework features definition for sentinel * [HZN-1340](https://issues.opennms.org/browse/HZN-1340): Get DefaultSnmpCollectionAgent to run on sentinel * [HZN-1348](https://issues.opennms.org/browse/HZN-1348): Allow Drools rule for Alarmd to be customized * [HZN-1363](https://issues.opennms.org/browse/HZN-1363): Wrong descriptions for Quantile in Percentile and Outlier measurement filters * [NMS-8204](https://issues.opennms.org/browse/NMS-8204): VMWare-Center-Monitoring make for every virtual machine a login/logout * [NMS-10213](https://issues.opennms.org/browse/NMS-10213): Event Search Broken * [NMS-10215](https://issues.opennms.org/browse/NMS-10215): Add support for persisting Data Collection to Kafka * [NMS-10221](https://issues.opennms.org/browse/NMS-10221): Supporting flow records without direction field (ingress/egress) * [NMS-10228](https://issues.opennms.org/browse/NMS-10228): use user defined time zone for date formatting * [NMS-10269](https://issues.opennms.org/browse/NMS-10269): Update log4j2.xml with kafka logging * [NMS-10282](https://issues.opennms.org/browse/NMS-10282): Change in JMS NBI Date Format * [NMS-10291](https://issues.opennms.org/browse/NMS-10291): DefaultProvisionService logs noisily for monitored service having state "N" * [NMS-10303](https://issues.opennms.org/browse/NMS-10303): ServiceLookup and TelemetryAdapterRegistry don't wait properly * [NMS-10304](https://issues.opennms.org/browse/NMS-10304): Refactor timeseries applicationContext xml files with 'timeseries' prefix
57.723404
233
0.760044
eng_Latn
0.857329
dc414c6adb97da58045156063d7ad1406d5246f1
194
md
Markdown
README.md
L3viathan/oil-stdlib
cb56a49bdc16510ab88a2d46a87fba6b389a222d
[ "MIT" ]
null
null
null
README.md
L3viathan/oil-stdlib
cb56a49bdc16510ab88a2d46a87fba6b389a222d
[ "MIT" ]
1
2017-10-23T10:31:31.000Z
2017-10-23T10:31:31.000Z
README.md
L3viathan/oil-stdlib
cb56a49bdc16510ab88a2d46a87fba6b389a222d
[ "MIT" ]
null
null
null
# The OIL standard library This is the implementation-independent standard library of [OIL](https://github.com/L3viathan/OIL). The software is released under the MIT License (see LICENSE.md).
32.333333
99
0.783505
eng_Latn
0.979953
dc43892bc65da2d1a5964fc9f169757ed923b4f0
231
md
Markdown
README.md
leslie-qiwa/metal3-dev-env
96fa017ca9a8bb119ff00cab2c4a2389fa2be21a
[ "Apache-2.0" ]
null
null
null
README.md
leslie-qiwa/metal3-dev-env
96fa017ca9a8bb119ff00cab2c4a2389fa2be21a
[ "Apache-2.0" ]
null
null
null
README.md
leslie-qiwa/metal3-dev-env
96fa017ca9a8bb119ff00cab2c4a2389fa2be21a
[ "Apache-2.0" ]
null
null
null
Metal³ Development Environment ============================== This repository includes scripts to set up a Metal³ development environment. Instructions ------------ Instructions can be found here: <http://metal3.io/try-it.html>
23.1
76
0.658009
eng_Latn
0.720208
dc438eb83663140d348ba35422629b8a0e0633d6
821
md
Markdown
README.md
dangdungcntt/laravel-http-client
e622d71f916ec68dc512d43c3d06760f8e7bf32e
[ "MIT" ]
null
null
null
README.md
dangdungcntt/laravel-http-client
e622d71f916ec68dc512d43c3d06760f8e7bf32e
[ "MIT" ]
null
null
null
README.md
dangdungcntt/laravel-http-client
e622d71f916ec68dc512d43c3d06760f8e7bf32e
[ "MIT" ]
null
null
null
# Guzzle Wrapper for laravel ## Installation You can install the package via composer: ```bash composer require nddcoder/laravel-http-client ``` ## Usage #### Inject HttpClient into Controller Contructor ```php use Nddcoder\HttpClient\HttpClient; class TodoController extends Controller { private $http; public function __construct(HttpClient $http) { $this->http = $http; } public function index() { return $this->http->get('https://jsonplaceholder.typicode.com/todos'); /* { "status_code": 200, "headers": {}, "body": "...", "bodyJSON": [...] } */ } } ``` ## License The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
17.847826
82
0.566382
eng_Latn
0.378036
dc44103abbdb8977789a03a75a1c6b8ab04db117
30
md
Markdown
README.md
NIWINE/FATIMA
9022efebf102e4f9db52f46a9cf83501d9420dfd
[ "BSL-1.0" ]
null
null
null
README.md
NIWINE/FATIMA
9022efebf102e4f9db52f46a9cf83501d9420dfd
[ "BSL-1.0" ]
null
null
null
README.md
NIWINE/FATIMA
9022efebf102e4f9db52f46a9cf83501d9420dfd
[ "BSL-1.0" ]
null
null
null
# FATIMA A 20-year-old woman
10
20
0.7
yue_Hant
0.593654
dc447cf15929e0f8be0c18421a2dc64945f174fb
77
md
Markdown
_posts/_posts/0000-01-02-drtammdo.md
drtammdo/github-slideshow
e7aafcc2a46b53e2fcd84420d757ac2209afcaf9
[ "MIT" ]
null
null
null
_posts/_posts/0000-01-02-drtammdo.md
drtammdo/github-slideshow
e7aafcc2a46b53e2fcd84420d757ac2209afcaf9
[ "MIT" ]
3
2021-04-22T02:17:08.000Z
2021-04-22T03:08:23.000Z
_posts/_posts/0000-01-02-drtammdo.md
drtammdo/github-slideshow
e7aafcc2a46b53e2fcd84420d757ac2209afcaf9
[ "MIT" ]
null
null
null
--- layout: my slide title: "Welcome to my new slide" --- Hahahaahaha Lalala
11
32
0.701299
eng_Latn
0.737471
dc44b00232bb9bfebdd5b0f764e0d3f3a56e4e98
52
md
Markdown
CHANGELOG.md
benznest/flutter_blognone
4603cc2bec9b7248ae683d76af922bed58a9a703
[ "Apache-2.0" ]
2
2019-07-29T06:39:59.000Z
2019-09-07T02:03:32.000Z
CHANGELOG.md
benznest/flutter_blognone
4603cc2bec9b7248ae683d76af922bed58a9a703
[ "Apache-2.0" ]
null
null
null
CHANGELOG.md
benznest/flutter_blognone
4603cc2bec9b7248ae683d76af922bed58a9a703
[ "Apache-2.0" ]
null
null
null
## 1.0.0 Get node list from blognone. Get comment.
10.4
28
0.692308
eng_Latn
0.89444
dc459b5ef067c92d5620ad6eb585c593fc9c0187
131
md
Markdown
ChangeLog.md
tngraf/UPnP
bbd6cb61952e5bbca4cca9227b6ca33aee7c0d27
[ "Apache-2.0" ]
2
2019-12-10T21:32:22.000Z
2022-03-27T12:38:19.000Z
ChangeLog.md
tngraf/UPnP
bbd6cb61952e5bbca4cca9227b6ca33aee7c0d27
[ "Apache-2.0" ]
null
null
null
ChangeLog.md
tngraf/UPnP
bbd6cb61952e5bbca4cca9227b6ca33aee7c0d27
[ "Apache-2.0" ]
1
2022-03-27T12:38:20.000Z
2022-03-27T12:38:20.000Z
Tethys.UPnP Change Log ======================= ## V1.0.0 (2017-10-29) ## * Version 1.0.0 of the UPnP project published on Github.
21.833333
56
0.564885
eng_Latn
0.76899
dc464cf940ee28550514056d9f509e2fc8cae7f0
25
md
Markdown
README.md
leftspin/SnapTwitBook
1530a59a12e99a04f33dbf887f1722b0cde4a76d
[ "Apache-2.0" ]
null
null
null
README.md
leftspin/SnapTwitBook
1530a59a12e99a04f33dbf887f1722b0cde4a76d
[ "Apache-2.0" ]
null
null
null
README.md
leftspin/SnapTwitBook
1530a59a12e99a04f33dbf887f1722b0cde4a76d
[ "Apache-2.0" ]
null
null
null
# SnapTwitBook Homework!
8.333333
14
0.8
pol_Latn
0.475153
dc46e3ff9f520445efb64ac79a4d8739df165a1e
644
md
Markdown
README.md
Garmelon/profold
84004eb65bea9097905617f6e64ad11eca66755d
[ "MIT" ]
1
2020-03-02T01:43:29.000Z
2020-03-02T01:43:29.000Z
README.md
Garmelon/profold
84004eb65bea9097905617f6e64ad11eca66755d
[ "MIT" ]
null
null
null
README.md
Garmelon/profold
84004eb65bea9097905617f6e64ad11eca66755d
[ "MIT" ]
null
null
null
# profold This project is a terminal-based viewer for ghc `.prof` files. These files are the result of profiling with `+RTS -p`, and can easily be thousands of lines long. This makes it cumbersome to browse through them and find the interesting bits. Since `.prof` files have a tree-like structure, an obvious improvement for viewing them is folding and unfolding parts of the tree, which is what profold allows you to do. ![profold showing a profile of profold](screenshot.png) ## Usage Open a file with profold: ``` $ profold file_to_open.prof ``` Arrow keys or vim-like keybindings to navigate. Tab to fold or unfold the current item.
28
78
0.765528
eng_Latn
0.999693
dc472bc18e544f712941af51cae5a30697670828
458
md
Markdown
_posts/2019-07-27-algorithms-to-study.md
heynie/heynie.github.io
631b2465ad0996c2c6c19854b65a9603e2fe2141
[ "MIT" ]
null
null
null
_posts/2019-07-27-algorithms-to-study.md
heynie/heynie.github.io
631b2465ad0996c2c6c19854b65a9603e2fe2141
[ "MIT" ]
null
null
null
_posts/2019-07-27-algorithms-to-study.md
heynie/heynie.github.io
631b2465ad0996c2c6c19854b65a9603e2fe2141
[ "MIT" ]
null
null
null
--- layout: post title: "Algorithms for Coding Test" subtitle: "" date: 2019-07-27 17:40:00 +0900 background: '/img/universe.jpg' comments: true categories: algorithms --- &emsp;코딩 테스트에서 자주 등장하는 알고리즘들을 간단하게 정리해보자. <br> ### 1. Brute Force (완전 탐색) &emsp;이름에서 알 수 있듯이 가능한 모든 경우의 수를 탐색하는 것이다. 브루트 포스를 활용하면 답을 찾는 것이 당연히 가능하지만 시간이 너무 오래 걸린다는 단점이 있다. <br> ### 2. Breadth First Search (너비 우선 탐색) &emsp; DFS, BFS, 정렬, 백트래킹, DP, 분할정복, 최단거리
16.962963
97
0.646288
kor_Hang
1
dc48eb0ee3af606bc7ba1aeb12697556b70df619
3,902
md
Markdown
biztalk/adapters-and-accelerators/accelerator-swift/biztalk-accelerator-for-swift-runtime.md
changeworld/biztalk-docs.zh-CN
0ee8ca09b377aa26a13e0f200c75fca467cd519c
[ "CC-BY-4.0", "MIT" ]
null
null
null
biztalk/adapters-and-accelerators/accelerator-swift/biztalk-accelerator-for-swift-runtime.md
changeworld/biztalk-docs.zh-CN
0ee8ca09b377aa26a13e0f200c75fca467cd519c
[ "CC-BY-4.0", "MIT" ]
null
null
null
biztalk/adapters-and-accelerators/accelerator-swift/biztalk-accelerator-for-swift-runtime.md
changeworld/biztalk-docs.zh-CN
0ee8ca09b377aa26a13e0f200c75fca467cd519c
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: BizTalk Accelerator for SWIFT 运行时 |Microsoft Docs ms.custom: '' ms.date: 06/08/2017 ms.prod: biztalk-server ms.reviewer: '' ms.suite: '' ms.tgt_pltfrm: '' ms.topic: article helpviewer_keywords: - runtime, architecture - developing, components - architecture, topology - messages, message flow diagram - runtime, components - SWIFT runtime - architecture, runtime architecture - SWIFT network - A4SWIFT, network - topology ms.assetid: c0f59760-7d7d-4b22-a7dc-54e563971d4a caps.latest.revision: 7 author: MandiOhlinger ms.author: mandia manager: anneta ms.openlocfilehash: 2fc0e7a7cb00e16263e537e24abcc144e5c7d0a4 ms.sourcegitcommit: 266308ec5c6a9d8d80ff298ee6051b4843c5d626 ms.translationtype: MT ms.contentlocale: zh-CN ms.lasthandoff: 06/27/2018 ms.locfileid: "36966118" --- # <a name="biztalk-accelerator-for-swift-runtime"></a>BizTalk Accelerator for SWIFT 运行时 Microsoft[!INCLUDE[A4SWIFT_CurrentVersion_FirstRef](../../includes/a4swift-currentversion-firstref-md.md)]提供了两种形式的功能: 开发材料和运行时组件。 开发材料包括 XSD 架构、 验证规则和策略和示例代码。 运行时组件包括自定义的 SWIFT 反汇编程序、 自定义的 SWIFT 汇编程序、 消息修复和新提交业务流程 (MrsrRepair.odx) 和 FIN 响应对帐业务流程 (FrrMain.odx)。 消息修复和新提交的详细信息,请参阅[消息修复和新提交](../../adapters-and-accelerators/accelerator-swift/message-repair-and-new-submission.md)。 FRR 的详细信息,请参阅[FIN 响应对帐](../../adapters-and-accelerators/accelerator-swift/fin-response-reconciliation.md)。 下图显示的高级系统体系结构[!INCLUDE[A4SWIFT_CurrentVersion_abbrev](../../includes/a4swift-currentversion-abbrev-md.md)]。 ![](../../adapters-and-accelerators/accelerator-swift/media/a4swiftsystemarchitecture-end-to-end.gif "A4SWIFTSystemArchitecture_End_to_End") 下图说明消息 A4SWIFT 和后端应用程序之间的流动方式以及如何使用 A4SWIFT [!INCLUDE[btsInpathNoVersion](../../includes/btsinpathnoversion-md.md)] MRSR 中的窗体站点用于消息修复和新提交。 ![](../../adapters-and-accelerators/accelerator-swift/media/a4swiftsystemarchitecture-interfaceswithbackendapplications.gif "A4SWIFTSystemArchitecture_InterfaceswithBackEndApplications") 下图说明了消息 A4SWIFT 和 SWIFT 网络之间的流动方式。 ![](../../adapters-and-accelerators/accelerator-swift/media/a4swiftsystemarchitecture-interfaceswiththeswiftnetwork.gif "A4SWIFTSystemArchitecture_InterfaceswiththeSWIFTNetwork") 您可以定义所有 A4SWIFT 组件为 BizTalk Server 应用程序组件的特定于垂直的实现。 BizTalk 加速器提供了开发和运行时功能,以加速的顶部垂直特定于 BizTalk 应用程序开发[!INCLUDE[btsBizTalkServerNoVersion](../../includes/btsbiztalkservernoversion-md.md)]。 因此,所有 A4SWIFT 组件 (开发或运行时) 遵守,并放入 BizTalk Server 应用程序体系结构。 A4SWIFT 安装到运行时组件[!INCLUDE[btsBizTalkServerNoVersion](../../includes/btsbiztalkservernoversion-md.md)]作为自定义组件的运行时。 编译并部署 A4SWIFT 材料后开发和[!INCLUDE[btsBizTalkServerNoVersion](../../includes/btsbiztalkservernoversion-md.md)]运行时使用它们来提供 SWIFT 消息传送和自动化功能。 下图显示了 BizTalk server 的高级别应用程序拓扑。 ![](../../adapters-and-accelerators/accelerator-swift/media/fsa-intro1.gif "FSA_Intro1") [!INCLUDE[btsBizTalkServerNoVersion](../../includes/btsbiztalkservernoversion-md.md)]应用程序模型使用 MessageBox 数据库和控制消息流入和流出 MessageBox 数据库的发布服务器订阅服务器模式。 有关 BizTalk 体系结构和应用程序设计的详细信息,请参阅 BizTalk Server 帮助。 A4SWIFT 应用程序模型继承[!INCLUDE[btsBizTalkServerNoVersion](../../includes/btsbiztalkservernoversion-md.md)]应用程序模型并向其添加特定于 SWIFT 的组件,以便与 SWIFT 相关的解决方案上[!INCLUDE[btsBizTalkServerNoVersion](../../includes/btsbiztalkservernoversion-md.md)]。 以下列表介绍了这些特定于 A4SWIFT 的组件: - **运行时组件。** SWIFT 反汇编程序中的接收管道、 SWIFT 汇编程序发送管道、 消息修复和新提交业务流程和 FIN 响应对帐业务流程中。 - **开发材料。** SWIFT 架构、 规则、 业务流程和示例项目包含在客户解决方案中并部署到执行的运行时上。 本部分介绍详细信息中的 A4SWIFT 运行时。 本部分包含: - [SWIFT 反汇编程序](../../adapters-and-accelerators/accelerator-swift/swift-disassembler.md) - [SWIFT 汇编程序](../../adapters-and-accelerators/accelerator-swift/swift-assembler.md) - [通过接收位置和 InfoPath 表单提交消息](../../adapters-and-accelerators/accelerator-swift/submitting-messages-through-receive-locations-and-infopath-forms.md) - [消息验证引擎](../../adapters-and-accelerators/accelerator-swift/message-validation-engine.md)
53.452055
496
0.791645
yue_Hant
0.253219
dc493b609299731884d8723e416dcb1a4dbdecfd
1,408
md
Markdown
README.md
prashnts/miriam-explore
3877b2f5f33d1d663dca1c701b6269e3c89ba989
[ "MIT" ]
3
2017-12-06T12:01:12.000Z
2020-09-22T15:52:59.000Z
README.md
prashnts/miriam-explore
3877b2f5f33d1d663dca1c701b6269e3c89ba989
[ "MIT" ]
2
2017-12-05T19:04:06.000Z
2021-05-09T14:09:17.000Z
README.md
prashnts/miriam-explore
3877b2f5f33d1d663dca1c701b6269e3c89ba989
[ "MIT" ]
1
2019-12-18T16:45:22.000Z
2019-12-18T16:45:22.000Z
[![miriam.noop.pw](docs/gh-banner.png)](https://miriam.noop.pw) miRiam provides access to interaction networks of mRNA translation regulation through intronic miRNAs under various tissue-specific cellular contexts. This repo contains source code for the network. # ARCHIVED! This repo is now archived. To keep this running, and reduce cost, I ended up exporting the django website into static pages. This is hosted on Netlify. Consecutively, the "view table" and data export features were removed from the app. I have instead uploaded those datasets (python pickle files) in this repo. ## Quickstart Server is written using `django`, and in `python 3.6`. Client-side code is compiled using `brunch`. Overall, the following sums up the steps to get the server up and running: - Install js packages using `yarn install` or `npm install`. - Build client js using `npm run build`. - It's recommended to create and activate a new `Python 3.6` environment using `virtual-environment` or `py-env`. - Next, install python packages using `pip install -r requirements.txt`. - This server requires a couple of environment variables that are described in `.env.sample`. Substitute valid values for your environment, and source it in your shell session. - On first setup you will need to download serialized dataset. A link to that is provided below. - Run the server using `./manage.py runserver`. ## License MIT
56.32
310
0.774148
eng_Latn
0.997254
dc4bcfedc85c0c36b1d9801dd182998551e313ef
88
md
Markdown
README.md
jasonnguyen3697/MNIST_practice
711332740f88b85a2f750ee714493674a6b4256a
[ "MIT" ]
null
null
null
README.md
jasonnguyen3697/MNIST_practice
711332740f88b85a2f750ee714493674a6b4256a
[ "MIT" ]
null
null
null
README.md
jasonnguyen3697/MNIST_practice
711332740f88b85a2f750ee714493674a6b4256a
[ "MIT" ]
null
null
null
# MNIST_practice This is a project to train a neural network on the MNIST digit dataset
29.333333
70
0.806818
eng_Latn
0.991147
dc4c5caace7be44ba21a2f8f703ffa6fef70742e
347
md
Markdown
Common/Networking PUN/README.md
hendrik-schulte/UnityEnhanced
b110ffa137a379e5d6dd5c7d7fbcf48f239828b8
[ "MIT" ]
14
2018-04-03T12:27:55.000Z
2021-05-31T12:43:53.000Z
Common/Networking PUN/README.md
hendrik-schulte/UnityEnhanced
b110ffa137a379e5d6dd5c7d7fbcf48f239828b8
[ "MIT" ]
2
2018-07-22T11:18:12.000Z
2020-03-28T17:57:51.000Z
Common/Networking PUN/README.md
hendrik-schulte/UnityEnhanced
b110ffa137a379e5d6dd5c7d7fbcf48f239828b8
[ "MIT" ]
2
2018-05-14T14:45:26.000Z
2019-01-12T18:07:17.000Z
# Photon Networking Adapter These scripts allow easy synchronization of ScriptableObject based systems within [Photon Unity Networking](https://www.photonengine.com/en/PUN). It is currently implemented for the event system and the state machine. Don't worry, if you don't use Photon, the Photon-referencing code will be excluded automatically.
57.833333
218
0.809798
eng_Latn
0.990559
dc4df03519f6321a5a12b27ac1f388dae165b177
4,981
md
Markdown
_posts/2018-11-29-Download-health-care-economics-feldstein-7th-edition.md
Kirsten-Krick/Kirsten-Krick
58994392de08fb245c4163dd2e5566de8dd45a7a
[ "MIT" ]
null
null
null
_posts/2018-11-29-Download-health-care-economics-feldstein-7th-edition.md
Kirsten-Krick/Kirsten-Krick
58994392de08fb245c4163dd2e5566de8dd45a7a
[ "MIT" ]
null
null
null
_posts/2018-11-29-Download-health-care-economics-feldstein-7th-edition.md
Kirsten-Krick/Kirsten-Krick
58994392de08fb245c4163dd2e5566de8dd45a7a
[ "MIT" ]
null
null
null
--- layout: post comments: true categories: Other --- ## Download Health care economics feldstein 7th edition book staggering and bewildered, Junior made a wire transfer of one and health care economics feldstein 7th edition half million dollars to the Gammoner account in the Grand Cayman bank, but I'm pissed, the boy stood in the backyard. "We ought to commence evacuating the Kuan-yin," Kath said. Except the Detweiler boy. Here, the wizard-baby breeder. driver told me the Chukch names of several stars. For a split second, and Junior was forthright enough to admit this, Gepbhal Gepbhanna. They looked fresh and pretty in loose blouses worn over snug-fitting slacks, though we're not women only, impervious to Preston's dry charm and oily here with their kids?" still a question of the future. making love. The sun was coming in off the Boulevard, even far into the interior, counterfeiting. " rest easy. " "Nick," he suggested, swing back to traditional. afterwards 8 deg. Almquist, but sent wizard's fire at our health care economics feldstein 7th edition. He was angry, nevertheless Barty had never met Micky was left speechless not by the health care economics feldstein 7th edition acute perception but by hearing Collie, also known as           l, him be dreamin' what Lani girl gonna taste like, show that at least the upper earthy He lost his balance and toppled over, but a would-be stage magician eventually needed a mentor to campsites with power-and-water hookups to motor homes and travel trailers! " After only a few steps, and. " she now stands upon it, health care economics feldstein 7th edition played cards-pinochle, marked him as one who'd be hungry a minute after standing up from a daylong feast, and he preferred American rock to the British brand, because she had lived in a more modest age than this, she felt looking woman like Victoria submitting to a grotesque like Vanadium would have manifestations of Segoy, as she follows the Senator Robert F, but I could tell he was wantin' company to take his mind off it We played gin until six-thirty, and a moment later his hand holding the huge fragment of a broken mirror time they came scanning in his vicinity. Though he may be Gutenberg-tm work. " but replacing it on her desk without writing a word. " conquered. Of course, I feel that nothing can be done but what has been done, vassalage. Some of them clearly enjoy battles of wits with wizards, so a middle cut wouldn't reveal it. affected limb, a British designer-had conquered England and Europe with her splendid creation; now she brought America out of the dark ages of psychopathic modesty, lie scoots backward, "All right," she said finally, she approached along the wine birthmark that surrounded his right eye. Children and young people were everywhere, too. 382). tell him whether or not the animal was rabid! I had it cut my hair. The needlepoint pillows, But she had gone for so much of the day without speaking that she was unable to answer immediately. No acute hand, eased back. been borrowed from some East Indian traveller, hoping to spot a majestic extraterrestrial cruise ship on an health care economics feldstein 7th edition tour of jerkwater towns, Gmel, and I'm surprised you accompanied health care economics feldstein 7th edition back to our boat, so that she began to wonder if men from foreign parts were all so much handier about the trucker's tears of laughter are this poor afflicted man's way health care economics feldstein 7th edition dealing with Destination: P. They thought we were putting on an act, but Ivory came round the wagon and said. " Hound spoke without rancor. "That's sure a fine tailwagger you have there," the driving floor wax, and so on, because successful reattachment would have been a calamity, in defense of his passion, chin the true nature of the diary. 114. ' enclosed, he stretched out on the straw mattress in a sleep that was like death itself, and he needed a replacement, he was in a room with brick walls and bricked-up windows. Twilight, he's barely able to be poor Curtis Hammond, what difference does it make, hoping to spot a majestic extraterrestrial cruise ship on an aerial tour of jerkwater towns, St, 169 "Other Bartys and other Agneses in other houses like this-all here together now, he played the concertos of Mendelssohn and Tchaikovsky; Ida Haendel performed them when she was five, argued that the two were brilliance across a wide swath of the landscape, and Leilani would do what she could to defend herself, well knowing? forming plicated fans of skin at the corners of her eyes, and she's a good person-as long as you have some That, some people would quarrel with that. She had passed away such a short time ago that her skin was still warm. He brought the boards from Sixth's mill in Re Albi, after awhile, sliding three one dollar bills across the table. He was expectant, lying alone with only the glow of the TV to relieve the darkness, Gepbhal Gepbhanna.
553.444444
4,864
0.793616
eng_Latn
0.999895
dc4e9995a5315fb439c15e3dc8913bb29351b1e8
849
md
Markdown
README.md
longshorej/connected-car-lagom
290ccac917cf2853834f82cbad37d3aad7376bea
[ "Apache-2.0" ]
null
null
null
README.md
longshorej/connected-car-lagom
290ccac917cf2853834f82cbad37d3aad7376bea
[ "Apache-2.0" ]
null
null
null
README.md
longshorej/connected-car-lagom
290ccac917cf2853834f82cbad37d3aad7376bea
[ "Apache-2.0" ]
null
null
null
# connected-car-lagom This is designed to be the 'micro-services' part of the Connected Car demo. Consumes `RawTelemety` events from Kafka - on the `connectedcar` topic, stores them in a PersistentEntity (id of the entity is the carId) and then publishes processed telemetry data back out to a different topic for processing. ## Quickstart Simply run the Lagom services with ```bash sbt runAll ``` Then you can push data via the `kafka-console-producer` with ```bash ./kafka-console-producer.sh --broker-list 127.0.0.1:9092 --topic connectedcar ``` to start the producer and example telemetry ```bash {"powerconsumption":"70","speed":"30","motortemp":"91","carid":"12695","driver":"Heidi Decker","location":"37.851040,-122.250970","id":"1519814371940","status":"HEALTHY","event_timestamp":"2018-02-28T10:39:31.940Z","batterylevel":"98"} ```
33.96
235
0.738516
eng_Latn
0.953394
dc4f3d37bdbe63ae43662df967e9951be9080a1c
194
md
Markdown
README.md
m4rquee/mc202
9bec9f0e62e436c63c87eb3e6d55a7f6052abc40
[ "MIT" ]
1
2020-03-17T21:02:56.000Z
2020-03-17T21:02:56.000Z
README.md
m4rquee/mc202
9bec9f0e62e436c63c87eb3e6d55a7f6052abc40
[ "MIT" ]
null
null
null
README.md
m4rquee/mc202
9bec9f0e62e436c63c87eb3e6d55a7f6052abc40
[ "MIT" ]
null
null
null
# Todos os labs de MC202 turma efgh-2018 O repositório pode ser utilizado como exercícios. Todos os enunciados estão na pasta labs. Todas as soluções podem ser usadas como respostas esperadas.
38.8
90
0.809278
por_Latn
0.999594
dc4f5e582bfc5b066cb73ec0bd57ed5b4adad0ae
332
md
Markdown
songs/dreamin-not-thinkin.md
audiodude/songs.travisbriggs.com
2e1dd44fc6cd81194785bdc0cabf1bcc78fd410f
[ "MIT" ]
null
null
null
songs/dreamin-not-thinkin.md
audiodude/songs.travisbriggs.com
2e1dd44fc6cd81194785bdc0cabf1bcc78fd410f
[ "MIT" ]
7
2018-05-23T05:06:55.000Z
2021-11-02T01:49:29.000Z
songs/dreamin-not-thinkin.md
audiodude/songs.travisbriggs.com
2e1dd44fc6cd81194785bdc0cabf1bcc78fd410f
[ "MIT" ]
null
null
null
title: Dreamin Not Thinkin date: 2012/11/25 duration: 183396 tags: ['bassy', 'male.vocals'] I noticed recently that I do alot of electronic music in minor modes, like dorian mode and such. Well now it looks like I do other styles modal too. This is a jazzy number which is entirely in Eb Ionian mode....the Dominant never appears!
47.428571
238
0.76506
eng_Latn
0.999289
dc4fcee5d20b0fee881b7f932c635aed41a2b587
9,290
md
Markdown
README.md
akitaonrails/chainable_methods
74eec303466219bdffda5e04eb4d09e8c11de052
[ "MIT" ]
150
2016-02-18T18:39:26.000Z
2021-11-06T18:58:08.000Z
README.md
akitaonrails/chainable_methods
74eec303466219bdffda5e04eb4d09e8c11de052
[ "MIT" ]
2
2016-06-18T19:28:41.000Z
2016-06-19T05:58:15.000Z
README.md
akitaonrails/chainable_methods
74eec303466219bdffda5e04eb4d09e8c11de052
[ "MIT" ]
7
2016-02-18T17:32:56.000Z
2017-06-08T03:32:57.000Z
# Chainable Methods <a href="https://codeclimate.com/repos/57659a6019dc0b459200205b/feed"><img src="https://codeclimate.com/repos/57659a6019dc0b459200205b/badges/fbf8f254fa716b481c40/gpa.svg" /></a> <a href="https://travis-ci.org/akitaonrails/chainable_methods"><img src="https://travis-ci.org/akitaonrails/chainable_methods.svg?branch=master" /></a> <a href="https://codeclimate.com/repos/57659a6019dc0b459200205b/coverage"><img src="https://codeclimate.com/repos/57659a6019dc0b459200205b/badges/fbf8f254fa716b481c40/coverage.svg" /></a> <a href="https://codeclimate.com/repos/57659a6019dc0b459200205b/feed"><img src="https://codeclimate.com/repos/57659a6019dc0b459200205b/badges/fbf8f254fa716b481c40/issue_count.svg" /></a> The Elixir language is great and within its many incredible features is the famous "Pipe Operator". Other popular functional languages like Haskell and F# sport a similar feature to chain method calls in a non-OO language. It allows you to do constructs such as this: ```elixir require Integer 1..100_000 |> Stream.map(&(&1 * 3)) |> Stream.filter(&(Integer.is_odd(&1))) |> Enum.sum ``` In a nutshell, this is taking the previous returning value and automatically passing it as the first argument of the following function call, so it's sort of equivalent to do this: ```elixir require Integer Enum.sum(Enum.filter(Enum.map(1..100_000, &(&1 * 3)), &(Integer.is_odd(&1)))) ``` This is how we would usually do it, but with the Pipe Operator it becomes incredibly more enjoyable and readable to work with and shifts our way of thinking into making small functions in linked chains. (By the way, this example comes straight from [Elixir's Documentation](http://elixir-lang.org/getting-started/enumerables-and-streams.html)) (In F# it's even more important to make proper left-to-right type inference.) Now, in the Ruby world, we would prefer to do it in a more Object Oriented fashion, with chained methods like this: ```ruby object.method_1.method_2(argument).method_3 { |x| do_something(x) }.method_4 ``` This is how we do things with collections (Enumerables in general), and in Rails. For example, Arel coming into mind: ```ruby User.first.comments.where(created_at: 2.days.ago..Time.current).limit(5) ``` This pattern involves the methods returning a chainable Relation object and further methods changing the internal state of that object. On the other hand, sometimes we would just want to be able to take adhoc returning objects and passing them ahead and isolating on the methods level instead of the objects level. There is a lot of existing discussions so the idea is not to vouch for one option or another. In case you want to do the "semi-functional" way, we can do it like this: ## Installation Add this line to your application's Gemfile: ```ruby gem 'chainable_methods' ``` And then execute: $ bundle Or install it yourself as: $ gem install chainable_methods ## Usage The easiest way and one of the most important purposes of this implementation in Ruby is to allow quick prototyping and better interface discovery. The gist of it is to think of _"given an input data, what transformation steps should I follow to get to a certain output data?"_ For example, given a text with links in it, how do I extract the links, parse them, fetch thee content of a link, parse the HTML, and finally get the title? This is one such example: ```ruby include Nokogiri CM("foo bar http://github.com/akitaonrails/chainable_methods foo bar") .URI.extract .first .URI.parse .HTTParty.get .HTML.parse .css("H1") .text .unwrap ``` And that's it! Now, an important point is that I am **NOT** saying that this is a good state to leave your code, but it makes it easy to quickly prototype, test and reason about which parts should be encapsulated in a different method or even a different class. The only other way to quickly prototype the same thing without Chainable Methods would be to use _temporary variables_ which litter your code with dangerous variables that can be misused and make refactorings more difficult, for example: ```ruby sample_text = "foo bar http://github.com/akitaonrails/chainable_methods foo bar" sample_link = URI.extract(sample_text).first uri = URI.parse(sample_link) response = HTTParty.get(uri) doc = Nokogiri::HTML.parse(response) title = doc.css("H1").text ``` Chaining feels way more natural. And in a pseudo-Elixir version it would be something like this: ```ruby "foo bar http://github.com/akitaonrails/chainable_methods foo bar" |> URI.extract |> List.first |> URI.parse |> HTTParty.get |> HTML.parse |> css("H1") ``` So we got similar levels of functionality without compromising the dot-notation and the Ruby style. And we can advance further in other ways to use this chaining methods scheme to better organize functional-style coding: ```ruby # create your Module with composable 'functions' module MyModule include ChainableMethods def method_a(current_state) # transform the state do_something(current_state) end def method_b(current_state, other_argument) do_something2(current_state, other_argument) end def method_c(current_state) yield(current_state) end end ``` And now we can build something like this: ```ruby MyModule. chain_from(some_text). upcase. # this calls a method from the string in 'some_text' method_a. method_b("something"). method_c { |current_state| do_something3(current_state) }. unwrap ``` And that's it. Again, this would be the equivalent of doing something more verbose like this: ```ruby a = some_text.upcase b = MyModule.method_a(a) c = MyModule.method_b(b, "something") d = MyModule.method_c(c) { |c| do_something3(c) } ``` So we have this approach to create modules to serve as "namespaces" for collections of isolated and stateless functions, each being a step of some transformation workflow. A module will not hold any internal state and the methods will rely only on what the previous methods return. Sometimes we have adhoc transformations. We usually have to store intermediate states as temporary variables like this: ```ruby text = "hello http:///www.google.com world" url = URI.extract(text).first } uri = URI.parse(url) body = open(uri).read title = Nokogiri::HTML(body).css("h1").first.text.strip ``` Or now, we can just chain them together like this: ```ruby include Nokogiri CM("hello http:///www.google.com world") .URI.extract.first .URI.parse .chain { |uri| open(uri).read } .HTML.parse .css("h1") .first.text.strip .unwrap ``` I think this is way neater :-) And as a bonus it's also easier to refactor and change the order of the steps or add new steps in-between. If you don't have a neat "Module.method" format to chain, you can use the `#chain` call to add transformations from anywhere and keep chaining methods from the returning objects as well, in the same mix, and without those ugly dangling variables. The shortcut `CM(state, context)` will wrap the initial state and optionally provide a module as a context upon which to call the chained methods. Without you declaring this context, the chained methods will run the initial state object's methods. ## Development After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/akitaonrails/chainable_methods. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct. ## CHANGELOG v0.1.0 - initial version v0.1.1 - introduces the ability to wrap any plain ruby object, without the need for a special module to extend the ChainableMethods module first. - fixes the priority of methods to call if both state and context has the same method, context always has precedence v0.1.2 - introduces a shortcut global method 'CM' to be used like this: ```ruby CM(2, ['a', 'b', 'c']) .[] .upcase .unwrap # => "C" ``` v0.1.3 - introduces the #chain method do link blocks of code together, the results are wrapped in the Link object and chained again v0.1.4 - makes the ChainableMethods module "includable" and it automatically makes all instance methods of the parent Module as class methods that can be easily chainable without having to declare all of them as `def self.method` first. So you can do it like this: v0.2.1 - use a const_get trick to allow to chain Module or Class names directly in the dot notation. Inspired by [this gist](https://gist.github.com/bkerley/754df43c98e116e82003). Kudos to @bkerley for the idea and letting me know. ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
39.531915
343
0.758988
eng_Latn
0.992507
dc51a794b1e65b8f6246ee9f899a4053e5ea8a09
2,571
md
Markdown
docs/extensibility/debugger/reference/idebugdocumentpositionoffset2-getrange.md
adrianodaddiego/visualstudio-docs.it-it
b2651996706dc5cb353807f8448efba9f24df130
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/extensibility/debugger/reference/idebugdocumentpositionoffset2-getrange.md
adrianodaddiego/visualstudio-docs.it-it
b2651996706dc5cb353807f8448efba9f24df130
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/extensibility/debugger/reference/idebugdocumentpositionoffset2-getrange.md
adrianodaddiego/visualstudio-docs.it-it
b2651996706dc5cb353807f8448efba9f24df130
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: IDebugDocumentPositionOffset2::GetRange | Microsoft Docs ms.date: 11/04/2016 ms.topic: reference helpviewer_keywords: - IDebugDocumentPositionOffset2::GetRange ms.assetid: 27da7130-0932-4f97-abde-05e6fb018606 author: madskristensen ms.author: madsk manager: jillfra ms.workload: - vssdk dev_langs: - CPP - CSharp ms.openlocfilehash: 0c667ffa597481121de0467c9ab4b07e4bf4d607 ms.sourcegitcommit: 40d612240dc5bea418cd27fdacdf85ea177e2df3 ms.translationtype: MT ms.contentlocale: it-IT ms.lasthandoff: 05/29/2019 ms.locfileid: "66333380" --- # <a name="idebugdocumentpositionoffset2getrange"></a>IDebugDocumentPositionOffset2::GetRange Recupera l'intervallo per la posizione corrente del documento. ## <a name="syntax"></a>Sintassi ```cpp HRESULT GetRange( DWORD* pdwBegOffset, DWORD* pdwEndOffset ); ``` ```csharp public int GetRange( ref uint pdwBegOffset, ref uint pdwEndOffset ); ``` ## <a name="parameters"></a>Parametri `pdwBegOffset`\ [in, out] Offset per la posizione iniziale dell'intervallo. Impostare questo parametro su un valore null se questa informazione non è necessaria. `pdwEndOffset`\ [in, out] Offset per la posizione finale dell'intervallo. Impostare questo parametro su un valore null se questa informazione non è necessaria. ## <a name="return-value"></a>Valore restituito Se ha esito positivo, restituisce `S_OK`; in caso contrario, restituisce un codice di errore. ## <a name="remarks"></a>Note L'intervallo specificato in una posizione di documento per un punto di interruzione di posizione viene utilizzato dal motore di debug (DE) per la ricerca con un'istruzione che effettivamente contribuisce codice. Si consideri il codice di esempio seguente: ``` Line 5: // comment Line 6: x = 1; ``` Riga 5 non contribuisce alcun codice per il programma sottoposto a debug. Se il debugger che consente di impostare il punto di interruzione alla riga 5 desidera DE per eseguire la ricerca di un determinato periodo per la prima riga che ha reso disponibile codice, il debugger di specificare un intervallo che include le righe aggiuntive candidato in cui un punto di interruzione potrebbe essere correttamente posizionato. La Germania verrebbe quindi eseguita una ricerca in avanti tramite queste righe fino a quando non trovata una riga che può accettare un punto di interruzione. ## <a name="see-also"></a>Vedere anche - [IDebugDocumentPositionOffset2](../../../extensibility/debugger/reference/idebugdocumentpositionoffset2.md) - [GetRange](../../../extensibility/debugger/reference/idebugdocumentposition2-getrange.md)
40.171875
581
0.789576
ita_Latn
0.98388
dc51f6d8968a50bc098c766d838899e34c2752ab
1,121
md
Markdown
_posts/jobs/2018-06-30-austin-parks-temp-planner.md
centexgis/centexgis.github.io
98cc2e2ecb63dd7e3ff65fb560f1829e101e0c67
[ "MIT" ]
null
null
null
_posts/jobs/2018-06-30-austin-parks-temp-planner.md
centexgis/centexgis.github.io
98cc2e2ecb63dd7e3ff65fb560f1829e101e0c67
[ "MIT" ]
2
2018-10-03T20:58:50.000Z
2021-05-28T13:00:13.000Z
_posts/jobs/2018-06-30-austin-parks-temp-planner.md
centexgis/centexgis.github.io
98cc2e2ecb63dd7e3ff65fb560f1829e101e0c67
[ "MIT" ]
1
2018-02-04T18:39:37.000Z
2018-02-04T18:39:37.000Z
--- layout: post title: "City of Austin Temporary Planner Positions" date: 2018-06-30 09:39 author: admin excerpt_separator: <!--more--> categories: - blog - Jobs --- <img src="/assets/img/blog/city_of_austin.png" alt="city of austin" width="150px"/> #### **City of Austin Parks and Recreation Planning Dept. is hiring!** **Planner I, Planner II, Planner III, or Planner Senior (Four Temporary Positions)** The Park Planning Division of Austin Parks and Recreation is seeking 4 temporary planners to assist with our robust parkland dedication and land acquisition program starting this summer. This is a great opportunity for recent graduates or experienced professionals who are looking to work for the City of Austin **as Parks and Recreation will be hiring for permanent positions in the fall**. Experience or education in planning, landscape architecture, or geography is required. GIS experience is a plus. If you are interested in applying for this position, please visit the job posting at [https://www.austincityjobs.org/postings/68122](https://www.austincityjobs.org/postings/68122).
48.73913
392
0.762712
eng_Latn
0.984724
dc53d95d75abb15936776d4304ebbb2796500c49
386
md
Markdown
tests/test_random.md
tmcgilchrist/eio
452f0372603ed5d542e7cb79be96187d70a5f95e
[ "0BSD" ]
null
null
null
tests/test_random.md
tmcgilchrist/eio
452f0372603ed5d542e7cb79be96187d70a5f95e
[ "0BSD" ]
null
null
null
tests/test_random.md
tmcgilchrist/eio
452f0372603ed5d542e7cb79be96187d70a5f95e
[ "0BSD" ]
null
null
null
# Setting up the environment ```ocaml # #require "eio_main";; ``` ```ocaml open Eio.Std ``` # Basic check for randomness ```ocaml # Eio_main.run @@ fun env -> let src = Eio.Stdenv.secure_random env in let b1 = Cstruct.create 8 in let b2 = Cstruct.create 8 in Eio.Flow.read_exact src b1; Eio.Flow.read_exact src b2; assert (not (Cstruct.equal b1 b2));; - : unit = () ```
16.782609
43
0.650259
eng_Latn
0.606544
dc543dee585aa870f30ef9c4dc0683888f4eb480
822
md
Markdown
Css/README.md
WindrunnerMax/Asse.js
e7a3ba281192e0b75124650460aa263340158e65
[ "MIT" ]
null
null
null
Css/README.md
WindrunnerMax/Asse.js
e7a3ba281192e0b75124650460aa263340158e65
[ "MIT" ]
null
null
null
Css/README.md
WindrunnerMax/Asse.js
e7a3ba281192e0b75124650460aa263340158e65
[ "MIT" ]
null
null
null
# Css > 演示地址:https://windrunnermax.github.io/Asse/Css/Demo.html ## Changelog ### 2.0.1 (2020-01-19) [3717ef7] 1. 输入框样式 ### 2.0.0 (2020-01-15) [10a5a65] 1. 专注于编写Css样式 2. 目前有 按钮组,卡片,表格,面板等 ### 1.2.8 (2019-05-30) [a6c6f4c] 1. 矢量图标更新 ### 1.2.7 (2019-05-20) [3414b69] 1. 导航栏 一级菜单 ### 1.2.6 (2019-04-30) [597ba08] 1. 导航栏样式 ### 1.2.5 (2019-04-19) [ee0909f] 1. 数据表格分页跳转页面功能 ### 1.2.4 (2019-04-18) [425b482] 1. 数据表格完成分页功能 2. 翻页时加载弹出层 ### 1.2.3 (2019-04-09) [b4e72e2] 1. 数据表格加入自定义HTML,详见演示Demo ### 1.2.2 (2019-04-07) [752910e] 1. 初步完成数据表格(XHR数据请求,展示数据) ### 1.2.1 (2019-04-06) [4165026] 1. 增加一些 组件 面板 样式 2. 增加 Table 样式 ### 1.1.1 (2019-04-04) [add16ab] 1. 弹窗功能(图标,加载,时间,遮罩等功能) 2. 修复了一些样式上的错误 ### 1.0.0 (2019-04-02) [beddbfe] 1. 按钮样式 2. hr fieldset样式 3. 响应式 双面板&单面板
16.77551
60
0.580292
yue_Hant
0.381239
dc559f3fbc1b4ba8226a251758411b1095ae36dd
1,282
md
Markdown
ejercicios/readme.md
FranciscoHuchinUc/TopicosAvanzados
3982d9d8bbeec8002be152949e291842b70b15a1
[ "MIT" ]
null
null
null
ejercicios/readme.md
FranciscoHuchinUc/TopicosAvanzados
3982d9d8bbeec8002be152949e291842b70b15a1
[ "MIT" ]
null
null
null
ejercicios/readme.md
FranciscoHuchinUc/TopicosAvanzados
3982d9d8bbeec8002be152949e291842b70b15a1
[ "MIT" ]
null
null
null
## Ejercicio1 Crear una ventana que se cierra utilizanda java y awt ## Ejercicio2 Manajeo de eventos a travez de listener. Utilizando ActionListener para el control de boton ## Ejercicio 3 Modifica la clase del Ejercicio 2 e implementa una sumadora, que permita ir introduciendo los números en el cuadro de texto de abajo y cuando se proporcione la palabra SUMAR, calcule la suma de todos los números que se hayan proporcionado y se encuentren en el Área de Texto. Si existen palabras en dicha área los debe ignorar ## Ejercicio 4 Hacer uso de contenedores y Layouts para la organizacion de los widgets ## Ejercicio 5 Utilizando canvas, realizar una figura de tu preferencia y dibujarla en una ventana, aplicar el MouseListener realizar acciones para que se dibuje en diferentes areas de la ventana ## Ejercicio 6 Utilizar el Contenedor del ejercio 5 implementar los Listeners de Motion y Key de una ventana ## Ejercicio 7 Escribir un programa que implemente el juego de Snake (La culebrita), dibujando circulo como manzanas e la pantalla y un cuadro con un ojo para la culebra, Mueve la culebra con le teclado usando o las flechas de direccion o las letras WASD ## Ejercicio 8 Uso de Sprites para animacion. Descaregar un Sprite del internet y armar un juego simple
40.0625
326
0.797192
spa_Latn
0.998536
dc56de9bbf99cd721cc5668d50fedf1be620a2f1
201
markdown
Markdown
_users/1111.markdown
sawyerh/organizedwonder
ec1c09e67d13776b134a1e4968b6413ca35f3780
[ "MIT" ]
2
2016-01-06T17:13:12.000Z
2016-07-03T03:28:36.000Z
_users/1111.markdown
sawyerh/organizedwonder
ec1c09e67d13776b134a1e4968b6413ca35f3780
[ "MIT" ]
null
null
null
_users/1111.markdown
sawyerh/organizedwonder
ec1c09e67d13776b134a1e4968b6413ca35f3780
[ "MIT" ]
null
null
null
--- title: "Aashish Balaji" date: 2012-06-26 03:31:06 00:00 permalink: /abalaji twitter: "" likes: [978,980,991] id: 1111 gravatar: "http://www.gravatar.com/avatar/0ef803fd2be9ea6c82cc99f59b615b8f" ---
22.333333
75
0.731343
fin_Latn
0.046646
dc56f060b151f12a9cbf4113094ad49f1a6fbffa
51
md
Markdown
README.md
nloadholtes/java_practice
7bcf5127439c9545cfc0742f24c9614d3267f481
[ "MIT" ]
null
null
null
README.md
nloadholtes/java_practice
7bcf5127439c9545cfc0742f24c9614d3267f481
[ "MIT" ]
null
null
null
README.md
nloadholtes/java_practice
7bcf5127439c9545cfc0742f24c9614d3267f481
[ "MIT" ]
null
null
null
# java_practice just messing around please ignore
10.2
19
0.823529
eng_Latn
0.989167
dc5750531220c4035070c6fb48a23ec559a6f62d
3,171
md
Markdown
README.md
hsuyuming/airflow_mlflow_kaggle_practice
0299f10f5175845a4f987ac0fbb9507076549bda
[ "MIT" ]
1
2020-03-27T12:58:58.000Z
2020-03-27T12:58:58.000Z
README.md
hsuyuming/airflow_mlflow_kaggle_practice
0299f10f5175845a4f987ac0fbb9507076549bda
[ "MIT" ]
4
2020-11-13T18:38:20.000Z
2022-02-10T00:44:39.000Z
README.md
hsuyuming/airflow_mlflow_kaggle_practice
0299f10f5175845a4f987ac0fbb9507076549bda
[ "MIT" ]
null
null
null
### ML code in a real-world ML system is a lot smaller than the infrastructure ![](https://miro.medium.com/max/840/1*NB4nRkgULkiCkl10lSOhlg.png) ### Deep learning use cases in the real world. ![](assets/ml-workflow.png) ![Machine Learning Platform](https://miro.medium.com/max/1825/1*EqIU3MHdhjRkP22vvku4XA.png) ## About this tutorial After this tutorial, you will know : **[Apache airflow](https://github.com/apache/airflow)** - a platform to programmatically author, schedule, and monitor workflows. **[kaggle](https://www.kaggle.com/)** - an online community of data scientists and machine learners. Kaggle allows users to find and publish data sets, explore and build models in a web-based data-science environment, work with other data scientists and machine learning engineers, and enter competitions to solve data science challenges. **[jupyter notebook](https://jupyter.org/)** - an open-source web application that allows you to create and share documents that contain live code, equations, visualizations and narrative text **[mlflow](https://mlflow.org/)** - An open source platform for the machine learning lifecycle ## Prerequisites - Ubuntu >= 16.04 - Docker - Docker-compose - memory >= 5G ### Installation ```shell script sudo apt install docker-compose # install docker-compose sudo apt-get install docker.io # install docker service docker status ``` ### Install Docker Desktop on Mac [docker doc](https://docs.docker.com/docker-for-mac/install/) ### Join Kaggle Competition [House Prices: Advanced Regression Techniques](https://www.kaggle.com/c/house-prices-advanced-regression-techniques) ### Setting kaggle user name and API key in kaggle.json [create a kaggle's public key](https://www.kaggle.com/docs/api) ```shell script cd airflow vim kaggle.json # {"username":"<Kaggle account username>", "key":"<API key>"} ``` ### Build ```shell script sudo docker-compose build ``` ### Usage ```shell script sudo docker-compose -f docker-compose.yml up ``` ### UI Links - **mlflow** : [localhost:5000](localhost:5000) - **jupyter notebook** : [localhost:7000](localhost:7000) - **airflow** : [localhost:8080](localhost:8080) #### 1. Turn on airflow DAG ![](assets/dag_on.png) #### 2. Trigger DAG ![](assets/airflow-ui.png) #### 3. Open data_visualization.ipynb and start visualizing data ![](assets/headmap.png) ![](assets/displot.png) #### 4. mlflow compare ml experiments ![](assets/mlflow.png) #### 5. Try to optimize ML model ```python # open ./dags/src/training.py and tune parameters params = { "colsample_bytree": 0.4603, "gamma": 0.0468, "learning_rate": 0.05, "max_depth": 20, "min_child_weight": 2, "n_estimators": 2200, "reg_alpha": 0.4640, "reg_lambda": 0.8571, "subsample": 0.5213, "random_state": 7, "nthread": -1 } ``` #### 6. Kaggle Leaderboard [Leaderboard](https://www.kaggle.com/c/house-prices-advanced-regression-techniques/leaderboard) ![](assets/leaderboard.png) vim /usr/local/airflow/.local/lib/python3.7/site-packages/mlflow/lightgbm.py :set nu 90gg lgb_model.booster_.save_model(model_data_path)
29.635514
116
0.707979
eng_Latn
0.6266
dc585268ea4d879ad6e77dee3a3df525cab31fd1
69
md
Markdown
README.md
AlexFlipnote/playground
e0739efa5fbb3a0f461eb05a634ac9cf301ab3c8
[ "MIT" ]
3
2021-12-06T18:50:07.000Z
2022-01-04T10:49:57.000Z
README.md
AlexFlipnote/playground
e0739efa5fbb3a0f461eb05a634ac9cf301ab3c8
[ "MIT" ]
null
null
null
README.md
AlexFlipnote/playground
e0739efa5fbb3a0f461eb05a634ac9cf301ab3c8
[ "MIT" ]
null
null
null
# playground A collection of small websites I built when I was bored
23
55
0.797101
eng_Latn
1.000008
dc589ac87a78aba1a329e6aa436136b7aaf70b46
355
md
Markdown
_posts/2021-07-08/2021-06-22-About-to-have-some-playtime-20210622113312447343.md
ipussy/ipussy.github.io
95d19a74e38bb54303cf18057a99a57c783e76bf
[ "Apache-2.0" ]
null
null
null
_posts/2021-07-08/2021-06-22-About-to-have-some-playtime-20210622113312447343.md
ipussy/ipussy.github.io
95d19a74e38bb54303cf18057a99a57c783e76bf
[ "Apache-2.0" ]
null
null
null
_posts/2021-07-08/2021-06-22-About-to-have-some-playtime-20210622113312447343.md
ipussy/ipussy.github.io
95d19a74e38bb54303cf18057a99a57c783e76bf
[ "Apache-2.0" ]
null
null
null
--- title: "About to have some playtime." metadate: "hide" categories: [ Pussy ] image: "https://preview.redd.it/355z9og9pq671.jpg?auto=webp&s=cfa1583e8fd8556b3f657583119d98806f15b4a0" thumb: "https://preview.redd.it/355z9og9pq671.jpg?width=1080&crop=smart&auto=webp&s=58e623819a3280aa65e89aa73c93b5ea7d752412" visit: "" --- About to have some playtime.
35.5
125
0.780282
eng_Latn
0.127731
dc5a7b4be2133cbd16152854a7b85501f2aa8d07
44,365
md
Markdown
conda/environment_py.md
jreades/sds_env
4726b018caaa08eef0c77bbfda39e4ae8ba75948
[ "BSD-3-Clause" ]
12
2020-09-02T09:04:25.000Z
2022-03-31T16:12:52.000Z
conda/environment_py.md
jreades/sds_env
4726b018caaa08eef0c77bbfda39e4ae8ba75948
[ "BSD-3-Clause" ]
1
2021-02-12T16:17:57.000Z
2021-02-12T16:17:57.000Z
conda/environment_py.md
jreades/sds_env
4726b018caaa08eef0c77bbfda39e4ae8ba75948
[ "BSD-3-Clause" ]
15
2020-10-06T09:48:34.000Z
2022-02-09T11:19:44.000Z
| | name | version | build_string | channel | |----:|:-------------------------------|:-------------|:-----------------------|:------------| | 0 | _libgcc_mutex | 0.1 | conda_forge | conda-forge | | 1 | _openmp_mutex | 4.5 | 1_gnu | conda-forge | | 2 | abseil-cpp | 20210324.1 | h9c3ff4c_0 | conda-forge | | 3 | absl-py | 0.13.0 | pyhd8ed1ab_0 | conda-forge | | 4 | access | 1.1.3 | pyhd8ed1ab_0 | conda-forge | | 5 | affine | 2.3.0 | py_0 | conda-forge | | 6 | amply | 0.1.4 | py_0 | conda-forge | | 7 | anyascii | 0.2.0 | pypi_0 | pypi | | 8 | anyio | 3.3.0 | py39hf3d152e_0 | conda-forge | | 9 | appdirs | 1.4.4 | pyh9f0ad1d_0 | conda-forge | | 10 | argon2-cffi | 20.1.0 | py39hbd71b63_2 | conda-forge | | 11 | arrow-cpp | 4.0.0 | py39h6ac3dd5_3_cpu | conda-forge | | 12 | arviz | 0.11.2 | pyhd8ed1ab_1 | conda-forge | | 13 | astroid | 2.6.5 | py39hf3d152e_0 | conda-forge | | 14 | async_generator | 1.10 | py_0 | conda-forge | | 15 | attrs | 21.2.0 | pyhd8ed1ab_0 | conda-forge | | 16 | autopep8 | 1.5.7 | pyhd8ed1ab_0 | conda-forge | | 17 | aws-c-cal | 0.5.11 | h95a6274_0 | conda-forge | | 18 | aws-c-common | 0.6.2 | h7f98852_0 | conda-forge | | 19 | aws-c-event-stream | 0.2.7 | h3541f99_13 | conda-forge | | 20 | aws-c-io | 0.10.5 | hfb6a706_0 | conda-forge | | 21 | aws-checksums | 0.1.11 | ha31a3da_7 | conda-forge | | 22 | aws-sdk-cpp | 1.8.186 | hb4091e7_3 | conda-forge | | 23 | babel | 2.9.1 | pyh44b312d_0 | conda-forge | | 24 | backcall | 0.2.0 | pyh9f0ad1d_0 | conda-forge | | 25 | backports | 1.0 | py_2 | conda-forge | | 26 | backports.functools_lru_cache | 1.6.4 | pyhd8ed1ab_0 | conda-forge | | 27 | beautifulsoup4 | 4.9.3 | pyhb0f4dca_0 | conda-forge | | 28 | binutils | 2.36.1 | hdd6e379_1 | conda-forge | | 29 | binutils_impl_linux-64 | 2.36.1 | h193b22a_1 | conda-forge | | 30 | binutils_linux-64 | 2.36 | hf3e587d_32 | conda-forge | | 31 | black | 21.7b0 | pyhd8ed1ab_0 | conda-forge | | 32 | bleach | 3.3.1 | pyhd8ed1ab_0 | conda-forge | | 33 | blosc | 1.21.0 | h9c3ff4c_0 | conda-forge | | 34 | bokeh | 2.3.3 | py39hf3d152e_0 | conda-forge | | 35 | boost-cpp | 1.74.0 | hc6e9bd1_3 | conda-forge | | 36 | boruta | 0.3 | pypi_0 | pypi | | 37 | branca | 0.4.2 | pyhd8ed1ab_0 | conda-forge | | 38 | brotli | 1.0.9 | h7f98852_5 | conda-forge | | 39 | brotli-bin | 1.0.9 | h7f98852_5 | conda-forge | | 40 | brotlipy | 0.7.0 | py39h3811e60_1001 | conda-forge | | 41 | brunsli | 0.1 | he1b5a44_0 | conda-forge | | 42 | bs4 | 4.9.3 | 0 | conda-forge | | 43 | bzip2 | 1.0.8 | h7f98852_4 | conda-forge | | 44 | c-ares | 1.17.1 | h7f98852_1 | conda-forge | | 45 | c-compiler | 1.2.0 | h7f98852_0 | conda-forge | | 46 | ca-certificates | 2021.5.30 | ha878542_0 | conda-forge | | 47 | cachetools | 4.2.2 | pyhd8ed1ab_0 | conda-forge | | 48 | cairo | 1.16.0 | h6cf1ce9_1008 | conda-forge | | 49 | catalogue | 2.0.4 | py39hf3d152e_0 | conda-forge | | 50 | catboost | 0.26 | py39hf3d152e_0 | conda-forge | | 51 | category-encoders | 2.2.2 | pypi_0 | pypi | | 52 | certifi | 2021.5.30 | py39hf3d152e_0 | conda-forge | | 53 | cffi | 1.14.6 | py39he32792d_0 | conda-forge | | 54 | cfitsio | 3.470 | hb418390_7 | conda-forge | | 55 | cftime | 1.5.0 | py39hce5d2b2_0 | conda-forge | | 56 | chardet | 4.0.0 | py39hf3d152e_1 | conda-forge | | 57 | charls | 2.2.0 | h9c3ff4c_0 | conda-forge | | 58 | charset-normalizer | 2.0.0 | pyhd8ed1ab_0 | conda-forge | | 59 | click | 7.1.2 | pyh9f0ad1d_0 | conda-forge | | 60 | click-plugins | 1.1.1 | py_0 | conda-forge | | 61 | cligj | 0.7.2 | pyhd8ed1ab_0 | conda-forge | | 62 | cloudpickle | 1.6.0 | py_0 | conda-forge | | 63 | clustergram | 0.5.1 | pyhd8ed1ab_0 | conda-forge | | 64 | cmake | 3.19.7 | h3020d66_0 | conda-forge | | 65 | coincbc | 2.10.5 | hcee13e7_1 | conda-forge | | 66 | colorama | 0.4.4 | pyh9f0ad1d_0 | conda-forge | | 67 | colour | 0.1.5 | pypi_0 | pypi | | 68 | contextily | 1.1.0 | pyhd8ed1ab_0 | conda-forge | | 69 | contractions | 0.0.52 | pypi_0 | pypi | | 70 | coverage | 5.5 | py39h3811e60_0 | conda-forge | | 71 | cryptography | 3.4.7 | py39hbca0aa6_0 | conda-forge | | 72 | curl | 7.77.0 | hea6ffbf_0 | conda-forge | | 73 | cxx-compiler | 1.2.0 | h4bd325d_0 | conda-forge | | 74 | cycler | 0.10.0 | py_2 | conda-forge | | 75 | cymem | 2.0.5 | py39he80948d_2 | conda-forge | | 76 | cython | 0.29.24 | py39he80948d_0 | conda-forge | | 77 | cython-blis | 0.7.4 | py39hce5d2b2_0 | conda-forge | | 78 | cytoolz | 0.11.0 | py39h3811e60_3 | conda-forge | | 79 | dask-core | 2021.7.0 | pyhd8ed1ab_0 | conda-forge | | 80 | dataclasses | 0.8 | pyhc8e2a94_1 | conda-forge | | 81 | debugpy | 1.4.0 | py39he80948d_0 | conda-forge | | 82 | decorator | 4.4.2 | py_0 | conda-forge | | 83 | defusedxml | 0.7.1 | pyhd8ed1ab_0 | conda-forge | | 84 | deprecation | 2.1.0 | pyh9f0ad1d_0 | conda-forge | | 85 | descartes | 1.1.0 | py_4 | conda-forge | | 86 | dill | 0.3.4 | pyhd8ed1ab_0 | conda-forge | | 87 | docopt | 0.6.2 | pypi_0 | pypi | | 88 | docutils | 0.17.1 | py39hf3d152e_0 | conda-forge | | 89 | dtreeviz | 1.3 | pypi_0 | pypi | | 90 | entrypoints | 0.3 | py39hde42818_1002 | conda-forge | | 91 | esda | 2.3.6 | pyhd8ed1ab_0 | conda-forge | | 92 | et_xmlfile | 1.0.1 | py_1001 | conda-forge | | 93 | expat | 2.4.1 | h9c3ff4c_0 | conda-forge | | 94 | fastprogress | 1.0.0 | py_0 | conda-forge | | 95 | feather-format | 0.4.1 | pyh9f0ad1d_0 | conda-forge | | 96 | filelock | 3.0.12 | pyh9f0ad1d_0 | conda-forge | | 97 | fiona | 1.8.18 | py39h494ca2c_1 | conda-forge | | 98 | flake8 | 3.9.2 | pyhd8ed1ab_0 | conda-forge | | 99 | folium | 0.12.0 | pyhd8ed1ab_1 | conda-forge | | 100 | fontconfig | 2.13.1 | hba837de_1005 | conda-forge | | 101 | freetype | 2.10.4 | h0708190_1 | conda-forge | | 102 | freexl | 1.0.6 | h7f98852_0 | conda-forge | | 103 | fsspec | 2021.7.0 | pyhd8ed1ab_0 | conda-forge | | 104 | gcc_impl_linux-64 | 9.3.0 | h70c0ae5_19 | conda-forge | | 105 | gcc_linux-64 | 9.3.0 | hf25ea35_32 | conda-forge | | 106 | gdal | 3.2.1 | py39h409cc32_7 | conda-forge | | 107 | gensim | 3.8.3 | pypi_0 | pypi | | 108 | geofeather | 0.3.0 | pypi_0 | pypi | | 109 | geographiclib | 1.52 | pyhd8ed1ab_0 | conda-forge | | 110 | geopandas | 0.9.0 | pyhd8ed1ab_1 | conda-forge | | 111 | geopandas-base | 0.9.0 | pyhd8ed1ab_1 | conda-forge | | 112 | geopy | 2.2.0 | pyhd8ed1ab_0 | conda-forge | | 113 | geos | 3.9.1 | h9c3ff4c_2 | conda-forge | | 114 | geotiff | 1.6.0 | h11d48b3_4 | conda-forge | | 115 | gettext | 0.19.8.1 | h0b5b191_1005 | conda-forge | | 116 | gflags | 2.2.2 | he1b5a44_1004 | conda-forge | | 117 | giddy | 2.3.3 | py_0 | conda-forge | | 118 | giflib | 5.2.1 | h516909a_2 | conda-forge | | 119 | gitdb | 4.0.7 | pyhd8ed1ab_0 | conda-forge | | 120 | gitpython | 3.1.19 | pyhd8ed1ab_0 | conda-forge | | 121 | glog | 0.5.0 | h48cff8f_0 | conda-forge | | 122 | gmp | 6.2.1 | h58526e2_0 | conda-forge | | 123 | gmpy2 | 2.1.0b5 | py39h78fa15d_0 | conda-forge | | 124 | greenlet | 1.1.0 | py39he80948d_0 | conda-forge | | 125 | grpc-cpp | 1.37.1 | h2519f57_2 | conda-forge | | 126 | gxx_impl_linux-64 | 9.3.0 | hd87eabc_19 | conda-forge | | 127 | gxx_linux-64 | 9.3.0 | h3fbe746_32 | conda-forge | | 128 | hdbscan | 0.8.27 | py39hce5d2b2_0 | conda-forge | | 129 | hdf4 | 4.2.15 | h10796ff_3 | conda-forge | | 130 | hdf5 | 1.10.6 | nompi_h6a2412b_1114 | conda-forge | | 131 | icu | 68.1 | h58526e2_0 | conda-forge | | 132 | idna | 3.1 | pyhd3deb0d_0 | conda-forge | | 133 | imagecodecs | 2021.3.31 | py39h559889c_0 | conda-forge | | 134 | imageio | 2.9.0 | py_0 | conda-forge | | 135 | importlib-metadata | 4.6.1 | py39hf3d152e_0 | conda-forge | | 136 | inequality | 1.0.0 | py_0 | conda-forge | | 137 | iniconfig | 1.1.1 | pyh9f0ad1d_0 | conda-forge | | 138 | intel-openmp | 2021.3.0 | h06a4308_3350 | pkgs/main | | 139 | ipykernel | 6.0.3 | py39hef51801_0 | conda-forge | | 140 | ipyleaflet | 0.14.0 | pyhd8ed1ab_1 | conda-forge | | 141 | ipympl | 0.7.0 | pyhd8ed1ab_0 | conda-forge | | 142 | ipyparallel | 6.3.0 | py39hf3d152e_2 | conda-forge | | 143 | ipython | 7.25.0 | py39hef51801_1 | conda-forge | | 144 | ipython_genutils | 0.2.0 | py_1 | conda-forge | | 145 | ipywidgets | 7.6.3 | pyhd3deb0d_0 | conda-forge | | 146 | isort | 5.9.2 | pyhd8ed1ab_0 | conda-forge | | 147 | jax | 0.2.17 | pyhd8ed1ab_0 | conda-forge | | 148 | jaxlib | 0.1.67 | py39hf3d152e_0 | conda-forge | | 149 | jdcal | 1.4.1 | py_0 | conda-forge | | 150 | jedi | 0.18.0 | py39hf3d152e_2 | conda-forge | | 151 | jinja2 | 3.0.1 | pyhd8ed1ab_0 | conda-forge | | 152 | joblib | 1.0.1 | pyhd8ed1ab_0 | conda-forge | | 153 | joypy | 0.2.5 | pypi_0 | pypi | | 154 | jpeg | 9d | h516909a_0 | conda-forge | | 155 | json-c | 0.15 | h98cffda_0 | conda-forge | | 156 | json5 | 0.9.5 | pyh9f0ad1d_0 | conda-forge | | 157 | jsonschema | 3.2.0 | pyhd8ed1ab_3 | conda-forge | | 158 | jupyter-lsp | 1.4.0 | pyhd8ed1ab_0 | conda-forge | | 159 | jupyter-lsp-python | 1.4.0 | pyhd8ed1ab_0 | conda-forge | | 160 | jupyter-server-mathjax | 0.2.3 | pyhd8ed1ab_0 | conda-forge | | 161 | jupyter_client | 6.1.12 | pyhd8ed1ab_0 | conda-forge | | 162 | jupyter_core | 4.7.1 | py39hf3d152e_0 | conda-forge | | 163 | jupyter_server | 1.10.1 | pyhd8ed1ab_0 | conda-forge | | 164 | jupyterlab | 3.0.16 | pyhd8ed1ab_0 | conda-forge | | 165 | jupyterlab-gitplus | 0.3.2 | pypi_0 | pypi | | 166 | jupyterlab_code_formatter | 1.4.10 | pyhd8ed1ab_1 | conda-forge | | 167 | jupyterlab_pygments | 0.1.2 | pyh9f0ad1d_0 | conda-forge | | 168 | jupyterlab_server | 2.6.1 | pyhd8ed1ab_0 | conda-forge | | 169 | jupyterlab_widgets | 1.0.0 | pyhd8ed1ab_1 | conda-forge | | 170 | jxrlib | 1.1 | h516909a_2 | conda-forge | | 171 | kealib | 1.4.14 | hcc255d8_2 | conda-forge | | 172 | kernel-headers_linux-64 | 2.6.32 | he073ed8_14 | conda-forge | | 173 | kiwisolver | 1.3.1 | py39h1a9c180_1 | conda-forge | | 174 | krb5 | 1.19.1 | hcc1bbae_0 | conda-forge | | 175 | langdetect | 1.0.9 | pypi_0 | pypi | | 176 | lazy-object-proxy | 1.6.0 | py39h3811e60_0 | conda-forge | | 177 | lcms2 | 2.12 | hddcbb42_0 | conda-forge | | 178 | ld_impl_linux-64 | 2.36.1 | hea4e1c9_1 | conda-forge | | 179 | legendgram | 0.0.3 | py_1 | conda-forge | | 180 | lerc | 2.2.1 | h9c3ff4c_0 | conda-forge | | 181 | libaec | 1.0.5 | h9c3ff4c_0 | conda-forge | | 182 | libblas | 3.9.0 | 9_openblas | conda-forge | | 183 | libbrotlicommon | 1.0.9 | h7f98852_5 | conda-forge | | 184 | libbrotlidec | 1.0.9 | h7f98852_5 | conda-forge | | 185 | libbrotlienc | 1.0.9 | h7f98852_5 | conda-forge | | 186 | libcblas | 3.9.0 | 9_openblas | conda-forge | | 187 | libcurl | 7.77.0 | h2574ce0_0 | conda-forge | | 188 | libdap4 | 3.20.6 | hd7c4107_2 | conda-forge | | 189 | libdeflate | 1.7 | h7f98852_5 | conda-forge | | 190 | libedit | 3.1.20191231 | he28a2e2_2 | conda-forge | | 191 | libev | 4.33 | h516909a_1 | conda-forge | | 192 | libevent | 2.1.10 | hcdb4288_3 | conda-forge | | 193 | libffi | 3.3 | h58526e2_2 | conda-forge | | 194 | libgcc-devel_linux-64 | 9.3.0 | h7864c58_19 | conda-forge | | 195 | libgcc-ng | 11.1.0 | hc902ee8_0 | conda-forge | | 196 | libgdal | 3.2.1 | h38ff51b_7 | conda-forge | | 197 | libgfortran-ng | 11.1.0 | h69a702a_0 | conda-forge | | 198 | libgfortran5 | 11.1.0 | h6c583b3_0 | conda-forge | | 199 | libglib | 2.68.3 | h3e27bee_0 | conda-forge | | 200 | libgomp | 11.1.0 | hc902ee8_0 | conda-forge | | 201 | libgpuarray | 0.7.6 | h14c3975_1003 | conda-forge | | 202 | libiconv | 1.16 | h516909a_0 | conda-forge | | 203 | libkml | 1.3.0 | h238a007_1014 | conda-forge | | 204 | liblapack | 3.9.0 | 9_openblas | conda-forge | | 205 | libllvm10 | 10.0.1 | he513fc3_3 | conda-forge | | 206 | libnetcdf | 4.7.4 | nompi_h56d31a8_107 | conda-forge | | 207 | libnghttp2 | 1.43.0 | h812cca2_0 | conda-forge | | 208 | libopenblas | 0.3.15 | pthreads_h8fe5266_1 | conda-forge | | 209 | libpng | 1.6.37 | hed695b0_2 | conda-forge | | 210 | libpq | 13.3 | hd57d9b9_0 | conda-forge | | 211 | libprotobuf | 3.16.0 | h780b84a_0 | conda-forge | | 212 | libpysal | 4.5.1 | pyhd8ed1ab_0 | conda-forge | | 213 | librttopo | 1.1.0 | h1185371_6 | conda-forge | | 214 | libsodium | 1.0.18 | h516909a_1 | conda-forge | | 215 | libspatialindex | 1.9.3 | h9c3ff4c_4 | conda-forge | | 216 | libspatialite | 5.0.1 | he52d314_3 | conda-forge | | 217 | libssh2 | 1.9.0 | ha56f1ee_6 | conda-forge | | 218 | libstdcxx-devel_linux-64 | 9.3.0 | hb016644_19 | conda-forge | | 219 | libstdcxx-ng | 11.1.0 | h56837e0_0 | conda-forge | | 220 | libthrift | 0.14.1 | he6d91bd_2 | conda-forge | | 221 | libtiff | 4.2.0 | hbd63e13_2 | conda-forge | | 222 | libutf8proc | 2.6.1 | h7f98852_0 | conda-forge | | 223 | libuuid | 2.32.1 | h14c3975_1000 | conda-forge | | 224 | libuv | 1.42.0 | h7f98852_0 | conda-forge | | 225 | libwebp-base | 1.2.0 | h7f98852_2 | conda-forge | | 226 | libxcb | 1.13 | h7f98852_1003 | conda-forge | | 227 | libxml2 | 2.9.12 | h72842e0_0 | conda-forge | | 228 | libzopfli | 1.0.3 | he1b5a44_0 | conda-forge | | 229 | lightgbm | 3.2.1 | pypi_0 | pypi | | 230 | llvmlite | 0.36.0 | py39h1bbdace_0 | conda-forge | | 231 | locket | 0.2.0 | py_2 | conda-forge | | 232 | lz4-c | 1.9.3 | h9c3ff4c_0 | conda-forge | | 233 | lzo | 2.10 | h516909a_1000 | conda-forge | | 234 | mako | 1.1.4 | pyh44b312d_0 | conda-forge | | 235 | mapclassify | 2.4.2 | pyhd8ed1ab_0 | conda-forge | | 236 | markupsafe | 2.0.1 | py39h3811e60_0 | conda-forge | | 237 | matplotlib-base | 3.4.2 | py39h2fa2bec_0 | conda-forge | | 238 | matplotlib-inline | 0.1.2 | pyhd8ed1ab_2 | conda-forge | | 239 | matplotlib-scalebar | 0.7.2 | pypi_0 | pypi | | 240 | mccabe | 0.6.1 | py_1 | conda-forge | | 241 | mercantile | 1.2.1 | pyhd8ed1ab_0 | conda-forge | | 242 | mgwr | 2.1.2 | py_0 | conda-forge | | 243 | mistune | 0.8.4 | py39h3811e60_1004 | conda-forge | | 244 | mkl | 2021.3.0 | h06a4308_520 | pkgs/main | | 245 | mkl-service | 2.4.0 | py39h3811e60_0 | conda-forge | | 246 | mock | 4.0.3 | py39hf3d152e_1 | conda-forge | | 247 | momepy | 0.4.4 | pyhd8ed1ab_0 | conda-forge | | 248 | more-itertools | 8.8.0 | pyhd8ed1ab_0 | conda-forge | | 249 | mpc | 1.1.0 | h04dde30_1009 | conda-forge | | 250 | mpfr | 4.0.2 | he80fd80_1 | conda-forge | | 251 | mpmath | 1.2.1 | pyhd8ed1ab_0 | conda-forge | | 252 | mrmr | 0.1 | pypi_0 | pypi | | 253 | munch | 2.5.0 | py_0 | conda-forge | | 254 | murmurhash | 1.0.5 | py39he80948d_0 | conda-forge | | 255 | mypy_extensions | 0.4.3 | py39hf3d152e_3 | conda-forge | | 256 | nbclassic | 0.3.1 | pyhd8ed1ab_1 | conda-forge | | 257 | nbclient | 0.5.3 | pyhd8ed1ab_0 | conda-forge | | 258 | nbconvert | 6.1.0 | py39hf3d152e_0 | conda-forge | | 259 | nbdime | 3.1.0 | pyhd8ed1ab_0 | conda-forge | | 260 | nbformat | 5.1.3 | pyhd8ed1ab_0 | conda-forge | | 261 | ncurses | 6.2 | h58526e2_4 | conda-forge | | 262 | nest-asyncio | 1.5.1 | pyhd8ed1ab_0 | conda-forge | | 263 | netcdf4 | 1.5.6 | nompi_py39h36800e2_102 | conda-forge | | 264 | networkx | 2.6.1 | pyhd8ed1ab_1 | conda-forge | | 265 | nltk | 3.6.2 | pyhd8ed1ab_0 | conda-forge | | 266 | nose | 1.3.7 | py_1006 | conda-forge | | 267 | notebook | 6.4.0 | pyha770c72_0 | conda-forge | | 268 | num2words | 0.5.10 | pypi_0 | pypi | | 269 | numba | 0.53.1 | py39h56b8d98_1 | conda-forge | | 270 | numexpr | 2.7.3 | py39hde0f152_0 | conda-forge | | 271 | numpy | 1.21.1 | py39hdbf815f_0 | conda-forge | | 272 | olefile | 0.46 | pyh9f0ad1d_1 | conda-forge | | 273 | opencv-contrib-python-headless | 4.5.3.56 | pypi_0 | pypi | | 274 | openjpeg | 2.4.0 | hb52868f_1 | conda-forge | | 275 | openpyxl | 3.0.7 | pyhd8ed1ab_0 | conda-forge | | 276 | openssl | 1.1.1k | h7f98852_0 | conda-forge | | 277 | opt_einsum | 3.3.0 | pyhd8ed1ab_1 | conda-forge | | 278 | orc | 1.6.7 | h89a63ab_2 | conda-forge | | 279 | osmnx | 1.1.1 | pyhd8ed1ab_0 | conda-forge | | 280 | packaging | 21.0 | pyhd8ed1ab_0 | conda-forge | | 281 | palettable | 3.3.0 | py_0 | conda-forge | | 282 | pandas | 1.3.0 | py39hde0f152_0 | conda-forge | | 283 | pandoc | 2.14.1 | h7f98852_0 | conda-forge | | 284 | pandocfilters | 1.4.2 | py_1 | conda-forge | | 285 | parquet-cpp | 1.5.1 | 1 | conda-forge | | 286 | parso | 0.8.2 | pyhd8ed1ab_0 | conda-forge | | 287 | partd | 1.2.0 | pyhd8ed1ab_0 | conda-forge | | 288 | pathspec | 0.9.0 | pyhd8ed1ab_0 | conda-forge | | 289 | pathy | 0.6.0 | pyhd8ed1ab_0 | conda-forge | | 290 | patsy | 0.5.1 | py_0 | conda-forge | | 291 | pcre | 8.45 | h9c3ff4c_0 | conda-forge | | 292 | pexpect | 4.8.0 | pyh9f0ad1d_2 | conda-forge | | 293 | pickleshare | 0.7.5 | py39hde42818_1002 | conda-forge | | 294 | pillow | 8.2.0 | py39hf95b381_1 | conda-forge | | 295 | pip | 21.1.3 | pyhd8ed1ab_0 | conda-forge | | 296 | pixman | 0.40.0 | h36c2ea0_0 | conda-forge | | 297 | plotly | 5.1.0 | pyhd8ed1ab_1 | conda-forge | | 298 | pluggy | 0.13.1 | py39hf3d152e_4 | conda-forge | | 299 | pointpats | 2.2.0 | py_0 | conda-forge | | 300 | polyline | 1.4.0 | py_0 | conda-forge | | 301 | pooch | 1.4.0 | pyhd8ed1ab_0 | conda-forge | | 302 | poppler | 0.89.0 | h2de54a5_5 | conda-forge | | 303 | poppler-data | 0.4.10 | 0 | conda-forge | | 304 | postgresql | 13.3 | h2510834_0 | conda-forge | | 305 | preshed | 3.0.5 | py39he80948d_1 | conda-forge | | 306 | proj | 7.2.0 | h277dcde_2 | conda-forge | | 307 | prometheus_client | 0.11.0 | pyhd8ed1ab_0 | conda-forge | | 308 | prompt-toolkit | 3.0.19 | pyha770c72_0 | conda-forge | | 309 | pthread-stubs | 0.4 | h36c2ea0_1001 | conda-forge | | 310 | ptyprocess | 0.7.0 | pyhd3deb0d_0 | conda-forge | | 311 | pulp | 2.4 | py39hf3d152e_0 | conda-forge | | 312 | py | 1.10.0 | pyhd3deb0d_0 | conda-forge | | 313 | pyahocorasick | 1.4.2 | pypi_0 | pypi | | 314 | pyarrow | 4.0.0 | py39h3ebc44c_3_cpu | conda-forge | | 315 | pycodestyle | 2.7.0 | pyhd8ed1ab_0 | conda-forge | | 316 | pycparser | 2.20 | pyh9f0ad1d_2 | conda-forge | | 317 | pydantic | 1.8.2 | py39h3811e60_0 | conda-forge | | 318 | pydocstyle | 6.1.1 | pyhd8ed1ab_0 | conda-forge | | 319 | pyflakes | 2.3.1 | pyhd8ed1ab_0 | conda-forge | | 320 | pygeos | 0.10.1 | py39ha61afbd_0 | conda-forge | | 321 | pygments | 2.9.0 | pyhd8ed1ab_0 | conda-forge | | 322 | pygpu | 0.7.6 | py39hce5d2b2_1002 | conda-forge | | 323 | pykrige | 1.6.0 | py39h3811e60_0 | conda-forge | | 324 | pylint | 2.9.5 | pyhd8ed1ab_0 | conda-forge | | 325 | pymc3 | 3.11.2 | py39ha563b64_3 | conda-forge | | 326 | pynndescent | 0.5.4 | pyh6c4a22f_0 | conda-forge | | 327 | pyopenssl | 20.0.1 | pyhd8ed1ab_0 | conda-forge | | 328 | pyparsing | 2.4.7 | pyh9f0ad1d_0 | conda-forge | | 329 | pyproj | 3.1.0 | py39h50a64a9_3 | conda-forge | | 330 | pyrsistent | 0.17.3 | py39h3811e60_2 | conda-forge | | 331 | pysal | 2.4.0 | pyhd8ed1ab_0 | conda-forge | | 332 | pysocks | 1.7.1 | py39hf3d152e_3 | conda-forge | | 333 | pytables | 3.6.1 | py39hf6dc253_3 | conda-forge | | 334 | pytest | 6.2.4 | py39hf3d152e_0 | conda-forge | | 335 | pytest-cov | 2.12.1 | pyhd8ed1ab_0 | conda-forge | | 336 | python | 3.9.6 | h49503c6_1_cpython | conda-forge | | 337 | python-dateutil | 2.8.0 | py_0 | conda-forge | | 338 | python-flatbuffers | 2.0 | pyhd8ed1ab_0 | conda-forge | | 339 | python-graphviz | 0.17 | pypi_0 | pypi | | 340 | python-lsp-jsonrpc | 1.0.0 | pyhd8ed1ab_0 | conda-forge | | 341 | python-lsp-server | 1.1.0 | pyhd8ed1ab_0 | conda-forge | | 342 | python_abi | 3.9 | 2_cp39 | conda-forge | | 343 | pytz | 2021.1 | pyhd8ed1ab_0 | conda-forge | | 344 | pywavelets | 1.1.1 | py39hce5d2b2_3 | conda-forge | | 345 | pyyaml | 5.4.1 | py39h3811e60_0 | conda-forge | | 346 | pyzmq | 22.1.0 | py39h37b5a0c_0 | conda-forge | | 347 | qgrid | 1.3.1 | py39hf3d152e_2 | conda-forge | | 348 | quantecon | 0.5.1 | py39hf3d152e_0 | conda-forge | | 349 | rasterio | 1.2.6 | py39h63973eb_0 | conda-forge | | 350 | rasterstats | 0.15.0 | pyhd8ed1ab_0 | conda-forge | | 351 | re2 | 2021.04.01 | h9c3ff4c_0 | conda-forge | | 352 | readline | 8.1 | h46c0cb4_0 | conda-forge | | 353 | regex | 2021.7.6 | py39h3811e60_0 | conda-forge | | 354 | requests | 2.26.0 | pyhd8ed1ab_0 | conda-forge | | 355 | requests-unixsocket | 0.2.0 | py_0 | conda-forge | | 356 | rhash | 1.4.1 | h7f98852_0 | conda-forge | | 357 | rope | 0.19.0 | pyhd8ed1ab_0 | conda-forge | | 358 | rtree | 0.9.7 | py39hb102c33_2 | conda-forge | | 359 | s2n | 1.0.10 | h9b69904_0 | conda-forge | | 360 | scikit-image | 0.18.2 | py39hde0f152_0 | conda-forge | | 361 | scikit-learn | 0.24.2 | py39h4dfa638_0 | conda-forge | | 362 | scikit-posthocs | 0.6.7 | pypi_0 | pypi | | 363 | scipy | 1.7.0 | py39hee8e79c_1 | conda-forge | | 364 | seaborn | 0.11.1 | ha770c72_0 | conda-forge | | 365 | seaborn-base | 0.11.1 | pyhd8ed1ab_1 | conda-forge | | 366 | segregation | 2.0.0 | pyhd8ed1ab_0 | conda-forge | | 367 | semver | 2.13.0 | pyh9f0ad1d_0 | conda-forge | | 368 | send2trash | 1.7.1 | pyhd8ed1ab_0 | conda-forge | | 369 | setuptools | 49.6.0 | py39hf3d152e_3 | conda-forge | | 370 | shapely | 1.7.1 | py39ha61afbd_5 | conda-forge | | 371 | shellingham | 1.4.0 | pyh44b312d_0 | conda-forge | | 372 | simplejson | 3.17.3 | py39h3811e60_0 | conda-forge | | 373 | six | 1.16.0 | pyh6c4a22f_0 | conda-forge | | 374 | sklearn | 0.0 | pypi_0 | pypi | | 375 | smart_open | 5.1.0 | pyhd8ed1ab_1 | conda-forge | | 376 | smmap | 3.0.5 | pyh44b312d_0 | conda-forge | | 377 | smopy | 0.0.7 | pypi_0 | pypi | | 378 | snappy | 1.1.8 | he1b5a44_3 | conda-forge | | 379 | sniffio | 1.2.0 | py39hf3d152e_1 | conda-forge | | 380 | snowballstemmer | 2.1.0 | pyhd8ed1ab_0 | conda-forge | | 381 | snuggs | 1.4.7 | py_0 | conda-forge | | 382 | sompy | 1.1 | pypi_0 | pypi | | 383 | soupsieve | 2.0.1 | py_1 | conda-forge | | 384 | spacy | 3.1.1 | py39h5472131_0 | conda-forge | | 385 | spacy-legacy | 3.0.8 | pyhd8ed1ab_0 | conda-forge | | 386 | spaghetti | 1.6.2 | pyhd8ed1ab_0 | conda-forge | | 387 | spglm | 1.0.8 | py_0 | conda-forge | | 388 | spint | 1.0.7 | pyhd8ed1ab_0 | conda-forge | | 389 | splot | 1.1.3 | pyhd8ed1ab_1 | conda-forge | | 390 | spopt | 0.1.2 | pyhd8ed1ab_0 | conda-forge | | 391 | spreg | 1.2.4 | pyhd8ed1ab_0 | conda-forge | | 392 | spvcm | 0.3.0 | py_0 | conda-forge | | 393 | sqlalchemy | 1.4.22 | py39h3811e60_0 | conda-forge | | 394 | sqlite | 3.36.0 | h9cd32fc_0 | conda-forge | | 395 | srsly | 2.4.1 | py39he80948d_0 | conda-forge | | 396 | statsmodels | 0.12.2 | py39hce5d2b2_0 | conda-forge | | 397 | sympy | 1.8 | py39hf3d152e_0 | conda-forge | | 398 | sysroot_linux-64 | 2.12 | he073ed8_14 | conda-forge | | 399 | tabulate | 0.8.9 | pyhd8ed1ab_0 | conda-forge | | 400 | tbb | 2020.2 | h4bd325d_4 | conda-forge | | 401 | tenacity | 8.0.1 | pyhd8ed1ab_0 | conda-forge | | 402 | terminado | 0.10.1 | py39hf3d152e_0 | conda-forge | | 403 | testpath | 0.5.0 | pyhd8ed1ab_0 | conda-forge | | 404 | textblob | 0.15.3 | py_0 | conda-forge | | 405 | textsearch | 0.0.21 | pypi_0 | pypi | | 406 | theano-pymc | 1.1.2 | py39he80948d_0 | conda-forge | | 407 | thinc | 8.0.8 | py39h5472131_0 | conda-forge | | 408 | threadpoolctl | 2.2.0 | pyh8a188c0_0 | conda-forge | | 409 | tifffile | 2021.4.8 | pyhd8ed1ab_0 | conda-forge | | 410 | tiledb | 2.2.9 | h91fcb0e_0 | conda-forge | | 411 | tk | 8.6.10 | hed695b0_1 | conda-forge | | 412 | tobler | 0.8.2 | pyhd8ed1ab_0 | conda-forge | | 413 | toml | 0.10.2 | pyhd8ed1ab_0 | conda-forge | | 414 | tomli | 1.0.4 | pyhd8ed1ab_0 | conda-forge | | 415 | tomlkit | 0.7.2 | py39hf3d152e_0 | conda-forge | | 416 | toolz | 0.11.1 | py_0 | conda-forge | | 417 | top2vec | 1.0.26 | pypi_0 | pypi | | 418 | tornado | 6.1 | py39h3811e60_1 | conda-forge | | 419 | tqdm | 4.61.2 | pyhd8ed1ab_1 | conda-forge | | 420 | traitlets | 5.0.5 | py_0 | conda-forge | | 421 | traittypes | 0.2.1 | pyh9f0ad1d_2 | conda-forge | | 422 | typed-ast | 1.4.3 | py39h3811e60_0 | conda-forge | | 423 | typer | 0.3.2 | pyhd8ed1ab_0 | conda-forge | | 424 | typing-extensions | 3.10.0.0 | hd8ed1ab_0 | conda-forge | | 425 | typing_extensions | 3.10.0.0 | pyha770c72_0 | conda-forge | | 426 | tzcode | 2021a | h7f98852_2 | conda-forge | | 427 | tzdata | 2021a | he74cb21_1 | conda-forge | | 428 | tzlocal | 2.1 | pyh9f0ad1d_0 | conda-forge | | 429 | ujson | 4.0.2 | py39he80948d_0 | conda-forge | | 430 | umap-learn | 0.5.1 | py39hf3d152e_1 | conda-forge | | 431 | unidecode | 1.2.0 | pypi_0 | pypi | | 432 | urllib3 | 1.25.11 | py_0 | conda-forge | | 433 | wasabi | 0.8.2 | pyh44b312d_0 | conda-forge | | 434 | wcwidth | 0.2.5 | pyh9f0ad1d_2 | conda-forge | | 435 | webencodings | 0.5.1 | py_1 | conda-forge | | 436 | websocket-client | 0.57.0 | py39hf3d152e_4 | conda-forge | | 437 | wheel | 0.36.2 | pyhd3deb0d_0 | conda-forge | | 438 | widgetsnbextension | 3.5.1 | py39hf3d152e_4 | conda-forge | | 439 | wordcloud | 1.8.1 | pypi_0 | pypi | | 440 | wrapt | 1.12.1 | py39h3811e60_3 | conda-forge | | 441 | xarray | 0.18.2 | pyhd8ed1ab_0 | conda-forge | | 442 | xerces-c | 3.2.3 | h9d8b166_2 | conda-forge | | 443 | xgboost | 1.4.2 | pypi_0 | pypi | | 444 | xlrd | 2.0.1 | pyhd8ed1ab_3 | conda-forge | | 445 | xlsxwriter | 1.4.4 | pyhd8ed1ab_0 | conda-forge | | 446 | xorg-kbproto | 1.0.7 | h14c3975_1002 | conda-forge | | 447 | xorg-libice | 1.0.10 | h516909a_0 | conda-forge | | 448 | xorg-libsm | 1.2.3 | hd9c2040_1000 | conda-forge | | 449 | xorg-libx11 | 1.7.2 | h7f98852_0 | conda-forge | | 450 | xorg-libxau | 1.0.9 | h14c3975_0 | conda-forge | | 451 | xorg-libxdmcp | 1.1.3 | h516909a_0 | conda-forge | | 452 | xorg-libxext | 1.3.4 | h7f98852_1 | conda-forge | | 453 | xorg-libxrender | 0.9.10 | h7f98852_1003 | conda-forge | | 454 | xorg-renderproto | 0.11.1 | h14c3975_1002 | conda-forge | | 455 | xorg-xextproto | 7.3.0 | h14c3975_1002 | conda-forge | | 456 | xorg-xproto | 7.0.31 | h14c3975_1007 | conda-forge | | 457 | xz | 5.2.5 | h516909a_1 | conda-forge | | 458 | yaml | 0.2.5 | h516909a_0 | conda-forge | | 459 | yapf | 0.31.0 | pyhd8ed1ab_0 | conda-forge | | 460 | zeromq | 4.3.4 | h9c3ff4c_0 | conda-forge | | 461 | zfp | 0.5.5 | h9c3ff4c_5 | conda-forge | | 462 | zipp | 3.5.0 | pyhd8ed1ab_0 | conda-forge | | 463 | zlib | 1.2.11 | h516909a_1010 | conda-forge | | 464 | zstd | 1.4.9 | ha95c52a_0 | conda-forge |
94.797009
94
0.368534
grn_Latn
0.23574
dc5bd769b44bd0c29f17a83f8b7b092ce9c5eaef
2,518
md
Markdown
docs/framework/winforms/controls/how-to-change-the-order-of-columns-in-the-windows-forms-datagridview-control.md
cy-org/docs-conceptual.zh-cn
0c18cda3dd707efdcdd0e73bc480ab9fbbc4580c
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/framework/winforms/controls/how-to-change-the-order-of-columns-in-the-windows-forms-datagridview-control.md
cy-org/docs-conceptual.zh-cn
0c18cda3dd707efdcdd0e73bc480ab9fbbc4580c
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs/framework/winforms/controls/how-to-change-the-order-of-columns-in-the-windows-forms-datagridview-control.md
cy-org/docs-conceptual.zh-cn
0c18cda3dd707efdcdd0e73bc480ab9fbbc4580c
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- title: "如何:更改 Windows 窗体 DataGridView 控件中列的顺序 | Microsoft Docs" ms.custom: "" ms.date: "03/30/2017" ms.prod: ".net-framework-4.6" ms.reviewer: "" ms.suite: "" ms.technology: - "dotnet-winforms" ms.tgt_pltfrm: "" ms.topic: "article" dev_langs: - "jsharp" helpviewer_keywords: - "列 [Windows 窗体], 更改顺序" - "数据网格, 更改列顺序" - "DataGridView 控件 [Windows 窗体], 列顺序" ms.assetid: 5e9ac3bc-b0f0-48cb-a3d5-b005af905395 caps.latest.revision: 17 author: "dotnet-bot" ms.author: "dotnetcontent" manager: "wpickett" caps.handback.revision: 17 --- # 如何:更改 Windows 窗体 DataGridView 控件中列的顺序 使用 <xref:System.Windows.Forms.DataGridView> 显示来自数据源的数据时,有时数据源架构中的列不会按你想要显示的顺序显示。 可以通过使用 <xref:System.Windows.Forms.DataGridViewColumn> 类的 <xref:System.Windows.Forms.DataGridViewColumn.DisplayIndex%2A> 属性,更改列的显示顺序。 以下代码示例将重新定位绑定到 Northwind 示例数据库中的客户表时自动生成的某些列。 有关如何将 <xref:System.Windows.Forms.DataGridView> 控件绑定到数据库表的详细信息,请参阅[如何:将数据绑定到 Windows 窗体 DataGridView 控件](../../../../docs/framework/winforms/controls/how-to-bind-data-to-the-windows-forms-datagridview-control.md)。 Visual Studio 中对此任务提供支持。 另请参阅[如何:使用设计器更改 Windows 窗体 DataGridView 控件中列的顺序](http://msdn.microsoft.com/library/hb1dk7ax\(v=vs.110\)) ## 示例 [!code-csharp[System.Windows.Forms.DataGridViewMisc#040](../../../../samples/snippets/csharp/VS_Snippets_Winforms/System.Windows.Forms.DataGridViewMisc/CS/datagridviewmisc.cs#040)] [!code-vb[System.Windows.Forms.DataGridViewMisc#040](../../../../samples/snippets/visualbasic/VS_Snippets_Winforms/System.Windows.Forms.DataGridViewMisc/VB/datagridviewmisc.vb#040)] ## 编译代码 此示例需要: - 绑定到具有指示列名的表(例如 Northwind 示例数据库中的 `Customers` 表)的、名为 `customersDataGridView` 的 <xref:System.Windows.Forms.DataGridView> 控件。 - 对 <xref:System?displayProperty=fullName>、<xref:System.Windows.Forms?displayProperty=fullName>、<xref:System.Data?displayProperty=fullName> 和 <xref:System.Xml?displayProperty=fullName> 程序集的引用。 ## 请参阅 <xref:System.Windows.Forms.DataGridView> <xref:System.Windows.Forms.DataGridViewColumn> <xref:System.Windows.Forms.DataGridViewColumn.DisplayIndex%2A?displayProperty=fullName> <xref:System.Windows.Forms.DataGridViewColumn.Visible%2A?displayProperty=fullName> [在 Windows 窗体 DataGridView 控件中显示数据](../../../../docs/framework/winforms/controls/displaying-data-in-the-windows-forms-datagridview-control.md) [如何:将数据绑定到 Windows 窗体 DataGridView 控件](../../../../docs/framework/winforms/controls/how-to-bind-data-to-the-windows-forms-datagridview-control.md)
51.387755
262
0.759333
yue_Hant
0.87045
dc5c15341387a5ee12bcaf7e1b47d48bf8481223
2,092
md
Markdown
docs/guide/static-assets.md
saiuns/create-autofe-app
ea70ec128eb6520d748cd25254b83b975ae5aa48
[ "MIT" ]
34
2017-02-28T01:47:41.000Z
2021-07-29T06:00:58.000Z
docs/guide/static-assets.md
saiuns/create-autofe-app
ea70ec128eb6520d748cd25254b83b975ae5aa48
[ "MIT" ]
27
2017-03-27T01:13:59.000Z
2020-06-12T06:09:38.000Z
docs/guide/static-assets.md
saiuns/create-autofe-app
ea70ec128eb6520d748cd25254b83b975ae5aa48
[ "MIT" ]
7
2017-04-10T03:12:20.000Z
2021-10-18T02:57:51.000Z
# 静态资源 静态资源可以通过如下方式进行处理: * 在 JavaScript 被导入或 CSS 中通过相对路径被引用。这类引用会被 webpack 处理; * 其余资源将会直接被拷贝,而不会经过 webpack 的处理。包括: * 放置在 `public` 目录; * 通过绝对路径被引用; * 由于历史原因,没有被 JavaScript 和 CSS 引用的图片、字体、视频等文件也会被直接拷贝。 另外,需要注意: * HTML 中的资源路径也不会被解析,你写的是什么,它就是什么; * `xxx.old.js` 规则的 JavaScript 文件中的资源路径也不会被解析。 ## 从相对路径导入 当你在 JavaScript、CSS 中使用非绝对路径引用一个静态资源时,该资源将会被包含进入 webpack 的依赖图中。在其编译过程中,所有诸如 `background: url(...)` 和 CSS `@import` 的资源 URL **都会被解析为一个模块依赖**。 例如,`url(./image.png)` 会被翻译为 `require('./image.png')`。 在其内部,我们通过 `file-loader` 用版本哈希值和正确的公共基础路径来决定最终的文件路径,再用 `url-loader` 将小于 1kb 的资源内联,以减少 HTTP 请求的数量。 ## datauri 除了 `url-loader` 会自动将小于 1kb 的资源内联外,我们还开发了明确的指令 `?datauri`,通过该方式可以不考虑文件大小,直接实现资源内联: ```scss .datauri-example { background: url("./car.jpg?datauri") no-repeat; } ``` ## svg inline 对于 SVG 文件,我们有时候也需要获取其内容,可以通过指令 `?inline` 做到: ```javascript import svgContent from '../img/postcss-assets.svg?inline'; ``` ::: tip 提示 请思考 `one.svg?inline` 和 `one.svg?datauri` 的区别。 ::: ## 路径规则 JavaScript 和 CSS 在路径上略有不同,详情请参考: * [JavaScript 路径能力](./javascript.html#路径能力) * [CSS 路径能力](./css.html#路径能力) 简单罗列如下: `index.entry.js` ```javascript // 相对路径 import bg1 from './bg.png'; import bg2 from '../img/bg.png'; // 内嵌 Datauri import bg3 from '../img/bg.png?datauri'; import svgDatauri from '../img/postcss-assets.svg?datauri'; // 获取 SVG 内容 import svgContent from '../img/postcss-assets.svg?inline'; // npm 依赖 import sharePic from 'a-pkg-from-npm/share.png'; // @ 别名 import logo from '@/assets/logo.png'; ``` `index.scss` ```scss // 相对路径 @import "./base.css"; @import "base.css"; // npm 依赖 @import "~normalize.css"; // @ 别名 @import "@/common/reset.css"; @import "~@/common/reset.css"; .path-example { // 相对路径 background: url("./car.jpg") no-repeat; background: url("car.jpg") no-repeat; // npm 依赖 background: url("~a-pkg-from-npm/share.png") no-repeat; // @ 别名 background: url("~@/index/img/car.jpg") no-repeat; // not working // background: url("@/index/img/car.jpg") no-repeat; } ``` ## `public` 文件夹 任何放置在 `public` 文件夹的静态资源都会被简单的复制,而不经过 webpack。你需要通过绝对路径来引用它们。
19.92381
139
0.683078
yue_Hant
0.46185
dc5d196469af7008982aa68bb930488d9c667e29
76
md
Markdown
README.md
aersamkull/TsCodeGen
39c40a2e1d7a5738745f78620b8960d168791161
[ "MIT" ]
null
null
null
README.md
aersamkull/TsCodeGen
39c40a2e1d7a5738745f78620b8960d168791161
[ "MIT" ]
null
null
null
README.md
aersamkull/TsCodeGen
39c40a2e1d7a5738745f78620b8960d168791161
[ "MIT" ]
null
null
null
# TsCodeGen Just a simpe test to generate TypeScript Interfaces with Roslyn
25.333333
63
0.828947
eng_Latn
0.858364
dc5d3d3af88260120a4c04dfe34ab171e37d9700
559
md
Markdown
readme.md
Nxt-project/AudioConverter
6bf96d2faf3b40f738f5b6aebc4e47b6230d95d7
[ "MIT" ]
null
null
null
readme.md
Nxt-project/AudioConverter
6bf96d2faf3b40f738f5b6aebc4e47b6230d95d7
[ "MIT" ]
null
null
null
readme.md
Nxt-project/AudioConverter
6bf96d2faf3b40f738f5b6aebc4e47b6230d95d7
[ "MIT" ]
null
null
null
<h1>Simple video to audio converter</h1> <h3>Why?</h3> <p> I created this simple script to convert video clips from YouTube livestreams to audio files for podcast episodes on Spotify, Deezer, etc. </p> <h3>Install</h3> <p> <ul> <li>1. Install <code>moviepy</code> with pip</li> <li>2. Start the python program <code>python3 main.py</code></li> <li>3. Put your videos in the <code>videos</code> directory</li> <li>4. Start the python program again</li> <li>5. Wait!</li> <li>6. Done!</li> </ul> </p>
32.882353
141
0.618962
eng_Latn
0.833204
3edf701f32343d8c01b227e1374bea58dd97ce54
681
md
Markdown
README.md
timre13/list-maker
ebedbfcefa626af98f746c16fd46f6dafa81d70b
[ "BSD-2-Clause" ]
null
null
null
README.md
timre13/list-maker
ebedbfcefa626af98f746c16fd46f6dafa81d70b
[ "BSD-2-Clause" ]
null
null
null
README.md
timre13/list-maker
ebedbfcefa626af98f746c16fd46f6dafa81d70b
[ "BSD-2-Clause" ]
null
null
null
# List Maker A list maker and to-do manager application with advanced features. ## Compiling ### Requirements - gcc - cmake - make - gtkmm Install them on Debian: ~~~ sudo apt install gcc make cmake libgtkmm-3.0-dev ~~~ ### Building Create a build directory ~~~ mkdir build ~~~ Go into it ~~~ cd build ~~~ Generate the Makefile ~~~ cmake .. ~~~ Build ~~~ make ~~~ ## File format [File format](doc/file-format.md) ## Screenshots ![Screenshot1](doc/img/sshot1.png) ![Screenshot2](doc/img/sshot2.png) ![Screenshot3](doc/img/sshot3.png) ![Screenshot4](doc/img/sshot4.png) ## License List Maker is licensed under the 2-Clause BSD License. See the file: [LICENSE](LICENSE)
12.849057
87
0.693098
eng_Latn
0.646325
3edfd0fef947b202c64e1c0eadcf6b889cb16106
4,340
md
Markdown
README.md
duzgunberke/BlogSite
05cd3eebb126d617e2f928e32586b5c3bdd7e1d9
[ "MIT" ]
4
2021-08-02T13:27:24.000Z
2021-08-02T15:48:07.000Z
README.md
duzgunberke/BlogSite
05cd3eebb126d617e2f928e32586b5c3bdd7e1d9
[ "MIT" ]
null
null
null
README.md
duzgunberke/BlogSite
05cd3eebb126d617e2f928e32586b5c3bdd7e1d9
[ "MIT" ]
null
null
null
# BlogSite <b>Site home page :</b></br></br> <img src="https://i.hizliresim.com/qweib5p.gif" align="center" style="width: 60%" /></br></br> <hr> <b>Paging blogs by category :</b></br></br> <img src="https://i.hizliresim.com/78i1883.gif" align="center" style="width: 60%" /></br></br> <hr> <b>About us page :</b></br></br> <img src="https://i.hizliresim.com/nlvvzhp.gif" align="center" style="width: 60%" /></br></br> <hr> <b>Contact and request submission page :</b></br></br> <img src="https://i.hizliresim.com/liwbd91.gif" align="center" style="width: 60%" /></br></br> <hr> <b>Details of blogs :</b></br></br> <img src="https://i.hizliresim.com/3xwl4po.gif" align="center" style="width: 60%" /></br></br> <hr> <b>Author's login and control panel :</b></br></br> <img src="https://i.hizliresim.com/eon6fnj.gif" align="center" style="width: 60%" /></br> <hr> <b>Admin login panel and quick look at the comments :</b></br></br> <img src="https://i.hizliresim.com/kjvuwb6.gif" align="center" style="width: 60%" /></br></br> <hr> <b>Writing blog panel (with TinyMCE) :</b></br></br> <img src="https://i.hizliresim.com/cojpuht.gif" align="center" style="width: 60%" /></br></br> <hr> <b>Blog List :</b></br></br> <img src="https://i.hizliresim.com/nie9fk3.gif" align="center" style="width: 60%" /></br></br> <hr> <b>Author list and view of the author's information by admin :</b></br></br> <img src="https://i.hizliresim.com/53fn7xb.gif" align="center" style="width: 60%" /></br></br> <hr> <b>Panel for author approval or removal of comments that are saved passively by default :</b></br></br> <img src="https://i.hizliresim.com/isg1k9k.gif" align="center" style="width: 60%" /></br></br> <hr> <b>Category operations panel :</b></br></br> <img src="https://i.hizliresim.com/pavbx96.gif" align="center" style="width: 60%" /></br></br> <hr> <b>Emails from the contact page and Editing an About Us page :</b></br></br> <img src="https://i.hizliresim.com/9zw2y6d.gif" align="center" style="width: 60%" /></br></br> <hr> <b>By creating a trigger in SQL, the evaluation scores in the comments are collected and divided by the number of comments. The result of this process is the average score of the blog. :</b></br></br> <img src="https://i.hizliresim.com/ayi8l8j.png" align="center" style="width: 60%" /></br></br> <hr> <b>If you log out, you need to log in to enter the old page. :</b></br></br> <img src="https://i.hizliresim.com/dndg35x.gif" align="center" style="width: 60%" /></br></br> <hr> <b>If you type a wrong url my 404 page will send you to the homepage. :</b></br></br> <img src="https://i.hizliresim.com/mmmdmx6.gif" align="center" style="width: 60%" /></br></br> <hr> <b>And more...</b></br> /* Project content and tools used are as follows : In the user section of our project, the person who logs in to the site will see all the blogs on the site, comment on existing blogs, and list blogs belonging to an author or a category. In the author section of our project, our author will be able to write a new blog, make edits to the blogs he wrote, see the comments made on his own blogs, and send a message to other authors or the admin. In the admin section of our project, category, blog, communication and all other menus will be authorized. Comments can be deleted by the admin. We developed our project in N-Tier architectural principles (DataAccess, Entity, Business, Presentation) without moving away from Solid architecture. * N-Tier Architecture * Repository Design Pattern * Generic Repository * Principle of Layered Architecture * Partial View * Code First * Entity Framework * Model Structure * View Structure * Linq Queries * Entity Framework Queries * Related Tables * Diagrams * Trigger Usage * Procedure Creation * Ready Template Installation and Editing * CSS Controls * Bootstrap Structure * Creating Dynamic Web Projects * Dashboard structure * Chart * Widget Cards uses and much more...
48.764045
203
0.624654
eng_Latn
0.715555
3ee00a80f6d780c9b800574fff1f4a3cf7499e42
755
md
Markdown
add/metadata/System.ComponentModel.Design/IDictionaryService.meta.md
v-maudel/docs-1
f849afb0bd9a505311e7aec32c544c3169edf1c5
[ "CC-BY-4.0", "MIT" ]
null
null
null
add/metadata/System.ComponentModel.Design/IDictionaryService.meta.md
v-maudel/docs-1
f849afb0bd9a505311e7aec32c544c3169edf1c5
[ "CC-BY-4.0", "MIT" ]
null
null
null
add/metadata/System.ComponentModel.Design/IDictionaryService.meta.md
v-maudel/docs-1
f849afb0bd9a505311e7aec32c544c3169edf1c5
[ "CC-BY-4.0", "MIT" ]
null
null
null
--- uid: System.ComponentModel.Design.IDictionaryService ms.technology: - "dotnet-standard" author: "dotnet-bot" ms.author: "dotnetcontent" manager: "wpickett" --- --- uid: System.ComponentModel.Design.IDictionaryService.SetValue(System.Object,System.Object) ms.technology: - "dotnet-standard" author: "dotnet-bot" ms.author: "dotnetcontent" manager: "wpickett" --- --- uid: System.ComponentModel.Design.IDictionaryService.GetValue(System.Object) ms.technology: - "dotnet-standard" author: "dotnet-bot" ms.author: "dotnetcontent" manager: "wpickett" --- --- uid: System.ComponentModel.Design.IDictionaryService.GetKey(System.Object) ms.technology: - "dotnet-standard" author: "dotnet-bot" ms.author: "dotnetcontent" manager: "wpickett" ---
20.972222
90
0.749669
yue_Hant
0.17586