Does this work well when set up to use my local machine and my personal credentials?
Not the original commenter but I manage a similar system: 1. Wait timings for jobs. 2. Run timings for jobs. 3. Timeout occurrences and stdout/stderr logs of those runs 4. Retry metrics, and if there is a retry limit,…
Was affected by this, and so far, windscribe is a far superior service. The transition was seamless.
Just signed up and this is almost exactly what I've been looking for. The Github repo mentions a REST api that can be used to push arbitrary data into the system. Are there any docs around this yet?
There is no reason to feel alone, perhaps rare, but not alone. There are others that share your feelings (including myself). These people are often labelled as the "pragmatic". They also lean towards having a more…
Turning off javascript also removes most paywalls, even the ones that have started protecting against direct links from search results.
I believe this is symptomatic of an industry moving away from job board based recruiting. There has been a significant change in the recruiting sphere and many talent teams are starting to focus more on sourcing and…
This is the exact situation I'm in and I'm on my 3rd TN. Get a good lawyer and this shouldn't be a problem. If you do get this visa though, be very careful what you say to the border guards. You need to ensure that when…
The main premise in my comment is that the benchmarks do not resemble real world performance, and are therefore misleading. The comment above (https://news.ycombinator.com/item?id=11626762) further expands on why these…
The benchmarks for node.js are terribly misleading. The node.js implementations only ever spawn a single process, and thus node is only running on a single core and uses only a single thread. Specifically, the http…
One thing I find interesting is that everyone loves to hate CoffeeScript, but its individual features/syntax are consistently lauded in conversations about other languages. (Not to mention half of ES6 existed in…
Docker doesn't force you to put your app and your db on the same image. That is up to you. Most have "App" images and "DB" images separate. If we want to get really specific, Its also common to see the "DB" image split…
Hrmmmm good point. Not one that applies to me particularly since if I'm on a server then I'm usually only running pre-written .sh scripts. (edit: this was a reply to the post below.. not sure how I messed that up..…
Would you mind expanding on what fish does out-of-the-box that prezto neglects or hides behind configuration? I am in a similar boat as you and was just wondering what I had to look forward to as a prezto user.
I can clearly see the difference between Fish and regular ol' bash, but struggling to see what value Fish adds above prezto/zsh. Could anyone help me out here?
Agreed. Something like this but based on RethinkDB or FaunaDB would be nice to see. Also if you chose to leverage these newer databases, you could leverage their in-built PUB-SUB support instead of having to using…
True, but once you start adding middleware for business logic that conditionally runs for different routes, you end up with requests that get routed in a very non-linear fashion. My experience regarding building route…
how is this different from https://github.com/wprl/baucis? Also, whenever I've tried to use something like this for an actual product I end up quickly outgrowing the simple CRUD model since you usually need to implement…
Actually would argue that Promises are less composable since you're forced to use whatever control flow paradigm the Promise library has provided or add another library to handle control flow. By utilizing callbacks,…
I believe Sequelize does this: https://sequelize.readthedocs.org/en/latest/docs/migrations/
Both callbacks and promises are fairly simple interfaces for calling a function after some other function has completed. Both interfaces can be abused to give you an ever growing indent and give the appearance of…
Any chance Rdb plans to support a traditional callback style interface for those of us that prefer to stay away from promises?
Mongo is great for when you're rapidly developing a product and/or still operating at a small-medium scale. Once you start to really scale, you'll start to find a couple parts of MongoDB break-down: 1. MongoDB has no…
Feedback: - The lack of an option to search only vegetarian recipes makes this pretty much useless for me. - Adding ingredients has a fairly large delay. I suspect some optimizations could be done there.
This looks amazing, and the StrongLoop team is chalked full of some great Node.js developers. But for some reason I'm still worried about using it as the backbone for an enterprise scale application; it almost does too…
Does this work well when set up to use my local machine and my personal credentials?
Not the original commenter but I manage a similar system: 1. Wait timings for jobs. 2. Run timings for jobs. 3. Timeout occurrences and stdout/stderr logs of those runs 4. Retry metrics, and if there is a retry limit,…
Was affected by this, and so far, windscribe is a far superior service. The transition was seamless.
Just signed up and this is almost exactly what I've been looking for. The Github repo mentions a REST api that can be used to push arbitrary data into the system. Are there any docs around this yet?
There is no reason to feel alone, perhaps rare, but not alone. There are others that share your feelings (including myself). These people are often labelled as the "pragmatic". They also lean towards having a more…
Turning off javascript also removes most paywalls, even the ones that have started protecting against direct links from search results.
I believe this is symptomatic of an industry moving away from job board based recruiting. There has been a significant change in the recruiting sphere and many talent teams are starting to focus more on sourcing and…
This is the exact situation I'm in and I'm on my 3rd TN. Get a good lawyer and this shouldn't be a problem. If you do get this visa though, be very careful what you say to the border guards. You need to ensure that when…
The main premise in my comment is that the benchmarks do not resemble real world performance, and are therefore misleading. The comment above (https://news.ycombinator.com/item?id=11626762) further expands on why these…
The benchmarks for node.js are terribly misleading. The node.js implementations only ever spawn a single process, and thus node is only running on a single core and uses only a single thread. Specifically, the http…
One thing I find interesting is that everyone loves to hate CoffeeScript, but its individual features/syntax are consistently lauded in conversations about other languages. (Not to mention half of ES6 existed in…
Docker doesn't force you to put your app and your db on the same image. That is up to you. Most have "App" images and "DB" images separate. If we want to get really specific, Its also common to see the "DB" image split…
Hrmmmm good point. Not one that applies to me particularly since if I'm on a server then I'm usually only running pre-written .sh scripts. (edit: this was a reply to the post below.. not sure how I messed that up..…
Would you mind expanding on what fish does out-of-the-box that prezto neglects or hides behind configuration? I am in a similar boat as you and was just wondering what I had to look forward to as a prezto user.
I can clearly see the difference between Fish and regular ol' bash, but struggling to see what value Fish adds above prezto/zsh. Could anyone help me out here?
Agreed. Something like this but based on RethinkDB or FaunaDB would be nice to see. Also if you chose to leverage these newer databases, you could leverage their in-built PUB-SUB support instead of having to using…
True, but once you start adding middleware for business logic that conditionally runs for different routes, you end up with requests that get routed in a very non-linear fashion. My experience regarding building route…
how is this different from https://github.com/wprl/baucis? Also, whenever I've tried to use something like this for an actual product I end up quickly outgrowing the simple CRUD model since you usually need to implement…
Actually would argue that Promises are less composable since you're forced to use whatever control flow paradigm the Promise library has provided or add another library to handle control flow. By utilizing callbacks,…
I believe Sequelize does this: https://sequelize.readthedocs.org/en/latest/docs/migrations/
Both callbacks and promises are fairly simple interfaces for calling a function after some other function has completed. Both interfaces can be abused to give you an ever growing indent and give the appearance of…
Any chance Rdb plans to support a traditional callback style interface for those of us that prefer to stay away from promises?
Mongo is great for when you're rapidly developing a product and/or still operating at a small-medium scale. Once you start to really scale, you'll start to find a couple parts of MongoDB break-down: 1. MongoDB has no…
Feedback: - The lack of an option to search only vegetarian recipes makes this pretty much useless for me. - Adding ingredients has a fairly large delay. I suspect some optimizations could be done there.
This looks amazing, and the StrongLoop team is chalked full of some great Node.js developers. But for some reason I'm still worried about using it as the backbone for an enterprise scale application; it almost does too…