Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Taken from some older post.
function isCertificateValid(cert) {
return true;
}
I mean, for sure it works. -
Changing a name 'Users' to 'users'.
Apparently postgreSQL doesn't work with capital letters in the table names.
I was new to php and I had wasted a whole day because of that -
<?php
// Taken from my work
foreach($object as $item){
$item = $item;
}
// use $item -
@8BitOverdose Actually it does but you have to extra quote it like „“Users““.
Fun fact: postgresql wont accept user as table because it's reserved. Had to learn it the hard way 😅
Related Rants
What is the Stupidest solution to a problem that actually worked?
question
solution
stupid