Forum

mrmucha
@mrmucha
Admin
Member
Dołączył: sty 9, 2012
Last seen: maj 10, 2024
Tematy: 527 / Odpowiedzi: 551
Odpowiedz
Odpowiedź na: WSL - how to install cuda for tensorflow and gpu computing

Based on tensorflow compatibility list and version tensorflow-2.12.0 apt update apt install cuda-toolkit-11-8 wget dpkg -i cuda-keyring_1.0-1_all....

11 miesięcy temu
Forum
Odpowiedz
Odpowiedź na: VUE3 - format number with dots

1. edit app.js 2. after vue initialization ( app variable) add this global filter app.config.globalProperties.$filters = { formatNumber(numbe...

12 miesięcy temu
Forum
Odpowiedz
Odpowiedź na: Torch not compiled with CUDA enabled

One on many solutions: pip uninstall torch pip cache purge pip install torch -f/pre> or try with conda install pytorch torchvision cudatoolkit=...

12 miesięcy temu
Forum
Odpowiedz
Odpowiedź na: VUE3 - how to call component method from root app.js

1. It's not possible in easy way. Read more here. 2. Useas separated event's lib. Example code: Emitter: methods: { TestEmit() { th...

12 miesięcy temu
Forum
Odpowiedz
Odpowiedź na: vue-router changes URL but not page

possible approach is to add :key="$route.path" example: <router-view :key="$route.path"></router-view> and another approach using me...

12 miesięcy temu
Forum
Odpowiedz
Odpowiedź na: Joomla SSL redirection loop

1. add to vhost entry "SetEnv HTTPS on", example below <VirtualHost *:443> ServerAdmin admin@domain.tld DocumentRoot "/www" Ser...

12 miesięcy temu
Forum
Odpowiedz
Odpowiedź na: JS - prevent from trailing comma during string join

add .join("") to map() method like in this code below chatToSolidText() { let solidText = ""; solidText = solidTex...

12 miesięcy temu
Forum
Odpowiedz
Odpowiedź na: larave - how to laralvel web.php router links to load component instead laravel page

open routes/web.php, and paste something simmilar. //VUE ROUTER Route::get('/{any}', function () { if (Auth::user()) { return view('u...

12 miesięcy temu
Forum
Odpowiedz
Odpowiedź na: 64bits Vista, Windows7, Windows8, Windows8.1, Windows10 Driver only (Executable file) download

mirror for:/p> R2.82 2017/07/26 258 MB Direct file download: 0009-64bit_Win7_Win8_Win81_Win10_R282.zip

12 miesięcy temu
Forum
Odpowiedz
Odpowiedź na: PHP JIT : Disabled

check 20-xdebug.ini file and comment out XDEBUG (they cannot work together), nano /etc/php/8.2/fpm/conf.d/20-xdebug.ini ;zend_extension=xdebug....

1 rok temu
Forum
Odpowiedz
Odpowiedź na: change php process limits

fist use php-fpm process calculator edit file /etc/php/8.2/fpm/pool.d/www.conf change values based on that calulator

1 rok temu
Forum
Odpowiedz
Odpowiedź na: PHP - set of mostly used default modules install

sudo apt install php8.2-{bcmath,fpm,xml,mysql,zip,intl,ldap,gd,cli,bz2,curl,mbstring,pgsql,opcache,soap,cgi}

1 rok temu
Forum
Odpowiedz
Odpowiedź na: mysql - quick delete rows older than ...

DELETE FROM my_table WHERE my_field < (curdate() - INTERVAL 128 DAY)

1 rok temu
Forum
Odpowiedz
Odpowiedź na: Uncaught ReferenceError ReferenceError: Must call super constructor in derived class before accessing 'this' or returning from derived constructor

add super() to constructor (don't forget about variables for inherited class if they exists) constructor() { super() }

1 rok temu
Forum
Odpowiedz
Odpowiedź na: VSC, Could not read sourcemaps

1. Add launch.json file to VSC project/p> 2. add into launch.json "sourceMaps": true, "resolveSourceMapLocations": [ ...

1 rok temu
Forum
Strona 2 / 37