Tag: resources
-
Symfony Session resources list
Plain session docs – This is the symfony documentation page about Sessions alone. This link shows the basic configuration and use of Sessions in Symfony. This also mentions not starting a session for Anonymous users and has links to other info about sessions. Configuring Sessions and Save handlers – Symfony documentation link. This covers more…
-
Symfony errors and exception handling resources
How to customize error pages – Documentation page about how to create custom error pages. How to Customize Access Denied Responses – specifically about how to customize access denied responses. This is useful for when you use voters to authorize a users access to content.
-
Ethereum Solidity programming links and resources.
Links and resources about Ethereum Solidity programming language. Videos
-
Symfony caching resource list and information
Once I started digging into Symfony caching I found all kinds of information all over. I’ll use this page to catalog it all for myself and others. This way I can quickly find what I am looking for. Cache – From the docs. This is the overall plain documentation about Symfony cache. It covers the…
-
Symfony 5+ check if user is logged in inside a twig template
Often you may need to know whether a user is logged in or not inside a template to show or not show something. For example you might want to show links to login or register if a user is not logged in but show a link to logout if the user is logged in. To…
-
PHP resource links
What’s New in PHP 8 (Features, Improvements, and the JIT Compiler)
-
HTTP headers and caching resources.
Resources all about HTTP headers and caching. Caching tutorial -> great article to start with, explains all the basics of caching. Hypertext Transfer Protocol (HTTP/1.1): Caching rfc spec
-
Bash how write large amounts of text to a file
I searched and tried for days to find the answer to this. All I wanted to do was be able to basically create a file and write text to it exactly as I had entered it in a shell script. Every suggestion on the internet was fubar. Note : to run these commands, put them…
-
SSH secure shell links videos and resources
I had a nice article but somehow it got screwed to hell and back. I have no idea what I did. I will not rewrite it. This is now purely a list of resources. I really hate tinymce for this. You can’t just past text from the internet because it auto adds H4’s for some…
-
Ansible resources links videos and information
Ansible is used to provision/setup servers for your app. Why is Ansible better than shell scripting?