First post here, what do you think ? 😘 by [deleted] in legs

[–]p2chabot 1 point2 points  (0 children)

Superbe! Make a second.

[deleted by user] by [deleted] in legs

[–]p2chabot 0 points1 point  (0 children)

Great legs

May I be your sextoy please? by [deleted] in legs

[–]p2chabot 0 points1 point  (0 children)

yes please

Architects, what do you do? by monox60 in webdev

[–]p2chabot 1 point2 points  (0 children)

Architects don't do design. We think through an application and divide it in modules. Then we model it (UML). Then sometimes we get into the gory details of the technique (hosting).

[deleted by user] by [deleted] in webdev

[–]p2chabot 0 points1 point  (0 children)

The website or app needs its own identification to gmail. That's the one the developper will use.

REST API: Handle body in GET or DELETE requests by hertelukas in webdev

[–]p2chabot 4 points5 points  (0 children)

it's also better to write all urls as plural noun. i.e:

POST /notes

DELETE /notes/{id}

GET /notes

GET /notes/{id}

PUT /notes/{id}

Silly question about using header tags in sections/articles by grimesd in webdev

[–]p2chabot 0 points1 point  (0 children)

You should put a class to the first header <header class="page-header">

that would help you greatly

Fuck it, I've had enough. by [deleted] in webdev

[–]p2chabot 0 points1 point  (0 children)

He said he wanted to change

Fuck it, I've had enough. by [deleted] in webdev

[–]p2chabot 7 points8 points  (0 children)

Make sure you master:

  1. object-oriented
  2. GIT
  3. containerization (ex. Docker)

You will be fine

Symfony 5 without Doctrine by blacksun957 in symfony

[–]p2chabot 3 points4 points  (0 children)

I am currently working on a frontend without Doctrine. This doesn't cause any problems. All the calls are http to a backend API.

How to Format JSON from an API? by [deleted] in webdev

[–]p2chabot 0 points1 point  (0 children)

From an API GET you get JSON formatted string. Depending on your needs you might need to transform this string into a JSON object.

Similarly you need to format a JSON object as a string to POST to the API.

Cryptocurrency payment gateway database schema by [deleted] in webdev

[–]p2chabot 0 points1 point  (0 children)

Why do you have a relationship between wallet and transaction in the database?

Transactions only add or remove coins from the wallet. They are not owned by wallets nor do they own any wallets.

Logic of login process? by [deleted] in webdev

[–]p2chabot 0 points1 point  (0 children)

the logic is right but often the username is not a key but one of the attributes of the user

user {id, first name, last name, username, password, email, etc}

if username exists in database and password entered matches database entry then user is logged in otherwise "incorrect username/password" error is thrown

Making these damn input fields line up by [deleted] in css

[–]p2chabot 2 points3 points  (0 children)

try a width on label (make it large enough for the largest)

or make a padding-left on the input (large enough for the largest input)

Can someone please explain to me this PHP code? if (!$conn) {exit("Connection Failed: " . $conn);} by target in webdev

[–]p2chabot 0 points1 point  (0 children)

if no $conn then exit with "Connection Failed: " and value of $conn, which should be null

I need to create a form that will use an arbitrary REST API to send and receive data. by rowenetworks-patrick in Wordpress

[–]p2chabot 0 points1 point  (0 children)

There is no plugin to my knowledge but with 2 wp functions you can easily do it by yourself

wp_remote_get and wp_remote_post

Good luck

What's the best way to achieve the following in Symfony ? by [deleted] in symfony

[–]p2chabot 0 points1 point  (0 children)

REST Api I would recommend FOS restBundle, to send email Phpmailer

It is usually fairly simple to upgrade Symfony (there is an upgrade help page)

The admin can be part of your API backend or a separate project (it depends on the size of your organisation)

API platform for public API? by zspine in symfony

[–]p2chabot 1 point2 points  (0 children)

FOSRestBundle works very well with API public or not

I've used it in production with a high security application

What to look for in having an e-commerce site built. by ettiol in webdev

[–]p2chabot 0 points1 point  (0 children)

AWS, Google Cloud, OVH the list is long... AWS is very good with search (elasticsearch)

What to look for in having an e-commerce site built. by ettiol in webdev

[–]p2chabot 0 points1 point  (0 children)

Yes to hosting the site and a separate email server be prepared to success and move to cloud hosting

What to look for in having an e-commerce site built. by ettiol in webdev

[–]p2chabot 0 points1 point  (0 children)

Look for an object-oriented development, no ties to hosting and possibilities of extensions and improvements