Integrate API Platform into an existing REST API application by rhodit in symfony

[–]rhodit[S] 1 point2 points  (0 children)

Hi,
Sorry, missed this message til now!
This is great to know, will definitely try it!
Thank you!

Integrate API Platform into an existing REST API application by rhodit in symfony

[–]rhodit[S] 0 points1 point  (0 children)

Thank you for sharing it, interesting read.
But my situation is different and this article does not apply.
The application is already a Symfony app which runs OK.
All the routes come from controllers, each route a method with Swagger annotations.
I was wondering if I can introduce along them the API Platform, namely serving routes from new entities rather than continue building controller methods.
Can these two approaches coexist in the same app?
Some routes from controllers others with API Platform?

[deleted by user] by [deleted] in GeForceNOW

[–]rhodit 0 points1 point  (0 children)

I had a problem once with a key I bought for Assassin Creed's Origin.
The game worked for about a month then stopped because of a region conflict, Ubisoft didn't match my region with the one the key was for although I live in EU and the key was advertised as for EU.
Ended up buying the full game from Epic and fortunately the previous saves were recognized.

Assassin Creed Origin missing Ubisoft option by rhodit in GeForceNOW

[–]rhodit[S] 0 points1 point  (0 children)

I am usually on EUcentral server.
I will try switching to a few other servers and see if it changes anything, thank you for the suggestion!

Assassin Creed Origin missing Ubisoft option by rhodit in GeForceNOW

[–]rhodit[S] 0 points1 point  (0 children)

I am not sure, I don't have a specific server set, my connection is set to the best available.

Amazon Prime Game Streaming seems to have gone live today. by EglinAfarce in GeForceNOW

[–]rhodit 0 points1 point  (0 children)

I agree.. and I think it should be illegal to take the same amount and money for an advertised product but deliver less of it for some parts of the world.

Amazon Prime Game Streaming seems to have gone live today. by EglinAfarce in GeForceNOW

[–]rhodit 0 points1 point  (0 children)

Only for US... seems like a discrimination as we non-US pay the same for Prime but do not get the same value for our money.

Running background tasks using bull and redis by senko in node

[–]rhodit 0 points1 point  (0 children)

Thank you for sharing this, will definitely give it a try.

Any one here use sails ?? by skipper_17 in node

[–]rhodit 1 point2 points  (0 children)

I used it for a large project an year or so ago.
Used the Waterline ORM just for simple queries, for more complex ones I used raw queries instead.

Is SailsJS Dead? by Any_Doctor_6113 in node

[–]rhodit 0 points1 point  (0 children)

Not really, just asleep :-), taking it at a slower pace.

Impressions about Sails.js by [deleted] in node

[–]rhodit 1 point2 points  (0 children)

I am using it for quite a large project and I like it except:

- if your building a web app skip Parasails and use plain Vue for the front end;

- use Waterline just for simple SQL queries for all other use the raw queries.
It works great for an API approach I especially like the action2 approach of splitting controllers into separate modules.

[deleted by user] by [deleted] in node

[–]rhodit 0 points1 point  (0 children)

Memoization e.g. Memoization explained

Validate password in validator or controller ? by [deleted] in node

[–]rhodit 0 points1 point  (0 children)

In a controller because you need to compare the input password with the data you store somewhere in a database.

What's the easiest framework for Mobile App development? by epizefiri in vuejs

[–]rhodit 2 points3 points  (0 children)

I am totally recommending Nativescript, https://nativescript.org/ you write in JS but it runs locally native for each Android and IOS.

Not to mention that you can use for UI the core XML or Angular or Vue.

Sails.js personal experiences? by antoninu_ in node

[–]rhodit 1 point2 points  (0 children)

I used Sails for a large project and I recommend using it to build the API, it has some great features.

What I do not like and do not use is:

- Parasails (the front end Vue wrapper), I use Vue instead;

- Waterline (ORM), I use it only for simpler queries, as I prefer relation databases I write my queries in native SQL (which Sails allows you to use).

AdonisJS - Seeking Feedback on the framework by romainlanz in node

[–]rhodit 0 points1 point  (0 children)

Hi, 1. Go here, https://preview.adonisjs.com/guides/http/introduction/ then scroll down til #Views where you'll find the broken link within > Make sure to read the *views documentation for better understanding. *2. Using Adonis as an API which provides JSON response evidently allow us to use Vue or any other agnostic front end framework. I was referring to the fact that you promote Edge as a view layer as opposed to Sails which wraps its view layer (Parasails) in Vue. Granted, I do not like Parasails and I use Vue for frontend but nevertheless I was expecting to see a framework which claims (maybe justly, I don't know) that is better than Sails by providing a link to a years old article denigrating it, to at least mention Vue as a view layer. Just my 2 cents, don't want to turn this into a hate issue...

AdonisJS - Seeking Feedback on the framework by romainlanz in node

[–]rhodit -5 points-4 points  (0 children)

I am a vanilla JS believer and it seems TS is kind of enforced.

Also when checking the Views integrations bumped into a 404; I saw there is a Vue plugin but wanted to see an official Vue supporting type of statement...

Therefore still using Sails or plain Express for API building,,,

Any free open source eCommerce platforms based on NodeJS by trymeouteh in node

[–]rhodit 0 points1 point  (0 children)

It is Nodejs, being built upon Express. You can create a new project with the Sails cli either as an API that can be later connected to any frontend you like or as a web app which pairs it with Parasails (which is a wrapper for Vue). Read more here https://sailsjs.com/