examples
Here are 2,544 public repositories matching this topic...
The spec says:
If a client has access to environment variables, several standard ones exist to specify the language in which a client should operate. If not, then clients MUST make reasonable assumptions based on the information provided by the environment in which they operate (e.g. consulting navigator.languages in a browser, etc.).
Windows systems do have environment variables, but the
Hi, I've found the following cheatsheet :
In the README you explain that there must be an edit button in the page and a github button to access the sheet but as you can see it doesn't appear here.
Thx ;)
Clarify the readme?
I tried to install the dotnet example using:
install -u https://github.com/serverless/examples/tree/master/aws-dotnet-rest-api-with-dynamodb -n dotnet_example
but it responds with:
Serverless Error ---------------------------------------
serverless.yml not found in .../dotnet_example
So I think the "-n my-project" in the README is perhaps not what is actually needed he
disposables.clear() is invoked in onStop()
But in the comment and also Github
`disposab
Similarly to elm/time#14
I think it is a pretty common way of displaying time with zero-padded hours, minutes and seconds.
However the example code does not do that currently.
Expected example output:
01:05:01
Actual example output:
1:5:1
I will create a PR for this.
I'm using vagrant 2.2.6 in a WSL (Windows Services for Linux) Ubuntu environment installed on Windows 10.
Please update the book example of the Vagrantfile on page 241 of the pdf to reflect github:
4 Vagrant.configure(2) do |config|
5 config.vm.box = "geerlingguy/ubuntu1804"
6 config.ssh.insert_key = false
and append a line which is common to your other Vagrantfiles to the Vagrant.
I am struggling to test a verticle isolated and all documentation and examples found only show how to test rest endpoints.
Something as simple as this, always fails with timeout
@Rule
public RunTestOnContext rule = new RunTestOnContext();
@Rule
public Timeout timeout = Timeout.seconds(5L);
@Test
public void should_run_verticle(TestContext context) {-
Updated
Jun 27, 2020 - Java
-
Updated
Jun 6, 2020
-
Updated
Jun 27, 2020 - Haskell
-
Updated
Mar 17, 2020 - Java
Right now Actions reports the tests are succeeding, although they are clearly failing:
prisma/prisma-examples#1652
prisma/prisma-examples#1651
That is dangerous, as one does not really see when stuff goes wrong.
Fundamentally there are 2 problems:
- All tests are run in one batch, a suggestion to change that is at https://github.com/p
Tried to download BuilderPattern from this link-
http://kinolien.github.io/gitzip/?download=https://github.com/nisrulz/android-examples/tree/master/BuilderPattern
Got no download, rather this message-
Warning
We recommended to get the token first and then do your actions.
- Please create a linkage between tab_handling_anchor_links_spec.js and stubbing-spying__window.
Both ar
https://github.com/actix/examples/blob/master/diesel/src/main.rs#L27
I suppose pool.get() would block the current thread.
It should be something like this.
let pool = pool.clone();
// use web::block to offload blocking Diesel code without blocking server thread
let user = web::block(move || {
let conn = pool.get().expect("couldn't get db connection from pool");
actions::find_us
-
Updated
Mar 27, 2019 - JavaScript
Add more examples
I think that would be a great idea to add some example to help who is a noob or to help who have no experience with Javascript.
I followed the Quckstart guide and I had an issue with running basic.py file.
Error:
(vizdoom) 2038 kimchi-box λ (~/git-repos/side-projects/doom/ViZDoom dac6904 master U:1⚡)
$ python3 ./examples/python/basic.py
Traceback (most recent call last)
-
Updated
Jun 27, 2020 - Ruby
A suggestion to improve your README.md top file:
Please describe every single example there with one or two (maybe three) English sentences, interesting to software developers ; explain what each example is demonstrating.
I am a 60 years old guy, living in France, with a PhD in artificial intelligence (1990); I am professionally doing Bismon
Improve this page
Add a description, image, and links to the examples topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the examples 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?