mastodontech.de ist einer von vielen unabhängigen Mastodon-Servern, mit dem du dich im Fediverse beteiligen kannst.
Offen für alle (über 16) und bereitgestellt von Markus'Blog

Serverstatistik:

1,5 Tsd.
aktive Profile

#DevTips

1 Beitrag1 Beteiligte*r0 Beiträge heute
Paul A. Jones, Jr.<p>Using SQL’s system views to root out leftover audit and logging calls saved me hours today.</p><p>Pro tip: sys.sql_modules + LIKE = your best friend for DB cleanup!</p><p><a href="https://mastodon.social/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a> <a href="https://mastodon.social/tags/SQL" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SQL</span></a> <a href="https://mastodon.social/tags/DatabaseCleanup" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DatabaseCleanup</span></a> <a href="https://mastodon.social/tags/SaaS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SaaS</span></a></p>
Jeremy<p>Today I learn that it is possible to call Ruby's lambdas using the triple equal operator.</p><p>I use this capacity to create nice one liners without redundant `.call`</p><p><a href="https://ruby.social/tags/Ruby" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Ruby</span></a> <a href="https://ruby.social/tags/til" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>til</span></a> <a href="https://ruby.social/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a></p>
Andrew Woods<p>I like that running composer --version also shows you the version of PHP you're using.</p><p><a href="https://phpc.social/tags/php" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>php</span></a> <a href="https://phpc.social/tags/development" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>development</span></a> <a href="https://phpc.social/tags/devTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>devTips</span></a> <a href="https://phpc.social/tags/tips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>tips</span></a> <a href="https://phpc.social/tags/composer" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>composer</span></a></p>
TechKeysX<p>Single Element Tuple in Python:<br>A single element tuple in Python is defined by placing a comma after the element, e.g., t = (5,).<br><a href="https://mastodon.social/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a> <a href="https://mastodon.social/tags/Tuple" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Tuple</span></a> <a href="https://mastodon.social/tags/PythonTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PythonTips</span></a> <a href="https://mastodon.social/tags/LearnPython" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LearnPython</span></a> <a href="https://mastodon.social/tags/Coding" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Coding</span></a> <a href="https://mastodon.social/tags/PythonBasics" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PythonBasics</span></a> <a href="https://mastodon.social/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a> <a href="https://mastodon.social/tags/SingleElementTuple" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SingleElementTuple</span></a> <a href="https://mastodon.social/tags/PythonProgramming" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PythonProgramming</span></a> <a href="https://mastodon.social/tags/codenewbie" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>codenewbie</span></a></p>
TechKeysX<p>Slicing Tuple in python:<br>Slicing a tuple in Python means extracting a portion of it using the syntax tuple[start :stop :step].<br><a href="https://mastodon.social/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a> <a href="https://mastodon.social/tags/PythonTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PythonTips</span></a> <a href="https://mastodon.social/tags/Tuple" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Tuple</span></a> <a href="https://mastodon.social/tags/PythonSlicing" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PythonSlicing</span></a> <a href="https://mastodon.social/tags/CodeSnippet" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CodeSnippet</span></a> <a href="https://mastodon.social/tags/LearnPython" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LearnPython</span></a> <a href="https://mastodon.social/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a> <a href="https://mastodon.social/tags/100DaysOfCode" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>100DaysOfCode</span></a> <a href="https://mastodon.social/tags/Programming" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Programming</span></a> <a href="https://mastodon.social/tags/pythonlearning" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pythonlearning</span></a></p>
TechKeysX<p>Comprehension to create dictionaries in Python:<br>Dictionary comprehension is a concise way to create dictionaries in a single line using a syntax similar to list comprehension.<br><a href="https://mastodon.social/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a> <a href="https://mastodon.social/tags/PythonTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PythonTips</span></a> <a href="https://mastodon.social/tags/DictionaryComprehension" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DictionaryComprehension</span></a> <a href="https://mastodon.social/tags/CodeNewbie" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CodeNewbie</span></a> <a href="https://mastodon.social/tags/100DaysOfCode" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>100DaysOfCode</span></a> <a href="https://mastodon.social/tags/LearnPython" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LearnPython</span></a> <a href="https://mastodon.social/tags/OneLiner" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OneLiner</span></a> <a href="https://mastodon.social/tags/PythonTricks" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PythonTricks</span></a> <a href="https://mastodon.social/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a> <a href="https://mastodon.social/tags/CodingInPython" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CodingInPython</span></a></p>
Paul A. Jones, Jr.<p>Tweet 3 – On testing strategy<br>If you’re testing soft deletes, go beyond “did it disappear?”<br>✅ Hidden from users<br>✅ Still retrievable<br>✅ Audit log written<br>✅ Option to restore<br><a href="https://mastodon.social/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a> <a href="https://mastodon.social/tags/SaaSTesting" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SaaSTesting</span></a> <a href="https://mastodon.social/tags/LegalTech" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LegalTech</span></a></p>
TechKeysX<p>Tuple conversion in Python:<br>Use list() to convert a tuple to a list, and tuple() to convert a list to a tuple.<br><a href="https://mastodon.social/tags/python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>python</span></a> <a href="https://mastodon.social/tags/TupleToList" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>TupleToList</span></a> <a href="https://mastodon.social/tags/ListToTuple" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ListToTuple</span></a> <a href="https://mastodon.social/tags/pythontips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pythontips</span></a> <a href="https://mastodon.social/tags/codingshorts" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>codingshorts</span></a> <a href="https://mastodon.social/tags/learnpython" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>learnpython</span></a> <a href="https://mastodon.social/tags/devtips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>devtips</span></a> <a href="https://mastodon.social/tags/pythonbasics" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pythonbasics</span></a></p>
Temma PHP Framework<p>Still repeating the same SQL query?</p><p>With Temma, cache your results using just 1 BO + 1 cache source.</p><p>Simple. Lightweight. Efficient.</p><p>👉 See all our tutorials: <a href="https://www.temma.net/tuto/mini-cache" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="">temma.net/tuto/mini-cache</span><span class="invisible"></span></a></p><p><a href="https://phpc.social/tags/PHP" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PHP</span></a> <a href="https://phpc.social/tags/Temma" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Temma</span></a> <a href="https://phpc.social/tags/PHPTutorial" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PHPTutorial</span></a> <a href="https://phpc.social/tags/BackendDev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>BackendDev</span></a> <a href="https://phpc.social/tags/Caching" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Caching</span></a> <a href="https://phpc.social/tags/FrameworkPHP" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FrameworkPHP</span></a> <a href="https://phpc.social/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a> <a href="https://phpc.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a></p>
Temma PHP Framework<p>Still repeating the same SQL query?</p><p>With Temma, cache your results using just 1 BO + 1 cache source.</p><p>Simple. Lightweight. Efficient.</p><p>👉 See all our tutorials: www.temma.net/tuto</p><p><a href="https://phpc.social/tags/PHP" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PHP</span></a> <a href="https://phpc.social/tags/Temma" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Temma</span></a> <a href="https://phpc.social/tags/PHPTutorial" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PHPTutorial</span></a> <a href="https://phpc.social/tags/BackendDev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>BackendDev</span></a> <a href="https://phpc.social/tags/Caching" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Caching</span></a> <a href="https://phpc.social/tags/FrameworkPHP" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FrameworkPHP</span></a> <a href="https://phpc.social/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a> <a href="https://phpc.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a></p>
TechKeysX<p>Remove spaces from Strings:<br>strip() removes leading and trailing whitespace or specified characters.<br>lstrip() removes leading (left) whitespace or specified characters.<br>rstrip() removes trailing (right) whitespace or specified characters.<br><a href="https://mastodon.social/tags/python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>python</span></a> <a href="https://mastodon.social/tags/pythontips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pythontips</span></a> <a href="https://mastodon.social/tags/coding" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>coding</span></a> <a href="https://mastodon.social/tags/learnpython" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>learnpython</span></a> <a href="https://mastodon.social/tags/pythonstrings" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pythonstrings</span></a> <a href="https://mastodon.social/tags/stringmethods" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>stringmethods</span></a> <a href="https://mastodon.social/tags/codenewbie" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>codenewbie</span></a> <a href="https://mastodon.social/tags/devtips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>devtips</span></a> <a href="https://mastodon.social/tags/pythonprogramming" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>pythonprogramming</span></a> <a href="https://mastodon.social/tags/100daysofcode" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>100daysofcode</span></a></p>
Nouvelle-Techno.fr<p>Automatiser la minification JavaScript dans <a href="https://mastodon.social/tags/PHPStorm" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PHPStorm</span></a> avec <a href="https://mastodon.social/tags/UglifyJS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>UglifyJS</span></a> 💡<br>→ Un <a href="https://mastodon.social/tags/FileWatcher" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FileWatcher</span></a> bien configuré suffit pour générer un .min.js à chaque sauvegarde.<br>→ Vidéo tuto ici : <a href="https://youtu.be/6vjtINyqoSY" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">youtu.be/6vjtINyqoSY</span><span class="invisible"></span></a><br><a href="https://mastodon.social/tags/JavaScript" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>JavaScript</span></a> <a href="https://mastodon.social/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a> <a href="https://mastodon.social/tags/CodeOptimization" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CodeOptimization</span></a> <a href="https://mastodon.social/tags/FLOSS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FLOSS</span></a> <a href="https://mastodon.social/tags/WebDev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>WebDev</span></a></p>
DXT<p>Have you used when() in the query builder?</p><p>- Cleaner than if (...)<br>- Easier to read and maintain</p><p><a href="https://mastodon.social/tags/Laravel" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Laravel</span></a> <a href="https://mastodon.social/tags/PHP" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PHP</span></a> <a href="https://mastodon.social/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a> <a href="https://mastodon.social/tags/CleanCode" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CleanCode</span></a></p>
apmtool<p>🚀 Struggling with slow PHP code? Learn how to profile your PHP applications and uncover performance bottlenecks before they impact your users.</p><p>🔍 Find out which functions are dragging you down — and how to fix them.</p><p>📘 Read the full guide: <a href="https://www.atatus.com/blog/php-profiling-find-slow-code/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">atatus.com/blog/php-profiling-</span><span class="invisible">find-slow-code/</span></a></p><p><a href="https://mastodon.social/tags/PHP" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PHP</span></a> <a href="https://mastodon.social/tags/WebPerformance" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>WebPerformance</span></a> <a href="https://mastodon.social/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a> <a href="https://mastodon.social/tags/Profiling" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Profiling</span></a> <a href="https://mastodon.social/tags/APM" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>APM</span></a> <a href="https://mastodon.social/tags/Atatus" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Atatus</span></a></p>
nickproud<p>Write LINQ like a pro:</p><p>🧠 Chain with intent<br>🔍 Use Where() early<br>🧼 Keep it readable — break long chains<br>🚫 Avoid side effects in selectors<br>🧪 Profile when querying large datasets</p><p>Clean LINQ = happy code.</p><p><a href="https://techhub.social/tags/CSharp" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CSharp</span></a> <a href="https://techhub.social/tags/dotnet" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>dotnet</span></a> <a href="https://techhub.social/tags/LINQ" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LINQ</span></a> <a href="https://techhub.social/tags/CleanCode" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CleanCode</span></a> <a href="https://techhub.social/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a> <a href="https://techhub.social/tags/softwaredevelopment" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>softwaredevelopment</span></a></p>
Temma PHP Framework<p>What if you could send an SMS from your terminal using PHP?</p><p>With Temma, it’s totally doable in just a few lines of code 📲</p><p>Full tutorial available here:<br>🔗<a href="https://temma.net/en/tuto/mini-sms" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">temma.net/en/tuto/mini-sms</span><span class="invisible"></span></a></p><p><a href="https://phpc.social/tags/PHp" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PHp</span></a> <a href="https://phpc.social/tags/TemmaFramework" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>TemmaFramework</span></a> <a href="https://phpc.social/tags/PHPTutorial" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PHPTutorial</span></a> <a href="https://phpc.social/tags/opensource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>opensource</span></a> <a href="https://phpc.social/tags/CLItools" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CLItools</span></a> <a href="https://phpc.social/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a> <a href="https://phpc.social/tags/SMS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SMS</span></a></p>
TechKeysX<p>Compound Assignment operators in Python<br><a href="https://mastodon.social/tags/Python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Python</span></a> <a href="https://mastodon.social/tags/PythonTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PythonTips</span></a> <a href="https://mastodon.social/tags/LearnPython" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LearnPython</span></a> <a href="https://mastodon.social/tags/CodingShorts" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CodingShorts</span></a> <a href="https://mastodon.social/tags/TechShorts" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>TechShorts</span></a> <br><a href="https://mastodon.social/tags/PythonProgramming" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PythonProgramming</span></a> <a href="https://mastodon.social/tags/CodeNewbie" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CodeNewbie</span></a> <a href="https://mastodon.social/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a> <a href="https://mastodon.social/tags/Shorts" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Shorts</span></a> <a href="https://mastodon.social/tags/QuickCode" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>QuickCode</span></a> <br><a href="https://mastodon.social/tags/CompoundAssignment" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CompoundAssignment</span></a> <a href="https://mastodon.social/tags/ProgrammingBasics" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ProgrammingBasics</span></a> <a href="https://mastodon.social/tags/CodeWithMe" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CodeWithMe</span></a> <a href="https://mastodon.social/tags/PythonForBeginner" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PythonForBeginner</span></a></p>
Cihat Gündüz<p>In <a href="https://iosdev.space/tags/Swift" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Swift</span></a>, it's easy to get error messages wrong. It's due to a design flaw in the "Error" protocol itself, introduced for <a href="https://iosdev.space/tags/ObjectiveC" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ObjectiveC</span></a> compatibility. I've seen people write below code all the time. I fixed this flaw in <a href="https://iosdev.space/tags/ErrorKit" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ErrorKit</span></a>: Just conform your errors to "Throwable" instead! 💯</p><p>Learn more: 👇 <a href="https://iosdev.space/tags/iOSDev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>iOSDev</span></a> <a href="https://iosdev.space/tags/ErrorHandling" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ErrorHandling</span></a> <a href="https://iosdev.space/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a><br><a href="https://www.fline.dev/swift-error-handling-done-right-overcoming-the-objective-c-error-legacy/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">fline.dev/swift-error-handling</span><span class="invisible">-done-right-overcoming-the-objective-c-error-legacy/</span></a></p>
Be API<p>Si vous codez en JS depuis un moment, vos node modules dorment un peu partout… et prennent des Go entiers. </p><p>Cet article explique comment les supprimer partout sur votre machine, que vous soyez sous macOS, Linux ou Windows. Parfait pour faire de la place et repartir propre.</p><p>🔗<a href="https://medium.com/@MarkPieszak/how-to-delete-all-node-modules-folders-on-your-machine-and-free-up-hd-space-f3954843aeda" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">medium.com/@MarkPieszak/how-to</span><span class="invisible">-delete-all-node-modules-folders-on-your-machine-and-free-up-hd-space-f3954843aeda</span></a></p><p><a href="https://mastodon.social/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a> <a href="https://mastodon.social/tags/JavaScript" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>JavaScript</span></a> <a href="https://mastodon.social/tags/NodeJS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NodeJS</span></a> <a href="https://mastodon.social/tags/WebDev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>WebDev</span></a> <a href="https://mastodon.social/tags/CleanCode" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CleanCode</span></a></p>
Izoate<p>Getting MySQL Error 1175 when trying to update or delete? That’s Safe Update Mode kicking in. Learn how to disable it safely and run your queries smoothly.</p><p>Read the full guide: <a href="https://www.izoate.com/blog/how-to-fix-mysql-error-1175-disable-safe-update-mode-mysql/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">izoate.com/blog/how-to-fix-mys</span><span class="invisible">ql-error-1175-disable-safe-update-mode-mysql/</span></a></p><p><a href="https://mastodon.social/tags/MySQL" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>MySQL</span></a> <a href="https://mastodon.social/tags/Error1175" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Error1175</span></a> <a href="https://mastodon.social/tags/WebDev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>WebDev</span></a> <a href="https://mastodon.social/tags/DatabaseTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DatabaseTips</span></a> <a href="https://mastodon.social/tags/SQL" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SQL</span></a> <a href="https://mastodon.social/tags/DevTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DevTips</span></a> <a href="https://mastodon.social/tags/SafeUpdateMode" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SafeUpdateMode</span></a> <a href="https://mastodon.social/tags/MySQLTips" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>MySQLTips</span></a> <a href="https://mastodon.social/tags/izoate" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>izoate</span></a> <a href="https://mastodon.social/tags/tech" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>tech</span></a> <a href="https://mastodon.social/tags/technology" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>technology</span></a> <a href="https://mastodon.social/tags/howto" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>howto</span></a></p>