tutorial
Here are 9,249 public repositories matching this topic...
react-redux-firebase is the Redux bindings for Firebase. Includes Higher Order Component (HOC) for use with React. It is a very useful library and actively maintained.
- Would I like to make a PR for this?
Yes.
The chat tutorial listed for elixir is outdated. It uses a old version of phoenix and could be confusing to new users who would be learning a oudated set of syntax, application structure, commands i.e. mix phoenix.create
vs. mix phx.create
.
Also it's missing some steps. For one this they never do mix ecto.create
without which the postgres database is not initialized so the app doesn't wo
-
Updated
May 14, 2020 - Python
.jsx instead of .js
Type of issue: (feature suggestion, bug?)
Suggestion
Chapter:
no-chapter
Why use .jsx
instead of .js
? It's not a best practice: facebook/create-react-app#87 (comment)
When I open any chapter, say ch01:
https://mostly-adequate.gitbooks.io/mostly-adequate-guide/content/ch01.html
Right chevron links to the current chapter header. I'd expect it to link to the next one.
Env:
MacOS
Desktop Chrome v79 (latest)
I haven't used Gitbook, but it might be solvable via GitBook update, also mentioned in #542
-
Updated
Feb 18, 2020 - Jupyter Notebook
Hi winterbe, your article is very good, it introduces the new features of Java 8 in detail, so I translate it into Chinese。Thank you!!!
Link:https://github.com/aalansehaiyang/java8-tutorial
你好,winterbe。你的文章写的真棒,里面详细介绍了Java 8新特性,我将它翻译成了中文。谢谢
The text says "y is the number of changes of chroma samples between the first and seconds rows of a pixels."
But isn't it more accurate to say:
"y is the number of changes of chroma samples between the first and last rows of a pixels."
If not, I still don't understand how chroma subsampling is used!
Enable a PWA feature which allows to work as an App and add a bookmark where we left for reading
Looping the process of writing images into the .tfrecords-file works fine, but how do I read multiple images from a .tfrecords-file?
Is there any simple solution? would be great if added to the code.
-
Updated
Nov 11, 2019
Frequent bug: while sorting by y-coordinate, the vertices are sorted, but the data coming with the vertices is not.
Gouraud shading, forgot to sort intensities
In my case I was calculating a barycentric coordinate of one vertex and assigning it to a different vertex by mistake.
The artifacts looked exactly the same as you presented, if it is the same problem then the description could be
-
Updated
Apr 12, 2020 - Jupyter Notebook
Description
Add Azure notebook to our SETUP doc.
I tested google colab and Azure notebook to run reco-repo without requiring creating any DSVM or compute by myself, and it works really well with simple tweaks to the notebooks (e.g. for some libs, should install manually).
I think it would be good to add at least Azure notebook to our SETUP doc, where users can easily test out our repo w/o
-
Updated
May 16, 2020 - C
-
Updated
Feb 23, 2019 - JavaScript
How about we collect some advice in docs/translations.md under Keeping translations up to date
or similar?
Working on #1118 I naively scrolled through the commit list and looked at merge commits that seemed to add content
Add Golang tutorial
I've recently started to implement a graphql server in golang, and It was a good experience.
I read about libraries for creating graphql server in golang and these options came across:
- https://github.com/graphql-go/graphql
- https://github.com/99designs/gqlgen
- https://github.com/graph-gophers/graphql-go
graphql-go/graphql
is the first library that started implementing graphql in g
Excuse me, https://github.com/graykode/nlp-tutorial/blob/master/1-1.NNLM/NNLM-Torch.py#L50 The comment here may be wrong. It should be X = X.view(-1, n_step * m) # [batch_size, n_step * m]
Sorry for disturbing you.
Right now it's just a collection of links (the basic format of each entry is 'name - author'). It might be helpful to make room for 1-2 sentence explanations of the link, particularly as the list grows.
(PS this project is linked prominently from the website now)
2.1 emphasizes the use of their new Component based methodology, with things like the <Query>
and <Mutation>
component. They've pushed for it to the point that it is quickly becoming difficult to find documentation for the 2.0 methods used in learnapollo.
A full update to 2.1 for apollo sections seems to be in order.
Hi, I noticed this line of code in README.md
printf("\tCodec %s ID %d bit_rate %lld", pLocalCodec->long_name, pLocalCodec->id, pCodecParameters->bit_rate);
in which pLocalCodec
is not declared in the article before used which might cause confusion in my view. Digging into the c code, I found this line.
https://github.com/leandromoreira/ffmpeg-libav-tutorial/blob/cdd616ce871078e
Improve this page
Add a description, image, and links to the tutorial topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the tutorial topic, visit your repo's landing page and select "manage topics."
https://github.com/aymericdamien/TensorFlow-Examples/blob/9e1bb504f5d0f209d000997ce2ad95bb891798ab/examples/3_NeuralNetworks/bidirectional_rnn.py#L81
I think "outputs [-1]" and "outputs [0]" are equivalent (reversed) in this line of code, but the former (89%) works better than the latter (86%). Why?