Programmer Developer DEV info
A New Way to Learn
LeetCode is the best platform to help you enhance your skills, expand your knowledge and prepare for technical interviews.
A New Way to Learn
LeetCode is the best platform to help you enhance your skills, expand your knowledge and prepare for technical interviews.
prompts, commands:
##########################################################
refactor this code for php 7.4
##########################################################
refactor php code to hide this message: 'Trying to access array offset on value of type null '
##########################################################
refactor this php code for php 5.4 use if else statement
##########################################################
refactor this php code for php 5.4
use if else statement
do not use for cycle
##########################################################
refactor this php code which run with php 5.4 and php 7
use if else statement
do not use for cycle
##########################################################
Tapasztalat: Sokszor újra és újra kell generálni az utasítást kicsit módosítva, pontosítva a szöveget.
Soroksári-Duna interaktív vízisport-térképe (DIPLOMAMUNKA)
http://lazarus.elte.hu/hun/digkonyv/szakdolg/2021-msc/bako_tamas.pdf
Kisduna folyamkilométerek:
https://www.csepelkajakkenu.hu/info/viziturazoknak/terkep.html
SAS HAJÓ István Tel.: 06.70.369.60.72
06 70 369 60 72
https://www.cewe-community.com/hu/galeria/book/16418
https://helyi.infobel.hu/HU101618121/toth_istvan-szigetszentmarton.html
üvegszál, műgyanta technológia
570 a legkisebb, ennél csak nagyobb hajókat épít
(Sikerült beszélnem a hajó építővel. ‘Műgyanta, üvegszál, rétegek. ‘ Az 570cm a legkisebb méret amit készít, ennél nagyobb hajókat, jachtokat épít ugyanilyen technológiával.)
MySQL: ignore errors when importing?
mysql -u root -p -f -D connection < dump.sql
https://stackoverflow.com/questions/11263018/mysql-ignore-errors-when-importing
SET FOREIGN_KEY_CHECKS = ON;
PhpMyAdmin Import Error-MySQL server has gone away
Change to:
post_max_size = 750M
upload_max_filesize = 750M
max_execution_time = 5000
max_input_time = 5000
memory_limit = 1000M
In my.ini (MySQL File – Under mysqld)
Find:
max_allowed_packet = 1M
Change to:
max_allowed_packet = 500M
########################
Fatal error: Maximum execution time of 300 seconds exceeded
…\phpmyadmin3.4.10.1\libraries (change path according to your installation)
open config.default.php and change value for $cfg[‘ExecTimeLimit’] to 0:
if not found add:
$cfg[‘ExecTimeLimit’] = 0;
Display any SharePoint data in a tiled dashboard | Tiles Web Part
CSempék > A Fő kép kijelző használata
Üres Fő kép kijelző elhelyezése egy weblapon
Az adott lapon helyezze az egeret a meglévő kijelző alá vagy felé. Ekkor megjelenik egy bekarikázott + jel egy vonallal, amely így néz ki:
Válassza a +, majd a Fő kép kijelzőt.
########
Create a Page / Oldal létrehozás:
https://support.microsoft.com/en-us/office/create-and-use-modern-pages-on-a-sharepoint-site-b3d46deb-27a6-4b1e-87b8-df851e503dec
useReducer is usually preferable to useState when you have complex state logic that involves multiple sub-values or when the next state depends on the previous one. useReducer also lets you optimize performance for components that trigger deep updates because you can pass dispatch down instead of callbacks.
If on the other hand, you have one of those “legacy” applications that has “customers” and makes “money,” and for some reason your boss is not into the idea of you spending a few weeks rewriting the whole front end in React, but you still want in on that declarative React goodness, you may have to figure out how to get React to play well with jQuery or something similar.
If jQuery is making DOM changes that React doesn’t know about, some node that gets reused might be in an unexpected state.