-
Ollama is a piece of software that allows to install and use large language models directly in cli. In addition to it web interface can be installed to have user experience like ChatGPT, as well as saved history of prompts etc. This is the list of supported models. Llama 3 8B 4.7GB Llama 370B 40GB Phi-3 3.8B 2.3GB Mistral 7B 4.1GB Neural Chat 7B 4.1GB Starling 7B 4.1GB Code Llama 7B 3.8GB Llama 2 Uncensored 7B 3.8GB LLaVA 7B Gemma 2B Gemma 7B Solar 10.7B 6.1GB At first I’ve tried to install it on my OrangePi3B 4-core CPU and 8gb…
-
Theta Network is the leading blockchain decentralized cloud for AI, media and entertainment. And to become a part of distributed computing is not so hard. There are UI clients to MacOS and Windows which can run locally, but there is one more way to launch it on Linux via Docker. The process is described here. The command to launch node looks like this. Very important thing is replacing <YOUR_PASSWORD> with secured password because you’ll need it to get access to your wallet. Here is some command that will help to figure out what’s going on and get some statistic. List…
-
NYM-wallet does not support Ledger hardware wallet. NYM as a company supports of Ledger Live but compile the nyxd binary doesn’t look really usable. I’ve created my personal Nym Mixnode but with a small amount of tokens it is really low possibility to be selected as active node in such competition. So the admin gave me advice advice to stake to some other active node. By the way NYM blockchain as a part of Cosmos ecosystem is supported by Keplr which works with Ledger Hardware Wallet. As I described in previous post How to buy NYM token on Osmosis I’ve tell how…
-
Yet another cool way to withdraw funds from centrilized exchanges to Comsom ecosystem. In the prevoiuos post I’ve told how to buy NYM token on Osmosis. But there are a lot of cool projects like Fetch.ia, SEI, DYM, TIA etc. Use to exchange a stable coins is more comfortable because other tokens can go low or high and not so simple DCA. And after some calculation I figured out that I got some loses around 4-5% after withdraw ATOM. I’ve used Bybit to withdraw to KavaEVM, but Binance and Kucoin also allows to do it. The address to use for…
-
I’ve decided to create a NYM node and for this kind of operation I need personally bond min 100NYM tokens to start operate node. The exchanges allowing withdraw NYM token as ERC-20 in the Ethereum Network at hight price, then you need to use something like Gravity Bridge to bridge tokens to NYM Wallet. So many expensive steps but I figured another way. It was a bit tricky but pretty cheap and simple to do. I’ve found that NYM token traded on Osmosis DEX. I withdraw some ATOM to my Keplr wallet, deposited ATOM tokens to Osmosis and swap it…
-
This script allows to convert selected by extension files to any other. For example in particular script selected wav files will be converted to mp3. It will works if modify and paste script to cli. But the better approach is to create file, make it executable and run. All described here you do on your own risk and personal responsibility.
-
Lets take a look of the reverse process described in this post. To destructure video file to an array of still images the following needs to be done: ffmpeg uses frame rate from the file so no reason to care about this. For example you need to extract images from specific time: If you need just one image at a given time time: Next example allow to extract images at every second by specifying frame rate to 1 by using video filter ‘-vf fps=1’:
-
To understand from where the user requests data by IP address database of IP list is required. This database can be used in particular situation is Max Mind GeoIP. Create account and download the file GeoLite2 Country archive. After downloading and unarchive database it should be copied to remove server and database moved to /opt/ directory. Next step is a proper configuring nginx to manage IPs using GeoIP database. Make sure that you have installed ngnix with the http-geoip2 module by typing: If you see something like this you are good to go. Using your preferred editor (curently nano) modify…
-
If you need to gather all your shootings to video file, ffmpeg tool can help to do it in just a seconds. Just navigate to directory with images, change file extension if needed and run the following. Description. Means that filenames are matching the glob pattern, for example img_000*.jpeg Means using as input all the files in the folder with .jpeg extension, should be changes to fit images extension you are using Frame rate of 30fps. You can change it the way you need. Means that the video codec used now is x264. List of supported codecs you can find…
-
In case you see the error “Incompatible Archive“. The update of WordPress 6.4.3 triggers bug when you try to upload a plugin or a theme that was zipped using a Mac. The solution of the issue is to add the line of code to functions.php of the child/parent theme or custom plugin that forces WordPress to use the PclZip class instead of the ZipArchive module. add_filter( ‘unzip_file_use_ziparchive’, ‘__return_false’ );
