Dub Force Events
x0Events cannot currently be displayed, sorry! Please check back later.x0_close-
Recent Posts
Recent Comments
Archives
- March 2022
- August 2021
- February 2021
- December 2020
- November 2019
- April 2019
- April 2018
- January 2017
- May 2016
- April 2016
- March 2016
- December 2015
- June 2015
- January 2015
- December 2014
- November 2014
- April 2014
- January 2014
- December 2013
- November 2013
- March 2013
- December 2012
- November 2012
- November 2010
- October 2010
Categories
Meta
Author Archives: admax
Windows Scheduler website automation
If you need to automate the requesting of a web site on windows as there is no “wget” like in linux you can use the powershell… So to call it from a scheduled task or command simply use:powershell.exe “Invoke-Webrequest ‘https://somesite.com/?someaction=somevalue’”Then … Continue reading
Posted in Windows
Tagged powershell, taskscheduler, wget, windows
Comments Off on Windows Scheduler website automation
OpenWrt webcam
Install in OpenWrt: kmod-video-uvc mjpg-streamer luci-app-mjpg-streamer //refresh //Go to: services/mpg-streamer //Set it to: enabled //That will be all //Optional: Setup security and other parameters A still image will be available on: http://192.168.130.1:8080/?action=stream The stream will be available on: http://192.168.130.1:8080/?action=snapshot //—————————- … Continue reading
WordPress Mysql Migration
Magic formula: Most free plugin to “backup” charge your migration, when is a matter of running few lines of code on your database… UPDATE wp_options SET option_value = replace(option_value, ‘http://oldurl.com’, ‘https://newurl.com’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’; UPDATE … Continue reading
WordPress Auto Lazy Loading
New wordpress (since?) Has an automatically lazy loading for images.. if that broke your site, you can disable it with the following code:add_filter( ‘wp_lazy_loading_enabled’, ‘__return_false’ ); AC.
Monero v0.15.0.0 Hacked Client
—–> WARNING <—– https://github.com/monero-project/monero/issues/6151 https://www.reddit.com/r/Monero/comments/dyfozs/security_warning_cli_binaries_available_on/ —–> ok <—– (matching hash from https://web.getmonero.org/downloads/hashes.txt) monero-win-x64-v0.15.0.0.zip 72.14 MB 6b72b3836d179eb517154bbcb8e2119b168ae9d1054866a438aaeab9521f795f monero-wallet-cli.exe 37.06 MB 54241b4e7dec43a44e81f4ad65741c937e5ef6b16c69552446bb92f902593e12 —–> bad <—– (unknown version retrieved from official site!!) monero-wallet-cli.exe is modified, and monero-gen-trusted-multisig.exe is missing (to make it look … Continue reading
Clear opcache in PHP
If you are working on a shared environment and deleted PHP files keep around, check how to clear empty the cache… In this case we found the server used “opcache” so with the function opcache_reset() we can get rid of … Continue reading
Posted in Linux, Medium Technical
Tagged clear cache, easywp, namecheap, opcache, opcache_reset, shared hosting
Comments Off on Clear opcache in PHP
One Click Monero Win Node
# One Click Monero Win Node #1 – download monero core + monero blockchain https://getmonero.org/downloads/ https://downloads.getmonero.org/cli/win64 https://downloads.getmonero.org/blockchain.raw #2 – import blockchain on custom dir, guard-against-pwnage=verify [only run with a trusted blockchain.raw] monero-blockchain-import –data-dir x:\Monero\ –guard-against-pwnage 0 –input-file blockchain.raw #3 – … Continue reading
Posted in Basic Technical, Cryptocurrency
Comments Off on One Click Monero Win Node
Android APK Modification
An APK file is a ZIP file with the files inside with certain structure so it can serve as installer. So for a basic modification, you can just rename the file to “.ZIP” extract the files and do whatever you … Continue reading
Install certificate as System on Android
Use OpenSSL to transform the certificate to Android format (that is cert+info) Extract ID using this command: openssl.exe x509 -inform PEM -subject_hash -in charles.pem It is the first line. Name the certificate ID.0 (Ex: ce554431.0) Extract certificate info using: openssl.exe … Continue reading
jQuery lazy image loading…
Just a speed up trick, if you have lot of images or big images, to allow the browser to render and show the page before load the images you can do a “lazy” loading, that means that you load a … Continue reading
Posted in Medium Technical
Tagged jquery, lazy, lazyloading
Comments Off on jQuery lazy image loading…