Showing posts with label blogger. Show all posts
Showing posts with label blogger. Show all posts

How to change Boot Animation or Logo in Linux Mint 19.1 Cinnamon

changing Boot Animation Logo in Linux Mint 19.1 Cinnamon



open your terminal and go to following path

    /usr/share/plymouth/themes/mint-logo

 or you can directly open open folder as Root




replace mint-logo.png as your desire logo image

in case of your image size is large you can reduce it's size or simply resize it online https://resizeimage.net/ 

open terminal and run following command


chmod 644 mint-logo.png


sudo update-initramfs -u








Now reboot your system :D


Error parsing XML, line 884, column 64: The reference to entity "version" must end with the ';' delimiter

hello friends if you trying to install the FB like box or comment box into your website Here is solution for Error parsing XML, line 884, column 64:The reference to entity "version" must end with the ';' delimiter. when ever you try to inserting the Javascript SDK



<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.0";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script> 
The following error comes up:

Error parsing XML, line 884, column 64: The reference to entity "version" must end with the ';' delimiter.

so here is solution
Enhancement needed to work with the more strict XML checking. This enhancement will allow for the proper escaping of the XML data and commenting the CDATA works for older browsers.

<div id="fb-root"></div>
<script>
/* <![CDATA[ */
    (function(d, s, id) {
        var js, fjs = d.getElementsByTagName(s)[0];
        if (d.getElementById(id)) return;
        js = d.createElement(s); js.id = id;
        js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.3";
        fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));
/* ]]> */
</script>

replace aapId with you appId

<div id="fb-root"></div>
<script>
/* <![CDATA[ */
    (function(d, s, id) {
        var js, fjs = d.getElementsByTagName(s)[0];
        if (d.getElementById(id)) return;
        js = d.createElement(s); js.id = id;
        js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.3appId=159109061264287";
        fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));
/* ]]> */
</script>



 

Copyright 2018 Deoffuscated.

Designed by &deoffuscated