by admin | Nov 16, 2025 | work
Frontend dev Backend dev Data Analytics
by admin | Mar 3, 2025 | AI, work
Do you think industry will need less developers? For people like me in IT it will be much harder to find jobs? How to remain useful for employers? Software development is going through big changes, and AI is at the center of it. Here’s how things are shifting and what...
by admin | Nov 2, 2023 | work
Are more intuitive than index arrays. Similar to classes. In place of keys you can use names instead of numbers. How to create On one line: $pop= array("brazil"=>"110", "portugal"=>"10"); One by one: $pop['brazil']...
by admin | Nov 1, 2023 | work
$cars = array("a", "b", "c"); $arrlength = count($cars); for($x = 0; $x < $arrlength; $x++) { echo $cars[$x]; echo "<br>"; } echo "<hr>"; foreach($cars as $x) { echo $x; echo "<br>";...
by admin | Nov 1, 2023 | work
<?php // $str = "<h1>Africa ≠ America ÆØÅ! &+ </h1>"; // Remove HTML tags and all characters with ASCII value > 127 $str2 = filter_var($str, FILTER_SANITIZE_STRING,FILTER_FLAG_STRIP_HIGH); echo $str2; // result: Africa America !...
by admin | Oct 31, 2023 | work
Define some colors $colors2020 = array ( '#34568B', '#CD212A', '#FFA500', '#56C6A9', '#4B5335', '#798EA4', '#FA7A35', '#00758F', '#EDD59E', '#E8A798', '#9C4722', '#6B5876'...