mastodon.xyz is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance, open to everyone, but mainly English and French speaking.

Administered by:

Server stats:

739
active users

#programmingtips

0 posts0 participants0 posts today
Ramsay Dev Rants<p>18 rules of software engineering</p><p><a href="https://mastodon.social/tags/software" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>software</span></a> <a href="https://mastodon.social/tags/eingineering" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>eingineering</span></a> <a href="https://mastodon.social/tags/programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programming</span></a> <a href="https://mastodon.social/tags/programmingtips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmingtips</span></a> <a href="https://mastodon.social/tags/dev" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>dev</span></a></p>
Farooq | فاروق<p>So as I am doing experiments for finetuning parameters for <a href="https://cr8r.gg/tags/wakegp" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>wakegp</span></a>, I noticed the repository is taking a lot of space, more than 0.5GB. I asked in <a href="https://cr8r.gg/tags/codeberg" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>codeberg</span></a> <a href="https://cr8r.gg/tags/Matrix" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Matrix</span></a> room. As they have limits.</p><p>One of their people did <code>git gc</code> and that ~700MB turned into under 200MB. I learned a lesson here. You can use <code>git gc</code> for housekeeping of your <a href="https://cr8r.gg/tags/git" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>git</span></a> repository. It also does compression.</p><p>I wonder when could I master git an learn all of its wonderful features.</p><p>PS: In non profit services like codeberg, the resources you use aren't paid with your data. Then you have to be careful to not waste their resources. If you've got a huge repository on codeberg, it would be a good idea to do a <code>git gc</code> so the resources would be available for other users.</p><p><span class="h-card" translate="no"><a href="https://social.anoxinon.de/@Codeberg" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>Codeberg</span></a></span> <br><a href="https://cr8r.gg/tags/programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programming</span></a> <a href="https://cr8r.gg/tags/development" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>development</span></a> <a href="https://cr8r.gg/tags/softwaredevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>softwaredevelopment</span></a> <a href="https://cr8r.gg/tags/softwareengineering" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>softwareengineering</span></a> <a href="https://cr8r.gg/tags/controlversionsystem" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>controlversionsystem</span></a> <a href="https://cr8r.gg/tags/cvs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>cvs</span></a> <a href="https://cr8r.gg/tags/techtips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>techtips</span></a> <a href="https://cr8r.gg/tags/programmingtips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmingtips</span></a></p>
SpielmannSpiel<p>BIG PLANS!</p><p><a href="https://mastodon.online/tags/programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programming</span></a> <a href="https://mastodon.online/tags/programmingtips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmingtips</span></a> <a href="https://mastodon.online/tags/programtips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programtips</span></a> <a href="https://mastodon.online/tags/gamedev" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>gamedev</span></a> <a href="https://mastodon.online/tags/coding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>coding</span></a></p>
#freeGhislaineMaxwellroot@1a7a2121da08:/llm/ollama# ./ollama run ReikaAssistant "How can I delete entries on SQL using commands?" --verbose<br> For instance, if my database has a table named "people" and it contains records of names and ages. How would I go about deleting a <br>specific record, say the one with the name 'John Doe', or all records where age is over 100?<br>To delete entries from an SQL database, you typically use the `DELETE` statement. Here are some common ways to delete records based <br>on your criteria:<br><br>### Deleting Specific Records<br><br>If you want to delete a specific record from the "people" table, say for example, the one with the name 'John Doe', you would do <br>something like this:<br><br>```sql<br>DELETE FROM people WHERE name = 'John Doe';<br>```<br><br>This command deletes all records where `name` is equal to 'John Doe'. <br><br>**Important Note:** Make sure that the condition in the `WHERE` clause correctly identifies only the record you want to delete. If no <br>`WHERE` clause is used, the query will attempt to delete **all** records from the table.<br><br>### Deleting Multiple Records<br><br>If you need to remove all records where a certain condition is met, such as deleting all people over 100 years old, you can use:<br><br>```sql<br>DELETE FROM people WHERE age &gt; 100;<br>```<br><br>This will delete every record in the "people" table where `age` is greater than 100.<br><br>### Deleting All Records<br><br>If your goal is to clear out all records from a particular table (essentially truncating it), you can use:<br><br>```sql<br>TRUNCATE TABLE people;<br>```<br><br>Or, equivalently using the `DELETE` statement with no `WHERE` clause:<br><br>```sql<br>DELETE FROM people;<br>```<br><br>Both of these will remove **all** rows from the "people" table.<br><br>### Important Considerations<br><br>- **Backup Your Data:** Always make sure to back up your data before performing delete operations.<br>- **Be Careful with DELETE Statements:** Ensure that you are targeting the correct records. Using `DELETE` without a `WHERE` clause <br>can lead to unintended deletions of all rows in the table.<br><br>### Example Use Case<br><br>Let's assume you have the following schema for the "people" table:<br><br>```sql<br>CREATE TABLE people (<br> id INT PRIMARY KEY,<br> name VARCHAR(100),<br> age INT<br>);<br>```<br><br>And some sample data:<br><br>| id | name | age |<br>|----|---------------|-----|<br>| 1 | John Doe | 25 |<br>| 2 | Jane Smith | 30 |<br>| 3 | Michael Brown| 75 |<br>| 4 | Alice Johnson |110 |<br><br>To delete all people over the age of 100:<br><br>```sql<br>DELETE FROM people WHERE age &gt; 100;<br>```<br><br>This would leave you with:<br><br>| id | name | age |<br>|----|---------------|-----|<br>| 1 | John Doe | 25 |<br>| 2 | Jane Smith | 30 |<br>| 3 | Michael Brown| 75 |<br><br>Alternatively, to delete a specific person named 'John Doe':<br><br>```sql<br>DELETE FROM people WHERE name = 'John Doe';<br>```<br><br>Result:<br><br>| id | name | age |<br>|----|---------------|-----|<br>| 2 | Jane Smith | 30 |<br>| 3 | Michael Brown| 75 |<br><br>### Conclusion<br><br>The `DELETE` statement is powerful and can be used to manage your database records efficiently. Just remember to use the `WHERE` <br>clause carefully to avoid unintended deletions! 🚨🚨🚨<br><br>---<br><br>**Additional Resources:**<br><br>- [SQL DELETE Statement](https://www.w3schools.com/sql/sql_delete.asp)<br>- [Truncate Table vs Delete](https://www.geeksforgeeks.org/truncate-vs-delete-in-sql/) - A comparison between `TRUNCATE` and `DELETE`. 🚀🚀🚀<br><br>---<br><br>**Remember:** Always double-check your queries to ensure they're doing exactly what you intend! 💡💡💡<br><br>---<br><br>**Community Tips:**<br><br>- **Use Caution with `DELETE`:** It's powerful but can cause data loss. Double-check the conditions before executing.<br>- **Backup Before Deleting:** Make a backup of important tables or use transactions if possible.<br><br>Happy querying! 🍊💪👨‍💻👩‍💻<br><br>---<br><br>**Tagging:**<br><br><a class="hashtag" href="https://tsundere.love/tag/sql" rel="nofollow noopener noreferrer" target="_blank">#SQL</a> <a class="hashtag" href="https://tsundere.love/tag/deletestatement" rel="nofollow noopener noreferrer" target="_blank">#DeleteStatement</a> <a class="hashtag" href="https://tsundere.love/tag/databasemanagement" rel="nofollow noopener noreferrer" target="_blank">#DatabaseManagement</a> <a class="hashtag" href="https://tsundere.love/tag/programmingtips" rel="nofollow noopener noreferrer" target="_blank">#ProgrammingTips</a> <a class="hashtag" href="https://tsundere.love/tag/dataintegrity" rel="nofollow noopener noreferrer" target="_blank">#DataIntegrity</a> <a class="hashtag" href="https://tsundere.love/tag/backupsarekey" rel="nofollow noopener noreferrer" target="_blank">#BackupsAreKey</a> <a class="hashtag" href="https://tsundere.love/tag/carefulwithdeletes" rel="nofollow noopener noreferrer" target="_blank">#CarefulWithDeletes</a> <a class="hashtag" href="https://tsundere.love/tag/sqlqueries" rel="nofollow noopener noreferrer" target="_blank">#SQLQueries</a> <a class="hashtag" href="https://tsundere.love/tag/truncatetables" rel="nofollow noopener noreferrer" target="_blank">#TruncateTables</a> <a class="hashtag" href="https://tsundere.love/tag/recorddeletion" rel="nofollow noopener noreferrer" target="_blank">#RecordDeletion</a> <a class="hashtag" href="https://tsundere.love/tag/datamanipulationlanguage" rel="nofollow noopener noreferrer" target="_blank">#DataManipulationLanguage</a> (DML) <br><a class="hashtag" href="https://tsundere.love/tag/computerscience" rel="nofollow noopener noreferrer" target="_blank">#ComputerScience</a> <a class="hashtag" href="https://tsundere.love/tag/techtips" rel="nofollow noopener noreferrer" target="_blank">#TechTips</a> 🌐💡✍️💻📊📈💪<br><br>---<br><br>**Feedback:**<br><br>Is there anything you'd like to add or any questions about deleting records in SQL? Share your thoughts below! 💬📖📝💬👩‍🏫👨‍🏫🎓🔍🔎📚📖📝💬👩‍🏫👨‍🏫🎓🔍🔎📚📖📝💬<br><br>---<br><br>**Related Articles:**<br><br>- [How to Use JOIN in SQL](https://www.example.com/join-in-sql) - Learn about joining tables for more complex queries.<br>- [Mastering Transactions in SQL](https://www.example.com/transactions-sql) - Understand how transactions can help manage your data.<br><br>---<br><br>**Community Contribution Request:**<br><br>If you have a specific use case or question related to deleting records, feel free to share it here! Let's learn together and improve our SQL skills. 🌟🌟🌟<br><br>---
TechKeysX<p>Variables in Python <br><a href="https://mastodon.social/tags/python" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>python</span></a> <a href="https://mastodon.social/tags/pythoncoding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>pythoncoding</span></a> <a href="https://mastodon.social/tags/LearnPython" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>LearnPython</span></a> <a href="https://mastodon.social/tags/codingshorts" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>codingshorts</span></a> <a href="https://mastodon.social/tags/CodeNewbie" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CodeNewbie</span></a><br><a href="https://mastodon.social/tags/PythonVariable" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>PythonVariable</span></a> <a href="https://mastodon.social/tags/programmingtips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmingtips</span></a> <a href="https://mastodon.social/tags/CodeWithMe" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CodeWithMe</span></a> <a href="https://mastodon.social/tags/techshorts" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>techshorts</span></a><br><a href="https://mastodon.social/tags/pythonbeginners" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>pythonbeginners</span></a> <a href="https://mastodon.social/tags/codelife" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>codelife</span></a> <a href="https://mastodon.social/tags/quickcoding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>quickcoding</span></a>#devshorts <a href="https://mastodon.social/tags/pythonbasics" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>pythonbasics</span></a></p>
SpielmannSpiel<p>The Original source of the "bugs have feelings too" comic that has been shared and redrawn over and over again in the past years: <br>Andy Glover / cartoontester</p><p>The original blog post:<br><a href="https://cartoontester.blogspot.com/2010/03/bug-advocacy.html" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">cartoontester.blogspot.com/201</span><span class="invisible">0/03/bug-advocacy.html</span></a></p><p>His book "The Cartoon Tester": <a href="https://leanpub.com/thecartoontester" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="">leanpub.com/thecartoontester</span><span class="invisible"></span></a></p><p><a href="https://mastodon.online/tags/programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programming</span></a> <a href="https://mastodon.online/tags/programmingtips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmingtips</span></a> <a href="https://mastodon.online/tags/bugs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>bugs</span></a> <a href="https://mastodon.online/tags/testing" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>testing</span></a> <a href="https://mastodon.online/tags/tester" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>tester</span></a> <a href="https://mastodon.online/tags/softwaretester" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>softwaretester</span></a> <a href="https://mastodon.online/tags/developer" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>developer</span></a> <a href="https://mastodon.online/tags/gamdev" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>gamdev</span></a></p>
SpielmannSpiel<p><a href="https://mastodon.online/tags/TIL" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>TIL</span></a>: in <span class="h-card" translate="no"><a href="https://programming.dev/c/jetbrains" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>jetbrains</span></a></span> products (eg <span class="h-card" translate="no"><a href="https://programming.dev/c/phpstorm" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>phpstorm</span></a></span> ) you can create .http files for sort of instant API-requests. Neat.</p><p><a href="https://www.jetbrains.com/pages/intellij-idea-http-client/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">jetbrains.com/pages/intellij-i</span><span class="invisible">dea-http-client/</span></a></p><p>via coder2k <a href="https://www.twitch.tv/coder2k" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="">twitch.tv/coder2k</span><span class="invisible"></span></a></p><p><a href="https://mastodon.online/tags/jetbrains" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>jetbrains</span></a> <a href="https://mastodon.online/tags/phpstorm" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>phpstorm</span></a> <a href="https://mastodon.online/tags/programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programming</span></a> <a href="https://mastodon.online/tags/programmingtips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmingtips</span></a> <a href="https://mastodon.online/tags/development" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>development</span></a> <a href="https://mastodon.online/tags/webdev" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>webdev</span></a></p>
SpielmannSpiel<p>found, not really a bug, an interesting behavior in C# and <span class="h-card" translate="no"><a href="https://mastodon.gamedev.place/@godotengine" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>godotengine</span></a></span> </p><p>When parsing JSON, an int gets parsed to a float. Which probably makes sense, since everything in JavaScript is a float anyways.<br>But that then breaks the ulong parsing with a wrong format. Don't know if this is a new 4.4 behavior or if it was always this way. In any case it took me a while to find this bug in my code.<br> <br><a href="https://mastodon.online/tags/csharp" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>csharp</span></a> <a href="https://mastodon.online/tags/godot" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>godot</span></a> <a href="https://mastodon.online/tags/gamedev" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>gamedev</span></a> <a href="https://mastodon.online/tags/indiedev" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>indiedev</span></a> <a href="https://mastodon.online/tags/Godot4" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Godot4</span></a> <a href="https://mastodon.online/tags/programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programming</span></a> <a href="https://mastodon.online/tags/programmingtips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmingtips</span></a> <a href="https://mastodon.online/tags/JavaScript" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>JavaScript</span></a> <a href="https://mastodon.online/tags/json" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>json</span></a></p>
Manmohan Mishra<p>🚀 "Ever wondered how Python's lists, tuples, sets, and dicts work under the hood? Learn their secrets, speed hacks, and common mistakes to avoid! Perfect for coders aiming to optimize their Python skills. 🐍 <a href="https://mastodon.social/tags/Python" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Python</span></a> <a href="https://mastodon.social/tags/DataStructures" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DataStructures</span></a> <a href="https://mastodon.social/tags/ProgrammingTips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ProgrammingTips</span></a></p><p><a href="https://newwstuff.com/python-data-structures-internal-workings-of-lists-tuples-sets-dicts/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">newwstuff.com/python-data-stru</span><span class="invisible">ctures-internal-workings-of-lists-tuples-sets-dicts/</span></a></p>
Aveshost<p>🚀 Master Git Like a Pro! 🚀</p><p>Check out 50+ Essential Git Commands you NEED to know – plus, grab our FREE Git Cheat Sheet for quick reference! 📜✨</p><p>🔗 Read now: <a href="https://buff.ly/3EvS7iJ" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="">buff.ly/3EvS7iJ</span><span class="invisible"></span></a></p><p>💡 Save &amp; Share this for future reference! 📌 </p><p><a href="https://mastodon.social/tags/Git" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Git</span></a> <a href="https://mastodon.social/tags/DevTools" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DevTools</span></a> <a href="https://mastodon.social/tags/Coding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Coding</span></a> <a href="https://mastodon.social/tags/GitCommands" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GitCommands</span></a> <a href="https://mastodon.social/tags/ProgrammingTips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ProgrammingTips</span></a> <a href="https://mastodon.social/tags/Aveshost" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Aveshost</span></a> <a href="https://mastodon.social/tags/Dev" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Dev</span></a> <a href="https://mastodon.social/tags/AveshostTips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>AveshostTips</span></a> <a href="https://mastodon.social/tags/Developers" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Developers</span></a> <a href="https://mastodon.social/tags/Angular" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Angular</span></a> <a href="https://mastodon.social/tags/React" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>React</span></a> <a href="https://mastodon.social/tags/Python" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Python</span></a> <a href="https://mastodon.social/tags/Vuejs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Vuejs</span></a> <a href="https://mastodon.social/tags/NextJs" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>NextJs</span></a> <a href="https://mastodon.social/tags/WordPress" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>WordPress</span></a> <a href="https://mastodon.social/tags/PHP" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>PHP</span></a> <a href="https://mastodon.social/tags/Laravel" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Laravel</span></a></p>
SpielmannSpiel<p>meaningful error messages are important!<br>for example, thanks to past-me I know exactly what the error is, where the error is and what to do!<br>Also: Working on a new progress bar for the <a href="https://mastodon.online/tags/ProgressBarSimulator" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ProgressBarSimulator</span></a> </p><p><a href="https://mastodon.online/tags/gamedev" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>gamedev</span></a> <a href="https://mastodon.online/tags/indiedev" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>indiedev</span></a> <a href="https://mastodon.online/tags/unity" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>unity</span></a> <a href="https://mastodon.online/tags/unity3d" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>unity3d</span></a> <a href="https://mastodon.online/tags/programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programming</span></a> <a href="https://mastodon.online/tags/programmingTips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmingTips</span></a></p>
Ramsay Dev Rants<p>The way from problem to solution in different programming languages</p><p>found on: <a href="https://vxtwitter.com/peach2k2/status/1888687249321058717" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">vxtwitter.com/peach2k2/status/</span><span class="invisible">1888687249321058717</span></a></p><p><a href="https://mastodon.social/tags/c" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>c</span></a> <a href="https://mastodon.social/tags/python" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>python</span></a> <a href="https://mastodon.social/tags/bash" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>bash</span></a> <a href="https://mastodon.social/tags/shell" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>shell</span></a> <a href="https://mastodon.social/tags/php" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>php</span></a> <a href="https://mastodon.social/tags/cpp" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>cpp</span></a> <a href="https://mastodon.social/tags/csharp" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>csharp</span></a> <a href="https://mastodon.social/tags/rust" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>rust</span></a> <a href="https://mastodon.social/tags/javascript" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>javascript</span></a> <a href="https://mastodon.social/tags/programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programming</span></a> <a href="https://mastodon.social/tags/programmingtips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmingtips</span></a> <a href="https://mastodon.social/tags/programminghumor" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programminghumor</span></a> <a href="https://mastodon.social/tags/programmerhumor" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmerhumor</span></a> <a href="https://mastodon.social/tags/coding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>coding</span></a></p>
5021tips<p>To <a href="https://mastodon.social/tags/teachyourself" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>teachyourself</span></a> <a href="https://mastodon.social/tags/howto" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>howto</span></a> do complicated <a href="https://mastodon.social/tags/coding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>coding</span></a> <a href="https://mastodon.social/tags/programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programming</span></a> without assistance from a <a href="https://mastodon.social/tags/software" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>software</span></a> nor other <a href="https://mastodon.social/tags/programmer" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmer</span></a>, compare data before &amp; after any <a href="https://mastodon.social/tags/codingwork" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>codingwork</span></a> been done to that <a href="https://mastodon.social/tags/EEPROM" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>EEPROM</span></a>🤷!</p><p>Like to do <a href="https://mastodon.social/tags/immooff" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>immooff</span></a>, compare these👇 data, before &amp; after then....</p><p>www.5021.tips/ujanja/immoffiles</p><p>👆☝️👆☝️<br>All files included with instructions so You can <a href="https://mastodon.social/tags/doityourself" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>doityourself</span></a>, <a href="https://mastodon.social/tags/HapaUjanjaTu" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>HapaUjanjaTu</span></a>🤷</p><p><a href="https://mastodon.social/tags/imoff" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>imoff</span></a> <a href="https://mastodon.social/tags/dpfoff" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>dpfoff</span></a> <a href="https://mastodon.social/tags/adblueoff" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>adblueoff</span></a> <a href="https://mastodon.social/tags/ECUProgramming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ECUProgramming</span></a> <a href="https://mastodon.social/tags/keyprogramming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>keyprogramming</span></a> <a href="https://mastodon.social/tags/programmingtips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmingtips</span></a> <a href="https://mastodon.social/tags/5021tips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>5021tips</span></a> <a href="https://mastodon.social/tags/codingtips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>codingtips</span></a> <a href="https://mastodon.social/tags/ecuprogrammer" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ecuprogrammer</span></a> <a href="https://mastodon.social/tags/carkeys" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>carkeys</span></a></p>
SpielmannSpiel<p>TIL matplotlib has xkcd style since 2013, and you can just turn it on with plt.xkcd()</p><p>via <a href="https://vxtwitter.com/jwt0625/status/1885247693678928360" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">vxtwitter.com/jwt0625/status/1</span><span class="invisible">885247693678928360</span></a></p><p><a href="https://mastodon.online/tags/xkcd" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>xkcd</span></a> <a href="https://mastodon.online/tags/matplotlib" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>matplotlib</span></a> <a href="https://mastodon.online/tags/python" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>python</span></a> <a href="https://mastodon.online/tags/dev" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>dev</span></a> <a href="https://mastodon.online/tags/programmingtips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmingtips</span></a> <a href="https://mastodon.online/tags/pythontips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>pythontips</span></a></p>
Ramsay Dev Rants<p>11 steps to become a better coder</p><p>by <span class="h-card" translate="no"><a href="https://mastodon.social/@svenpet" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>svenpet</span></a></span> </p><p><a href="https://mastodon.social/tags/programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programming</span></a> <a href="https://mastodon.social/tags/developer" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>developer</span></a> <a href="https://mastodon.social/tags/programmingtips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmingtips</span></a> <a href="https://mastodon.social/tags/coder" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>coder</span></a> <a href="https://mastodon.social/tags/beginner" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>beginner</span></a> <a href="https://mastodon.social/tags/coding101" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>coding101</span></a></p>
Qirolab<p>🚀 What is PSR-6? A Beginner’s Guide to PHP Caching Standards<br>Caching is an essential part of optimizing PHP applications, and PSR-6 is here to set the standard for it! 💡</p><p>Discover how this caching standard works and how you can implement it to boost your project’s performance.</p><p>👉 Read the full guide here: <a href="https://qirolab.com/posts/what-is-psr-6-a-beginners-guide-to-php-caching-standards" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">qirolab.com/posts/what-is-psr-</span><span class="invisible">6-a-beginners-guide-to-php-caching-standards</span></a></p><p><a href="https://phpc.social/tags/Coding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Coding</span></a> <a href="https://phpc.social/tags/WebDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>WebDevelopment</span></a> <a href="https://phpc.social/tags/ProgrammingTips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ProgrammingTips</span></a> <a href="https://phpc.social/tags/php8" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>php8</span></a> <a href="https://phpc.social/tags/DEVCommunity" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DEVCommunity</span></a> <a href="https://phpc.social/tags/WebDev" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>WebDev</span></a> <a href="https://phpc.social/tags/WebDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>WebDevelopment</span></a> <a href="https://phpc.social/tags/Tutorial" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Tutorial</span></a> <a href="https://phpc.social/tags/PHP" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>PHP</span></a> <a href="https://phpc.social/tags/backend" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>backend</span></a> <a href="https://phpc.social/tags/programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programming</span></a> <a href="https://phpc.social/tags/webdev" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>webdev</span></a> <a href="https://phpc.social/tags/100DaysOfCode" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>100DaysOfCode</span></a></p>
Ramsay Dev Rants<p>Computer science education cannot make anybody an expert programmer any more than studying brushes and pigment can make somebody an expert painter.<br>- Peter Weinberger</p><p><a href="https://mastodon.social/tags/programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programming</span></a> <a href="https://mastodon.social/tags/programmingWisdom" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmingWisdom</span></a> <a href="https://mastodon.social/tags/quotes" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>quotes</span></a> <a href="https://mastodon.social/tags/programmingtips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmingtips</span></a></p>
WetHat💦<p>The benefits of trailing commas (by <span class="h-card" translate="no"><a href="https://mastodon.social/@treyhunner" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>treyhunner</span></a></span>):<br>➡️ Trailing commas in <a href="https://fosstodon.org/tags/Python" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Python</span></a> simplify code changes and reduce errors.<br>➡️ When swapping or adding elements in multi-line data structures, trailing commas prevent syntax errors and make diffs easier to read.<br>➡️They also help avoid implicit string concatenation, a common Python pitfall.</p><p><a href="https://www.pythonmorsels.com/trailing-commas-in-python/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">pythonmorsels.com/trailing-com</span><span class="invisible">mas-in-python/</span></a></p><p><a href="https://fosstodon.org/tags/CodingTips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CodingTips</span></a> <a href="https://fosstodon.org/tags/Programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Programming</span></a> <a href="https://fosstodon.org/tags/PythonProgramming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>PythonProgramming</span></a> <a href="https://fosstodon.org/tags/SoftwareDevelopment" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>SoftwareDevelopment</span></a> <a href="https://fosstodon.org/tags/BestPractices" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>BestPractices</span></a> <a href="https://fosstodon.org/tags/PythonCode" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>PythonCode</span></a> <a href="https://fosstodon.org/tags/ProgrammingTips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ProgrammingTips</span></a></p>
Sheena<p>I've taught a lot of people to code and I've found myself giving the same advice again and again. Here are a few things that come up a lot.</p><p><a href="https://buff.ly/40710Yq" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="">buff.ly/40710Yq</span><span class="invisible"></span></a> </p><p>If you are early in your career, check it out. And share it with someone who would benefit.</p><p>If you have been around the block, what stands out for you? And what other advice would you give?</p><p><a href="https://fosstodon.org/tags/CodeNewbie" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>CodeNewbie</span></a> <a href="https://fosstodon.org/tags/ProgrammingTips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>ProgrammingTips</span></a> <a href="https://fosstodon.org/tags/LearnToCode" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>LearnToCode</span></a> <a href="https://fosstodon.org/tags/GoodCode" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>GoodCode</span></a> <a href="https://fosstodon.org/tags/DevAdvice" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>DevAdvice</span></a>"</p>
Ramsay Dev Rants<p>Code Complexity &lt;-&gt; Years of Programming</p><p><a href="https://mastodon.social/tags/programming" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programming</span></a> <a href="https://mastodon.social/tags/programminghumor" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programminghumor</span></a> <a href="https://mastodon.social/tags/programmingtips" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>programmingtips</span></a> <a href="https://mastodon.social/tags/wisdom" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>wisdom</span></a> <a href="https://mastodon.social/tags/coding" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>coding</span></a></p>