Posts

How to Play PS2 Games on Low-End Laptops Easily and Without Lag

Image
In the era of the 2000s, the PS2 console was known to bring a myriad of valuable experiences to its connoisseurs. But along with the development of the age and age, not everyone seems to be strong enough to defend their PS2 console to be able to play it until now. Whether it's because it's already been sold or it's already damaged. If you are someone who currently feels this situation, don't feel like giving up if you really want to insist on enjoying the fun of playing PS2 games again. With the capital of a potato laptop and optimal emulator settings, how come you can return to realizing your nostalgic desire in the ways that we have shared below. Download PCSX2 on Laptop First of all, please download the PCSX2 program on your laptop. The way to download it is easy. You only need to visit https://pcsx2.net/ then look for the "Download Get PCSX2 here" button and select the OS you are using. If you have selected the OS, the next step is to

Mora Cost Artifact Genshin Impact

Image
How much mora required to upgrade artifact to maximum level on genshin impact? Rarity Exp Multiplier Chance When consuming an enhanced artifact, in addition to the Base EXP granted, 80% of the EXP used for its upgrades will be recovered at no extra Mora. For example, using a Level 16 artifact is worth 100,660 EXP (2,520 + 0.8 × 122,675), and costs 2,520 Mora. 1% 1% 1% 9% 90% Mora cost/EXP 3,780 2,520 1,260 840 420 Current Level EXP to Next Level (Cumulative EXP) 0 3,000 2,400 1,800 1,200 600 1 3,725 (3,000) 2,975

Update Genshin Impact Patch v.1.5.0 - v.1.5.1 Via Download Manager

Image
Update Genshin Impact Patch v.1.5.0 - v.1.5.1 en-us 1.5.0 1.5.1 diff Gg3Q5aOK.zip game 1.5.0 1.5.1 diff MF8HJNzT.zip ja-jp 1.5.0 1.5.1 diff P72LxVCa.zip ko-kr 1.5.0 1.5.1 diff 4wMycdN3.zip zh-cn 1.5.0 1.5.1 diff 2heO3D7V.zip How to update Download Update Version Above Copy all to your Genshin Impact\Genshin Impact Game\ folder .. Preview Example:: . |-- C: |-- Program Files |-- Genshin Impact |-- Genshin Impact Game |-- game_..._diff_H8LGSgKU.zip |-- ja-jp_..._diff_hfBOW6ym.zip |-- ko-kr_..._diff_NcX8UP1L.zip |-- en-us_..._diff_KdXT5Pi0.zip `-- zh-cn_..._diff_hvg2F3QM.zip Screenshot

Full page blogger css

Image
How to show only content on blogger page <style> @media only screen and (min-width: 1025px) { #sidebar-wrapper, #midsidebar-wrapper, .gapad2, .blog-pager, .post-header-line-1, .post-footer { display: none !important; } #main-wrapper { width: 150% !important; /*98% default*/ } .post { width: 150% !important; /*98% default*/ } #comments { width: 150% !important; /*98% default*/ } .post-title, .post-labels, post-icons, post-author { display: none !important; } } </style> OR <style scoped="" type="text/css"> #outer-wrapper { margin: 0 auto; text-align: left; float: none; background-position: center !important; } #post-wrapper { width: 100%; max-width: 100%; margin: 0 auto; text-align: left; float: none; background-position: center !important; } .post-body, .post { background-position: cente

Fix Uncaught Error Call to undefined function str_starts_with()

Image
Uncaught Error: Call to undefined function str_starts_with() Fix Solutions if (!function_exists('str_starts_with')) { function str_starts_with($haystack, $needle, $case = true) { if ($case) { return strpos($haystack, $needle, 0) === 0; } return stripos($haystack, $needle, 0) === 0; } } if (!function_exists('str_ends_with')) { function str_ends_with($haystack, $needle, $case = true) { $expectedPosition = strlen($haystack) - strlen($needle); if ($case) { return strrpos($haystack, $needle, 0) === $expectedPosition; } return strripos($haystack, $needle, 0) === $expectedPosition; } }

Update Genshin Impact Via Download Manager

Image
Patch Pre-Download v1.4.0 - v1.5.0 game 1.4.0 1.5.0 diff H8LGSgKU.zip ja-jp 1.4.0 1.5.0 diff hfBOW6ym.zip ko-kr 1.4.0 1.5.0 diff NcX8UP1L.zip en-us 1.4.0 1.5.0 diff KdXT5Pi0.zip zh-cn 1.4.0 1.5.0 diff hvg2F3QM.zip How to update Download Update Version Or Full Game Version Copy all to your Genshin Impact\Genshin Impact Game\ folder .. Preview Example:: . |-- C: |-- Program Files |-- Genshin Impact |-- Genshin Impact Game |-- game_1.4.0_1.5.0_diff_H8LGSgKU.zip |-- ja-jp_1.4.0_1.5.0_diff_hfBOW6ym.zip |-- ko-kr_1.4.0_1.5.0_diff_NcX8UP1L.zip |-- en-us_1.4.0_1.5.0_diff_KdXT5Pi0.zip `-- zh-cn_1.4.0_1.5.0_diff_hvg2F3QM.zip Screenshot

Import composite build plugin as subtitue module dependency [Gradle]

Image
// change folder path inside bracket includeBuild("plugin") { dependencySubstitution { // change your artifact group and id // iam using https://github.com/dimaslanjaka/gradle-plugin/ for example substitute(module("com.dimaslanjaka:gradle-plugin")).with(project(":")) } }