<rss
      xmlns:atom="http://www.w3.org/2005/Atom"
      xmlns:media="http://search.yahoo.com/mrss/"
      xmlns:content="http://purl.org/rss/1.0/modules/content/"
      xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
      xmlns:dc="http://purl.org/dc/elements/1.1/"
      version="2.0"
    >
      <channel>
        <title><![CDATA[]]></title>
        <description><![CDATA[]]></description>
        <link>https://rod.npub.pro/tag/privacy/</link>
        <atom:link href="https://rod.npub.pro/tag/privacy/rss/" rel="self" type="application/rss+xml"/>
        <itunes:new-feed-url>https://rod.npub.pro/tag/privacy/rss/</itunes:new-feed-url>
        <itunes:author><![CDATA[rod ✪]]></itunes:author>
        <itunes:subtitle><![CDATA[]]></itunes:subtitle>
        <itunes:type>episodic</itunes:type>
        <itunes:owner>
          <itunes:name><![CDATA[rod ✪]]></itunes:name>
          <itunes:email><![CDATA[rod ✪]]></itunes:email>
        </itunes:owner>
            
      <pubDate>Wed, 22 Jan 2025 20:48:24 GMT</pubDate>
      <lastBuildDate>Wed, 22 Jan 2025 20:48:24 GMT</lastBuildDate>
      
      <itunes:image href="https://image.nostr.build/63c130f4a42b57d8147f78bfa7e93c5029c5c4a1f1e6d169f2b497b36d768f35.jpg" />
      <image>
        <title><![CDATA[]]></title>
        <link>https://rod.npub.pro/tag/privacy/</link>
        <url>https://image.nostr.build/63c130f4a42b57d8147f78bfa7e93c5029c5c4a1f1e6d169f2b497b36d768f35.jpg</url>
      </image>
      <item>
      <title><![CDATA[Understanding Bitcoin Covenants]]></title>
      <description><![CDATA[Wondering what covenants means and how it may impact you, read on!]]></description>
             <itunes:subtitle><![CDATA[Wondering what covenants means and how it may impact you, read on!]]></itunes:subtitle>
      <pubDate>Wed, 22 Jan 2025 20:48:24 GMT</pubDate>
      <link>https://rod.npub.pro/post/1737576888095/</link>
      <comments>https://rod.npub.pro/post/1737576888095/</comments>
      <guid isPermaLink="false">naddr1qqxnzdenxu6nwd3c8qurqwf4qgsrtuazdng7waddzmdd3nyw36w5sfvler95vgcte9nreqf8jtwlyvgrqsqqqa286ap03e</guid>
      <category>#Bitcoin</category>
      
        <media:content url="https://imgprxy.stacker.news/tWAoNmitdy2_6W48Kt562BkQ1H0HevTcNnlyEKha6c8/rs:fit:2560:1440/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy83NDE0OA" medium="image"/>
        <enclosure 
          url="https://imgprxy.stacker.news/tWAoNmitdy2_6W48Kt562BkQ1H0HevTcNnlyEKha6c8/rs:fit:2560:1440/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy83NDE0OA" length="0" 
          type="" 
        />
      <noteId>naddr1qqxnzdenxu6nwd3c8qurqwf4qgsrtuazdng7waddzmdd3nyw36w5sfvler95vgcte9nreqf8jtwlyvgrqsqqqa286ap03e</noteId>
      <npub>npub1xhe6ymx3ua6669k6mrxgar5afqjeljxtgc3shjtx8jqj0yka7gcspt896x</npub>
      <dc:creator><![CDATA[rod ✪]]></dc:creator>
      <content:encoded><![CDATA[<h3>Background</h3>
<p>Most people non familiar with Bitcoin thinks that there its has not smart contracts capabilities, and that is incorrect, there are smart contract capabilities, and despite limited in comparison with other blockchain networks, those capabilities are evolving slowly but surely.</p>
<p>The support for smart contracts is done through its scripting language, Script, which allows developers to create complex conditions for transactions.</p>
<p><strong>What can you do with Script?</strong></p>
<ol>
<li>time locks</li>
<li>multi-signature requirements</li>
<li>other custom logic</li>
</ol>
<p>opcodes like OP_CHECKLOCKTIMEVERIFY (CLTV) and OP_CHECKSEQUENCEVERIFY (CSV) are used to build more sophisticated smart contracts, these opcodes enable features such as the Lightning Network, a key scaling solution for Bitcoin</p>
<p>back in 2021, the ***Taproot ***upgrade introduced Pay-to-Taproot (P2TR), in summary allows for more private and efficient smart contracts, in that soft fork more was added, in addition to Taproot, we got as well <em><strong>Schnorr signatures</strong></em>, which enables multiple signatures to be aggregated into a single signature, improving scalability and privacy and <em><strong>MAST (Merklized Abstract Syntax Trees)</strong></em> which reduces the size of complex smart contracts, making them more efficient, as an added value, this efficiency reduces the cost of transactions.</p>
<p>The ***Taproot ***upgrade has laid the foundation for the development of more sophisticated smart contracts on the Bitcoin network, and the use of covenants is an important part of this development.</p>
<h3>What is Bitcoin Covenants?</h3>
<p>It is a <strong>BIP</strong> (Bitcoin Improvement Proposal), <strong>BIP-347</strong>, assigned on April 24, 2024, which marks the first step towards reintroducing functionality removed from Bitcoin by its creator Satoshi Nakamoto in 2010. This proposal aims to bring smart contract functionality to Bitcoin as we see in other EVM networks.</p>
<p>The proposal’s developers authors names are <strong>Ethan Heilman</strong> and <strong>Armin Sabouri</strong>, now the community will debate its merits.</p>
<p>Here the link, in case you are curious:</p>
<p><em><strong><np-embed url="https://github.com/bitcoin/bips/blob/master/bip-0347.mediawiki"><a href="https://github.com/bitcoin/bips/blob/master/bip-0347.mediawiki">https://github.com/bitcoin/bips/blob/master/bip-0347.mediawiki</a></np-embed></strong></em></p>
<p>It is worth to read the motivation section of the BIP, which reads:</p>
<p>“Bitcoin Tapscript lacks a general purpose way of combining objects on the stack, restricting the expressiveness and power of Tapscript. This prevents, among many other things, the ability to construct and evaluate merkle trees and other hashed data structures in Tapscript. OP_CAT, by adding a general purpose way to concatenate stack values, would overcome this limitation and greatly increase the functionality of Tapscript.</p>
<p>OP_CAT aims to expand the toolbox of the tapscript developer with a simple, modular, and useful opcode in the spirit of Unix. To demonstrate the usefulness of OP_CAT below we provide a non-exhaustive list of some use cases that OP_CAT would enable:</p>
<p>Bitstream, a protocol for the atomic swap (fair exchange) of bitcoins for decryption keys, that enables decentralized file hosting systems paid in Bitcoin. While such swaps are currently possible on Bitcoin without OP_CAT, they require the use of complex and computationally expensive Verifiable Computation cryptographic techniques. OP_CAT would remove this requirement on Verifiable Computation, making such protocols far more practical to build in Bitcoin.</p>
<p>Tree signatures provide a multisignature script whose size can be logarithmic in the number of public keys and can encode spend conditions beyond n-of-m. For instance a transaction less than 1KB in size could support tree signatures with up to 4,294,967,296 public keys. This also enables generalized logical spend conditions.</p>
<p>Post-Quantum Lamport signatures in Bitcoin transactions. Lamport signatures merely require the ability to hash and concatenate values on the stack. [4] It has been proposed that if ECDSA is broken or a powerful computer was on the horizon, there might be an effort to protect ownership of bitcoins by allowing people to mark their taproot outputs as "script-path only" and then move their coins into such outputs with a leaf in the script tree requiring a Lamport signature. It is an open question if a tapscript commitment would preserve the quantum resistance of Lamport signatures. Beyond this question, the use of Lamport Signatures in taproot outputs is unlikely to be quantum resistant even if the script spend-path is made quantum resistant. This is because taproot outputs can also be spent with a key. An attacker with a sufficiently powerful quantum computer could bypass the taproot script spend-path by finding the discrete log of the taproot output and thus spending the output using the key spend-path. The use of "Nothing Up My Sleeve" (NUMS) points as described in BIP-341 to disable the key spend-path does not disable the key spend-path against a quantum attacker as NUMS relies on the hardness of finding discrete logs. We are not aware of any mechanism which could disable the key spend-path in a taproot output without a soft-fork change to taproot.</p>
<p>Non-equivocation contracts in tapscript provide a mechanism to punish equivocation/double spending in Bitcoin payment channels. OP_CAT enables this by enforcing rules on the spending transaction's nonce. The capability is a useful building block for payment channels and other Bitcoin protocols.</p>
<p>Vaults [6] which are a specialized covenant that allows a user to block a malicious party who has compromised the user's secret key from stealing the funds in that output. As shown in OP_CAT is sufficient to build vaults in Bitcoin.</p>
<p>Replicating CheckSigFromStack which would allow the creation of simple covenants and other advanced contracts without having to pre-sign spending transactions, possibly reducing complexity and the amount of data that needs to be stored. Originally shown to work with Schnorr signatures, this result has been extended to ECDSA signatures.</p>
<p>OP_CAT was available in early versions of Bitcoin. In 2010, a single commit disabled OP_CAT, along with another 15 opcodes. Folklore states that OP_CAT was removed in this commit because it enabled the construction of a script whose evaluation could have memory usage exponential in the size of the script. For example, a script that pushed a 1-byte value on the stack and then repeated the opcodes OP_DUP, OP_CAT 40 times would result in a stack element whose size was greater than 1 terabyte assuming no maximum stack element size. As Bitcoin at that time had a maximum stack element size of 5000 bytes, the effect of this expansion was limited to 5000 bytes. This is no longer an issue because tapscript enforces a maximum stack element size of 520 bytes.”</p>
<p>The last update of the BIP was done on Sep. 8 2024 by Ethan Heilman</p>
<h3>Controversy</h3>
<p>The controversy revolves around two main camps:</p>
<ol>
<li>Those who want to preserve Bitcoin’s network for monetary transactions only, arguing that adding smart contract capabilities could introduce risks and complexity.</li>
<li>Others who advocate for expanding Bitcoin’s capabilities to support a wider range of applications, seeing OP_CAT as a step towards enhancing the network’s utility.</li>
</ol>
<h3>Final Thoughts</h3>
<p><img src="https://imgprxy.stacker.news/ZB2xH3gBwQLbj5Ihl-vFo0nvFaxVbhyvY7cnx4ObJQs/rs:fit:2560:1440/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy83NDE0OQ" alt=""><br>Bitcoin have done what no other asset have done in history, neither gold, its success is clear, and now, that BlackRock is involved, “miraculously”, corporations and governments are getting on board and Bitcoin is not anymore only for criminals or “rat poison” or “is going to zero”.</p>
<p>But as all tech, improvements are important, if those improvements are done to secure more the network and to make it more robust, there will be little to none controversy, however, when those changes are aiming at adding new shinning features that would change Bitcoin into a network with similar features as Ethereum in terms of contracts that requires attention and debate, few questions come to mind:</p>
<ol>
<li>How will that change affect the security of the network?</li>
<li>How that change will affect the blockchain usage?</li>
<li>What is the projected impact over the fees per transaction if this change is approved?</li>
<li>Will the impact create pressure for the block size increase discussion to come back to the table and with it a second war?</li>
</ol>
<p>Looking into Ethan Heilman work and contribution to the Bitcoin ecosystem, I am inclined to believe that he has considered most of those questions.</p>
<p>Looking forward to observe the evolution of this proposal.</p>
<h4>You liked the article? Make my day brighter!</h4>
<p>Like and share!</p>
<p>Last but not least, the following link is an unstoppable domain, it will open a page in which you can perform an anonymous contribution to support my work:</p>
<p><np-embed url="https://rodswallet.unstoppable/"><a href="https://rodswallet.unstoppable/">https://rodswallet.unstoppable/</a></np-embed></p>
<p>The link didn’t open?</p>
<p>To open the link you need to use a best in class browser that supports web3, two are recommended: Brave Browser and Opera Browser</p>
]]></content:encoded>
      <itunes:author><![CDATA[rod ✪]]></itunes:author>
      <itunes:summary><![CDATA[<h3>Background</h3>
<p>Most people non familiar with Bitcoin thinks that there its has not smart contracts capabilities, and that is incorrect, there are smart contract capabilities, and despite limited in comparison with other blockchain networks, those capabilities are evolving slowly but surely.</p>
<p>The support for smart contracts is done through its scripting language, Script, which allows developers to create complex conditions for transactions.</p>
<p><strong>What can you do with Script?</strong></p>
<ol>
<li>time locks</li>
<li>multi-signature requirements</li>
<li>other custom logic</li>
</ol>
<p>opcodes like OP_CHECKLOCKTIMEVERIFY (CLTV) and OP_CHECKSEQUENCEVERIFY (CSV) are used to build more sophisticated smart contracts, these opcodes enable features such as the Lightning Network, a key scaling solution for Bitcoin</p>
<p>back in 2021, the ***Taproot ***upgrade introduced Pay-to-Taproot (P2TR), in summary allows for more private and efficient smart contracts, in that soft fork more was added, in addition to Taproot, we got as well <em><strong>Schnorr signatures</strong></em>, which enables multiple signatures to be aggregated into a single signature, improving scalability and privacy and <em><strong>MAST (Merklized Abstract Syntax Trees)</strong></em> which reduces the size of complex smart contracts, making them more efficient, as an added value, this efficiency reduces the cost of transactions.</p>
<p>The ***Taproot ***upgrade has laid the foundation for the development of more sophisticated smart contracts on the Bitcoin network, and the use of covenants is an important part of this development.</p>
<h3>What is Bitcoin Covenants?</h3>
<p>It is a <strong>BIP</strong> (Bitcoin Improvement Proposal), <strong>BIP-347</strong>, assigned on April 24, 2024, which marks the first step towards reintroducing functionality removed from Bitcoin by its creator Satoshi Nakamoto in 2010. This proposal aims to bring smart contract functionality to Bitcoin as we see in other EVM networks.</p>
<p>The proposal’s developers authors names are <strong>Ethan Heilman</strong> and <strong>Armin Sabouri</strong>, now the community will debate its merits.</p>
<p>Here the link, in case you are curious:</p>
<p><em><strong><np-embed url="https://github.com/bitcoin/bips/blob/master/bip-0347.mediawiki"><a href="https://github.com/bitcoin/bips/blob/master/bip-0347.mediawiki">https://github.com/bitcoin/bips/blob/master/bip-0347.mediawiki</a></np-embed></strong></em></p>
<p>It is worth to read the motivation section of the BIP, which reads:</p>
<p>“Bitcoin Tapscript lacks a general purpose way of combining objects on the stack, restricting the expressiveness and power of Tapscript. This prevents, among many other things, the ability to construct and evaluate merkle trees and other hashed data structures in Tapscript. OP_CAT, by adding a general purpose way to concatenate stack values, would overcome this limitation and greatly increase the functionality of Tapscript.</p>
<p>OP_CAT aims to expand the toolbox of the tapscript developer with a simple, modular, and useful opcode in the spirit of Unix. To demonstrate the usefulness of OP_CAT below we provide a non-exhaustive list of some use cases that OP_CAT would enable:</p>
<p>Bitstream, a protocol for the atomic swap (fair exchange) of bitcoins for decryption keys, that enables decentralized file hosting systems paid in Bitcoin. While such swaps are currently possible on Bitcoin without OP_CAT, they require the use of complex and computationally expensive Verifiable Computation cryptographic techniques. OP_CAT would remove this requirement on Verifiable Computation, making such protocols far more practical to build in Bitcoin.</p>
<p>Tree signatures provide a multisignature script whose size can be logarithmic in the number of public keys and can encode spend conditions beyond n-of-m. For instance a transaction less than 1KB in size could support tree signatures with up to 4,294,967,296 public keys. This also enables generalized logical spend conditions.</p>
<p>Post-Quantum Lamport signatures in Bitcoin transactions. Lamport signatures merely require the ability to hash and concatenate values on the stack. [4] It has been proposed that if ECDSA is broken or a powerful computer was on the horizon, there might be an effort to protect ownership of bitcoins by allowing people to mark their taproot outputs as "script-path only" and then move their coins into such outputs with a leaf in the script tree requiring a Lamport signature. It is an open question if a tapscript commitment would preserve the quantum resistance of Lamport signatures. Beyond this question, the use of Lamport Signatures in taproot outputs is unlikely to be quantum resistant even if the script spend-path is made quantum resistant. This is because taproot outputs can also be spent with a key. An attacker with a sufficiently powerful quantum computer could bypass the taproot script spend-path by finding the discrete log of the taproot output and thus spending the output using the key spend-path. The use of "Nothing Up My Sleeve" (NUMS) points as described in BIP-341 to disable the key spend-path does not disable the key spend-path against a quantum attacker as NUMS relies on the hardness of finding discrete logs. We are not aware of any mechanism which could disable the key spend-path in a taproot output without a soft-fork change to taproot.</p>
<p>Non-equivocation contracts in tapscript provide a mechanism to punish equivocation/double spending in Bitcoin payment channels. OP_CAT enables this by enforcing rules on the spending transaction's nonce. The capability is a useful building block for payment channels and other Bitcoin protocols.</p>
<p>Vaults [6] which are a specialized covenant that allows a user to block a malicious party who has compromised the user's secret key from stealing the funds in that output. As shown in OP_CAT is sufficient to build vaults in Bitcoin.</p>
<p>Replicating CheckSigFromStack which would allow the creation of simple covenants and other advanced contracts without having to pre-sign spending transactions, possibly reducing complexity and the amount of data that needs to be stored. Originally shown to work with Schnorr signatures, this result has been extended to ECDSA signatures.</p>
<p>OP_CAT was available in early versions of Bitcoin. In 2010, a single commit disabled OP_CAT, along with another 15 opcodes. Folklore states that OP_CAT was removed in this commit because it enabled the construction of a script whose evaluation could have memory usage exponential in the size of the script. For example, a script that pushed a 1-byte value on the stack and then repeated the opcodes OP_DUP, OP_CAT 40 times would result in a stack element whose size was greater than 1 terabyte assuming no maximum stack element size. As Bitcoin at that time had a maximum stack element size of 5000 bytes, the effect of this expansion was limited to 5000 bytes. This is no longer an issue because tapscript enforces a maximum stack element size of 520 bytes.”</p>
<p>The last update of the BIP was done on Sep. 8 2024 by Ethan Heilman</p>
<h3>Controversy</h3>
<p>The controversy revolves around two main camps:</p>
<ol>
<li>Those who want to preserve Bitcoin’s network for monetary transactions only, arguing that adding smart contract capabilities could introduce risks and complexity.</li>
<li>Others who advocate for expanding Bitcoin’s capabilities to support a wider range of applications, seeing OP_CAT as a step towards enhancing the network’s utility.</li>
</ol>
<h3>Final Thoughts</h3>
<p><img src="https://imgprxy.stacker.news/ZB2xH3gBwQLbj5Ihl-vFo0nvFaxVbhyvY7cnx4ObJQs/rs:fit:2560:1440/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy83NDE0OQ" alt=""><br>Bitcoin have done what no other asset have done in history, neither gold, its success is clear, and now, that BlackRock is involved, “miraculously”, corporations and governments are getting on board and Bitcoin is not anymore only for criminals or “rat poison” or “is going to zero”.</p>
<p>But as all tech, improvements are important, if those improvements are done to secure more the network and to make it more robust, there will be little to none controversy, however, when those changes are aiming at adding new shinning features that would change Bitcoin into a network with similar features as Ethereum in terms of contracts that requires attention and debate, few questions come to mind:</p>
<ol>
<li>How will that change affect the security of the network?</li>
<li>How that change will affect the blockchain usage?</li>
<li>What is the projected impact over the fees per transaction if this change is approved?</li>
<li>Will the impact create pressure for the block size increase discussion to come back to the table and with it a second war?</li>
</ol>
<p>Looking into Ethan Heilman work and contribution to the Bitcoin ecosystem, I am inclined to believe that he has considered most of those questions.</p>
<p>Looking forward to observe the evolution of this proposal.</p>
<h4>You liked the article? Make my day brighter!</h4>
<p>Like and share!</p>
<p>Last but not least, the following link is an unstoppable domain, it will open a page in which you can perform an anonymous contribution to support my work:</p>
<p><np-embed url="https://rodswallet.unstoppable/"><a href="https://rodswallet.unstoppable/">https://rodswallet.unstoppable/</a></np-embed></p>
<p>The link didn’t open?</p>
<p>To open the link you need to use a best in class browser that supports web3, two are recommended: Brave Browser and Opera Browser</p>
]]></itunes:summary>
      <itunes:image href="https://imgprxy.stacker.news/tWAoNmitdy2_6W48Kt562BkQ1H0HevTcNnlyEKha6c8/rs:fit:2560:1440/aHR0cHM6Ly9tLnN0YWNrZXIubmV3cy83NDE0OA"/>
      </item>
      
      <item>
      <title><![CDATA[Bitcoin Silent Payments, a step in the right direction ]]></title>
      <description><![CDATA[Silent Payments, a step towards enhanced transaction privacy in Bitcoin]]></description>
             <itunes:subtitle><![CDATA[Silent Payments, a step towards enhanced transaction privacy in Bitcoin]]></itunes:subtitle>
      <pubDate>Tue, 05 Nov 2024 17:29:19 GMT</pubDate>
      <link>https://rod.npub.pro/post/1730827288453/</link>
      <comments>https://rod.npub.pro/post/1730827288453/</comments>
      <guid isPermaLink="false">naddr1qqxnzdenxqurydej8qurgdfnqgsrtuazdng7waddzmdd3nyw36w5sfvler95vgcte9nreqf8jtwlyvgrqsqqqa28xyyyyn</guid>
      <category>bitcoin</category>
      
        <media:content url="https://image.nostr.build/ff01d226a38b88229f12d7cd39e5fef1d366b3041e6fde95a041c34a08550cb7.jpg" medium="image"/>
        <enclosure 
          url="https://image.nostr.build/ff01d226a38b88229f12d7cd39e5fef1d366b3041e6fde95a041c34a08550cb7.jpg" length="0" 
          type="image/jpeg" 
        />
      <noteId>naddr1qqxnzdenxqurydej8qurgdfnqgsrtuazdng7waddzmdd3nyw36w5sfvler95vgcte9nreqf8jtwlyvgrqsqqqa28xyyyyn</noteId>
      <npub>npub1xhe6ymx3ua6669k6mrxgar5afqjeljxtgc3shjtx8jqj0yka7gcspt896x</npub>
      <dc:creator><![CDATA[rod ✪]]></dc:creator>
      <content:encoded><![CDATA[<h3>What We Know So Far About Silent Payments?</h3>
<p>A Step Towards Enhanced Transaction Privacy in Bitcoin. </p>
<p>Bitcoin Silent Payments, also known as BIP352[^1], is a proposed improvement to Bitcoin’s payment system that has been gaining traction for its potential to bolster transaction privacy in Layer 1. </p>
<h5>In simple terms, Silent Payments enables users to:</h5>
<ul>
<li><p>Generate a single, reusable static address for receiving payments, as a business this is a game changer since it make it possible to proceed with the proper financial operational security (OpSec).</p>
</li>
<li><p>Send and receive bitcoins without disclosing transaction details to third parties, such as the person or business you pay to, cybercriminals and chain analysis companies that sell that data to anyone willing to pay for it, that will include cybercriminals or simply; if you are a business; your competitors… When you use Silent Payments, only the sender and the receiver can connect it checking the on chain activity.</p>
</li>
<li><p>Without Silent Payments, if you are a non profit organization, public fund raiser, independent journalist, or business you needed support to setup a proper infrastructure to handle the donations or payments in a private manner. With Silent Payments, you post in your web site a single address in text format or as a QR code to receive donations or payments for goods, that simple.</p>
</li>
</ul>
<h3>Can I Use Silent Payments Already?</h3>
<p>Yes, but it is currently only available through select wallets that have implemented the feature. Users must have compatible wallets and ensure that both parties involved in the transaction have Silent Payments enabled. Currently, leading wallets like Blue Wallet, and others like Cake Wallet and BitBox has adopted the feature. It's essential to verify compatibility before making transactions.</p>
<p>Current wallets known to support it as of writing this article:</p>
<ul>
<li><a href="https://bluewallet.io/">BlueWallet</a>  -- Only for sending</li>
<li><a href="https://cakewallet.com/">Cake Wallet</a> -- Send, receive, Privacy Preserving Scanning</li>
<li><a href="https://app.silentium.dev/">Silentium</a> -- Proof of concept, good for testing</li>
<li><a href="https://bitbox.swiss/">BitBox</a> -- Only for sending</li>
</ul>
<h3>Summarizing:</h3>
<p><a href="https://image.nostr.build/db35c2a028e9f740181daabe2deef4e707653fa2d82f1602086e0ac4b5ee84fd.png" class="vbx-media" target="_blank"><img class="venobox" src="https://image.nostr.build/db35c2a028e9f740181daabe2deef4e707653fa2d82f1602086e0ac4b5ee84fd.png"></a></p>
<h4>PROS:</h4>
<ul>
<li>Enhanced Privacy</li>
<li>Increased Security</li>
<li>Improved User Experience</li>
<li>Cheap and seamless implementation for non profit organization, fund raisers and businesses alike.</li>
</ul>
<h4>CONS:</h4>
<ul>
<li>None</li>
</ul>
<h3>Final Thoughts</h3>
<p><a href="https://image.nostr.build/bcb236cbcb535cb6d6fe1b2b4c79074955d1a1cb1114a6c02cc456e8d852d594.jpg" class="vbx-media" target="_blank"><img class="venobox" src="https://image.nostr.build/bcb236cbcb535cb6d6fe1b2b4c79074955d1a1cb1114a6c02cc456e8d852d594.jpg"></a></p>
<p>As Bitcoin continues to evolve, Silent Payments will play a significant role in enhancing transaction privacy and security. The potential benefits are undeniable and substantial.</p>
<p>In the near future, we can expect wider adoption and implementation of Silent Payments as more wallets and exchanges embrace this groundbreaking feature. Looking forward to see <a href="https://phoenix.acinq.co/">Phoenix</a>, <a href="https://sparrowwallet.com/">Sparrow</a>, <a href="https://ashigaru.rs/">Ashigaru</a>[^2] and <a href="https://electrum.org/">Electrum</a> adoption.</p>
<p>I will suggest all of us start contacting in all social networks the wallets we us and encourage them to implement Silent Payments</p>
<p>Here the contact info for some of them:</p>
<ul>
<li>Phoenix: <np-embed url="https://twitter.com/PhoenixWallet"><a href="https://twitter.com/PhoenixWallet">https://twitter.com/PhoenixWallet</a></np-embed></li>
<li>Ashigaru: <a href="mailto:contact@ashigaru.rs">contact@ashigaru.rs</a> (if you want a response, send your email signed with PGP)</li>
<li>Sparrow Wallet: <np-embed url="https://twitter.com/SparrowWallet"><a href="https://twitter.com/SparrowWallet">https://twitter.com/SparrowWallet</a></np-embed>, <np-embed url="https://t.me/SparrowWallet"><a href="https://t.me/SparrowWallet">https://t.me/SparrowWallet</a></np-embed></li>
<li>Electrum: <np-embed url="https://twitter.com/ElectrumWallet"><a href="https://twitter.com/ElectrumWallet">https://twitter.com/ElectrumWallet</a></np-embed></li>
</ul>
<p>[^1]: Here the link to the BIP352: <np-embed url="https://bips.dev/352/"><a href="https://bips.dev/352/">https://bips.dev/352/</a></np-embed><br>[^2]: Ashigaru is a fork of Samurai Wallet performed by anonymous developers (IMO, all Bitcoin related development should be anonymous, to protect the project from nefarious players, unfortunately, most developers in the arena choose to be “public” figures, hence, becoming a target of current and potential Bitcoin enemies and a weak link for the ecosystem)<br><a href="https://military-history.fandom.com/wiki/Ashigaru">Ashigaru</a> in Japanese means “light feet” (translated as foot soldiers or peasants)</p>
]]></content:encoded>
      <itunes:author><![CDATA[rod ✪]]></itunes:author>
      <itunes:summary><![CDATA[<h3>What We Know So Far About Silent Payments?</h3>
<p>A Step Towards Enhanced Transaction Privacy in Bitcoin. </p>
<p>Bitcoin Silent Payments, also known as BIP352[^1], is a proposed improvement to Bitcoin’s payment system that has been gaining traction for its potential to bolster transaction privacy in Layer 1. </p>
<h5>In simple terms, Silent Payments enables users to:</h5>
<ul>
<li><p>Generate a single, reusable static address for receiving payments, as a business this is a game changer since it make it possible to proceed with the proper financial operational security (OpSec).</p>
</li>
<li><p>Send and receive bitcoins without disclosing transaction details to third parties, such as the person or business you pay to, cybercriminals and chain analysis companies that sell that data to anyone willing to pay for it, that will include cybercriminals or simply; if you are a business; your competitors… When you use Silent Payments, only the sender and the receiver can connect it checking the on chain activity.</p>
</li>
<li><p>Without Silent Payments, if you are a non profit organization, public fund raiser, independent journalist, or business you needed support to setup a proper infrastructure to handle the donations or payments in a private manner. With Silent Payments, you post in your web site a single address in text format or as a QR code to receive donations or payments for goods, that simple.</p>
</li>
</ul>
<h3>Can I Use Silent Payments Already?</h3>
<p>Yes, but it is currently only available through select wallets that have implemented the feature. Users must have compatible wallets and ensure that both parties involved in the transaction have Silent Payments enabled. Currently, leading wallets like Blue Wallet, and others like Cake Wallet and BitBox has adopted the feature. It's essential to verify compatibility before making transactions.</p>
<p>Current wallets known to support it as of writing this article:</p>
<ul>
<li><a href="https://bluewallet.io/">BlueWallet</a>  -- Only for sending</li>
<li><a href="https://cakewallet.com/">Cake Wallet</a> -- Send, receive, Privacy Preserving Scanning</li>
<li><a href="https://app.silentium.dev/">Silentium</a> -- Proof of concept, good for testing</li>
<li><a href="https://bitbox.swiss/">BitBox</a> -- Only for sending</li>
</ul>
<h3>Summarizing:</h3>
<p><a href="https://image.nostr.build/db35c2a028e9f740181daabe2deef4e707653fa2d82f1602086e0ac4b5ee84fd.png" class="vbx-media" target="_blank"><img class="venobox" src="https://image.nostr.build/db35c2a028e9f740181daabe2deef4e707653fa2d82f1602086e0ac4b5ee84fd.png"></a></p>
<h4>PROS:</h4>
<ul>
<li>Enhanced Privacy</li>
<li>Increased Security</li>
<li>Improved User Experience</li>
<li>Cheap and seamless implementation for non profit organization, fund raisers and businesses alike.</li>
</ul>
<h4>CONS:</h4>
<ul>
<li>None</li>
</ul>
<h3>Final Thoughts</h3>
<p><a href="https://image.nostr.build/bcb236cbcb535cb6d6fe1b2b4c79074955d1a1cb1114a6c02cc456e8d852d594.jpg" class="vbx-media" target="_blank"><img class="venobox" src="https://image.nostr.build/bcb236cbcb535cb6d6fe1b2b4c79074955d1a1cb1114a6c02cc456e8d852d594.jpg"></a></p>
<p>As Bitcoin continues to evolve, Silent Payments will play a significant role in enhancing transaction privacy and security. The potential benefits are undeniable and substantial.</p>
<p>In the near future, we can expect wider adoption and implementation of Silent Payments as more wallets and exchanges embrace this groundbreaking feature. Looking forward to see <a href="https://phoenix.acinq.co/">Phoenix</a>, <a href="https://sparrowwallet.com/">Sparrow</a>, <a href="https://ashigaru.rs/">Ashigaru</a>[^2] and <a href="https://electrum.org/">Electrum</a> adoption.</p>
<p>I will suggest all of us start contacting in all social networks the wallets we us and encourage them to implement Silent Payments</p>
<p>Here the contact info for some of them:</p>
<ul>
<li>Phoenix: <np-embed url="https://twitter.com/PhoenixWallet"><a href="https://twitter.com/PhoenixWallet">https://twitter.com/PhoenixWallet</a></np-embed></li>
<li>Ashigaru: <a href="mailto:contact@ashigaru.rs">contact@ashigaru.rs</a> (if you want a response, send your email signed with PGP)</li>
<li>Sparrow Wallet: <np-embed url="https://twitter.com/SparrowWallet"><a href="https://twitter.com/SparrowWallet">https://twitter.com/SparrowWallet</a></np-embed>, <np-embed url="https://t.me/SparrowWallet"><a href="https://t.me/SparrowWallet">https://t.me/SparrowWallet</a></np-embed></li>
<li>Electrum: <np-embed url="https://twitter.com/ElectrumWallet"><a href="https://twitter.com/ElectrumWallet">https://twitter.com/ElectrumWallet</a></np-embed></li>
</ul>
<p>[^1]: Here the link to the BIP352: <np-embed url="https://bips.dev/352/"><a href="https://bips.dev/352/">https://bips.dev/352/</a></np-embed><br>[^2]: Ashigaru is a fork of Samurai Wallet performed by anonymous developers (IMO, all Bitcoin related development should be anonymous, to protect the project from nefarious players, unfortunately, most developers in the arena choose to be “public” figures, hence, becoming a target of current and potential Bitcoin enemies and a weak link for the ecosystem)<br><a href="https://military-history.fandom.com/wiki/Ashigaru">Ashigaru</a> in Japanese means “light feet” (translated as foot soldiers or peasants)</p>
]]></itunes:summary>
      <itunes:image href="https://image.nostr.build/ff01d226a38b88229f12d7cd39e5fef1d366b3041e6fde95a041c34a08550cb7.jpg"/>
      </item>
      
      <item>
      <title><![CDATA[ARK, The Innovative Protocol for Enhancing Bitcoin Privacy and Scalability]]></title>
      <description><![CDATA[]]></description>
             <itunes:subtitle><![CDATA[]]></itunes:subtitle>
      <pubDate>Sun, 27 Oct 2024 06:49:50 GMT</pubDate>
      <link>https://rod.npub.pro/post/283362/</link>
      <comments>https://rod.npub.pro/post/283362/</comments>
      <guid isPermaLink="false">naddr1qqrrywpnxvmryq3qxhe6ymx3ua6669k6mrxgar5afqjeljxtgc3shjtx8jqj0yka7gcsxpqqqp65we7eusv</guid>
      <category>BTC</category>
      
        <media:content url="https://image.nostr.build/7b2ecfacd794b0ad7f97560898aea965ae71681f8deed2c224b4c14b46ddf3da.jpg" medium="image"/>
        <enclosure 
          url="https://image.nostr.build/7b2ecfacd794b0ad7f97560898aea965ae71681f8deed2c224b4c14b46ddf3da.jpg" length="0" 
          type="image/jpeg" 
        />
      <noteId>naddr1qqrrywpnxvmryq3qxhe6ymx3ua6669k6mrxgar5afqjeljxtgc3shjtx8jqj0yka7gcsxpqqqp65we7eusv</noteId>
      <npub>npub1xhe6ymx3ua6669k6mrxgar5afqjeljxtgc3shjtx8jqj0yka7gcspt896x</npub>
      <dc:creator><![CDATA[rod ✪]]></dc:creator>
      <content:encoded><![CDATA[<h5><em><strong>Introduction</strong></em></h5>
<p>Nowadays, businesses and individuals are adopting Bitcoin as a method of payment. It's no surprise, given the security, speed, and cost-efficiency associated with it, specially using the LN. However, despite the numerous advantages, Bitcoin still faces challenges in terms of privacy, fees, and scalability. </p>
<h5><em><strong>What is ARK?</strong></em></h5>
<p>A Layer 2 protocol for Bitcoin designed to solve some of the Bitcoin Network challenges, to improve its efficiency, security and scalability. The protocol aims to enhance the functionality of Bitcoin by addressing its current limitations by using a shared UTXO model that enables <em><strong>anonymous</strong></em>, off-chain payments through an untrusted intermediary called the Ark Service Provider (ASP). ASPs are always-on servers that provide liquidity to the network, similar to how Lightning service providers work but without the time consuming opening and close and balancing of channels.</p>
<h5><em><strong>Interoperability with the Lighting Network?</strong></em></h5>
<p>Ark will function as a liquidity network that operates like Lightning, but without introducing liquidity constraints or a direct link between the sender and receiver. It uses virtual UTXOs, to enable <em><strong>anonymous</strong></em>, scalable, off-chain payments. ASPs provide liquidity to the network and charge fees for their services. </p>
<p>ARK will address key issues with deploying capital into the Lightning Network providing a layer that settles transactions without the requirement for a specific infrastructure to remain online, as is the case with Lightning, while still providing assurances of the private custody of funds. How:</p>
<ul>
<li>Ark can interoperate with Lightning by attaching HTLCs (Hashed Timelock Contracts) and PTLCs (Point Time Locked Contracts) to a pool transaction. Attached HTLCs live under another shared UTXO called the HTLCs outputs, which expires after four-weeks.</li>
<li>Ark service providers forward HTLCs to the broader Lightning Network the moment after HTLCs are attached to a pool transaction. This requires Ark service providers to run routing nodes on the Lightning Network with well-established outgoing channels. Ark users can also get paid from Lightning using HTLC-nested vTXOs.</li>
</ul>
<p>Last but not least, the Ark Service Provider will serve not only as a liquidity provider but as a Coin-Join coordinator and a Lightning service provider.</p>
<h5><em><strong>How does ARK compares with the Lighting Network?</strong></em></h5>
<ul>
<li><a href="https://image.nostr.build/00dba22e23022333d9a767fb015e2d89b7e2e0e5aa73345eaea53bd59c5ecc56.jpg" class="vbx-media" target="_blank"><img class="venobox" src="https://image.nostr.build/00dba22e23022333d9a767fb015e2d89b7e2e0e5aa73345eaea53bd59c5ecc56.jpg"></a></li>
</ul>
<h5><em><strong>Conclusion</strong></em></h5>
<p>The ARK protocol is an exciting development, addressing many of the challenges faced by Bitcoin Network today. ARK promises to enhance, above all, privacy and scalability, making it a valuable addition to the rapidly growing Bitcoin ecosystem.</p>
<h6>_</h6>
<blockquote>
<h6>Sources and recommended watching and reading:</h6>
<ul>
<li><a href="https://www.youtube.com/watch?v=EocWax43QgQ">Ark Whiteboard Masterclass with Burak &amp; Robin - MUST WATCH</a></li>
<li><a href="https://www.arkpill.me/">ArkPillMe</a></li>
<li><a href="https://github.com/fiksn/awesome-ark">GitHub</a></li>
<li><a href="https://t.me/ark_network_community">Community Telegram Channel</a></li>
<li><a href="https://bitcointv.com/w/pVk3bPfKZ7YqDzsNZjz9tf?start=4h9m28s">ARK video from Bitcoin Miami 2023</a></li>
<li><a href="https://docs.google.com/presentation/d/1xKIJt4CnUCFfxhIwDj_kW0Ecr0NcvN5bZ4SQexGJfmk/edit?usp=sharing">ARK presentation from Bitcoin Miami 2023</a></li>
</ul>
</blockquote>
]]></content:encoded>
      <itunes:author><![CDATA[rod ✪]]></itunes:author>
      <itunes:summary><![CDATA[<h5><em><strong>Introduction</strong></em></h5>
<p>Nowadays, businesses and individuals are adopting Bitcoin as a method of payment. It's no surprise, given the security, speed, and cost-efficiency associated with it, specially using the LN. However, despite the numerous advantages, Bitcoin still faces challenges in terms of privacy, fees, and scalability. </p>
<h5><em><strong>What is ARK?</strong></em></h5>
<p>A Layer 2 protocol for Bitcoin designed to solve some of the Bitcoin Network challenges, to improve its efficiency, security and scalability. The protocol aims to enhance the functionality of Bitcoin by addressing its current limitations by using a shared UTXO model that enables <em><strong>anonymous</strong></em>, off-chain payments through an untrusted intermediary called the Ark Service Provider (ASP). ASPs are always-on servers that provide liquidity to the network, similar to how Lightning service providers work but without the time consuming opening and close and balancing of channels.</p>
<h5><em><strong>Interoperability with the Lighting Network?</strong></em></h5>
<p>Ark will function as a liquidity network that operates like Lightning, but without introducing liquidity constraints or a direct link between the sender and receiver. It uses virtual UTXOs, to enable <em><strong>anonymous</strong></em>, scalable, off-chain payments. ASPs provide liquidity to the network and charge fees for their services. </p>
<p>ARK will address key issues with deploying capital into the Lightning Network providing a layer that settles transactions without the requirement for a specific infrastructure to remain online, as is the case with Lightning, while still providing assurances of the private custody of funds. How:</p>
<ul>
<li>Ark can interoperate with Lightning by attaching HTLCs (Hashed Timelock Contracts) and PTLCs (Point Time Locked Contracts) to a pool transaction. Attached HTLCs live under another shared UTXO called the HTLCs outputs, which expires after four-weeks.</li>
<li>Ark service providers forward HTLCs to the broader Lightning Network the moment after HTLCs are attached to a pool transaction. This requires Ark service providers to run routing nodes on the Lightning Network with well-established outgoing channels. Ark users can also get paid from Lightning using HTLC-nested vTXOs.</li>
</ul>
<p>Last but not least, the Ark Service Provider will serve not only as a liquidity provider but as a Coin-Join coordinator and a Lightning service provider.</p>
<h5><em><strong>How does ARK compares with the Lighting Network?</strong></em></h5>
<ul>
<li><a href="https://image.nostr.build/00dba22e23022333d9a767fb015e2d89b7e2e0e5aa73345eaea53bd59c5ecc56.jpg" class="vbx-media" target="_blank"><img class="venobox" src="https://image.nostr.build/00dba22e23022333d9a767fb015e2d89b7e2e0e5aa73345eaea53bd59c5ecc56.jpg"></a></li>
</ul>
<h5><em><strong>Conclusion</strong></em></h5>
<p>The ARK protocol is an exciting development, addressing many of the challenges faced by Bitcoin Network today. ARK promises to enhance, above all, privacy and scalability, making it a valuable addition to the rapidly growing Bitcoin ecosystem.</p>
<h6>_</h6>
<blockquote>
<h6>Sources and recommended watching and reading:</h6>
<ul>
<li><a href="https://www.youtube.com/watch?v=EocWax43QgQ">Ark Whiteboard Masterclass with Burak &amp; Robin - MUST WATCH</a></li>
<li><a href="https://www.arkpill.me/">ArkPillMe</a></li>
<li><a href="https://github.com/fiksn/awesome-ark">GitHub</a></li>
<li><a href="https://t.me/ark_network_community">Community Telegram Channel</a></li>
<li><a href="https://bitcointv.com/w/pVk3bPfKZ7YqDzsNZjz9tf?start=4h9m28s">ARK video from Bitcoin Miami 2023</a></li>
<li><a href="https://docs.google.com/presentation/d/1xKIJt4CnUCFfxhIwDj_kW0Ecr0NcvN5bZ4SQexGJfmk/edit?usp=sharing">ARK presentation from Bitcoin Miami 2023</a></li>
</ul>
</blockquote>
]]></itunes:summary>
      <itunes:image href="https://image.nostr.build/7b2ecfacd794b0ad7f97560898aea965ae71681f8deed2c224b4c14b46ddf3da.jpg"/>
      </item>
      
      <item>
      <title><![CDATA[Are you using "Files" by Google? - Be careful, you need to fix this setting...]]></title>
      <description><![CDATA[Files" by Google added a "feature"... "Smart Search", this is a very intrusive feature that can cost you dearly, read on and find out why and how to disable it]]></description>
             <itunes:subtitle><![CDATA[Files" by Google added a "feature"... "Smart Search", this is a very intrusive feature that can cost you dearly, read on and find out why and how to disable it]]></itunes:subtitle>
      <pubDate>Thu, 19 Oct 2023 09:58:36 GMT</pubDate>
      <link>https://rod.npub.pro/post/re__-hj6a7uhveqefito4/</link>
      <comments>https://rod.npub.pro/post/re__-hj6a7uhveqefito4/</comments>
      <guid isPermaLink="false">naddr1qq2hye2ltukks63kvymh2jzkg4ck2enf23hngq3qxhe6ymx3ua6669k6mrxgar5afqjeljxtgc3shjtx8jqj0yka7gcsxpqqqp65w7u69j0</guid>
      <category>cybersecurity</category>
      
        <media:content url="https://yakihonne.s3.ap-east-1.amazonaws.com/35f3a26cd1e775ad16dad8cc8e8e9d48259fc8cb46230bc9663c812792ddf231/files/1697709516170-YAKIHONNES3.jpg" medium="image"/>
        <enclosure 
          url="https://yakihonne.s3.ap-east-1.amazonaws.com/35f3a26cd1e775ad16dad8cc8e8e9d48259fc8cb46230bc9663c812792ddf231/files/1697709516170-YAKIHONNES3.jpg" length="0" 
          type="image/jpeg" 
        />
      <noteId>naddr1qq2hye2ltukks63kvymh2jzkg4ck2enf23hngq3qxhe6ymx3ua6669k6mrxgar5afqjeljxtgc3shjtx8jqj0yka7gcsxpqqqp65w7u69j0</noteId>
      <npub>npub1xhe6ymx3ua6669k6mrxgar5afqjeljxtgc3shjtx8jqj0yka7gcspt896x</npub>
      <dc:creator><![CDATA[rod ✪]]></dc:creator>
      <content:encoded><![CDATA[<h2>"Files" by Google new feature</h2>
<p>"Files" by Google added a "feature"... "Smart Search", you can toggle it to OFF and it is highly recommended to do so.</p>
<ul>
<li><img src="https://yakihonne.s3.ap-east-1.amazonaws.com/35f3a26cd1e775ad16dad8cc8e8e9d48259fc8cb46230bc9663c812792ddf231/files/1697708380122-YAKIHONNES3.jpg" alt="image"></li>
</ul>
<p>Toggle the Smart Search to OFF, otherwise, google will search and index every picture, video and document in your device, no exceptions, anything you have ever photographed and you forgot, any document you have downloaded or article, etc...</p>
<h2>How this could affect you?</h2>
<p>Google is actively combating child abuse and therefore it has built in its "AI" a very aggressive algorithm searching of material that "IT THINKS" is related, therefore the following content could be flagged:</p>
<ul>
<li><input disabled="" type="checkbox"> Pictures of you and your children in the beach</li>
<li><input disabled="" type="checkbox"> Pictures or videos which are innocent in nature but the "AI" "thinks" are not</li>
<li><input disabled="" type="checkbox"> Articles you may have save for research to write your next essay that have links to flagged information or sites</li>
</ul>
<p><em><strong>The results:</strong></em></p>
<ul>
<li><input disabled="" type="checkbox"> Your google account will be canceled</li>
<li><input disabled="" type="checkbox"> You will be flagged as a criminal across the digital world</li>
</ul>
<p>You think this is non sense? Think again:<br><np-embed url="https://www.nytimes.com/2022/08/21/technology/google-surveillance-toddler-photo.html"><a href="https://www.nytimes.com/2022/08/21/technology/google-surveillance-toddler-photo.html">https://www.nytimes.com/2022/08/21/technology/google-surveillance-toddler-photo.html</a></np-embed></p>
<h2>How to switch it off:</h2>
<ol>
<li>Open files by Google</li>
<li>Tap on Menu -&gt; Settings</li>
<li>Turn OFF Smart Search</li>
</ol>
<h2>But you can do more for your privacy and the security of your family</h2>
<ol>
<li>Stop using google apps, if possible get rid off of Google OS and use Graphene OS</li>
<li>Go to Settings -&gt; Apps</li>
<li>Search for Files by Google</li>
<li>Unistall the app, if you can't disable it</li>
<li>Keep doing that with most Google apps that are not a must if you have not switched already to GrapheneOS</li>
</ol>
<p><em><strong>Remember, Google keeps advocating for privacy, but as many others have pointed out repeatedly, they are the first ones lobbying for the removal of your privacy by regulation and draconian laws, their hypocrisy knows no limits</strong></em></p>
<h2>Recommendation:</h2>
<p>I would assume you have installed F-Droid in your android, or Obtainium if you are more advanced, if so, consider "Simple File Manager Pro" by Tibor Kaputa, this dev has a suite of apps that are basic needs and the best feature in my opinion is that not one of his apps connect to the internet, contacts, gallery, files, phone, etc.</p>
<ul>
<li><img src="https://yakihonne.s3.ap-east-1.amazonaws.com/35f3a26cd1e775ad16dad8cc8e8e9d48259fc8cb46230bc9663c812792ddf231/files/1697709265617-YAKIHONNES3.jpg" alt="image"></li>
</ul>
<blockquote>
<p> Note<br>As most people, we all love the convenience of technology, it makes our lives easier, however, our safety and our family safety should go first, between technology being miss-used and abused by corporations and cyber-criminals data mining and checking for easy targets to attack for profit, we need to keep our guard up. Learning is key, resist the use of new tech if you do not understand the privacy trade offs, no matter how appealing and convenient it looks like. .</p>
</blockquote>
<p><em><strong>Please leave your comments with your favorite FOSS Files app!</strong></em></p>
]]></content:encoded>
      <itunes:author><![CDATA[rod ✪]]></itunes:author>
      <itunes:summary><![CDATA[<h2>"Files" by Google new feature</h2>
<p>"Files" by Google added a "feature"... "Smart Search", you can toggle it to OFF and it is highly recommended to do so.</p>
<ul>
<li><img src="https://yakihonne.s3.ap-east-1.amazonaws.com/35f3a26cd1e775ad16dad8cc8e8e9d48259fc8cb46230bc9663c812792ddf231/files/1697708380122-YAKIHONNES3.jpg" alt="image"></li>
</ul>
<p>Toggle the Smart Search to OFF, otherwise, google will search and index every picture, video and document in your device, no exceptions, anything you have ever photographed and you forgot, any document you have downloaded or article, etc...</p>
<h2>How this could affect you?</h2>
<p>Google is actively combating child abuse and therefore it has built in its "AI" a very aggressive algorithm searching of material that "IT THINKS" is related, therefore the following content could be flagged:</p>
<ul>
<li><input disabled="" type="checkbox"> Pictures of you and your children in the beach</li>
<li><input disabled="" type="checkbox"> Pictures or videos which are innocent in nature but the "AI" "thinks" are not</li>
<li><input disabled="" type="checkbox"> Articles you may have save for research to write your next essay that have links to flagged information or sites</li>
</ul>
<p><em><strong>The results:</strong></em></p>
<ul>
<li><input disabled="" type="checkbox"> Your google account will be canceled</li>
<li><input disabled="" type="checkbox"> You will be flagged as a criminal across the digital world</li>
</ul>
<p>You think this is non sense? Think again:<br><np-embed url="https://www.nytimes.com/2022/08/21/technology/google-surveillance-toddler-photo.html"><a href="https://www.nytimes.com/2022/08/21/technology/google-surveillance-toddler-photo.html">https://www.nytimes.com/2022/08/21/technology/google-surveillance-toddler-photo.html</a></np-embed></p>
<h2>How to switch it off:</h2>
<ol>
<li>Open files by Google</li>
<li>Tap on Menu -&gt; Settings</li>
<li>Turn OFF Smart Search</li>
</ol>
<h2>But you can do more for your privacy and the security of your family</h2>
<ol>
<li>Stop using google apps, if possible get rid off of Google OS and use Graphene OS</li>
<li>Go to Settings -&gt; Apps</li>
<li>Search for Files by Google</li>
<li>Unistall the app, if you can't disable it</li>
<li>Keep doing that with most Google apps that are not a must if you have not switched already to GrapheneOS</li>
</ol>
<p><em><strong>Remember, Google keeps advocating for privacy, but as many others have pointed out repeatedly, they are the first ones lobbying for the removal of your privacy by regulation and draconian laws, their hypocrisy knows no limits</strong></em></p>
<h2>Recommendation:</h2>
<p>I would assume you have installed F-Droid in your android, or Obtainium if you are more advanced, if so, consider "Simple File Manager Pro" by Tibor Kaputa, this dev has a suite of apps that are basic needs and the best feature in my opinion is that not one of his apps connect to the internet, contacts, gallery, files, phone, etc.</p>
<ul>
<li><img src="https://yakihonne.s3.ap-east-1.amazonaws.com/35f3a26cd1e775ad16dad8cc8e8e9d48259fc8cb46230bc9663c812792ddf231/files/1697709265617-YAKIHONNES3.jpg" alt="image"></li>
</ul>
<blockquote>
<p> Note<br>As most people, we all love the convenience of technology, it makes our lives easier, however, our safety and our family safety should go first, between technology being miss-used and abused by corporations and cyber-criminals data mining and checking for easy targets to attack for profit, we need to keep our guard up. Learning is key, resist the use of new tech if you do not understand the privacy trade offs, no matter how appealing and convenient it looks like. .</p>
</blockquote>
<p><em><strong>Please leave your comments with your favorite FOSS Files app!</strong></em></p>
]]></itunes:summary>
      <itunes:image href="https://yakihonne.s3.ap-east-1.amazonaws.com/35f3a26cd1e775ad16dad8cc8e8e9d48259fc8cb46230bc9663c812792ddf231/files/1697709516170-YAKIHONNES3.jpg"/>
      </item>
      
      </channel>
      </rss>
    