A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.
| Name | Stars | Last Commit | Description |
|---|---|---|---|
| three.js | ![GitHub |
| // AUTOGENERATED CONFIGURATION (Thu May 02 2019 15:09:04 GMT-0400 (Eastern Daylight Time)) | |
| // Full config reference: | |
| // https://github.com/requirejs/r.js/blob/b8a6982/build/example.build.js | |
| ({ | |
| // Set "optimize" to "none" to speed up bundling while debugging | |
| "optimize": "uglify2", | |
| "generateSourceMaps": true, | |
| "wrapShim": true, | |
| "inlineText": true, |
| { | |
| // Usage: | |
| // mv pub/static/frontend/Magento/luma/en_US pub/static/frontend/Magento/luma/en_US_orig | |
| // r.js -o build.js baseUrl=pub/static/frontend/Magento/luma/en_US_origin dir=pub/static/frontend/Magento/luma/en_US | |
| // Enable js minification with Uglify. Uncomment this out during development tomake builds faster | |
| //optimize: 'none', | |
| inlineText: true, | |
| // Files that are required for all pages will be included in require.js file | |
| deps: [ | |
| 'jquery/jquery.cookie', |
A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.
| Name | Stars | Last Commit | Description |
|---|---|---|---|
| three.js | ![GitHub |
The connection failed because by default psql connects over UNIX sockets using peer authentication, that requires the current UNIX user to have the same user name as psql. So you will have to create the UNIX user postgres and then login as postgres or use sudo -u postgres psql database-name for accessing the database (and psql should not ask for a password).
If you cannot or do not want to create the UNIX user, like if you just want to connect to your database for ad hoc queries, forcing a socket connection using psql --host=localhost --dbname=database-name --username=postgres (as pointed out by @meyerson answer) will solve your immediate problem.
But if you intend to force password authentication over Unix sockets instead of the peer method, try changing the following pg_hba.conf* line:
from
| ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key | |
| # Don't add passphrase | |
| openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub | |
| cat jwtRS256.key | |
| cat jwtRS256.key.pub |
| <?php | |
| namespace Your\Extension\Namespace\Hooks; | |
| class PageLayoutView implements \TYPO3\CMS\Backend\View\PageLayoutViewDrawItemHookInterface | |
| { | |
| /** | |
| * Preprocesses the preview rendering of a content element. | |
| * |