This is used as a bookmark / note to self blog, other things may also appear here. It contains information regarging but not limited to Computers, Radio, SDR, Electronics..
torsdag 3. februar 2022
Windows Server 2012/2016 Eval direct link
http://download.microsoft.com/download/6/D/A/6DAB58BA-F939-451D-9101-7DE07DC09C03/9200.16384.WIN8_RTM.120725-1247_X64FRE_SERVER_EVAL_EN-US-HRM_SSS_X64FREE_EN-US_DV5.ISO
https://software-download.microsoft.com/download/pr/Windows_Server_2016_Datacenter_EVAL_en-us_14393_refresh.ISO
søndag 2. mai 2021
PI24 + RTL-AIS
- Burn PI24 to SDcard
- boot and setup wpa_supplicant and raspi_config if applicable
- setup FR24 and it working
- install giut and build-essentials
- install dependencies, not librtlsdr-dev if you are compiling your own version to get rid of errors see below.
- git clonw rtl_ais and compile
https://pysselilivet.blogspot.com/2020/05/ais-reciever-for-raspberry-pi-2-channel.html - keep rtl-sdr units always connected to the same USB ports on the RPi and use device index parameters to point which unit to which software
Compiling custom librtlsdr-dev
- link installing modified rtlsdr module
https://discussions.flightaware.com/t/outdated-howto-install-piaware-3-8-1-on-ubuntu-18-19-and-debian-10-amd64-on-pc/62760/38 - install cmake: sudo apt-get install cmake
søndag 28. mars 2021
Installing Ubuntu 20.04 LTS LAMP with TALib extension.
- Install Ubuntu 20.04 with no extra server capabilities.
- Enable OpenSSH
- Finish ubuntu installation
- reboot
- apt update and upgrade
- Install LAMP.
https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu-20-04 - sudo apt-get install php-pear php-dev and contiue as described
https://stackoverflow.com/questions/48733346/how-to-complete-install-php-trader-extension - install composer
https://www.digitalocean.com/community/tutorials/how-to-install-and-use-composer-on-ubuntu-20-04 - install laravel dependencies , should be done earlier.
https://www.howtoforge.com/tutorial/install-laravel-on-ubuntu-for-apache/#step-install-and-configure-php-
other
- https://github.com/nascent-africa/jetstrap#install-jetstrap
- https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-20-04
- https://jetstream.laravel.com/2.x/installation.html
- Websocket:
- https://github.com/Textalk/websocket-php
- CCXT:
- https://packagist.org/packages/ccxt/ccxt
- REDIS:
- https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-redis-on-ubuntu-20-04
- OPCACHE:
- https://devdojo.com/bobbyiliev/how-to-speed-up-your-laravel-application-with-php-opcache
command:
- Enable group RW: sudo chmod g+rw -R /var/www/html/Dir/
torsdag 1. november 2018
stepper motor microstepping vs current.
I had a problem with missed steps on my CNC, as far as I can see it relates to the motor drive current. Higher current more lost steps and vice versa.
mandag 20. august 2018
Google Sketchup over RDP problem SOLVED
How to make Google Sketchup work over RDP (Remote Desktop).
I have had problems launching sketchup over RDP session, it throws this error:
If Sketchup has been started locally before using RDP it works fine, sometimes is crashes but most of the time it's ok.
I googled and came up with a smart solution:
- Create a Batch file which includes the following two lines:
- Wait the time sketchup normally takes to start before you reconnect the remote desktop. If you reconnect too quickly you will get the OpenGL error.
I also found that you have to disable the startup screen so the sketchup will launch directly into editing mode.
You can also add a path and filename to a SKP file after the .exe line in the batchfile to load a project automatically.
BTW: This assumes that you are using session 1 on the computer.
I have had problems launching sketchup over RDP session, it throws this error:
If Sketchup has been started locally before using RDP it works fine, sometimes is crashes but most of the time it's ok.
I googled and came up with a smart solution:
- Create a Batch file which includes the following two lines:
tscon 1 /dest:console- Run the batchfile as administrator (this will diconnect your current remote desktop session)
"C:\Program Files\SketchUp\SketchUp 2017\SketchUp.exe"
- Wait the time sketchup normally takes to start before you reconnect the remote desktop. If you reconnect too quickly you will get the OpenGL error.
I also found that you have to disable the startup screen so the sketchup will launch directly into editing mode.
You can also add a path and filename to a SKP file after the .exe line in the batchfile to load a project automatically.
BTW: This assumes that you are using session 1 on the computer.
mandag 13. august 2018
Mach3 stepper motor problem
Had a problem after testing mach3 for the first time, could not get the stepper motors to move as expected. Only stuttering av vibrating unevenly, did an extensive google search round but I did find any solution for my problem.
I did everything like, switching from WinXP ACPI to standard installation, tried Windows 7 32 bit, nothing helped. tried Other drivers and other motors.
My solutions was enable STEP LOW ACTIVE, that did the trick. The motors are running smooth as silk now.
BTW: I'm currently running a USB breakout board called Novusun NVUM_SK. el cheapo china card. Seems to work fine until now, have read somewhere about some incompability with mach3. I don't know, we'll see.
link to my breakout card, where you can also find the driver plugin for mach3. The card did not kcome with any software included when I bought it at ebay.
fredag 13. april 2018
Google Spreadsheet importDATA error.
I've been struggling with the IMPORTDATA function in Google Spreadsheet to import CSV data, everything seems to work normally the first time I load the file, but after a while I get NA and error in the spreadsheet, and of course the data is removed from the sheet.
You can add more IFERRORS as well with even more trailing slashes.
I did read somwhere that the problem may be related to caching of data, I do not know if the problem is local cache or remote cache at google servers.
I found a solution which seems to work better than others, it may not work in your case but try it.
The normal way I add the IMPORTDATA formula is as follows:
=IMPORTDATA("http://www.data.com/testdata")this fails, the solution I foudn was to add IFERROR and repeat the IMPORTDATA and adding trailing slashes to the URL. Trailing slashes does not seem to alter the url at all (may be a problem if you link directly to a CSV file, I'm using url_rewrite on my webserver), it seems to trick the cache problem. For now I'm using this formula with two nested IFERRORs:
=IFERROR(IMPORTDATA("http://www.data.com/testdata/");IFERROR(IMPORTDATA("http://www.data.com/testdata//");IMPORTDATA("http://www.data.com/testdata///")))
You can add more IFERRORS as well with even more trailing slashes.
Abonner på:
Innlegg (Atom)