Join GitHub (or sign in) to find projects, people, and topics catered to your interests.
Here's what's popular on GitHub today...
-
Updated
Feb 12, 2020 - C#
Ansible
-
Updated
Feb 12, 2020
How can I view API documentation for v2.0.0?
Both godoc.org and go 1.12's godoc don't support Go modules. They only show v1.x.
Git Merge 2020
March 04, 2020 • Los Angeles
-
Updated
Feb 12, 2020
Pixel Art Tools
Creating pixel art for fun or animated sprites for a game? The digital artist in you will love these apps and tools!
Review Notebook App
Having trouble using Jupyter Notebooks effectively in your team? Join 200+ organizations like Amazon, Microsoft, Tensorflow, fast.ai in using ReviewNB for notebook code reviews.
We provide complete code review workflow for notebooks,
- Visual diff to see what changed in a notebook
- Commenting on the notebook diff to discuss changes
- Conversation threads to track all open discussions
Self-explanatory.
There should be a README file for each type of design pattern which should include the following points-
- Description of the design pattern
- Common use cases of that design pattern
- Explanation of the code
I'm struggling a bit with x-for.
Looking at the source, it seems that the full syntax for the x-for attribute is:
(item,index,collection) in expression
where the expression is intended to return an array, or at least something that implements forEach(function(v,i,g){...})
But when I try to use this like so:
<ul>
<template x-for='(value,index,coll) in toggles'>
<li>Index:
Describe the bug
In a .Net Core Worker Service, whenever an exception is thrown inside an async method, and you happened to not surround the method invocation in a try/catch, the application will simply hang when it hits the exception -- giving no sign that an exception has occured at all.
The same code applied within a simple Console Application does indeed work as expected, and you get t
Hi Everybody:
I am using Keras 2.0.5.
Here are code samples for section 6.3 of book,
"Advanced use of recurrent neural network" pertaining to GRU:
`from keras.models import Sequential
from keras import layers
from keras.optimizers import RMSprop
model = Sequential()
model.add(layers.GRU(32, input_shape=(None, float_data.shape[-1])))
model.add(layers.Dense(1))
model.compile(optim
Multiple CLI environments can be created with cortex configure -e <environment_name>. Adding cortex commands to list the available environments and delete them would help with CLI environment management.
Also, cortex cluster down should automatically remove the CLI environment upon successful completion.
-
Updated
Feb 12, 2020 - C#
If you go on angular material buttons page, you'll see that all buttons have two shortcuts associated with instead of one.
Similarly, toggle buttons are not working, see their demo.
-
Updated
Feb 12, 2020 - C#
Is your feature request related to a problem? Please describe.
Some of the existing users have already an existing HashiCorp Vault instance running in their environment. However, currently to leverage the bank-vaults solutions we need to create a new vault instance via the custom crd.
Describe the solution you'd like
I would like to still leverage the vault bank solution but running
-
Updated
Feb 12, 2020 - Jupyter Notebook
-
Updated
Feb 12, 2020 - Python
Below is a list of failing links in our French lists
You can help improve this repo by resolving the problems.
A failing link may be a website or resource that has disappeared. You can submit a PR
- removing the link (maybe the resource is obsolete.)
- correcting the link (sometimes things move)
- replacing the link (make sure the link is authorized, or the resource is open-licensed). Oft
-
Updated
Feb 12, 2020 - Shell
Currently, Formspree and Formcarry are under the miscellaneous section. I believe "Form Handler" should be a section on its own. There's a recent article listing several such services and most have a free tier.
I might send a Pull Request later today.
In the Readme file there is a link to the Docker Setup Guide [1] but the link is not working.
Futhermore an example .env file, making the docker image work out of the box, would be awesome.
[1] (https://github.com/thedevs-network/kutt/blob/develop/docker-examples)
Case
I would like to create independent TON network locally and connect to lite-client to it rather to testnet TON
${DB_ROOT}/static -- A directory with files that cannot be downloaded from the network, such as the "zerostate" (corresponding to the Genesis block of other blockchain architectures) of the masterchain and active workchains. Normally you don't have to initialize this dire
LeanBoard
Lean Board is a collaborative whiteboard with sticky notes which seamlessly connects with your GitHub issue. Login with your GitHub account, create a board for an issue and a snapshot of your notes is embedded in the issue automatically.

Describe the bug
Using
application.NewWindowto create a secondary window, it's not possible to re-use that window after it has been closed. If the user presses the X button, the window doesn't respond to Show() calls any more.To Reproduce
Example co