-
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’ );
