Posts

Showing posts from April, 2021

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(":")) } }