Read more OpenGL Error
glGetError 0x502
: means invalid operationglGetError 0x505
: means out-of-memory reported by the opengl gpu driver --> Solution: Share more memory to GPU
Read more OpenGL Error
glGetError 0x502
: means invalid operationglGetError 0x505
: means out-of-memory reported by the opengl gpu driver --> Solution: Share more memory to GPUdwc_otg.lpm_enable=0 console=null root=LABEL=resin-rootA rootfstype=ext4 rootwait vt.global_cursor_default=0 |
I hereby claim:
To claim this, I am signing this object:
Motivate from this question and answer https://askubuntu.com/a/932719/927010
To be able to compare them, we should look at them from the same perspective, so:
chmod +x
is equal to chmod ugo+x
(Based on umask
value)
chmod 755
is equal to chmod u=rwx,go=rx
Note: The RESTful routes also apply to RESTful APIs, however JSON is returned to the client vs. HTML
HTTP Verb | Path (endpoint) | controller#action | View to Render or Redirect |
Purpose |
---|---|---|---|---|
GET | /posts | posts#index | index | List all posts |
GET | /posts/:id | posts#show | show | Show a single post |
Magic words:
psql -U postgres
Some interesting flags (to see all, use -h
or --help
depending on your psql version):
-E
: will describe the underlaying queries of the \
commands (cool for learning!)-l
: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)