For QA Wolf we created a separate GitHub OAuth app just to avoid this UX bug
HN user
jonperl
Co-founder @ QA Wolf
twitter.com/jon_perl github.com/jperl
Have you tried Playwright? It is a fork of Puppeteer that adds auto-waiting
My friend has been working on an open source wysiwyg for markdown which is worth checking out: https://opencodex.dev/demo
Even Bozeman, MT has closed its restaurants, cafes, and bars.
Hey thanks for checking it out and for the feedback! I will make sure we add the --ts flag in the next release.
You can specify the directory with `npx qawolf create --rootDir=tests/integration` let me know if that works for you?
Hi HN, we have been building this open source tool to make creating browser tests easier. It converts your browser actions to Playwright/Jest code and sets up CI with one command. We would love any feedback!
This is a very cool concept! It would be useful for CLI commands like `npm test someSpecificTest`.
I have had the same experience using Selenium but not with Chrome Dev Tools Protocol. However you still need a stable environment, trustable selectors, and automatic waiting logic to have stable e2e web tests.
I am working on an open source library that generates Playwright tests (uses Chrome Dev Tools protocol) and I hope we can prove you wrong about getting UI tests working reliably. https://github.com/qawolf/qawolf
Zipdrug | Senior Software Engineer | NYC ONSITE SALARY: 110-125k + equity
We work with large health insurance companies in the US to lower the cost of drugs for their patients and make it easy for them to receive, manage, and adhere to their prescriptions.
We need your help to expand our platform to more patients and to play a part in fixing a massive and very broken segment of the healthcare industry. We are a small and tight-knit engineering team of two and are looking for a third to share our many hats, including:
- Frontend development with react / react native / redux - Backend development with node / graphql / postgres - Data analysis of patient records with python / pandas / tensorflow
We're looking for another self-starter who can design and build architecturally-sound foundations to last, and who has the track record to prove it. We're engineers that care about what we're building and take an active role in the product design process.
If you are interested, please reach out to jon@zipdrug.com
They have a nanodegree class that is much better. I have been taking it the past two months and I highly recommend it https://www.udacity.com/course/deep-learning-nanodegree-foun...
Very cool. We have been building a slack bot to do something similar, for internal release notes https://github.com/DispatchMe/meteor-rosie
NewRelic synthetics caught this for me.
Interesting, this service is a lot like http://www.alchemyapi.com/products/demo/alchemylanguage
Joins are a really hard problem, many people have tried to support joins with a package but they all miss a corner case or have less-than-ideal performance. I think it is something we will have to wait for meteor core to support. https://trello.com/c/BGvIwkEa/48-easy-joins-in-subscriptions
In the meantime I have been using the publish-composite package and denormalizing data that has a lot of reads in an update hook using the collection hooks package.
In mongo ideally you should have rich documents and not spread out relations among too many collections. However I can imagine how hard it would be to try and sync w/ a relational database without native join support.
The only thing I found is that additional databases are under consideration for 1.1+ https://trello.com/c/6ugalZMG/54-additional-database-support
I have built and integrated some pretty complex components with blaze templates without needing a component api. I am curious what use case you ran into where the template api was not sufficient?
In your comment history I saw that you asked for reactive template variables. I know of two ways to accomplish that, 1) attach a ReactiveDict to a template instance in it's render function, 2) pass it in as a variable to the template inclusion {{>template myDict}}.
What is nice about meteor is how quickly you can get off the ground and build something with it. Then you realize: I have no idea how this stuff works. Is it secure? When do things update? Is there too much magic?
But if you spend a bit of time learning how meteor’s core packages work (deps, ddp, livedata, blaze, etc) and how they work together — almost all of the apprehension disappears.
I recommend digging into the Deps package first, it powers reactivity and is surprisingly simple (only 1 kb).
EventedMind has great videos explaining reactivity and Deps https://www.eventedmind.com/classes/meteor-meteor-reactivity...
Meteor also started putting together a manual to explain the core concepts http://manual.meteor.com — the first chapter is about the Deps package.
With any new concept there is a learning curve. But I believe the concepts meteor introduce are too powerful to ignore. The saying is that any sufficiently advanced technology is indistinguishable from magic :)
I am working on reproducing the stories scrollview from the paper demo. Lookout for github.com/jperl/famous-cards later this week.
More details here http://us5.campaign-archive1.com/?u=4656ba2b0a364690c8530bc1...
I saw the link in the meteor tech talk but figured it was not for public distribution. However now that it is in the wild, for the curious I have been de-minifying the paper example to try and learn how to use famo.us.
https://github.com/jperl/paper
Also I am not sure why there are all these haters. In the few days I have been using it, I can see it is going to change mobile web app development entirely. Really excited for the launch!
Thank you I will definitely check it out!
I am not looking to sell it, just give it away for anyone who will put in the time.
It is a chrome extension that makes it so you can add a monetary bounty to GitHub issues, inside of GitHub.
It posts a comment on the issue with a dynamically generated image containing the bounty amount and the status of the bounty.
When I first thought of the implementation for Code Bounty it was too cool not to build. Working with Kevin and Ryan was a great experience and we all learned a lot about meteor, paypal, chrome extensions, and bitcoins.
Way too late, after building it, I realized I liked the implementation but not the concept.
Ryan and Kevin are busy with other things so I wanted to know if anybody is interested in taking over / having this project?
It is open source here: https://github.com/codebounty/codebounty
For a side project I wanted to experiment with a very similar idea.
Due to other commitments I was not able to give the project the love it deserved. Perhaps some of the code or concepts will be useful for you guys:
https://github.com/codebounty/codebounty codebounty.co
Let me know if I can help. @jon_perl
Well that was a surprise turn around. Great for the entrepreneur, not so great for the kind natured protagonist.
Great application!
One bug I noticed is that when I mark a message as unread, the subject line / summary text goes back to what it used to be.
Maybe you guys could have an empty repo on GitHub to keep track of bugs?
Who wants to help me build this for the Oculus Rift?
We are about to release a very interesting solution to this. Write me if you are interested in more info perl.jonathan at gmail
Thanks for the article, it was a nice refresher!
Checkout Yeoman it utilizes Grunt and it helps to get started with Grunt. (Also made by top JS guys Paul Irish/Addy Osmani)