<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[Stephane Bounmy]]></title><description><![CDATA[LifeHacks, Coliving & Permaculture 🌱]]></description><link>https://sbounmy.com/</link><image><url>https://sbounmy.com/favicon.png</url><title>Stephane Bounmy</title><link>https://sbounmy.com/</link></image><generator>Ghost 3.31</generator><lastBuildDate>Wed, 15 Apr 2026 07:35:14 GMT</lastBuildDate><atom:link href="https://sbounmy.com/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[Lost funds in generated child address (BIP32 - HD Wallet) not recognized by Bitcoin Core Wallet?]]></title><description><![CDATA[<p>I am using cryptocoin_payable to accept bitcoin payments by derivating adresses 1 address = 1 transaction.<br><br>I received a BTC payment <a href="https://bitcoinexplorer.org/address/1F3PZ1Qjtpmdcg3QGhK5szsPzY9nPLJeNq">https://bitcoinexplorer.org/address/1F3PZ1Qjtpmdcg3QGhK5szsPzY9nPLJeNq</a></p><p>But on my wallet the funds didnt show up :</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2024/03/CleanShot-2024-03-13-at-07.40.54@2x.png" class="kg-image" alt><figcaption>Panic !</figcaption></figure><p><br>I realized the derived address was not properly recognize because I didn't setup the</p>]]></description><link>https://sbounmy.com/lost-funds-in-generated-child-address-bip32-hd-wallet-not-recognized-by-bitcoin-core-wallet/</link><guid isPermaLink="false">65f14838d7feee0599e58dbf</guid><dc:creator><![CDATA[Stephane Bounmy]]></dc:creator><pubDate>Wed, 13 Mar 2024 07:11:01 GMT</pubDate><content:encoded><![CDATA[<p>I am using cryptocoin_payable to accept bitcoin payments by derivating adresses 1 address = 1 transaction.<br><br>I received a BTC payment <a href="https://bitcoinexplorer.org/address/1F3PZ1Qjtpmdcg3QGhK5szsPzY9nPLJeNq">https://bitcoinexplorer.org/address/1F3PZ1Qjtpmdcg3QGhK5szsPzY9nPLJeNq</a></p><p>But on my wallet the funds didnt show up :</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2024/03/CleanShot-2024-03-13-at-07.40.54@2x.png" class="kg-image" alt><figcaption>Panic !</figcaption></figure><p><br>I realized the derived address was not properly recognize because I didn't setup the  <code>node_path</code> </p><pre><code>CryptocoinPayable.configure do |config|
  
  config.configure_btc do |btc_config|
    # btc_config.confirmations = 3
    # btc_config.node_path = ''

    btc_config.master_public_key = 'tpub...'
  end

end</code></pre><p>which is used <a href="https://github.com/sbounmy/cryptocoin_payable/blob/10f95116d8e2895e6b349293d3ace116682452dd/lib/cryptocoin_payable/adapters/base.rb#L66C1-L71C10">here</a></p><pre><code class="language-rb">      def create_address(id)
        raise MissingMasterPublicKey, 'master_public_key is required' unless coin_config.master_public_key

        master = MoneyTree::Node.from_bip32(coin_config.master_public_key)
        master.node_for_path(coin_config.node_path + id.to_s)
      end</code></pre><p>So when an address is derived it uses <code>m/44/0/0/{coin_payment_id}</code> </p><p>Also use `getaddressinfo` to verify the adress generated</p><p>Then I reached out bitcoin stack exchange :</p><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://bitcoin.stackexchange.com/questions/122225/lost-funds-generated-child-address-hd-wallet-bip32-without-node-path/122230#122230"><div class="kg-bookmark-content"><div class="kg-bookmark-title">Lost funds? Generated child address (HD Wallet BIP32) without Node path</div><div class="kg-bookmark-description">I have an app that generates 1 public address &#x3D; 1 transaction using HD Wallet.However I forgot to put the node path /0 while generating the child address and my Bitcoin Core wallet does not recogn...</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://cdn.sstatic.net/Sites/bitcoin/Img/apple-touch-icon.png?v&#x3D;03725253491d"><span class="kg-bookmark-author">stifou</span><span class="kg-bookmark-publisher">Bitcoin Stack Exchange</span></div></div><div class="kg-bookmark-thumbnail"><img src="https://cdn.sstatic.net/Sites/bitcoin/Img/apple-touch-icon@2.png?v&#x3D;b4864ba760f1"></div></a></figure><p></p><h1 id="solution">Solution</h1><p></p><h2 id="recover-the-funds">Recover the funds</h2><p>I couldn't properly find the right derivation path so I used <a href="https://iancoleman.io/bip39/">https://iancoleman.io/bip39/</a></p><p>I put my master private key <code>xprv...</code> in BIP Root Key then check if the <code>BIP32 Extended Public Key</code> matches the master public key I setup in <code>cryptocoin_payable</code></p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2024/03/CleanShot-2024-03-13-at-07.51.48@2x.png" class="kg-image" alt></figure><p>Then I could find the 284 which was my  <code>node path</code> (coin payment.id) and the public address matches.. !</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2024/03/CleanShot-2024-03-13-at-07.57.03@2x.png" class="kg-image" alt></figure><p>With this I constructed the descriptor :</p><p><code>"pkh(my_private_key)"</code></p><p>Then find the checksum</p><pre><code>getdescriptorinfo "pkh(my_private_key)"
{
  "descriptor": "pkh(my_private_key)#something",
  "checksum": "my_checksum",
  "isrange": false,
  "issolvable": true,
  "hasprivatekeys": true
}
</code></pre><p>Then import the descriptor :</p><pre><code>importdescriptors '[{ "desc": "pkh(my_private_key)#my_checkum", "timestamp":1455191478, "internal": true }]'</code></pre><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2024/03/CleanShot-2024-03-13-at-08.04.55@2x.png" class="kg-image" alt><figcaption>Wait for a while...</figcaption></figure><p></p><p>And voila !</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2024/03/CleanShot-2024-03-13-at-08.05.49@2x.png" class="kg-image" alt></figure><p></p><h2 id="fix-cryptocoin_payable-for-future-payments">Fix cryptocoin_payable for future payments</h2><p>Set <code>config.node_path = '0/</code> but always test your derived address with <code>getaddressinfo my_derived_address</code></p><figure class="kg-card kg-code-card"><pre><code> getaddressinfo 1Fq1BbugkWzQyJBoFEJrbcTmsxe44Mhhfz    
    ￼
    {
      "address": "1Fq1BbugkWzQyJBoFEJrbcTmsxe44Mhhfz",
      "scriptPubKey": "76a914a2a5e135a645025d0b87f710ec7d7122fd9c8a3488ac",
      "ismine": true,
      "solvable": true,
      "desc": "pkh([3db2xxx/44'/0'/0'/0/12]------)#psf0gapz",
      "parent_desc": "pkh([3dbxxx/44'/0'/0']xpub-----/0/*)#7uthurwc",
      "iswatchonly": false,
      "isscript": false,
      "iswitness": false,
      "pubkey": "------",
      "iscompressed": true,
      "ischange": true,
      "timestamp": 1703084241,
      "hdkeypath": "m/44'/0'/0'/0/12",
      "hdseedid": "0000000000000000000000000000000000000000",
      "hdmasterfingerprint": "3db26443",
      "labels": [
      ]
    }</code></pre><figcaption><code>ismine</code> should be <code>true</code></figcaption></figure>]]></content:encoded></item><item><title><![CDATA[Kamal deploy bootsnap error 137]]></title><description><![CDATA[<p>I was always able to deploy until few days ago </p><pre><code class="language-sh">------
production.Dockerfile:50
--------------------
  49 |     COPY Gemfile Gemfile.lock ./
  50 | &gt;&gt;&gt; RUN bundle install &amp;&amp; \
  51 | &gt;&gt;&gt;     rm -rf ~/.bundle/ "${BUNDLE_PATH}"/ruby/*/cache "${BUNDLE_PATH}"/ruby/*/bundler/gems/*/.git &amp;&amp; \
  52 | &gt;</code></pre>]]></description><link>https://sbounmy.com/kamal-error-137/</link><guid isPermaLink="false">65cf74fbd7feee0599e58da3</guid><dc:creator><![CDATA[Stephane Bounmy]]></dc:creator><pubDate>Fri, 16 Feb 2024 14:50:14 GMT</pubDate><content:encoded><![CDATA[<p>I was always able to deploy until few days ago </p><pre><code class="language-sh">------
production.Dockerfile:50
--------------------
  49 |     COPY Gemfile Gemfile.lock ./
  50 | &gt;&gt;&gt; RUN bundle install &amp;&amp; \
  51 | &gt;&gt;&gt;     rm -rf ~/.bundle/ "${BUNDLE_PATH}"/ruby/*/cache "${BUNDLE_PATH}"/ruby/*/bundler/gems/*/.git &amp;&amp; \
  52 | &gt;&gt;&gt;     bundle exec bootsnap precompile --gemfile
  53 |     
--------------------
ERROR: failed to solve: process "/bin/sh -c bundle install &amp;&amp;     rm -rf ~/.bundle/ \"${BUNDLE_PATH}\"/ruby/*/cache \"${BUNDLE_PATH}\"/ruby/*/bundler/gems/*/.git &amp;&amp;     bundle exec bootsnap precompile --gemfile" did not complete successfully: exit code: 137
</code></pre><p>Exit code 137 : means out of memory from Docker</p><p></p><p>I have an Hetzner 2go ram</p><h1 id="free-h">free -h</h1><pre><code class="language-sh">Mem:           1.9Gi       1.2Gi       102Mi        20Mi       544Mi       433Mi</code></pre><p></p><p>I found another user on discord that also had an M2 (Apple Silicon) with Rosetta enabled. Adding <code>multiarch</code> fixes it</p><pre><code class="language-yml">builder:
  dockerfile: production.Dockerfile
  multiarch: false # fixes 137 error out of memory
  remote:
    arch: amd64
    host: ssh://root@xxx.xxx.xxx.xxx</code></pre>]]></content:encoded></item><item><title><![CDATA[Loyers en Bitcoins : Pourquoi pas ?]]></title><description><![CDATA[<figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2023/12/CleanShot-2023-12-31-at-09.37.09@2x.png" class="kg-image" alt><figcaption>Simulation sur swiss pay si j'avais recu mes loyers en BTC depuis 2016 :)</figcaption></figure><p>Ma petite histoire.</p><p>2013 – je découvre le bitcoin en minant (sans savoir vraiment ce que c'était).<br>2016 – je lance des <a href="https://sbounmy.com/loyers-en-bitcoins-si-javais-su/hackerhouse.world">hackerhouse</a>, coliving pour geeks.<br>2020, – je (re)découvre bitcoin et son interet politique et révolutionnaire.<br>2023 – je</p>]]></description><link>https://sbounmy.com/loyers-en-bitcoins-si-javais-su/</link><guid isPermaLink="false">65912815d7feee0599e58c69</guid><dc:creator><![CDATA[Stephane Bounmy]]></dc:creator><pubDate>Thu, 08 Feb 2024 09:26:00 GMT</pubDate><content:encoded><![CDATA[<figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2023/12/CleanShot-2023-12-31-at-09.37.09@2x.png" class="kg-image" alt><figcaption>Simulation sur swiss pay si j'avais recu mes loyers en BTC depuis 2016 :)</figcaption></figure><p>Ma petite histoire.</p><p>2013 – je découvre le bitcoin en minant (sans savoir vraiment ce que c'était).<br>2016 – je lance des <a href="https://sbounmy.com/loyers-en-bitcoins-si-javais-su/hackerhouse.world">hackerhouse</a>, coliving pour geeks.<br>2020, – je (re)découvre bitcoin et son interet politique et révolutionnaire.<br>2023 – je décide de travailler sur bitcoin en laissant mes locataires payer en bitcoin (conjointement avec CB/virement via Stripe)<br></p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2023/12/CleanShot-2023-12-21-at-17.48.46.gif" class="kg-image" alt><figcaption>J'ai décidé d'en faire un micro-SaaS : <a href="https://n28.fr">n28.fr</a></figcaption></figure><p></p><h1 id="comment-accepter-des-loyers-en-bitcoin">Comment accepter des loyers en bitcoin ?</h1><p>Je ne savais pas trop où commencer. La plupart des repos en ruby sont soit :</p><ul><li>plus à jour &gt; 3 ans <a href="https://github.com/Sailias/cryptocoin_payable">https://github.com/Sailias/cryptocoin_payable</a></li><li>DIY (simple wrapper RPC) <a href="https://github.com/lian/bitcoin-ruby">https://github.com/lian/bitcoin-ruby</a></li></ul><p>Du coup je décide de reprendre cryptocoin_payable même si je trouve qu'il est trop rigide.</p><p>En parallèle je lis Mastering Bitcoin, je recommande la version anglaise car la francaise n'est pas top.</p><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://github.com/clojurians-org/blockchain-ebook/blob/master/OReilly.Mastering.Bitcoin.2nd.Edition.2017.6.pdf"><div class="kg-bookmark-content"><div class="kg-bookmark-title">blockchain-ebook/OReilly.Mastering.Bitcoin.2nd.Edition.2017.6.pdf at master · clojurians-org/blockchain-ebook</div><div class="kg-bookmark-description">Contribute to clojurians-org/blockchain-ebook development by creating an account on GitHub.</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://github.githubassets.com/favicons/favicon.svg"><span class="kg-bookmark-author">clojurians-org</span><span class="kg-bookmark-publisher">GitHub</span></div></div><div class="kg-bookmark-thumbnail"><img src="https://opengraph.githubassets.com/31bd9acf662a1002a6012feae54573f871e6d2e257aacb7ad0ad2b50ed17a92a/clojurians-org/blockchain-ebook"></div></a></figure><p></p><h1 id="loyer-en-bitcoin-une-valeur-refuge">Loyer en Bitcoin - une valeur refuge</h1><p>Je pense que c'est l'une des raisons qui m'ont poussé à développer cette fonctionnalité et étudier Bitcoin en tant que développeur.</p><p>En 2016, avec 1 Bitcoin je pouvais acheter 1 iphone.<br>Aujourd'hui je peux acheter 1 Tesla.</p><p>Pouvoir se protéger de l'inflation et surtout en tant que propriétaire, je voulais continuer à diversifier mes investissements.</p><p>Pouvoir proposer 1 à 2 chambres en loyers bitcoins, le reste en FIAT afin de continuer à rembourser le crédit.</p><h1 id="stripe-vs-bitcoin">Stripe vs Bitcoin</h1><p>Depuis 2016, j'ai automatisé le paiement des loyers via Stripe malgré les frais bancaires ~1% à l'époque. Pourquoi ?</p><ul><li>Permet à mes locataires de <strong>réserver à distance (sans visiter)</strong> via un acompte de réservation (1 mois) un peu comme Airbnb.</li><li><strong>Prélèvement des loyers mensuels au 1er de chaque mois.</strong><br>En cas d'impayés ou de retard de paiement, je suis au courant de la situation : fonds insuffisant ou plafond atteint par ex. Du coup je peux me rapprocher du locataire pour en apprendre plus sur ce qui s'est passé.</li><li></li></ul><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2023/12/CleanShot-2023-12-31-at-10.19.16@2x.png" class="kg-image" alt><figcaption>Frais Stripe en 2023</figcaption></figure><p></p><h1 id="virements-bancaires-vs-bitcoin">Virements bancaires vs Bitcoin</h1><p>Oui on me dira qu'il existe le virement bancaire. Mais pour moi :</p><ul><li>Ajout d'une friction au paiement : ajout de bénéficiaire + émettre le virement</li><li>Pas d'analytics possibles via Stripe et autres SaaS</li><li>Pas d'automatisation de création de facture etc via Pennylane.</li></ul><h1 id="comment-accepter-des-loyers-en-bitcoin-1">Comment accepter des loyers en bitcoin ?</h1><p></p><h1 id="inciter-les-locataires-payer-en-bitcoin">Inciter les locataires à payer en Bitcoin</h1><p></p><h1 id="bail-de-location-pour-un-paiement-en-bitcoin">Bail de location pour un paiement en Bitcoin</h1><p></p><h1 id="litige-dans-un-paiement-bitcoin">Litige dans un paiement bitcoin</h1><p></p><h1></h1><p></p><h1></h1>]]></content:encoded></item><item><title><![CDATA[omniauth.origin nil when test_mode=true]]></title><description><![CDATA[<p></p><p>For some reason I had <code>request['omniauth.origin'] == nil</code> in my system test but not in development.</p><p>After banging my head, I noticed</p><pre><code class="language-ruby">   def mock_request_call
      setup_phase

      session['omniauth.params'] = request.GET

      OmniAuth.config.request_validation_phase.call(env) if OmniAuth.config.request_validation_phase
      OmniAuth.config.before_</code></pre>]]></description><link>https://sbounmy.com/omniauth-origin-nil-when-test_mode-true/</link><guid isPermaLink="false">65ba6faed7feee0599e58d5d</guid><dc:creator><![CDATA[Stephane Bounmy]]></dc:creator><pubDate>Wed, 31 Jan 2024 16:17:31 GMT</pubDate><content:encoded><![CDATA[<p></p><p>For some reason I had <code>request['omniauth.origin'] == nil</code> in my system test but not in development.</p><p>After banging my head, I noticed</p><pre><code class="language-ruby">   def mock_request_call
      setup_phase

      session['omniauth.params'] = request.GET

      OmniAuth.config.request_validation_phase.call(env) if OmniAuth.config.request_validation_phase
      OmniAuth.config.before_request_phase.call(env) if OmniAuth.config.before_request_phase

      if options.origin_param
        if request.params[options.origin_param]
          session['omniauth.origin'] = request.params[options.origin_param]
        elsif env['HTTP_REFERER'] &amp;&amp; !env['HTTP_REFERER'].match(/#{request_path}$/)
          session['omniauth.origin'] = env['HTTP_REFERER']
        end
      end

      redirect(callback_url)
    end</code></pre><p><code>session.keys</code> returns` 'omniauth.origin', 'omniauth.params',..`</p><p>Then when we get to </p><pre><code>    def mock_callback_call
      setup_phase
      @env['omniauth.origin'] = session.delete('omniauth.origin')
      @env['omniauth.origin'] = nil if env['omniauth.origin'] == ''
      @env['omniauth.params'] = session.delete('omniauth.params') || {}

      mocked_auth = OmniAuth.mock_auth_for(name.to_s)
      if mocked_auth.is_a?(Symbol)
        fail!(mocked_auth)
      else
        @env['omniauth.auth'] = mocked_auth
        OmniAuth.config.before_callback_phase.call(@env) if OmniAuth.config.before_callback_phase
        call_app!
      end
    end</code></pre><p>session.keys returns []</p><p></p><p>It was because I broke the session store in test env in <code>initializers/session_store.rb</code> :</p><pre><code>if Rails.env.production?
  Rails.application.config.session_store :cookie_store, key: '_app_session', domain: 'app.fr', tld_length: 2
else
  Rails.application.config.session_store :cookie_store, key: '_app_session', domain: 'app.dev', tld_length: 2
end</code></pre><p>I did this to handle cross subdomain session so authenticated user (oauth) from en.app.dev would still be connected when going to app.dev for ex.</p><p>I've corrected it for test :</p><pre><code>if Rails.env.production?
  Rails.application.config.session_store :cookie_store, key: '_app_session', domain: 'app.fr', tld_length: 2
elsif 
  Rails.application.config.session_store :cookie_store, key: '_app_session', domain: 'app.dev', tld_length: 2
else
  Rails.application.config.session_store :cookie_store, key: '_app_session', tld_length: 2  
end</code></pre>]]></content:encoded></item><item><title><![CDATA[Punaise de lit en colocation et coliving]]></title><description><![CDATA[<p></p><p>[UPDATE 05/2024] : je touche du bois plus de punaise. Le point clé est d'avoir 2-3 actions mécaniques : terre de diatomée (spray), piège pied de lit et piège au phéromone.</p><p>Avant d'écrire ce post je n'imaginais pas à quel point ce problème pouvait impacter notre activité de coliving et surtout</p>]]></description><link>https://sbounmy.com/punaise-lit-traitement/</link><guid isPermaLink="false">60a3693714c8c404cde7d2ad</guid><dc:creator><![CDATA[Stephane Bounmy]]></dc:creator><pubDate>Mon, 21 Jun 2021 08:23:01 GMT</pubDate><media:content url="https://sbounmy.com/content/images/2021/06/maxresdefault.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://sbounmy.com/content/images/2021/06/maxresdefault.jpg" alt="Punaise de lit en colocation et coliving"><p></p><p>[UPDATE 05/2024] : je touche du bois plus de punaise. Le point clé est d'avoir 2-3 actions mécaniques : terre de diatomée (spray), piège pied de lit et piège au phéromone.</p><p>Avant d'écrire ce post je n'imaginais pas à quel point ce problème pouvait impacter notre activité de coliving et surtout le business lucratif qui se cache derrière le traitement de punaise de lit.</p><p>1er réflexe : appeler un professionnel. Je préfère prévenir : il n'y a pas de solution magique pour éradiquer les punaises mais un protocol méticuleux à suivre.</p><p>J'espère que mes erreurs aideront plus d'un.</p><p>PS : cette vidéo m'a beaucoup aidé </p><figure class="kg-card kg-embed-card"><iframe width="356" height="200" src="https://www.youtube.com/embed/G7LIIpx0E3k?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><p>Après avoir suivi ses conseils, on a eu une piqure sur un colocataire mais depuis très peu, on croise les doigts. Voici un tweet qui résume les étapes :</p><figure class="kg-card kg-embed-card"><blockquote class="twitter-tweet" data-width="550"><p lang="en" dir="ltr">Back on twitter - been fighting bed bugs, this is real <a href="https://twitter.com/hashtag/coliving?src=hash&amp;ref_src=twsrc%5Etfw">#coliving</a> 🧵</p>&mdash; Stephane Bounmy (@sbounmy) <a href="https://twitter.com/sbounmy/status/1390561756137799681?ref_src=twsrc%5Etfw">May 7, 2021</a></blockquote>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</figure><h2 id="appel-un-professionnel-des-punaises-de-lit">Appel à un professionnel des punaises de lit </h2><p>En me basant sur les avis google, j'ai choisis Docteur nuisible.</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2021/05/Screenshot-2021-05-18-at-09.22.37.png" class="kg-image" alt="Punaise de lit en colocation et coliving"></figure><p>Les prix sont affichés sur le site. Pour un appartement de 80m2 il faut compter 2 passages + 4 fumigateur soit environ 620€.</p><p>Il faut savoir qu'au téléphone on tombe sur un centre d'appel et que les intervenants sont de simples auto-entrepreneurs avec des produits chimiques.</p><p>Résultat des courses :</p><ul><li>Après le 1er passage : pas de punaise pendant 1 semaine</li><li>Après le 2ème passage : pas de punaise pendant 24h</li></ul><p>Il faut savoir que le professionnel ne s'impliquera pas autant que vous dans l'éradication des punaises – car à chaque piqure il faudra que vous traitiez l'espace.</p><h2 id="traiter-soi-m-me-les-punaises-de-lit">Traiter soi-même les punaises de lit</h2><h3 id="le-mat-riel">Le matériel</h3><p>J'en ai eu pour environ 700€ de matériel - soit autant que 2 passages d'un professionnel...</p><h3 id="lampe-uv-rechargeable-usb">Lampe UV rechargeable USB</h3><p>Pas vraiment obligatoire mais m'a aidé à mieux voir les nids de punaise de lit</p><h3 id="machine-vapeur-haute-pression">Machine vapeur haute pression</h3><p>Au début j'ai essayé un karcher cependant le Polti Eradicator Cimex est plus efficace :</p><ul><li>température à 140º</li><li>vapeur à 4.5 bar et sèche </li><li>solution aseptisante (non obligatoire je pense)</li></ul><p>Les punaises meurent dès 60º.</p><!--kg-card-begin: html--><iframe style="width:120px;height:240px;" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" src="//ws-eu.amazon-adsystem.com/widgets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=FR&source=ac&ref=tf_til&ad_type=product_link&tracking_id=sbounmy-21&marketplace=amazon&amp;region=FR&placement=B00F62K2XM&asins=B00F62K2XM&linkId=543d2318cce7c0f65e2668ca0f659c3a&show_border=false&link_opens_in_new_window=true&price_color=333333&title_color=0066c0&bg_color=ffffff"></iframe><!--kg-card-end: html--><h3 id="aedex-ec">AEDEX EC</h3><p>Il s'agit d'une solution à diluer beaucoup plus efficace que ceux vendu dans le commerce. Vous pourrez controler la dilution (2 bouchons pour 1 L d'eau). C'est aussi beaucoup plus économique que les spray</p><!--kg-card-begin: html--><iframe style="width:120px;height:240px;" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" src="//ws-eu.amazon-adsystem.com/widgets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=FR&source=ac&ref=tf_til&ad_type=product_link&tracking_id=sbounmy-21&marketplace=amazon&amp;region=FR&placement=B0737J8QK9&asins=B0737J8QK9&linkId=59424594fbccd8f475d459c695e5873a&show_border=false&link_opens_in_new_window=true&price_color=333333&title_color=0066c0&bg_color=ffffff"></iframe><!--kg-card-end: html--><p>Si vous ne voulez pas mélanger ce spray contient la même molécule :</p><!--kg-card-begin: html--><iframe style="width:120px;height:240px;" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" src="//ws-eu.amazon-adsystem.com/widgets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=FR&source=ac&ref=tf_til&ad_type=product_link&tracking_id=sbounmy-21&marketplace=amazon&amp;region=FR&placement=B07DR471SC&asins=B07DR471SC&linkId=238a144200c66c0f86781faef6060954&show_border=false&link_opens_in_new_window=true&price_color=333333&title_color=0066c0&bg_color=ffffff"></iframe><!--kg-card-end: html--><h3 id="vaporisateur-eau">Vaporisateur à eau</h3><p>N'importe lequel fera l'affaire – ou récupérez un de chez vous !</p><h3 id="bombe-spray-terre-de-diatom-e">Bombe spray Terre de diatomée</h3><p>Beaucoup plus pratique et moins salissant que la terre de diatomée en poudre, elle permet de faire des barrières aux punaises - sans produit chimique.</p><!--kg-card-begin: html--><iframe style="width:120px;height:240px;" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" src="//ws-eu.amazon-adsystem.com/widgets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=FR&source=ac&ref=tf_til&ad_type=product_link&tracking_id=sbounmy-21&marketplace=amazon&amp;region=FR&placement=B06Y25SSRK&asins=B06Y25SSRK&linkId=49605b66ec6f5598481b285437d99ea2&show_border=false&link_opens_in_new_window=true&price_color=333333&title_color=0066c0&bg_color=ffffff"></iframe><!--kg-card-end: html--><p></p><p>Pour ceux qui sont sur Paris, une boutique vend l'AEDEX EC et la bombe de diatomée à 15€ chacun et le personnel est sympatique et n'essaie pas de vous vendre de prestations – ça évite aussi les frais de pot <a href="https://www.acticide.paris">https://www.acticide.paris</a></p><p></p><p>Piège pied de lit</p><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://www.amazon.fr/ECOPEST-Intercepteurs-Punaises-Lit-Dispositif/dp/B07SPDXVMM/ref&#x3D;sr_1_3?dib&#x3D;eyJ2IjoiMSJ9.3CEY4w93Wb9TG0xpvkXMB4sQJLGXKL61EGgmtiyL66h8kMKrQQgPKlEMf_TZYk6vg-_QgfqVwLgL4nd6Sts6SXeNsoznlvq3YfwHQlbfljzr3vL6MMMxShO64xpOu-5M7HpMDFJYYH5AyfnQhnBb-RKDO9xIxMS6lkNG9ps8b8gbXGhV36XdL41sNVAH_3bvTQzX9vog1H5Dh8R6q9Y7j6a1x7EP4hMBW5jnwpn1P_I.dj2TLh2KYTZq6kVHCfVRMP4bqf8iZtWfR7whMioDzvY&amp;dib_tag&#x3D;se&amp;keywords&#x3D;piege+a+punaise+de+lit&amp;qid&#x3D;1715856048&amp;sr&#x3D;8-3"><div class="kg-bookmark-content"><div class="kg-bookmark-title">Amazon.fr</div><div class="kg-bookmark-description"></div><div class="kg-bookmark-metadata"></div></div><div class="kg-bookmark-thumbnail"><img src="https://images-na.ssl-images-amazon.com/captcha/ddwwidnf/Captcha_ewgvapqddg.jpg" alt="Punaise de lit en colocation et coliving"></div></a></figure><p></p><h2 id="d-tecter-les-punaises-de-lit">Détecter les punaises de lit</h2><p>Oui il faut observer les petites crottes des punaises qui sont comme des tâches d'encre.</p><p>Cela vous indiquera les potentiels nids et de traiter en priorité ces endroits au lieu de retourner tout l'appartement.</p><h2 id="traitement-des-punaises-de-lit">Traitement des punaises de lit</h2><ol><li>Traiter les punaises de lit avec le Polti<br>La première chose à faire est de traiter avec la machine à vapeur afin de tuer les punaises atteignables.</li><li>Boucher les trous au joint silicone<br>Les punaises se cachent souvent près de l'hôte et dans mon cas elles se sont cachées dans les trous des visseries des montants des lits.<br>Les punaises sont le cauchemar des hotels et leur solution ont toujours été de reboucher en priorité les interstices et recoins au silicon afin d'enfermer les nids ou d'éviter que ça réaparraisse !</li><li>Vaporiser l'insecticide AEDEX EC<br>L'action chimique est nécessaire car avec le Polti il est possible d'en louper! A la nuit tombée, lorsque les punaises reviennent vous piquer et en contact avec le produit chimique elles meurent.</li><li>Appliquer la terre de diatomée proche des nids et du lit afin de faire une barrière mécanique aux punaises qui reviendront.</li></ol><p>Vetements</p><h3 id="apr-s-le-traitement">Après le traitement</h3><p>Il est important de continuer à dormir dans les pièces car en attirant les punaises restantes elles se prendront au piège de :</p><ul><li>l'insecticide AEDEX EC</li><li>La barrière en terre de diatomée en spray <a href="https://votre-expert-anti-nuisibles.com/solutions-bio-insectes/230-diatomex-terre-de-diatomee-en-spray.html">https://votre-expert-anti-nuisibles.com/solutions-bio-insectes/230-diatomex-terre-de-diatomee-en-spray.html</a></li></ul><p>A chaque nouvelle piqure – ré-appliquer de l'AEDEX sur les literies et autour du lit  1h avant de dormir.</p><p>Piège Punaise de lit avec phéromone</p><p>Ca a été très efficace pour attirer les derniers survivants (punaises).<br>Je recommande le Trappit que l'on retrouve en lot :</p><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://www.excellium-antinuisibles.com/499-636-trappit-bb-detector-piege-a-punaises-de-lit-avec-attractif-pheromone.html#/103-conditionnement-lot_de_10"><div class="kg-bookmark-content"><div class="kg-bookmark-title">Trappit BB Detector piège à punaises de lit avec attractif phéromone</div><div class="kg-bookmark-description">Trappit BB DETECTOR PLUS est un piège d’une efficacité redoutable contre les punaises de lit grâce à son attractif à la phéromone. A placer sous lits et meubles.</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://www.excellium-antinuisibles.com/img/favicon.ico?1637079377" alt="Punaise de lit en colocation et coliving"><span class="kg-bookmark-author">Csicsi</span><span class="kg-bookmark-publisher">Excellium antinuisibles</span></div></div><div class="kg-bookmark-thumbnail"><img src="https://www.excellium-antinuisibles.com/1847-large_default/trappit-bb-detector-piege-a-punaises-de-lit-avec-attractif-pheromone.jpg" alt="Punaise de lit en colocation et coliving"></div></a></figure><h3 id="conclusion">Conclusion</h3><p>Le traitement des punaises de lit est un <strong>traitement continu.</strong> Il est important de s'armer de patience et faire preuve d'observation.<br></p><p>Les punaises de lit ne remet pas en cause l'hygiène des colocataires ou autres – c'est juste qu'à un instant T un colocataire en a ramené et puis infecté tout l'appartement.</p><p>Me concernant le 3 et 4 Mai 2021, j'ai effectué un nettoyage complet en suivant le protocol. Les colocataires se sont fait piqué une seule fois. A ce jour je n'ai pas eu de nouvelle vague - on croise les doigts ,...</p><p>N'oubliez pas d'appliquer de la terre de diatomée sur le contour de vos portes et fenetres pour eviter que vos voisins soient aussi infectés (vis/versa).</p>]]></content:encoded></item><item><title><![CDATA[Coliving étudiant à Paris - Les bons plans 2021]]></title><description><![CDATA[<p>Petit rappel des avantages des Coliving :</p><ul><li>Flexibles<br>1 à 8 mois - parfait pour des stages de fin d'études ou un échange d'un trimestre</li><li>Tous inclus<br>Pas besoin d'acheter des meubles, s'inscrire à EDF ou Internet...</li><li>Faire des rencontres<br>Plutôt que d'être seul dans un studio tu pourras faire des</li></ul>]]></description><link>https://sbounmy.com/coliving-paris-etudiant/</link><guid isPermaLink="false">607e882114c8c404cde7d194</guid><category><![CDATA[Coliving]]></category><dc:creator><![CDATA[Stephane Bounmy]]></dc:creator><pubDate>Tue, 20 Apr 2021 08:59:00 GMT</pubDate><media:content url="https://sbounmy.com/content/images/2021/04/unplan-hostel.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://sbounmy.com/content/images/2021/04/unplan-hostel.jpg" alt="Coliving étudiant à Paris - Les bons plans 2021"><p>Petit rappel des avantages des Coliving :</p><ul><li>Flexibles<br>1 à 8 mois - parfait pour des stages de fin d'études ou un échange d'un trimestre</li><li>Tous inclus<br>Pas besoin d'acheter des meubles, s'inscrire à EDF ou Internet...</li><li>Faire des rencontres<br>Plutôt que d'être seul dans un studio tu pourras faire des amis et souvent les espaces communs des colivings aident :)</li></ul><p>On retrouve souvent ces critères communs :</p><ul><li>à partir de 70 m2</li><li>à partir de 6 colocataires</li><li>à partir de 900€ pour une chambre privée</li></ul><h2 id="lacartedescolocs-paris-pour-tudiants">LaCarteDesColocs à Paris pour étudiants</h2><p>LaCarteDesColocs regorgent de bons plans ! Car c'est souvent les colocs sur place qui postent ou bien un propriétaire un peu d'jeuns :)</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-20-at-10.11.23.png" class="kg-image" alt="Coliving étudiant à Paris - Les bons plans 2021"><figcaption>Exemple de filtres pour trouver des Coliving</figcaption></figure><p>Voici le type d'annonce que l'on peut trouver :</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-20-at-10.11.57.png" class="kg-image" alt="Coliving étudiant à Paris - Les bons plans 2021"></figure><p>L'avantage de la Carte Des Colocs c'est qu'il n'y a pas d'intermédiaire - pas de frais sauf si c'est une agence qui poste l'annonce mais ça reste très humain.</p><p>Le bémol ce sont les annonces qui sont de pauvre qualité.</p><p></p><h2 id="les-apl-tudiants-et-les-coliving-paris">Les APL étudiants et les Coliving à Paris</h2><p>Pour rappel les APL sont éligibles uniquement quand il s'agit de ta résidence principale soit plus de 8 mois (officiellement).</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-20-at-10.22.23.png" class="kg-image" alt="Coliving étudiant à Paris - Les bons plans 2021"><figcaption><a href="https://www.service-public.fr/particuliers/vosdroits/F12006">https://www.service-public.fr/particuliers/vosdroits/F12006</a></figcaption></figure><h3 id="studios-all-inclusive-colonies">Studios all inclusive | Colonies</h3><p>Les durées sont souvent de 1 an, ils sont du coup normalement éligibles <a href="https://livecolonies.crisp.help/fr/article/eligibilite-aux-aplals-1wtowpb/">https://livecolonies.crisp.help/fr/article/eligibilite-aux-aplals-1wtowpb/</a></p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-20-at-10.18.49.png" class="kg-image" alt="Coliving étudiant à Paris - Les bons plans 2021"></figure><h3 id="maison-coliving-ile-de-france-lacasa">Maison Coliving ile de France | LaCasa</h3><p>Les prix vont de 800€ à 1 000€ et ils sont éligibles aux APL.</p><p>Les maisons sont à thèmes et les espaces communs qu'il proposent sont en fonction des thèmes :)</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-20-at-10.23.40.png" class="kg-image" alt="Coliving étudiant à Paris - Les bons plans 2021"><figcaption><a href="https://lacasa.io">https://lacasa.io</a></figcaption></figure><h3 id="pass-monde-coliving-tudiant-hackerhouse">Pass monde Coliving étudiant | HackerHouse</h3><p>À mon tour, étant donné que notre moyenne de séjour est de 3,5 mois - les étudiants ne sont donc officiellement pas éligibles aux APL.</p><p>Surtout que l'on propose un pass monde pour que chacun puisse télétravailler d'où il le souhaite.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-20-at-10.28.04.png" class="kg-image" alt="Coliving étudiant à Paris - Les bons plans 2021"><figcaption><a href="https://hackerhouse.world?ref=sbounmy">Coliving à Paris et dans le monde</a></figcaption></figure><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-20-at-10.29.44.png" class="kg-image" alt="Coliving étudiant à Paris - Les bons plans 2021"></figure><p>On a alors décidé de proposer une réduction de -15% pour les étudiants comme les SaaS. <em>On vérifie tout de même auprès de l'établissement 🤓</em></p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-20-at-10.29.33.png" class="kg-image" alt="Coliving étudiant à Paris - Les bons plans 2021"></figure><p>À noter que sur le pass <code>STANDARD</code> on retrouver souvent des chambres partagées à Paris et qu'en asie du sud - une chambre privée avec vue 🏝</p><h2 id="conclusion">Conclusion</h2><p>Les Colivings sont avant tout destinés aux jeunes actifs qu'aux étudiants (vu les prix).</p><p>Mais les services d'un Coliving et la durée de séjour plus courte font que cela se ressent sur les prix.</p><p>Certains Coliving permettent de bénéficier de remises "<a href="https://lacasa.io/le-coliving/guide-du-coliving/les-fondateurs">Fondateurs</a>" comme LaCasa ou de rémunérations "<a href="https://hackerhouse.world/booker\">Booker</a>" comme HackerHouse.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-20-at-10.44.53.png" class="kg-image" alt="Coliving étudiant à Paris - Les bons plans 2021"><figcaption><a href="https://hackerhouse.world/booker">Programme parrainage booker</a></figcaption></figure>]]></content:encoded></item><item><title><![CDATA[My 9 Bubble best practices as a developer]]></title><description><![CDATA[<p>I believe it is important to understand how I turned to Bubble as a developer and entrepreneur.</p><figure class="kg-card kg-embed-card"><blockquote class="twitter-tweet" data-width="550"><p lang="en" dir="ltr">Normal people + <a href="https://twitter.com/bubble?ref_src=twsrc%5Etfw">@bubble</a> = no-code. Developer + <a href="https://twitter.com/bubble?ref_src=twsrc%5Etfw">@bubble</a> = no-design. ✌️</p>&mdash; Stephane Bounmy (@sbounmy) <a href="https://twitter.com/sbounmy/status/1361615226098118658?ref_src=twsrc%5Etfw">February 16, 2021</a></blockquote>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</figure><h2 id="my-background">My Background</h2><ul><li>Master in CS - 2011</li><li>Ruby on Rails and Javascript since 2008</li><li>Worked for Startups (TaskRabbit) in</li></ul>]]></description><link>https://sbounmy.com/bubble-best-practices-developer/</link><guid isPermaLink="false">602b880f4d322f20c2eebafd</guid><dc:creator><![CDATA[Stephane Bounmy]]></dc:creator><pubDate>Tue, 06 Apr 2021 08:25:00 GMT</pubDate><media:content url="https://sbounmy.com/content/images/2021/04/WhatsApp-Image-2021-03-15-at-12.02.02.jpeg" medium="image"/><content:encoded><![CDATA[<img src="https://sbounmy.com/content/images/2021/04/WhatsApp-Image-2021-03-15-at-12.02.02.jpeg" alt="My 9 Bubble best practices as a developer"><p>I believe it is important to understand how I turned to Bubble as a developer and entrepreneur.</p><figure class="kg-card kg-embed-card"><blockquote class="twitter-tweet" data-width="550"><p lang="en" dir="ltr">Normal people + <a href="https://twitter.com/bubble?ref_src=twsrc%5Etfw">@bubble</a> = no-code. Developer + <a href="https://twitter.com/bubble?ref_src=twsrc%5Etfw">@bubble</a> = no-design. ✌️</p>&mdash; Stephane Bounmy (@sbounmy) <a href="https://twitter.com/sbounmy/status/1361615226098118658?ref_src=twsrc%5Etfw">February 16, 2021</a></blockquote>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</figure><h2 id="my-background">My Background</h2><ul><li>Master in CS - 2011</li><li>Ruby on Rails and Javascript since 2008</li><li>Worked for Startups (TaskRabbit) in San Francisco and Paris (Dimelo)</li><li>Growth Hacking / Entrepreneurship at Koudetat from TheFamily</li></ul><p><a href="https://fr.linkedin.com/in/stephanebounmy">https://fr.linkedin.com/in/stephanebounmy</a></p><p></p><h1 id="how-it-started">How it started</h1><p>Before I discovered Bubble I was using different tools to bootstraps ideas : Squarespace, Instapage or WIX.</p><p><a href="https://hackerhouse.world">HackerHouse</a> have been bootstrapped with </p><p>2015 – Squarespace</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2021/03/Square.png" class="kg-image" alt="My 9 Bubble best practices as a developer"></figure><p>2016 – React + ROR for the backend : payments, invoice and sign-in with linkedin to import user's image + bio</p><p><em>Need a capture...</em></p><p>2019 – Bubble</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2021/03/Screenshot-2021-02-23-at-17.46.55.png" class="kg-image" alt="My 9 Bubble best practices as a developer"></figure><h2 id="problem">Problem</h2><p>One day, it didn't worked anymore : people couldn't signup. We were loosing signups = money.</p><blockquote>I realised that it was too time consuming to run a solo founded marketplace and while writing the code, I could barely handle the growth.</blockquote><p>I was asking myself : API is only about CRUD - there might be someone who though about solving this no ?</p><h2 id="solution">Solution</h2><p>Over the week-end, I stumbled on two things: Webflow and Bubble.</p><p>I decided to give a shot on Bubble and never looked back since.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-06-at-09.42.45.png" class="kg-image" alt="My 9 Bubble best practices as a developer"><figcaption>It took me 4 hours to do all the lessons : easy and hard mode</figcaption></figure><p><br>Then it was time for me to migrate my existing Squarespace + React/Ruby to Bubble</p><p>My Aha moments :</p><ol><li>App Data<br>Creating a new field, renaming it, deleting have never been so easy... !</li><li>Geographic address<br>For someone who have worked with storing addresses in databases it is a killing feature !</li><li>API Connector<br>"Hey why don't we connect to X and fetch ...?" "Okay let's try" 15 min later it is live in bubbe 🙄</li></ol><p>Now let's dive into the lessons I've learned as a Bubble developer</p><h3 id="1-too-many-plugins-can-be-bad">1. Too many plugins can be bad</h3><p>Plugins are so easy : click and install. But then when you try it make sure it is worth any tweaks.</p><p>Bad about plugins :</p><ul><li>Slower apps</li><li>Can have side effects<br>We had this with<a href="https://bubble.io/plugin/wonderful-image-slider-1599995578736x177952455708377100"> Wonderful slider</a> : it was automacally sliding our slider and turning our website to dark mode... So we removed it </li><li>We also moved back from <a href="https://bubble.io/plugin/air-datetime-picker-1495642567089x595986733356023800">air date time picker</a> to native bubble date picker because of bugs and side effects</li></ul><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-06-at-09.56.33.png" class="kg-image" alt="My 9 Bubble best practices as a developer"></figure><p>Must have plugins</p><ul><li><a href="https://bubble.io/plugin/toolbox-1488796042609x768734193128308700">Javascript ToolBox</a><br>Pretty advanced plugin but essential if you need more flexiblity. We use it to store some extra current variable such as <code>Current House</code> or even calculation <code>Price Total</code></li><li><a href="https://bubble.io/plugin/classify-1568299250417x684448291308175400">Classify</a><br>Can add <code>id</code> and <code>class</code> so you can have more clean css/js interaction</li></ul><h2 id="2-app-search-tool">2. App Search Tool</h2><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-06-at-09.49.47.png" class="kg-image" alt="My 9 Bubble best practices as a developer"><figcaption>Life saving</figcaption></figure><p>Useful when you :</p><ul><li>Look if a plugin/field/element/API is used before deleting it</li><li>Redesign your app so you can find styles which are used</li></ul><h2 id="3-stripe-api">3. Stripe API</h2><p>I use indirect charges from Stripe :</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2021/03/Screenshot-2021-03-16-at-11.20.41.png" class="kg-image" alt="My 9 Bubble best practices as a developer"><figcaption>Buyer = User. Platform = HackerHouse. Seller = Hotels. <a href="https://stripe.com/en-fr/connect">Read more there</a></figcaption></figure><p>Destination charges allows you to control the transfer timing so Hotels gets paid once the User checks-in or at the end of the month.</p><p>In our case : User pays a down payment when he book then we transfer the money at the end of the month.</p><p>At the time I was using  Stripe, the official bubble plugin is not complete enough. So we just used API connector to connect to Stripe API.</p><h3 id="4-use-data-url-than-states-or-workflows">4. Use Data URL than states or workflows</h3><p>We heavily rely on <code>Data URL</code> than <code>States</code> for this reason : </p><p><a href="https://hackerhouse.world/all?place=station-f">https://hackerhouse.world/all?place=station-f</a> shows the correct results but if you were using states / input it would not.</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-06-at-09.58.19.png" class="kg-image" alt="My 9 Bubble best practices as a developer"></figure><h2 id="5-styles">5. Styles</h2><p>We use <a href="https://getbootstrap.com/docs/4.0/components/buttons/">bootstrap's</a> naming for our styles.</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-06-at-10.08.36.png" class="kg-image" alt="My 9 Bubble best practices as a developer"></figure><p>Buttons</p><ul><li>Primary Button</li><li>Secondary Button</li></ul><p>Texts</p><ul><li>H1, H2, H3</li><li>Extra Large, Large, Medium and Small</li></ul><p>We happened to have some variant such as H3 Border Bottom when a style becomes repetitive :)</p><h3 id="6-responsive-and-mobile">6. Responsive and Mobile</h3><p>We use a 1366px width responsive</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-06-at-10.10.57.png" class="kg-image" alt="My 9 Bubble best practices as a developer"></figure><p>Then we have a group <code>Section</code> with 80% minimum and 100% maximum</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-06-at-10.11.49.png" class="kg-image" alt="My 9 Bubble best practices as a developer"></figure><p>Our real secret is that we have Mihaja, our "responsive guy" who is an expert to make it mobile friendly :)</p><h3 id="7-remote-pair-programming">7. Remote pair-programming</h3><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2021/04/Screenshot-2021-04-06-at-10.23.39.png" class="kg-image" alt="My 9 Bubble best practices as a developer"></figure><h2 id="8-missing-bubble-features-be-patient">8. Missing bubble features - be patient</h2><p>Happens many times where something is missing in bubble such as :</p><ul><li>Responsive Repeating Group height</li><li>Send multiple parameters to reusable elements</li><li>expose synchronizable states from reusable elements (create a plugin is better for this)</li></ul><p>Don't always fight. think differently about your feature and keep it simple.<br>The reason is that you will introduce bug as you try to fix bubble or on a new update your code won't work anymore and you will spend time investigating.<br>Less is more :)</p><h2 id="9-continuous-integrations-tests-your-bubble-app">9. Continuous Integrations tests your bubble app</h2><p>You can use QAWolf to write tests for your bubble app.</p><p>We've done a few videos there </p><figure class="kg-card kg-embed-card"><iframe width="267" height="200" src="https://www.youtube.com/embed/pdmlKopZ8JU?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><p>Long conversation in French sorry</p><p><a href="https://www.twitch.tv/videos/970058486">https://www.twitch.tv/videos/970058486</a></p><h2 id="conclusion">Conclusion</h2><ul><li>Deploy every week :_)</li><li>If you don't have bugs in live it means you are not deploying enough</li><li>Always be responsive</li><li>Keep in mind SEO - Bubble is doing pretty OK for an SPA</li><li>Always be iterating on your product with data's and user feedback</li></ul><p></p><p><em>If you have any questions you can find me on <a href="https://sbounmy.com/bubble-best-practices-developer/twitter.com/sbounmy">twitter</a> or take my bubble advanced bootcamp at <a href="http://hackerhouse.world/piscine/bubble">HackerHouse</a></em></p>]]></content:encoded></item><item><title><![CDATA[Call avec Oussama Ammar – Scaler comme un pirate 🏴‍☠️]]></title><description><![CDATA[<p>Je cold email Oussama un peu pour demander de l'aide : je passe de 25 couchages à 12 000 sur 15 hôtels en Europe.</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2021/01/Screenshot-2021-01-26-at-14.57.52.jpg" class="kg-image" alt></figure><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2021/01/Screenshot-2021-01-26-at-15.00.59.jpg" class="kg-image" alt><figcaption>Call Booked :)</figcaption></figure><p>Je me rappelle comme si c'était hier j'ai réussi le call comme un transcript</p><p></p><p>Moi : Hello Oussama, tu vas bien ?</p><p>Ouss : Bien merci et toi</p>]]></description><link>https://sbounmy.com/scale-oussama-ammar-the-family/</link><guid isPermaLink="false">5fa3d571d2b4f50fcc90ca90</guid><dc:creator><![CDATA[Stephane Bounmy]]></dc:creator><pubDate>Tue, 16 Feb 2021 08:48:35 GMT</pubDate><media:content url="https://sbounmy.com/content/images/2021/02/https___cdn.evbuc.com_images_81981629_244787478139_1_original.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://sbounmy.com/content/images/2021/02/https___cdn.evbuc.com_images_81981629_244787478139_1_original.jpg" alt="Call avec Oussama Ammar – Scaler comme un pirate 🏴‍☠️"><p>Je cold email Oussama un peu pour demander de l'aide : je passe de 25 couchages à 12 000 sur 15 hôtels en Europe.</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2021/01/Screenshot-2021-01-26-at-14.57.52.jpg" class="kg-image" alt="Call avec Oussama Ammar – Scaler comme un pirate 🏴‍☠️"></figure><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2021/01/Screenshot-2021-01-26-at-15.00.59.jpg" class="kg-image" alt="Call avec Oussama Ammar – Scaler comme un pirate 🏴‍☠️"><figcaption>Call Booked :)</figcaption></figure><p>Je me rappelle comme si c'était hier j'ai réussi le call comme un transcript</p><p></p><p>Moi : Hello Oussama, tu vas bien ?</p><p>Ouss : Bien merci et toi Stéphane ? (on l'entends encore bailler)</p><p>Moi : Super merci, bon as regardé un peu ce qu'on fait ?</p><p>Ouss : Oui bien sûr</p><p>Moi : Top ! Bon bah voilà pour te résumer depuis le COVID on a deal avec les hôtels dont Accor. On a une comm de 15% HT sur toutes les transactions. On a sorti un pass monde pour que les gens puissent bouger d'hotels en hotels chaque mois. On a 12 000 couchages et on est entrain de préparer une levée. Qu'est ce que tu en penses ?</p><p>Ouss : Attends tu prends 15% HT net sur Accor alors que Booking ne prends que 8% ? Un hôtel ça marge à 25%.<br>Ton but là c'est de remplir vite et ne pas se disperser :</p><ul><li>oublie ta levée tu vas perdre 2 à 6 mois, temps que tu n'as pas et en plus tu auras des B.A chiants à qui reporter</li><li>oublie ton pass : l'idée est bonne mais on est tous confinés et  si tu changes de business model alors que tu n'as rien prouvé c'est pas bon – tu mettras le doute dans tes deals<br></li></ul><p>Je ferais de l'affiliation sur toutes les plateformes de freelances </p><ul><li>Tu touches 15% ? Donne la moitié soit 7,5% sur tout ce qui rentre</li><li>Tu onboard une armée de freelances qui bosseront avec toi</li><li>Avec le COVID crois moi que se faire de l'argent à distance depuis chez soi...</li></ul><p>Ouss : A combien est une chambre ? </p><p>Moi : 1500€ / mois et la durée moyenne est de 3 mois.</p><p>Ouss : Regarde, Ca fait une comm de 225€ / mois soit 675€ : tu redonnes la moitié soit environ 300€ .<br>			Il rentre 10 clients par mois il peut gagner 3 000€ / mois. Il peut même le faire à la main: par email et téléphone.<br>Tu ne penses pas qu'en cette période de confinement des gens refuseraient de gagner 3 000€ / mois en télétravail ?</p><p>Moi : Tu passerais par quels canaux pour ça ?<br><br>Ouss : Tu as toutes les plateformes Fiverr, Upwork, Malt etc</p><ul><li>tu déroule ton offre avec une guideline</li><li>dans chaque langue</li><li>avec un code unique dans les liens</li><li>tu track le CA qu'ils apportent</li><li>200 à 300 personnes d'ici quelques mois</li></ul><p>Moi : Ok donc toi tu penses qu'il faut directement aller sur le <a href="https://deux.io/framework-aarrr/">Referral</a> ?</p><p>Ouss : Tu as une opportunité de faire 5 à 10M en 1 an.<br>Ton Product Market Fit est évident – l'infra est à dispo, ta supply scale. Tu as un alignment des étoiles incroyables. La seule chose à faire est de : vendre.<br>Tous les jours tu auras des gens qui vendent ton produit à travers le monde.<br>Ton process c'est d'onboarder 100 freelances par mois via les plateformes.<br>Ils vont même faire de l'adwords pour promouvoir ton site<br>L'intermédiation doit être bien documenté.<br><br>Bien motiver les gens : plateforme d'affiliations et freelances.<br>Ne rien mettre en publique, faire un process pour tester les gens<br>Dérouler le process avec l'aide de stagiaires</p><p>Dans 30 j tu auras 50 personnes qui vendent<br>Dans 3 mois plusieurs centaines</p><p>Et les chiffres vont monter.</p><p>Moi : Ok, merci. Du coup comment TheFamily peut m'aider ?</p><p>Ouss : Bah moi si tu me donnes des parts gratuits de ta boite je dis pas non mais je ferais pas ton marketing.<br>Et puis même si je te présente à des VC, ils pourront rien pour toi.<br>Tout ce que tu as besoin maintenant c'est d'executer : tu as un PMF dans les mains et si tu le rates tu vas t'en vouloir.</p><p>Moi: Merci pour ton temps Oussama, je te tiendrais au courant.</p><h3 id="conclusion">Conclusion</h3><p></p><p>Quand j'ai commencé HackerHouse il y a 5 ans c'était grâce à Koudetat et "Fake it until you make it".</p><p>Aujourd'hui, scale is coming. Avoir un call avec Oussama de 20min apporte autant de valeur que du Capital.</p><p>Des <a href="http://actionnaires-thefamily.com/">rumeurs </a>cours sur TheFamily. Et alors ? TheFamily traverse une période difficile comme la plupart des boites actuelles non ?</p><p>Peu importe ce qui se dit ou ce qui se fait – The Family restera The Family</p>]]></content:encoded></item><item><title><![CDATA[Tapfiliate Stripe Checkout JS integration with Wix Corvid]]></title><description><![CDATA[<p><em>UPDATE 06 April 2021 : We are quite deceived by Tapfiliate because it does not support sending payouts from Tapfiliate. We do not see the interest of paying $70/mo to do it manually every month. We decided to implement our own solution.</em></p><p><a href="https://tapfiliate.com/">Tapfiliate</a> does not work out of the box</p>]]></description><link>https://sbounmy.com/tapfiliate-stripe-checkout-integration-with-wix-corvid/</link><guid isPermaLink="false">5f86b58cd2b4f50fcc90c8be</guid><category><![CDATA[no code]]></category><dc:creator><![CDATA[Stephane Bounmy]]></dc:creator><pubDate>Fri, 16 Oct 2020 09:57:13 GMT</pubDate><media:content url="https://sbounmy.com/content/images/2020/10/wix-logo-tapfiliate-1.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://sbounmy.com/content/images/2020/10/wix-logo-tapfiliate-1.jpg" alt="Tapfiliate Stripe Checkout JS integration with Wix Corvid"><p><em>UPDATE 06 April 2021 : We are quite deceived by Tapfiliate because it does not support sending payouts from Tapfiliate. We do not see the interest of paying $70/mo to do it manually every month. We decided to implement our own solution.</em></p><p><a href="https://tapfiliate.com/">Tapfiliate</a> does not work out of the box with stripe checkout (client side only) and wix.</p><p>Keep in mind that this is a little bit advanced so you will need to be familiar with <a href="https://sbounmy.com/tapfiliate-stripe-checkout-integration-with-wix-corvid/wix.com">Wix</a>, <a href="https://nodejs.org/fr/">Javascript</a> (node) and <a href="https://stripe.com/docs/api">Stripe API</a>.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/10/Screenshot-2020-10-14-at-10.26.53.jpg" class="kg-image" alt="Tapfiliate Stripe Checkout JS integration with Wix Corvid"><figcaption>I was accepting recurring payments with stripe checkout client side only code https://stripe.com/docs/payments/checkout/client</figcaption></figure><p>My use case is classic SaaS business model : customers have a 15 days trial then pay monthly or annually.</p><p>The officials integrations does not work for me :</p><ul><li><a href="https://tapfiliate.com/docs/integrations/wix/">https://tapfiliate.com/docs/integrations/wix/</a><br>=&gt; I am not using wix store payments</li><li><a href="https://tapfiliate.com/docs/integrations/stripe/">https://tapfiliate.com/docs/integrations/stripe/</a><br>=&gt; I don't have access to customer_id from client side stripe checkout</li></ul><p>Main problems I faced :</p><ul><li>I don't have access to stripe <code>customer_id</code> without running server-side code</li><li><code>tap</code> have to run within the page and not js page code or html element because of cookies scope</li></ul><p>Here I will explain how I successfully setup Tapfiliate with Stripe all within Wix corvid without any external dependencies :</p><ol><li>Configure Stripe Checkout button to return a <code>session_id</code></li><li>Enable Wix Corvid (developer mode)</li><li>Fetch <code>customer_id</code> from Stripe API using wix back-end code</li><li>Redirect to same page with <code>?customer_id=cus_xxxxx</code></li><li>Use that URL parameter to <code>tap('trial', cus_xxxxxx)</code></li></ol><h2 id="configure-stripe-checkout-to-return-session_id">Configure Stripe Checkout to return <code>session_id</code></h2><p>Unfortunately Stripe does not return a <code>customer_id</code> on successful payment or even trial.<br>First thing to do is to create/update your checkout js <code>success_url</code> to return a <code>session_id</code></p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/10/Screenshot-2020-10-14-at-10.26.53-1.jpg" class="kg-image" alt="Tapfiliate Stripe Checkout JS integration with Wix Corvid"><figcaption>As an <code>HTML element</code> on a wix page</figcaption></figure><!--kg-card-begin: markdown--><pre><code class="language-html">&lt;!-- Load Stripe.js on your website. --&gt;
&lt;script src=&quot;https://js.stripe.com/v3&quot;&gt;&lt;/script&gt;

&lt;!-- Create a button that your customers click to complete their purchase. Customize the styling to suit your branding. --&gt;
&lt;button
  style=&quot;background-color:#6772E5;color:#FFF;padding:19px 82px;border:0px solid rgb(127, 0, 0);border-radius:5px;border-color:#6772E5;font-size:1.2em;cursor:pointer&quot;
  onmouseover=&quot;this.style.backgroundColor='#0a0a29';this.style.borderColor='#0a0a29;'&quot;
  onmouseout=&quot;this.style.backgroundColor='#6772E5';this.style.borderColor='#6772E5;';return true;&quot;
  id=&quot;checkout-button-plan_G7iN7ZLWLwJX1i&quot;  
  role=&quot;link&quot;
&gt;
 Commencer
&lt;/button&gt;

&lt;div id=&quot;error-message&quot;&gt;&lt;/div&gt;

&lt;script&gt;
(function() {
  var stripe = Stripe('pk_live_my-key');

  var checkoutButton = document.getElementById('checkout-button-plan_id');
  checkoutButton.addEventListener('click', function () {
    // When the customer clicks on the button, redirect
    // them to Checkout.
    stripe.redirectToCheckout({
      items: [{plan: 'my-plan-id', quantity: 1}],
      locale: &quot;fr&quot;,
      // Do not rely on the redirect to the successUrl for fulfilling
      // purchases, customers may not always reach the success_url after
      // a successful payment.
      // Instead use one of the strategies described in
      // https://stripe.com/docs/payments/checkout/fulfillment
      successUrl: 'https://www.lewisbnb.fr/success?session_id={CHECKOUT_SESSION_ID}',
      cancelUrl: 'https://www.lewisbnb.fr/canceled',
    })
    .then(function (result) {
      if (result.error) {
        // If `redirectToCheckout` fails due to a browser or network
        // error, display the localized error message to your customer.
        var displayError = document.getElementById('error-message');
        displayError.textContent = result.error.message;
      }
    });
  });
})();
&lt;/script&gt;
</code></pre>
<p>👆 Complete script</p>
<!--kg-card-end: markdown--><p>Now that Stripe returns a session_id you will be able to get a <code>customer_id</code> with server-side code.</p><h2 id="enable-wix-corvid">Enable Wix Corvid</h2><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2020/10/35d6b114-0d95-45b8-b48f-60df82f18869.png" class="kg-image" alt="Tapfiliate Stripe Checkout JS integration with Wix Corvid"></figure><p>This mode is for developer but it is awesome, you can :</p><ul><li>run backend node js code like 3rd party API calls...</li><li>run front end code like updating the code </li></ul><p>Everything in ES6.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/10/Screenshot-2020-10-14-at-14.53.32.jpg" class="kg-image" alt="Tapfiliate Stripe Checkout JS integration with Wix Corvid"><figcaption>on the left you can see Public, Back-end and node_modules!</figcaption></figure><h2 id="setup-a-thank-you-page">Setup a thank you page</h2><p>We want to fetch our <code>customer_id</code> by using the <code>session_id</code> returned by stripe on successful payment.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/10/Screenshot-2020-10-14-at-14.56.08.jpg" class="kg-image" alt="Tapfiliate Stripe Checkout JS integration with Wix Corvid"><figcaption>This is how my page look like after a subscription creation. Notice the URL parameter</figcaption></figure><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/10/Screenshot-2020-10-14-at-15.12.27.jpg" class="kg-image" alt="Tapfiliate Stripe Checkout JS integration with Wix Corvid"><figcaption>Showing spinner and updating the text to ask the client to wait until we redirect to <code>/success?customer_id=cus_xxx</code></figcaption></figure><p>Full code:</p><!--kg-card-begin: markdown--><pre><code class="language-js">// API Reference: https://www.wix.com/corvid/reference
// Code Examples: https://www.wix.com/corvid/examples
import wixLocation from 'wix-location';
import { getCustomer } from 'backend/stripe';

$w.onReady(async function () {
	if (wixLocation.query.session_id) {
		$w('#image121').show();
		$w('#text104').hide();
		$w('#text215').hide();
		$w('#text103').html = '&lt;h1 class=&quot;font_0&quot; style=&quot;text-align:center;&quot;&gt;On y est presque...&lt;/h1&gt;&lt;h1 class=&quot;font_0&quot; style=&quot;font-size:40px; text-align:center;&quot;&gt;&lt;span style=&quot;font-size:40px;&quot;&gt;&lt;span style=&quot;color:#777DFC;&quot;&gt;Nous finalisons votre commande&lt;/span&gt;&lt;/span&gt;&lt;/h1&gt;&lt;/div&gt;';
		var sessionId = wixLocation.query.session_id;
		var customer = await getCustomer(sessionId);
		wixLocation.to('https://lewisbnb.fr/success?customer_id='+ customer);
	}
	else {
		$w('#image121').hide();
		$w('#text103').html = '&lt;h1 class=&quot;font_0&quot; style=&quot;text-align:center;&quot;&gt;Merci&lt;/h1&gt;&lt;h1 class=&quot;font_0&quot; style=&quot;font-size:40px; text-align:center;&quot;&gt;&lt;span style=&quot;font-size:40px;&quot;&gt;&lt;span style=&quot;color:#777DFC;&quot;&gt;Votre commande a bien été prise en compte&lt;/span&gt;&lt;/span&gt;&lt;/h1&gt;&lt;/div&gt;';
	}
});
</code></pre>
<!--kg-card-end: markdown--><p>What we just did :</p><ul><li>Hide/show some waiting text / spinner</li><li>fetch <code>session_id</code> that we send to <code>getCustomer</code> (defined in the backend next step)</li><li>Redirect to <code>/success?customer_id=cus_xxx</code></li></ul><h2 id="stripe-api-in-corvid-wix-back-end">Stripe API in Corvid Wix back-end</h2><ol><li>Install the Stripe package in <code>node_modules</code></li></ol><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2020/10/Screenshot-2020-10-14-at-15.04.04.jpg" class="kg-image" alt="Tapfiliate Stripe Checkout JS integration with Wix Corvid"></figure><p>2. Add a <code>stripe.jsw</code> file in Back-end and write the following code :</p><!--kg-card-begin: markdown--><pre><code class="language-js">import Stripe from 'stripe';

// Filename: backend/stripe.jsw (web modules need to have a .jsw extension)

export async function getCustomer(sessionId) {
	console.log('fetching customer....', sessionId);
	try {
	const stripe = new Stripe('rk_live_my-id');
    const session = await stripe.checkout.sessions.retrieve(sessionId);
	console.log(&quot;session-------&quot;, session);
  	return session.customer;
	} catch(error) {
     console.log(error);
	 return error;
  }
}
</code></pre>
<!--kg-card-end: markdown--><p>Here we fetch the session using our Stripe API key. The API call is defined there :</p><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://stripe.com/docs/api/checkout/sessions/retrieve"><div class="kg-bookmark-content"><div class="kg-bookmark-title">Stripe API Reference - Retrieve a Session</div><div class="kg-bookmark-description">Complete reference documentation for the Stripe API. Includes representative code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET client libraries.</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://stripe.com/favicon.ico" alt="Tapfiliate Stripe Checkout JS integration with Wix Corvid"><span class="kg-bookmark-publisher">api</span></div></div></a></figure><h2 id="add-tapfiliate-script-in-all-the-pages">Add Tapfiliate script in all the pages</h2><p>Go to <code>Parameters &gt; Monitoring and Analytics</code> </p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/10/Screenshot-2020-10-14-at-15.02.36.jpg" class="kg-image" alt="Tapfiliate Stripe Checkout JS integration with Wix Corvid"><figcaption><code>New Tools &gt; Custom</code></figcaption></figure><p></p><figure class="kg-card kg-code-card"><pre><code class="language-js">  &lt;script src="https://script.tapfiliate.com/tapfiliate.js" type="text/javascript" async&gt;&lt;/script&gt;
  &lt;script type="text/javascript"&gt;
function getQueryParams(){var r={},n=function(r){return decodeURIComponent(r.replace(/\+/g," "))},t=location.search.substring(1).split("&amp;");for(var e in t){var o=t[e].toString().split("=");o.length&gt;1&amp;&amp;(r[n(o[0])]=n(o[1]))}return r}
      (function(t,a,p){t.TapfiliateObject=a;t[a]=t[a]||function(){
      (t[a].q=t[a].q||[]).push(arguments)}})(window,'tap');
      tap('create', 'my-tapfiliate-account-id', { integration: "stripe" });
      tap('detect');
      var params = getQueryParams();
     console.log(params);
      if (params.customer_id) {
        tap('trial', params.customer_id);
      }
  &lt;/script&gt;</code></pre><figcaption>Copy the first step from <a href="https://tapfiliate.com/docs/integrations/stripe/">https://tapfiliate.com/docs/integrations/stripe/</a></figcaption></figure><p>What this does :</p><ul><li>detect if there are <code>ref=....</code> and set cookies</li><li>if there are any <code>customer_id</code> it will set as <code>trial</code> on customer</li></ul><p>Make sure this whole thing work you will need to create an affiliate and test everything</p><h2 id="conclusion">Conclusion</h2><p>I would prefer to rely on webhooks rather than a <code>thankyou</code> page for security reasons.</p><p>In my case any customers are trial first then they are converted on Stripe only when their trial expires so I believe this won't an issue. I hope.</p>]]></content:encoded></item><item><title><![CDATA[Coliving – Créer sa communauté et recruter ses futurs locataires]]></title><description><![CDATA[<p><strong>03/10/2020</strong></p><p>Un sujet auquel je n'aurais pas penser à faire mais avec vos feedbacks le voici :)</p><h3 id="slides-communaut-et-canaux-d-acquisition-coliving">Slides: communauté et canaux d'acquisition coliving</h3><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://docs.google.com/presentation/d/1_4EdSqpN-_inFi6OwAfNVzd9hXSbA8tuW64x52JljyQ/edit?usp&#x3D;sharing"><div class="kg-bookmark-content"><div class="kg-bookmark-title">2020.10.03 Coliving - Créer une communauté - Recruter ses futurs locataires ?</div><div class="kg-bookmark-description">Coliving Créer une communauté Recruter ses futurs locataires ? Stephane BOUNMY HACKERHOUSE</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://ssl.gstatic.com/docs/presentations/images/favicon5.ico"><span class="kg-bookmark-publisher">Google Docs</span></div></div></a></figure>]]></description><link>https://sbounmy.com/coliving-creer-sa-communaute-et-recruter-ses-futurs-locataires/</link><guid isPermaLink="false">5f7b18b8c934640ee4d6a1ad</guid><dc:creator><![CDATA[Stephane Bounmy]]></dc:creator><pubDate>Mon, 05 Oct 2020 13:06:11 GMT</pubDate><content:encoded><![CDATA[<p><strong>03/10/2020</strong></p><p>Un sujet auquel je n'aurais pas penser à faire mais avec vos feedbacks le voici :)</p><h3 id="slides-communaut-et-canaux-d-acquisition-coliving">Slides: communauté et canaux d'acquisition coliving</h3><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://docs.google.com/presentation/d/1_4EdSqpN-_inFi6OwAfNVzd9hXSbA8tuW64x52JljyQ/edit?usp&#x3D;sharing"><div class="kg-bookmark-content"><div class="kg-bookmark-title">2020.10.03 Coliving - Créer une communauté - Recruter ses futurs locataires ?</div><div class="kg-bookmark-description">Coliving Créer une communauté Recruter ses futurs locataires ? Stephane BOUNMY HACKERHOUSE</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://ssl.gstatic.com/docs/presentations/images/favicon5.ico"><span class="kg-bookmark-publisher">Google Docs</span></div></div><div class="kg-bookmark-thumbnail"><img src="https://lh6.googleusercontent.com/Fy_2SWzozJw6o-TArNY9s6bCXUGMfbNEBofr_8Z6clVDrpp9GUDOWIeJC755ss3L16ut7l177g&#x3D;w1200-h630-p"></div></a></figure><h3 id="replay">Replay</h3><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://www.crowdcast.io/e/coliving-creer-communaute-recruter-locataires"><div class="kg-bookmark-content"><div class="kg-bookmark-title">Créer une communauté Coliving - Recruter ses futurs locataires ? - Crowdcast</div><div class="kg-bookmark-description">Register now for Stephane Bounmy’s event on Crowdcast, scheduled to go live on Saturday October 03, 2020 at 11:00 am CEST.</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://www.crowdcast.io/favicon.ico"><span class="kg-bookmark-author">Crowdcast, Inc.</span><span class="kg-bookmark-publisher">Crowdcast</span></div></div><div class="kg-bookmark-thumbnail"><img src="https://crowdcast-prod.imgix.net/-M9Xpklt-Nqb5Vda5B3t/event-cover-6266?w&#x3D;800"></div></a></figure>]]></content:encoded></item><item><title><![CDATA[🍃 Investir dans le vivant – De la pierre à la terre]]></title><description><![CDATA[<blockquote>Aujourd'hui quand on se met à table, plutôt que de se souhaiter <em><strong>bon appétit</strong></em>, on devrait se souhaiter <em><strong>bonne chance</strong></em> – <a href="https://fr.wikipedia.org/wiki/Pierre_Rabhi">Pierre Rabhi</a></blockquote><p>Pour mes 32 ans, mon cadeau d'anniversaire était stage d'<a href="https://www.permaculturebordeaux.com/">initiation en permaculture</a> pour un week-end à Castillon-la-Bataille près de Bordeaux.</p><p>J'avais commencé à faire de la <a href="https://sbounmy.com/permaculture-wicking-bed-for-60eu/">permaculture</a></p>]]></description><link>https://sbounmy.com/investir-vivant-de-la-pierre-a-la-terre/</link><guid isPermaLink="false">5f607f07c934640ee4d69f29</guid><dc:creator><![CDATA[Stephane Bounmy]]></dc:creator><pubDate>Tue, 22 Sep 2020 09:39:00 GMT</pubDate><media:content url="https://sbounmy.com/content/images/2020/09/769d32fc-defc-43f8-ace5-b885e4da7344.JPG" medium="image"/><content:encoded><![CDATA[<blockquote>Aujourd'hui quand on se met à table, plutôt que de se souhaiter <em><strong>bon appétit</strong></em>, on devrait se souhaiter <em><strong>bonne chance</strong></em> – <a href="https://fr.wikipedia.org/wiki/Pierre_Rabhi">Pierre Rabhi</a></blockquote><img src="https://sbounmy.com/content/images/2020/09/769d32fc-defc-43f8-ace5-b885e4da7344.JPG" alt="🍃 Investir dans le vivant – De la pierre à la terre"><p>Pour mes 32 ans, mon cadeau d'anniversaire était stage d'<a href="https://www.permaculturebordeaux.com/">initiation en permaculture</a> pour un week-end à Castillon-la-Bataille près de Bordeaux.</p><p>J'avais commencé à faire de la <a href="https://sbounmy.com/permaculture-wicking-bed-for-60eu/">permaculture sur mon balcon</a> de 9m2 : des haricots à rames, des tomates, aubergines...</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/09/IMG_5168-1.JPG" class="kg-image" alt="🍃 Investir dans le vivant – De la pierre à la terre"><figcaption>9m2 de balcon</figcaption></figure><p>Le but étant de se nourrir et de tendre vers l'auto suffisance alimentaire : chez moi mais aussi dans les <a href="https://sbounmy.com/p/031daeab-7203-48f3-8142-41d84ee0b784/hackerhouse.paris">hackerhouses</a> !</p><h3 id="la-permaculture-c-est-quoi">La permaculture c'est quoi ?</h3><p>Le mot permaculture est une contraction de "Permanent" et "agriculture" : une agriculture durable et respectueuse de l'environnement.</p><blockquote>Prendre soin de la terre, prendre soin de l'humain, et <strong>partager équitablement.</strong></blockquote><p>La forêt pousse toute seule, elle ne demande ni arrosage, ni entretien, ni pesticides ou engrais chimiques.</p><figure class="kg-card kg-image-card kg-width-full kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/09/modalite_elaguee.jpg" class="kg-image" alt="🍃 Investir dans le vivant – De la pierre à la terre"><figcaption>Agro foresterie : associer des arbres et des cultures ou de l'élevage</figcaption></figure><p><br>Notre but est de la reproduire et d'en partager l'abondance : récoltes, graines, entraide... Sans séparer les animaux qui participent à l'équilibre de la nature.</p><h3 id="le-lieu-du-stage">Le lieu du stage</h3><p>6ha soit 60 000m2 comprenant :</p><ul><li>des habitations : 2 maisons et une yourte pour les stages</li><li>des fruitiers et potagers en permaculture (butte)</li><li>un puit artésien potable</li><li>des étangs et cours d'eau</li><li>une partie boisée avec des arbres centenaires</li><li>un poulailler pour les oeufs</li></ul><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/09/ff1b114d-472e-4cca-b1b8-abbab8b62139.JPG" width="768" height="1024" alt="🍃 Investir dans le vivant – De la pierre à la terre"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/09/45f0e8f8-d500-4f19-84f5-022bf8f5900d.JPG" width="768" height="1024" alt="🍃 Investir dans le vivant – De la pierre à la terre"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/09/96a8ab56-17bb-4fca-ad22-6af372a032d5.JPG" width="768" height="1024" alt="🍃 Investir dans le vivant – De la pierre à la terre"></div></div><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/09/00d7ed09-e24b-418e-8fd2-19a9f2ee0213.JPG" width="1024" height="768" alt="🍃 Investir dans le vivant – De la pierre à la terre"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/09/a4230696-f342-406d-a8ab-f9917f4d468b.JPG" width="1024" height="768" alt="🍃 Investir dans le vivant – De la pierre à la terre"></div></div></div></figure><p>A 700m de la gare de TER 🚲</p><p>Nous sommes arrivés la veille du stage (vendredi soir) en TER avec nos vélos afin de ne pas avoir à se lever à 6h le samedi pour venir.<br>On en a profité pour visiter la ville de Castillon qui est une station de TER après Saint-Emilion :</p><ul><li>Prix abordables (compter 100 000€ pour un Immeuble de Rapport au centre ville)</li><li>Population assez modeste, d'origine maghrébine, la main d'oeuvre principale de Saint Emilion</li><li>Quelques commerces : guinguette de la plage, boulanger...</li></ul><h1 id="le-premier-jour">Le premier jour</h1><p>Réveil à 8h : petit déjeuner tartines et thé/café</p><p>Découverte de l'espace et rencontre des autres stagiaires, nous étions 20 en tout... !</p><h3 id="matin-e">Matinée</h3><p>Présentation du programme par notre animateur de stage, Laurent Montels.<br>Un dentiste de la région parisienne désormais retraité, il a beaucoup voyagé en Inde et pratique énormément le yoga, la méditation et le vastu (feng shui indien) depuis + 15 ans. En permaculture il a une expérience de 8 ans.</p><blockquote>Jardin intérieur : méditation 🙏,<br>Jardin extérieur : permaculture 🌱</blockquote><p>Les profils des stagiaires sont assez variés :</p><ul><li>âge : retraités, jeunes parents (30-40ans), jeunes actifs et étudiants (20-30ans)</li><li>profils : banquiers, immobiliers, ingénieurs aéronautiques, steward, entrepreneurs...</li></ul><h2 id="d-jeuner">Déjeuner</h2><p>Bio et local issu du potager</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/09/9223f64e-2196-4e69-b202-97d7baca1d3e.JPG" class="kg-image" alt="🍃 Investir dans le vivant – De la pierre à la terre"><figcaption>Je n'avais jamais mangé de tomates avec autant de goût... !</figcaption></figure><p>Après le déjeuner il y a une séance de yoga/méditation que j'ai plutôt appelé sieste...</p><h2 id="la-butte-en-permaculture">La butte en permaculture</h2><figure class="kg-card kg-image-card kg-width-full"><img src="https://sbounmy.com/content/images/2020/09/Ile-du-Bec.jpg" class="kg-image" alt="🍃 Investir dans le vivant – De la pierre à la terre"></figure><h3 id="explication">Explication</h3><p>La butte a pour but (héhé) de cultiver un potager en reproduisant l'environnement naturel et durable de la forêt décrit plus haut.</p><ul><li>Les feuilles mortes participent au compost et évitent l'évaporation de l'eau</li><li>L'ombre produite par les arbres protège les plantes du vent et du soleil direct</li><li>Les vers de terres et autres insectes retournent la terre et l'oxygène.</li></ul><h3></h3><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2020/09/Butte-Hugelkultur-de-Sepp-HOLZER.png" class="kg-image" alt="🍃 Investir dans le vivant – De la pierre à la terre"></figure><p>Certains vont même reproduire un jardin-forêt.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/09/livre-la-foret-jardin-martin-crawford.jpg" class="kg-image" alt="🍃 Investir dans le vivant – De la pierre à la terre"><figcaption>https://librairie-permaculturelle.fr/jardin-foret/160-livre-la-foret-jardin-martin-crawford.html</figcaption></figure><h3 id="construction">Construction</h3><p>Nous avons réalisé une butte avec coffrage qui repose sur le sol car cela évite de se baisser pour récolter.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/09/-.jpg" class="kg-image" alt="🍃 Investir dans le vivant – De la pierre à la terre"><figcaption>Exemple de butte avec coffrage</figcaption></figure><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2020/09/00d7ed09-e24b-418e-8fd2-19a9f2ee0213-1.JPG" class="kg-image" alt="🍃 Investir dans le vivant – De la pierre à la terre"></figure><h2 id="le-soir-l-lectrochoc">Le soir : l'électrochoc</h2><p>Laurent nous a diffusé le film suivant:</p><figure class="kg-card kg-embed-card"><iframe width="612" height="344" src="https://www.youtube.com/embed/3q_xzQ7pRi4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><h3 id="spoiler">SPOILER</h3><h3 id="3-me-guerre-mondiale">3ème guerre mondiale</h3><p>Après la 2ème guerre mondiale, il n'y avait plus de guerre, la seule guerre était économique.<br>Les industries qui construisaient :</p><ul><li>les chars et tanks se sont mis à construire des tracteurs, moissonneuses-batteuse...</li><li>la bombe orange, l'arme chimique au Vietnam désormais produisent les engrais et pesticides chimiques</li></ul><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/09/slide_1.jpg" width="960" height="720" alt="🍃 Investir dans le vivant – De la pierre à la terre"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/09/_MG_2735-kAJ-U102265101682gnE-860x420@lafranceagricole.fr.jpeg" width="860" height="420" alt="🍃 Investir dans le vivant – De la pierre à la terre"></div></div></div></figure><p>Et ils les vendent à qui ? Aux agriculteurs qui les utilisent sur la Terre qui nous nourrit nous et nos enfants.</p><p>Autant dire que la guerre a déjà commencé depuis plus de 50 ans...</p><h3 id="la-p-nurie-alimentaire">La pénurie alimentaire</h3><p>En Ile de France, l'autonomie alimentaire est de 3 jours:</p><p>Que se passe-t-il quand les parisiens seront confinés ?</p><p>Un confinement ? Mais non ça n'arrivera jamais... </p><p>Et la province ?<br><br>C'est 7 jours...</p><h3 id="la-guerre-des-semences-le-pire-pour-la-fin-">La guerre des semences (le pire pour la fin)</h3><p>Quand j'ai commencé à m'intéresser à la permaculture, je ne comprenais pas pourquoi je retrouvais des graines appelées F1 ou hybride.<br>Peu importe que les graines soient bio ou pas, si je ne mets pas de produits chimiques c'est bon non ?</p><p>Dans le film j'ai enfin compris pourquoi.</p><p>Des grands groupes comme Monsanto ou Bayer ont génétiquement modifiés des graines pour que celles-ci une fois achetées et plantées produiront des fruits dont les graines ne pourront être re-plantées :<br>Vous serez forcés de racheter des graines afin de pouvoir re-planter la saison suivante.</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2020/09/gdg_titre_francais.jpg" class="kg-image" alt="🍃 Investir dans le vivant – De la pierre à la terre"></figure><p>Dans un avenir très proche, les agriculteurs n'auront peut-être plus le droit de replanter leurs propres graines car derrière cette confiscation on trouve les cinq grands semenciers qui possèdent déjà la moitié du marché des graines et cherchent à étendre encore plus leur contrôle.</p><h1 id="le-deuxi-me-jour">Le deuxième jour</h1><p>Réveil à 7h pour une séance de yoga de 1h puis petit dej.</p><p>Debrief sur le film de la veille qui nous a tous mis un électrochoc et finition de la butte.</p><h3 id="les-fruitiers">Les fruitiers</h3><p>Beaucoup se concentrent sur le potager mais peu sur le verger.<br>Alors que les fruitiers mettent 3 ans pour produire les premiers fruits, ce sont eux sur qui il faudra se concentrer en premier afin d'obtenir des récoltes ou non chaque année.</p><p></p><p>Le potager demande beaucoup plus d'attention et assez répétitif chaque année : semis, récolte, rotation des cultures...</p><h2 id="conclusion">Conclusion</h2><h3 id="quelques-chiffres">Quelques chiffres</h3><ul><li>l'autonomie alimentaire de l'île de france est de 3 jours</li><li>une denrée alimentaire parcourt en moyenne 10 000km avant d'être dans notre assiette</li><li>4 millions de paysans en 1963 : il ne sont plus qu'environ 900.000 aujourd'hui</li></ul><h3 id="quelques-actions">Quelques actions</h3><ul><li><strong>Devenir végétarien</strong><br>Non seulement c'est mieux pour notre santé mais surtout pour la planète.</li></ul><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe width="612" height="344" src="https://www.youtube.com/embed/iSpglxHTJVM?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe><figcaption>Et oui les protéines viennent des végétaux : as-tu déjà vu un boeuf manger de la viande ?</figcaption></figure><ul><li><strong>Manger local</strong><br>Permettre aux agriculteurs locaux de payer leurs factures que des dirigeants de grande distribution qui pourront s'acheter la prochaine Tesla</li><li><strong>Réduire et réutiliser ses déchets</strong><br>-&gt; Les déchets organiques font d'excellents composts pour notre potager et verger<br>-&gt; Acheter en vrac ce dont on a vraiment besoin</li><li><strong>Produire son alimentation</strong><br>-&gt; Alimentation auto suffisante et durable avec un petit potager et verger<br>-&gt; Donner les surplus aux voisins</li></ul><h2 id="s-investir-dans-la-terre">S'investir dans la Terre</h2><h3 id="en-province">En province</h3><p>Achat d'une terre agricole ou d'une forêt : 1 à 5€ / m2.</p><ul><li>Faire de la permaculture, de l'agro-foresterie et recréer de la bio diversité</li></ul><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/09/jardin-mandala-mandala-jardin-jardin-mandala-permaculture-formation-permaculture-design-05.jpg" class="kg-image" alt="🍃 Investir dans le vivant – De la pierre à la terre"><figcaption>un jardin mandala en permaculture</figcaption></figure><ul><li>Maraichage : vendre ou donner le surplus de production</li><li>Faire des habitats écologiques type tiny house, yourtes, cabanes dans les arbres...</li></ul><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/09/tinyhousecover.jpg" class="kg-image" alt="🍃 Investir dans le vivant – De la pierre à la terre"><figcaption>une tiny house coute en auto construction 20 000e ou clé en main 50 000e</figcaption></figure><h3 id="en-ville">En ville</h3><ul><li>Acheter (ou pas) des places de parking extérieurs et en faire un potager communautaire. Si la mairie vous embête mettez le sur des roulettes.</li></ul><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/09/Screenshot-2020-09-22-at-11.00.14.jpg" class="kg-image" alt="🍃 Investir dans le vivant – De la pierre à la terre"><figcaption>https://www.facebook.com/watch/?v=307436713851012&amp;extid=8bsz1d6w17aukcko</figcaption></figure><ul><li>Cultivez hors sol : tour à fraisiers, <a href="https://sbounmy.com/permaculture-wicking-bed-for-60eu/">wicking bed</a>...</li></ul><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2020/09/d76f4f8e040406e4cd0e7d03c04b0fbf.jpg" class="kg-image" alt="🍃 Investir dans le vivant – De la pierre à la terre"></figure><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe width="459" height="344" src="https://www.youtube.com/embed/X_WMaDIBJig?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe><figcaption>Parking végétalisé transformé en bar à Berlin</figcaption></figure><ul><li>Faire un lombricompost pour réduire les déchets organiques et autres cartons amazon</li></ul><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/09/Screenshot-2020-09-22-at-11.22.39.jpg" class="kg-image" alt="🍃 Investir dans le vivant – De la pierre à la terre"><figcaption>Lombricompost fait à partir de bacs TROFAST ikea https://magazine.laruchequiditoui.fr/teste-pour-vous-le-lombricomposteur-sauce-krisprolls/</figcaption></figure><h3 id="quelques-r-f-rences">Quelques références</h3><p>On retrouve <a href="https://www.youtube.com/watch?v=3q_xzQ7pRi4">solution local pour un désordre global</a> de Coline Serreau</p><p>Nicolas Pezeril : ancien graphiste à Paris qui vit dans le Morvan avec 30 ha. Un vrai mindset de hacker pour se loger gratuitement et vivre avec peu d'argent</p><figure class="kg-card kg-embed-card"><iframe width="612" height="344" src="https://www.youtube.com/embed/lyLQYVJDerE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><p><strong>Lydia et Claude Bourguignon</strong></p><p>Parmis les derniers micro biologiste des sols qui nous reste en France</p><figure class="kg-card kg-embed-card"><iframe width="612" height="344" src="https://www.youtube.com/embed/dD5eBwxC_PA?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><p><strong>Guerre des graines</strong><br>Mieux comprendre la crise alimentaire qui se produit</p><figure class="kg-card kg-embed-card"><iframe width="612" height="344" src="https://www.youtube.com/embed/rHXcNQugrpg?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><p><strong>Achats de graines</strong></p><p>Vous éviterez ainsi les F1 hybrides :)</p><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://kokopelli-semences.fr/fr/"><div class="kg-bookmark-content"><div class="kg-bookmark-title">Association Kokopelli — Semences biologiques, libres de droits et reproductibles</div><div class="kg-bookmark-description">Kokopelli, fer de lance de la préservation et de la distribution de graines et de plants biologiques, libres de droits et reproductibles.</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://kokopelli-semences.fr/bundles/_themes/kokopelli/default-theme/app/img/favicon/apple-touch-icon.png" alt="🍃 Investir dans le vivant – De la pierre à la terre"></div></div><div class="kg-bookmark-thumbnail"><img src="https://kokopelli-semences.fr/media/image/logofb.png" alt="🍃 Investir dans le vivant – De la pierre à la terre"></div></a></figure><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://www.fermedesaintemarthe.com/"><div class="kg-bookmark-content"><div class="kg-bookmark-title">Semences, graines et plants bio - La Ferme de Sainte Marthe</div><div class="kg-bookmark-description">FERME DE SAINTE MARTHE est le spécialiste de la production de semences bio, plants et graines bio depuis plus de 40 ans.</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://www.fermedesaintemarthe.com/T_FEDESAMARTH/image/design/apple-touch-icon-retina.png" alt="🍃 Investir dans le vivant – De la pierre à la terre"><span class="kg-bookmark-publisher">logo FERME DE SAINTE MARTHE</span></div></div><div class="kg-bookmark-thumbnail"><img src="https://www.fermedesaintemarthe.com/T_FEDESAMARTH/image/design/logo_FDSM.gif" alt="🍃 Investir dans le vivant – De la pierre à la terre"></div></a></figure><p>Achats de fruitiers</p><figure class="kg-card kg-bookmark-card kg-card-hascaption"><a class="kg-bookmark-container" href="https://www.conservatoirevegetal.com/?pg&#x3D;acatalogue"><div class="kg-bookmark-content"><div class="kg-bookmark-title">Catalogue des arbres fruitiers</div><div class="kg-bookmark-description">Le Conservatoire Végétal Régional d’Aquitaine recherche, sauvegarde, valorise et diffuse le patrimoine fruitier régional</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://www.conservatoirevegetal.com/apple-touch-icon.png?v&#x3D;gAdaLvoeJw" alt="🍃 Investir dans le vivant – De la pierre à la terre"></div></div><div class="kg-bookmark-thumbnail"><img src="https://www.conservatoirevegetal.com/img/logo.svg" alt="🍃 Investir dans le vivant – De la pierre à la terre"></div></a><figcaption>Moins cher que Jardiland et meilleur</figcaption></figure><p></p><h3 id="a-ceux-qui-pensent-que-a-n-arrivera-jamais">A ceux qui pensent que ça n'arrivera jamais</h3><p>Arrêtez vous un instant et regardez autour de vous.</p><figure class="kg-card kg-embed-card"><iframe width="612" height="344" src="https://www.youtube.com/embed/D2IZ6nvPtYU?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></figure><ul><li>il fait 36º alors que l'on est mi-septembre</li><li>les incendies aux USA et au Brésil</li><li>un proche ou un ami que l'on a perdu à 30 ans à cause d'une maladie</li><li>les inondations fréquentes même en France.</li></ul><p></p><blockquote>Dans ce monde où tout va mal, la nature est la seule raison qui mérite que l'on descende dans la rue pour se battre.</blockquote><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe width="459" height="344" src="https://www.youtube.com/embed/XlFVGychBXQ?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe><figcaption>1979.</figcaption></figure>]]></content:encoded></item><item><title><![CDATA[Sélection accessoires vélo électrique (VAE) Moustache]]></title><description><![CDATA[<p>Fin 2018, je décide de laisser ma voiture au garage et me déplacer uniquement en vélo.</p><p>Moustache Friday 27 2019</p><p>7000 km en 19 mois, mon utilisation :</p><ul><li>Trajets pro (RDV, bureau...)</li><li>Courses</li><li>Rando / balade</li><li>TGV Paris - Bordeaux (non démonté)</li></ul><p>Voici une liste d'accessoires que l'on retrouve sur mon vélo</p>]]></description><link>https://sbounmy.com/selection-accessoires-vae-moustache/</link><guid isPermaLink="false">5f32545ba98a4604ab611c02</guid><category><![CDATA[Minimalism]]></category><dc:creator><![CDATA[Stephane Bounmy]]></dc:creator><pubDate>Tue, 18 Aug 2020 08:13:31 GMT</pubDate><media:content url="https://sbounmy.com/content/images/2020/08/59601157158__19EE1185-983C-45BA-9AA3-137404A25225.JPG" medium="image"/><content:encoded><![CDATA[<img src="https://sbounmy.com/content/images/2020/08/59601157158__19EE1185-983C-45BA-9AA3-137404A25225.JPG" alt="Sélection accessoires vélo électrique (VAE) Moustache"><p>Fin 2018, je décide de laisser ma voiture au garage et me déplacer uniquement en vélo.</p><p>Moustache Friday 27 2019</p><p>7000 km en 19 mois, mon utilisation :</p><ul><li>Trajets pro (RDV, bureau...)</li><li>Courses</li><li>Rando / balade</li><li>TGV Paris - Bordeaux (non démonté)</li></ul><p>Voici une liste d'accessoires que l'on retrouve sur mon vélo</p><h2 id="klaxon-de-v-lo-rechargeable-usb">Klaxon de vélo rechargeable USB</h2><p>Indispensable quand les voitures ne respectent pas ou ne vous voit pas :)</p><p>La batterie tient très bien : chargée une seule fois par an.<br>Le bruit extrêmement fort : plus fort que certaines voitures.</p><figure class="kg-card kg-embed-card"><iframe src="https://player.vimeo.com/video/201587620?app_id=122963" width="1280" height="720" frameborder="0" allow="autoplay; fullscreen" allowfullscreen title="Introducing the Loud Mini bicycle horn"></iframe></figure><figure class="kg-card kg-embed-card kg-card-hascaption"><blockquote class="wp-embedded-content"><a href="https://loudbicycle.com/">Homepage</a></blockquote>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
		/*! This file is auto-generated */
		!function(d,l){"use strict";var e=!1,o=!1;if(l.querySelector)if(d.addEventListener)e=!0;if(d.wp=d.wp||{},!d.wp.receiveEmbedMessage)if(d.wp.receiveEmbedMessage=function(e){var t=e.data;if(t)if(t.secret||t.message||t.value)if(!/[^a-zA-Z0-9]/.test(t.secret)){var r,a,i,s,n,o=l.querySelectorAll('iframe[data-secret="'+t.secret+'"]'),c=l.querySelectorAll('blockquote[data-secret="'+t.secret+'"]');for(r=0;r<c.length;r++)c[r].style.display="none";for(r=0;r<o.length;r++)if(a=o[r],e.source===a.contentWindow){if(a.removeAttribute("style"),"height"===t.message){if(1e3<(i=parseInt(t.value,10)))i=1e3;else if(~~i<200)i=200;a.height=i}if("link"===t.message)if(s=l.createElement("a"),n=l.createElement("a"),s.href=a.getAttribute("src"),n.href=t.value,n.host===s.host)if(l.activeElement===a)d.top.location.href=t.value}}},e)d.addEventListener("message",d.wp.receiveEmbedMessage,!1),l.addEventListener("DOMContentLoaded",t,!1),d.addEventListener("load",t,!1);function t(){if(!o){o=!0;var e,t,r,a,i=-1!==navigator.appVersion.indexOf("MSIE 10"),s=!!navigator.userAgent.match(/Trident.*rv:11\./),n=l.querySelectorAll("iframe.wp-embedded-content");for(t=0;t<n.length;t++){if(!(r=n[t]).getAttribute("data-secret"))a=Math.random().toString(36).substr(2,10),r.src+="#?secret="+a,r.setAttribute("data-secret",a);if(i||s)(e=r.cloneNode(!0)).removeAttribute("security"),r.parentNode.replaceChild(e,r)}}}}(window,document);
//--><!]]]]><![CDATA[>
</script><iframe sandbox="allow-scripts" security="restricted" src="https://loudbicycle.com/embed" width="600" height="338" title="&#8220;Homepage&#8221; &#8212; Loud Bicycle" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe><figcaption>Loud bicycle - uniquement par import des US...</figcaption></figure><h2 id="r-troviseur-v-lo-lectrique">Rétroviseur vélo électrique </h2><p>C'est le 3ème modèle que j'essaie et ce sont les seuls qui ont tenus ! Les autres se sont tordus et cassés...</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/08/IMG_3530.JPG" class="kg-image" alt="Sélection accessoires vélo électrique (VAE) Moustache" srcset="https://sbounmy.com/content/images/size/w600/2020/08/IMG_3530.JPG 600w, https://sbounmy.com/content/images/size/w1000/2020/08/IMG_3530.JPG 1000w, https://sbounmy.com/content/images/size/w1600/2020/08/IMG_3530.JPG 1600w, https://sbounmy.com/content/images/size/w2400/2020/08/IMG_3530.JPG 2400w" sizes="(min-width: 720px) 720px"><figcaption>Pourquoi ils sont en bas ? Pour éviter de voir ses bras dans les rétros !</figcaption></figure><p>Très pratique pour voir si votre petite troupe vous suit et se maquiller :)</p><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://french.alibaba.com/product-detail/high-strength-aluminum-alloy-material-360-degree-rotation-universal-bicycle-rear-view-mirror-1600073568092.html?spm=a2700.galleryofferlist.0.0.48203c4bNQlT8a"><div class="kg-bookmark-content"><div class="kg-bookmark-title">Haute Résistance En Alliage D’aluminium Matériel 360 Degrés Rotation Universelle Vélo Rétroviseur - Buy Rétroviseur De Bicyclette,Rétroviseur Universel,Rétroviseur Extérieur Product on Alibaba.com</div><div class="kg-bookmark-description">Haute Résistance En Alliage D’aluminium Matériel 360 Degrés Rotation Universelle Vélo Rétroviseur , Find Complete Details about Haute Résistance En Alliage D’aluminium Matériel 360 Degrés Rotation Universelle Vélo Rétroviseur,Rétroviseur De Bicyclette,Rétroviseur Universel,Rétroviseur Extérieur from…</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://is.alicdn.com/simg/single/icon/favicon.ico" alt="Sélection accessoires vélo électrique (VAE) Moustache"><span class="kg-bookmark-publisher">www.alibaba.com</span></div></div><div class="kg-bookmark-thumbnail"><img src="https://sc01.alicdn.com/kf/Hdaaa36921be448f4bbea68face80337bg.png" alt="Sélection accessoires vélo électrique (VAE) Moustache"></div></a></figure><h2 id="alarme-v-lo-lectrique">Alarme vélo électrique</h2><p>Très pratique et dissuasif mais ne remplace pas un bon antivol<br>Pour les arrêts minutes à la boulangerie quand j'ai la flemme de l'attacher :)</p><p>Je le glisse sous la selle brooks</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2020/08/Screenshot-2020-08-11-at-10.40.23.jpg" class="kg-image" alt="Sélection accessoires vélo électrique (VAE) Moustache" srcset="https://sbounmy.com/content/images/size/w600/2020/08/Screenshot-2020-08-11-at-10.40.23.jpg 600w, https://sbounmy.com/content/images/2020/08/Screenshot-2020-08-11-at-10.40.23.jpg 666w"></figure><p><a href=" https://www.amazon.fr/dp/B07TZTG5JY/ref=cm_sw_em_r_mt_dp_tLLmFbYA6WSDJ"> https://www.amazon.fr/dp/B07TZTG5JY/ref=cm_sw_em_r_mt_dp_tLLmFbYA6WSDJ</a></p><h2 id="casque-avec-visi-re">Casque avec visière </h2><p>Beaucoup de casques ressemblent à des bols sur la tête. Mais le casque de chez BBB est vraiment pratique et stylé</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/08/IMG_1681.jpg" class="kg-image" alt="Sélection accessoires vélo électrique (VAE) Moustache" srcset="https://sbounmy.com/content/images/size/w600/2020/08/IMG_1681.jpg 600w, https://sbounmy.com/content/images/size/w1000/2020/08/IMG_1681.jpg 1000w, https://sbounmy.com/content/images/size/w1600/2020/08/IMG_1681.jpg 1600w, https://sbounmy.com/content/images/2020/08/IMG_1681.jpg 2316w" sizes="(min-width: 720px) 720px"><figcaption>Ninja du vélo 🙏</figcaption></figure><p>N'oubliez pas le modèle avec visière fumée :)</p><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://bbbcycling.com/fr_fr/bhe-56f-indra-faceshield"><div class="kg-bookmark-content"><div class="kg-bookmark-title">BBB Cycling - Indra FaceShield</div><div class="kg-bookmark-description">Le casque Indra, notre casque primé pour vélo de classe speed pedelec, est désormais disponible avec une visière intégrale. Ce modèle est conforme aux dispositions de la norme NTA-8776 et représente le choix parfait pour les cyclistes qui préfèrent le style et la fonctionnalité. Le casque Indra est …</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://bbbcycling.com/static/version1596550071/frontend/BBB/default/fr_FR/favicon/apple-icon-180x180.png" alt="Sélection accessoires vélo électrique (VAE) Moustache"><span class="kg-bookmark-publisher">BBB</span></div></div><div class="kg-bookmark-thumbnail"><img src="https://bbbcycling.com/media/catalog/product/2/3/23436_bhe-56f-indra-faceshield_side_visor-up-2929175611.png" alt="Sélection accessoires vélo électrique (VAE) Moustache"></div></a></figure><h3 id="antivol-kryptonite-sra">Antivol Kryptonite SRA </h3><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/08/Screenshot-2020-08-11-at-10.50.41.jpg" class="kg-image" alt="Sélection accessoires vélo électrique (VAE) Moustache" srcset="https://sbounmy.com/content/images/size/w600/2020/08/Screenshot-2020-08-11-at-10.50.41.jpg 600w, https://sbounmy.com/content/images/size/w1000/2020/08/Screenshot-2020-08-11-at-10.50.41.jpg 1000w, https://sbounmy.com/content/images/size/w1600/2020/08/Screenshot-2020-08-11-at-10.50.41.jpg 1600w, https://sbounmy.com/content/images/2020/08/Screenshot-2020-08-11-at-10.50.41.jpg 1964w" sizes="(min-width: 720px) 720px"><figcaption>Le plus lourd mais le plus sûr et épais</figcaption></figure><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://www.kryptonitelock.fr/content/kryt-us-2/fr/products/product-information/current-key/994589.html?type=bicycle"><div class="kg-bookmark-content"><div class="kg-bookmark-title">New York Lock M18-WL</div><div class="kg-bookmark-description"></div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://www.kryptonitelock.fr/etc/designs/kryptonite-2/clientlib/images/favicon.ico" alt="Sélection accessoires vélo électrique (VAE) Moustache"><span class="kg-bookmark-publisher">PROTÈGE CE QUI VOUS EST CHER
plus de 45 ans d'expérience en sécurité de vélos</span></div></div><div class="kg-bookmark-thumbnail"><img src="https://www.kryptonitelock.fr/content/dam/kryt-us/en/logo-image/KryLogo.header.png" alt="Sélection accessoires vélo électrique (VAE) Moustache"></div></a></figure><h3 id="support-t-l-phone-e-bike">Support téléphone e-bike</h3><p>Il tient vraiment bien les vibrations. Il est tombé une seule fois.</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2020/08/Screenshot-2020-08-11-at-10.53.11.jpg" class="kg-image" alt="Sélection accessoires vélo électrique (VAE) Moustache" srcset="https://sbounmy.com/content/images/size/w600/2020/08/Screenshot-2020-08-11-at-10.53.11.jpg 600w, https://sbounmy.com/content/images/2020/08/Screenshot-2020-08-11-at-10.53.11.jpg 714w"></figure><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://www.amazon.fr/Grefay-Universel-t%C3%A9l%C3%A9phone-Portable-pivotant/dp/B07GQLYPZZ/ref=sr_1_1_sspa?__mk_fr_FR=%C3%85M%C3%85%C5%BD%C3%95%C3%91&amp;dchild=1&amp;keywords=support+telephone+velo&amp;qid=1597135900&amp;s=sports&amp;sr=1-1-spons&amp;psc=1&amp;spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUEzRkc3TlBFWlBPMEs3JmVuY3J5cHRlZElkPUEwMTk2OTUySDRPSzNNRlNKOUtXJmVuY3J5cHRlZEFkSWQ9QTAwMzMzNjExM0hSNVFKWVBKU01JJndpZGdldE5hbWU9c3BfYXRmJmFjdGlvbj1jbGlja1JlZGlyZWN0JmRvTm90TG9nQ2xpY2s9dHJ1ZQ=="><div class="kg-bookmark-content"><div class="kg-bookmark-title">Grefay Support Téléphone de Vélo，Métal Support Smartphone de Moto Guidonavec 360° Rotation pour 4,5-6,8 pouces Smartphones Phone 11 Pro, XS Max, XR, X, 8, 7, 6S, Samsung S10 S9 S8 S7, Huawei: Amazon.fr: Sports et Loisirs</div><div class="kg-bookmark-description">Grefay Support Téléphone de Vélo，Métal Support Smartphone de Moto Guidonavec 360° Rotation pour 4,5-6,8 pouces Smartphones Phone 11 Pro, XS Max, XR, X, 8, 7, 6S, Samsung S10 S9 S8 S7, Huawei: Amazon.fr: Sports et Loisirs</div><div class="kg-bookmark-metadata"><span class="kg-bookmark-publisher">Sponsorisé Nous sommes Hakeey, merci de reconnaître notre marque de plein air Grefay. Établi en 2016, nous sommes spécialisés dans la production et la vente d'équipements de cyclisme en plein air.Nos principaux produits sont les supports de téléphone portable pour vélo et moto.Depuis leur arrivée sur le marché, ils sont largement reconnus.Notre objectif est d'obtenir votre satisfaction. Nous sommes Hakeey, merci de reconnaître notre marque de plein air Grefay. Établi en 2016, nous sommes spécialisés dans la production et la vente d'équipements de cyclisme en plein air.Nos principaux produits sont les supports de téléphone portable pour vélo et moto.Depuis leur arrivée sur le marché, ils sont largement reconnus.Notre objectif est d'obtenir votre satisfaction.</span></div></div><div class="kg-bookmark-thumbnail"><img src="https://fls-eu.amazon.fr/1/batch/1/OP/A13V1IB3VIYZZH:257-3567807-5623813:4ZXMP5QACSTJVW297M2T$uedata=s:%2FGrefay-Universel-t%C3%A9l%C3%A9phone-Portable-pivotant%2Fdp%2FB07GQLYPZZ%2Fref%3Dsr_1_1_sspa%2Fuedata%2Funsticky%2F257-3567807-5623813%2FNoPageType%2Fntpoffrw%3Fstaticb%26id%3D4ZXMP5QACSTJVW297M2T%26pty%3DShoppingCart%26spty%3DCSRF-Interstitial%26pti%3D:1000" alt="Sélection accessoires vélo électrique (VAE) Moustache"></div></a></figure><h2 id="si-ge-v-lo-arri-re-pour-adulte">Siège vélo arrière pour adulte</h2><p>Attention vérifiez bien que votre vélo supporte le poids sinon bobo.</p><p>Le vélo moustache supporte officiellement 125kg au total dont 25kg sur le porte baggage.</p><p>Dans la pratique j'ai pu transporter sur plusieurs centaines de km des personnes de moins de 70kg sur le siège passager. On peut voir aussi que les pneus ballons Schwalbe encaisse bien nos poids.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/08/58423675_149970819378392_6358436420611948523_n.jpg" class="kg-image" alt="Sélection accessoires vélo électrique (VAE) Moustache" srcset="https://sbounmy.com/content/images/size/w600/2020/08/58423675_149970819378392_6358436420611948523_n.jpg 600w, https://sbounmy.com/content/images/size/w1000/2020/08/58423675_149970819378392_6358436420611948523_n.jpg 1000w, https://sbounmy.com/content/images/2020/08/58423675_149970819378392_6358436420611948523_n.jpg 1080w" sizes="(min-width: 720px) 720px"><figcaption>Moi et ma maman en balade :)</figcaption></figure><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://www.lecyclo.com/velo/transport/sieges-enfants/sur-porte-bagage/coussin-siege-enfant-sur-porte-bagages-velo-arriere-hooodie.html"><div class="kg-bookmark-content"><div class="kg-bookmark-title">Hooodie Si�ge coussin v�lo pour transport d�enfant sur porte-bagages</div><div class="kg-bookmark-description">Si�ge enfant de la marque Hooodie imperm�able pour transporter un junior (5 ans et plus) confortablement et en toute s�curit� sur le porte-bagages du v�lo.</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://www.lecyclo.com/images/favicon.ico" alt="Sélection accessoires vélo électrique (VAE) Moustache"></div></div><div class="kg-bookmark-thumbnail"><img src="https://www.lecyclo.com/components/com_virtuemart/shop_image/product/coussin-siege-enfant-sur-porte-bagages-velo-arriere-hooodie_thumb.png" alt="Sélection accessoires vélo électrique (VAE) Moustache"></div></a></figure><p>Et les reposes pieds qui vont avec</p><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://www.lecyclo.com/velo/transport/sieges-enfants/fixation-barre-divers/repose-pieds-sur-haubans-bobike.html"><div class="kg-bookmark-content"><div class="kg-bookmark-title">Bobike Cale pieds velo 1110 S</div><div class="kg-bookmark-description">Offrant un confort ind�niable � l’enfant assis � v�lo, les cale-pieds lui permettent aussi de ne pas se prendre les pieds dans les rayons de la roue.</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://www.lecyclo.com/images/favicon.ico" alt="Sélection accessoires vélo électrique (VAE) Moustache"><span class="kg-bookmark-author">Florent M.</span></div></div><div class="kg-bookmark-thumbnail"><img src="https://www.lecyclo.com/components/com_virtuemart/shop_image/product/repose-pieds-sur-haubans-bobike_thumb.jpg" alt="Sélection accessoires vélo électrique (VAE) Moustache"></div></a></figure><p></p><h2 id="sacoche-v-lo">Sacoche vélo</h2><p>Les vélos moustaches étant équipés de fixation QL3, jai directement pris la Sacoche Ortlieb / Moustache qui est plutôt sympa.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/08/mb-s9-bg-or001-sacochemoustache-ortlieb-ql3-visu1-750x497.jpg" class="kg-image" alt="Sélection accessoires vélo électrique (VAE) Moustache" srcset="https://sbounmy.com/content/images/size/w600/2020/08/mb-s9-bg-or001-sacochemoustache-ortlieb-ql3-visu1-750x497.jpg 600w, https://sbounmy.com/content/images/2020/08/mb-s9-bg-or001-sacochemoustache-ortlieb-ql3-visu1-750x497.jpg 750w" sizes="(min-width: 720px) 720px"><figcaption><a href="https://moustachebikes.com/accessoires/sacoche-moustache-ql3-ortlieb/">https://moustachebikes.com/accessoires/sacoche-moustache-ql3-ortlieb/</a></figcaption></figure><h2 id="musique-en-v-lo-enceinte-et-support">Musique en vélo – enceinte et support</h2><p>J'avais peur que la connexion bluetooth ne passe pas bien mais finalement dès que j'allume l'enceinte elle se connecte directement à l'Iphone.</p><p>Sa forme de gourde permet d'utiliser certains porte bidon pour la transporter.<br>Bonus : quand on a 2x BOOM on peut avoir un seul téléphone qui fait le DJ à condition de ne pas trop s'éloigner :)</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2020/08/Screenshot-2020-08-11-at-11.03.10.jpg" class="kg-image" alt="Sélection accessoires vélo électrique (VAE) Moustache" srcset="https://sbounmy.com/content/images/size/w600/2020/08/Screenshot-2020-08-11-at-11.03.10.jpg 600w, https://sbounmy.com/content/images/size/w1000/2020/08/Screenshot-2020-08-11-at-11.03.10.jpg 1000w, https://sbounmy.com/content/images/size/w1600/2020/08/Screenshot-2020-08-11-at-11.03.10.jpg 1600w, https://sbounmy.com/content/images/size/w2400/2020/08/Screenshot-2020-08-11-at-11.03.10.jpg 2400w" sizes="(min-width: 720px) 720px"></figure><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://www.ultimateears.com/fr-fr/wireless-speakers/boom-3.html"><div class="kg-bookmark-content"><div class="kg-bookmark-title">Enceinte Bluetooth BOOM 3 | Enceinte Ultimate Ears aux basses profondes</div><div class="kg-bookmark-description">L’enceinte portable Bluetooth® sans fil BOOM 3 est l’enceinte nomade ultime: son équilibré à 360°, basses profondes, tissu hautes performances, étanchéité, résistance à la poussière et aux chutes et contrôle de la musique à l’aide d’une seule touche.</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://www.ultimateears.com/etc.clientlibs/ue/clientlibs/ue-pagelibs/resources/favicon.ico" alt="Sélection accessoires vélo électrique (VAE) Moustache"><span class="kg-bookmark-publisher">Enceinte Ultimate Ears aux basses profondes</span></div></div><div class="kg-bookmark-thumbnail"><img src="https://www.ultimateears.com/content/dam/ue/social-sharing-image/social-thumbnail-boom3.jpg.imgw.1200.1200.jpg" alt="Sélection accessoires vélo électrique (VAE) Moustache"></div></a></figure><p>Le premier prix fait l'affaire :)</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/08/Screenshot-2020-08-11-at-11.06.04.jpg" class="kg-image" alt="Sélection accessoires vélo électrique (VAE) Moustache" srcset="https://sbounmy.com/content/images/size/w600/2020/08/Screenshot-2020-08-11-at-11.06.04.jpg 600w, https://sbounmy.com/content/images/size/w1000/2020/08/Screenshot-2020-08-11-at-11.06.04.jpg 1000w, https://sbounmy.com/content/images/size/w1600/2020/08/Screenshot-2020-08-11-at-11.06.04.jpg 1600w, https://sbounmy.com/content/images/2020/08/Screenshot-2020-08-11-at-11.06.04.jpg 2268w" sizes="(min-width: 720px) 720px"><figcaption><a href="https://www.decathlon.fr/p/porte-bidon-velo-500-noir/_/R-p-152977?mc=8544846&amp;c=BLEU">https://www.decathlon.fr/p/porte-bidon-velo-500-noir/_/R-p-152977?mc=8544846&amp;c=BLEU</a></figcaption></figure><h3 id="tige-de-selle-suspendue">Tige de selle suspendue</h3><p>N'ayant pas de vélo tout suspendu, je décide de changer la tige de selle d'origine qui avait un énorme jeu dont mon vélociste me dit qu'il ne peut rien faire...</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe width="612" height="344" src="https://www.youtube.com/embed/QIwpGJ6JSKo?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe><figcaption>Pour mes petites fesses</figcaption></figure><p>J'opte pour la thudbuster LT car elle a l'air de mieux amortir de que la Suntour NCX.<br>Le résultat est impressionnant sur les pavés : on sent que le guidon vibre malgré la fourche suspendue mais que la selle ne tremble pas.<br>Par contre les dos d'âne et trottoires on les sent :)</p><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://www.probikeshop.fr/tige-de-selle-cane-creek-thudbuster-lt-recul-noir/80819.html"><div class="kg-bookmark-content"><div class="kg-bookmark-title">Tige de Selle CANE CREEK THUDBUSTER LT Recul - Probikeshop</div><div class="kg-bookmark-description">Tige de Selle CANE CREEK THUDBUSTER LT Recul à prix canon sur Probikeshop. Trouvez votre Tige de Selle CANE CREEK THUDBUSTER LT Recul dans la catégorie Tiges de Selle Suspendues.</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://assets.probikeshop.fr/images/Probikeshop/highres_favicon.png" alt="Sélection accessoires vélo électrique (VAE) Moustache"><span class="kg-bookmark-author">Gadaga</span><span class="kg-bookmark-publisher">Probikeshop</span></div></div><div class="kg-bookmark-thumbnail"><img src="https://assets.probikeshop.fr/images/Probikeshop/ui/logo.svg" alt="Sélection accessoires vélo électrique (VAE) Moustache"></div></a></figure><h3 id="selle-brooks">Selle Brooks</h3><p>Depuis 1866, Brooks fabrique des selles faits main mais aussi des accessoires.<br>Ma selle Brooks B17 été fournie d'origine avec le vélo.<br>Elle ne sera pas confortable si tu l'essaie mais pour moi oui car à l'usage elle a adopté la forme de mes fesses :)</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/08/b17-header.png" class="kg-image" alt="Sélection accessoires vélo électrique (VAE) Moustache" srcset="https://sbounmy.com/content/images/size/w600/2020/08/b17-header.png 600w, https://sbounmy.com/content/images/size/w1000/2020/08/b17-header.png 1000w, https://sbounmy.com/content/images/2020/08/b17-header.png 1340w" sizes="(min-width: 720px) 720px"><figcaption>B17 est idéale pour les longues distances.</figcaption></figure><p>PS: les nouveaux Friday sont équipés du C17 cambrium, un modèle plus urbain.</p><h3 id="conclusion">Conclusion</h3><p>Voilà voilà si vous avez d'autres accessoires à me recommander n'hésitez pas.<br>Et surtout n'oubliez pas d'assurer votre velo :)</p><p>Prochaine liste : </p><ul><li>Poignée Brooks Ergon GP1 <a href="https://www.cyclable.com/14646-poignee-brooks-ergon-gp1-poignee-regular.html#/couleur-noir">https://www.cyclable.com/14646-poignee-brooks-ergon-gp1-poignee-regular.html#/couleur-noir</a></li><li>Bosh Smartphonehub <a href="https://www.ebike24.fr/bosch-ebike-smartphonehub">https://www.ebike24.fr/bosch-ebike-smartphonehub</a></li></ul>]]></content:encoded></item><item><title><![CDATA[Coliving - Financements Bancaires]]></title><description><![CDATA[<p>On dira toujours en immobilier que le plus difficile ce n'est pas de trouver la bonne affaire mais le prêt bancaire.</p><p>C'est aussi le cas dans un projet de Coliving.</p><p>Ce webinaire du mois de août était consacré aux financements bancaires suite à mes différentes acquisitions à Paris et Bordeaux.</p>]]></description><link>https://sbounmy.com/coliving-financements-bancaires/</link><guid isPermaLink="false">5f2959b881fe746d34695bea</guid><category><![CDATA[Coliving]]></category><dc:creator><![CDATA[Stephane Bounmy]]></dc:creator><pubDate>Tue, 04 Aug 2020 13:14:11 GMT</pubDate><content:encoded><![CDATA[<p>On dira toujours en immobilier que le plus difficile ce n'est pas de trouver la bonne affaire mais le prêt bancaire.</p><p>C'est aussi le cas dans un projet de Coliving.</p><p>Ce webinaire du mois de août était consacré aux financements bancaires suite à mes différentes acquisitions à Paris et Bordeaux.</p><h3 id="slides">Slides</h3><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://docs.google.com/presentation/d/1jDpSTISHuXhcdJyPi9tTy_YzzjzcAP528bkhvQz9bBc/edit?usp=sharing"><div class="kg-bookmark-content"><div class="kg-bookmark-title">Coliving - Financement Bancaire</div><div class="kg-bookmark-description">Coliving Financements Bancaires Stephane BOUNMY HACKERHOUSE</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://ssl.gstatic.com/docs/presentations/images/favicon5.ico"><span class="kg-bookmark-publisher">Google Docs</span></div></div><div class="kg-bookmark-thumbnail"><img src="https://lh3.googleusercontent.com/olER7DnCkvS0O5wW5ufrIFdkq4y82J25Go3_p5fP6FvUzSLGCyKTHFPbKDdWng_ewLXbztGyFA=w1200-h630-p"></div></a></figure><h3 id="replay">Replay</h3><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://www.crowdcast.io/e/coliving-financements-bancaires"><div class="kg-bookmark-content"><div class="kg-bookmark-title">Coliving - Financements bancaires - Crowdcast</div><div class="kg-bookmark-description">Register now for Stephane Bounmy’s event on Crowdcast, scheduled to go live on Saturday August 01, 2020 at 11:00 am CEST.</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://www.crowdcast.io/favicon.ico"><span class="kg-bookmark-author">Crowdcast, Inc.</span><span class="kg-bookmark-publisher">Crowdcast</span></div></div><div class="kg-bookmark-thumbnail"><img src="https://crowdcast-prod.imgix.net/-M9Xpklt-Nqb5Vda5B3t/event-cover-5141?w=800"></div></a></figure><h3 id="annexes">Annexes</h3><ul><li><a href="https://drive.google.com/file/d/17gbb0CajUFU7ZtOuJ-mGm9RjAylg0Dwj/view?usp=sharing">Modèle Fiche Patrimoniale Caution</a></li><li><a href="https://drive.google.com/file/d/1V6kBFj8njAy0bMHm7-eEgP29-GHYT92g/view?usp=sharing">Exemple Dossier Bancaire Projet </a></li></ul>]]></content:encoded></item><item><title><![CDATA[Build a community – How to hire in Coliving?]]></title><description><![CDATA[<blockquote>People don’t buy WHAT you do, they buy WHY you do it.<br>– Simon Sinek</blockquote><p>4 years ago, I started <a href="https://hackerhouse.paris">HackerHouse</a> : a desk, 8 beds, fast internet and 8 tech people living and working under the same roof.<br>There was no online payments, notifications...<br>Just an online form and an</p>]]></description><link>https://sbounmy.com/coliving-build-community-how-to-hire/</link><guid isPermaLink="false">5f072751781e0f04cc0f4a6c</guid><category><![CDATA[Coliving]]></category><dc:creator><![CDATA[Stephane Bounmy]]></dc:creator><pubDate>Tue, 04 Aug 2020 08:32:00 GMT</pubDate><media:content url="https://sbounmy.com/content/images/2020/07/IMG_4008.JPG" medium="image"/><content:encoded><![CDATA[<blockquote>People don’t buy WHAT you do, they buy WHY you do it.<br>– Simon Sinek</blockquote><img src="https://sbounmy.com/content/images/2020/07/IMG_4008.JPG" alt="Build a community – How to hire in Coliving?"><p>4 years ago, I started <a href="https://hackerhouse.paris">HackerHouse</a> : a desk, 8 beds, fast internet and 8 tech people living and working under the same roof.<br>There was no online payments, notifications...<br>Just an online form and an email.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/07/Square.png" class="kg-image" alt="Build a community – How to hire in Coliving?" srcset="https://sbounmy.com/content/images/size/w600/2020/07/Square.png 600w, https://sbounmy.com/content/images/size/w1000/2020/07/Square.png 1000w, https://sbounmy.com/content/images/2020/07/Square.png 1400w" sizes="(min-width: 720px) 720px"><figcaption>"Work, live and share"</figcaption></figure><p>However people clearly understood the mission and what I tried to build:<br>They loved it or hated it.</p><p>This was one of the best indicators because I knew that there was a real market.</p><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/Screenshot-2020-07-28-at-11.52.47.jpg" width="1492" height="1008" alt="Build a community – How to hire in Coliving?" srcset="https://sbounmy.com/content/images/size/w600/2020/07/Screenshot-2020-07-28-at-11.52.47.jpg 600w, https://sbounmy.com/content/images/size/w1000/2020/07/Screenshot-2020-07-28-at-11.52.47.jpg 1000w, https://sbounmy.com/content/images/2020/07/Screenshot-2020-07-28-at-11.52.47.jpg 1492w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/Screenshot-2020-07-28-at-11.54.34.jpg" width="1222" height="402" alt="Build a community – How to hire in Coliving?" srcset="https://sbounmy.com/content/images/size/w600/2020/07/Screenshot-2020-07-28-at-11.54.34.jpg 600w, https://sbounmy.com/content/images/size/w1000/2020/07/Screenshot-2020-07-28-at-11.54.34.jpg 1000w, https://sbounmy.com/content/images/2020/07/Screenshot-2020-07-28-at-11.54.34.jpg 1222w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/Screenshot-2020-07-28-at-11.54.21.jpg" width="1236" height="888" alt="Build a community – How to hire in Coliving?" srcset="https://sbounmy.com/content/images/size/w600/2020/07/Screenshot-2020-07-28-at-11.54.21.jpg 600w, https://sbounmy.com/content/images/size/w1000/2020/07/Screenshot-2020-07-28-at-11.54.21.jpg 1000w, https://sbounmy.com/content/images/2020/07/Screenshot-2020-07-28-at-11.54.21.jpg 1236w" sizes="(min-width: 720px) 720px"></div></div></div><figcaption>Example of good applications</figcaption></figure><h2 id="start-with-why">Start with WHY</h2><p>On my HackerHouse journey, I had over 200 monthly bookings and I created connections (good and bad) with my guests, some of them :</p><ul><li>left with good impressions 80%</li><li>left with neutral 10%</li><li>left on bad terms 5%</li><li>became close friends (<a href="https://www.linkedin.com/in/nicolas-wagner-ab59249a/">Nicolas</a>) 5%</li></ul><p>One thing I noticed :<br>A Coliving space is all about people and it is the biggest challenge – bringing good like-minded people together.</p><p>You can have the best standing desk, babyfoot or coffee machine, if people just pay what you do then when someone offer a cheaper and better coliving they will just leave.</p><h3 id="our-mission">Our mission</h3><p>Empower people with the minimum needed to live, work and share :</p><ul><li>Like minded people in tech ( 6 - 15 people)</li><li>Functional living space (bed, desk, internet...)</li><li>Flexible stays (1 to 8 months)</li></ul><h2 id="personas">Personas</h2><p>As a developer this seems a bit 'marketing thing' but I realised that it is one of the most important.<br><br><strong>Bad (too wide)</strong><br>"Young professionals and students"<br>"Freelances"<br>"Between 20 to 35 yrs old"<br><br><strong>Good</strong><br>"Cooking students attending school course for a semester in Paris"<br>"Dassault and Thales interns coming to Bordeaux for a few months"<br>"Station F startups coming to Paris for an acceleration program"<br>"42 students coming for their year training"<br>"UPEC students coming for a semester"</p><p>Ofc nothing prevents you from mixing up 2 or more personas – start with one of them and as you host new people you will discover new personas.</p><h2 id="how">HOW</h2><h3 id="the-not-to-be-list">The not-to-be list</h3><p>Before taking any booking we show this introduction page :</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/07/Screenshot-2020-07-28-at-10.47.46.jpg" class="kg-image" alt="Build a community – How to hire in Coliving?" srcset="https://sbounmy.com/content/images/size/w600/2020/07/Screenshot-2020-07-28-at-10.47.46.jpg 600w, https://sbounmy.com/content/images/size/w1000/2020/07/Screenshot-2020-07-28-at-10.47.46.jpg 1000w, https://sbounmy.com/content/images/size/w1600/2020/07/Screenshot-2020-07-28-at-10.47.46.jpg 1600w, https://sbounmy.com/content/images/2020/07/Screenshot-2020-07-28-at-10.47.46.jpg 1618w" sizes="(min-width: 720px) 720px"><figcaption>page we show before any applications</figcaption></figure><p>In the beginning it is not obvious but as you get feedbacks through you first guests you will be able to write what you do and what you don't.</p><p>Clearly state what you are and what you are not. This helped us to avoid people taking our space as a party hostel, cheap place to crash or incubator where they would expect startups programs, courses, events...</p><h3 id="message-inquiries">Message inquiries</h3><p>The first message is really important, when someone applies and writes </p><blockquote>Hi I am looking for a room.</blockquote><p>We refuse them. Why ?<br>Because they are primarily looking for a place to sleep rather than a place to share and connect.<br>70% those people are not a fit and their stays are short or went bad (unsatisfied).</p><p>When we are not sure about their profil we say :</p><blockquote>Hello {{firstname}}<br>We have 1 availability for your dates.<br>We only accept entrepreneurs and tech people.<br>Stephane</blockquote><p><br>Or we don't care about your garant or 3X rent</p><blockquote>Hello {{firstname}}<br>We don't care about financial situations.<br>Tell us more about you and your projects – we only accept entrepreneurs and tech people.<br>Stephane</blockquote><h3 id="branding-a-coliving">Branding a Coliving</h3><p>Until today, I've never really hired a designer because I was short on budget and still finding my why.</p><p>I did many quotes for my re-branding: the price range is from 3k to 30k :</p><ul><li>Visual identity</li><li>Logo</li><li>Wireframes</li></ul><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/08/Screenshot-2020-08-04-at-10.03.36.jpg" class="kg-image" alt="Build a community – How to hire in Coliving?" srcset="https://sbounmy.com/content/images/size/w600/2020/08/Screenshot-2020-08-04-at-10.03.36.jpg 600w, https://sbounmy.com/content/images/size/w1000/2020/08/Screenshot-2020-08-04-at-10.03.36.jpg 1000w, https://sbounmy.com/content/images/size/w1600/2020/08/Screenshot-2020-08-04-at-10.03.36.jpg 1600w, https://sbounmy.com/content/images/size/w2400/2020/08/Screenshot-2020-08-04-at-10.03.36.jpg 2400w" sizes="(min-width: 720px) 720px"><figcaption>Rebranding with Camille through zoom during lockdown :)</figcaption></figure><h2 id="when-to-turn-a-coliving-into-a-brand">WHEN to turn a coliving into a brand ?</h2><p><br>I believe it is too early to hire a designer for your coliving until you have hosted 50+ people (unless you have a big budget).<br><br>Through the mistakes, feedbacks and experience you will perfect your wording, personas and design.<br>So you will know what you want/dont want in your future design.</p><p>I hired Camille when I was struggling to have a consistent design on :</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe src="https://www.loom.com/embed/3a6b3d25b6df41cc81dc297b76717caf" frameborder="0" width="1280" height="960" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe><figcaption><a href="https://hackerhouse.paris">HackerHouse</a> (main website)</figcaption></figure><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/08/Silence.jpg" width="2480" height="3508" alt="Build a community – How to hire in Coliving?" srcset="https://sbounmy.com/content/images/size/w600/2020/08/Silence.jpg 600w, https://sbounmy.com/content/images/size/w1000/2020/08/Silence.jpg 1000w, https://sbounmy.com/content/images/size/w1600/2020/08/Silence.jpg 1600w, https://sbounmy.com/content/images/size/w2400/2020/08/Silence.jpg 2400w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/08/Screenshot-2020-07-28-at-11.42.55.jpg" width="1456" height="1362" alt="Build a community – How to hire in Coliving?" srcset="https://sbounmy.com/content/images/size/w600/2020/08/Screenshot-2020-07-28-at-11.42.55.jpg 600w, https://sbounmy.com/content/images/size/w1000/2020/08/Screenshot-2020-07-28-at-11.42.55.jpg 1000w, https://sbounmy.com/content/images/2020/08/Screenshot-2020-07-28-at-11.42.55.jpg 1456w" sizes="(min-width: 720px) 720px"></div></div></div><figcaption>left : poster instructions. right : live videos for coliving investors</figcaption></figure><h3 id="behind-the-scene">Behind the scene </h3><p>HackerHouse brings the fundamentals to get started: a living space and a community. Spaces that will move your projects forward.</p><ul><li>Black &amp; White: like an Ikea assembly instructions</li><li>Logo : "HH" because no one writes HackerHouse on WhatsApp</li><li>Orange and Yellow colours:  Wood – living materials and better for the planet</li></ul><h3 id="the-pricing-in-coliving">The pricing in Coliving</h3><p>Coliving pricing are often higher than traditional renting for 3 reasons :</p><ul><li><strong>Shorter stays</strong><br>From weekly to monthly stays</li><li><strong>All inclusive</strong><br>Weekly cleaning, utilities, insurance, netflix...</li><li><strong>Community</strong><br>More selective. Like Minded people</li></ul><p>Depending on your pricing you will attract different people.<br>They might have more expectations when they pay a higher price.</p><p><strong>How did I price my first HackerHouse ?</strong><br>Paris : Shared bedroom on Airbnb 300€ and coworking space 300€. First HackerHouse : 560€ / month.<br></p><h2 id="hiring-platform">Hiring platform</h2><h3 id="airbnb">Airbnb</h3><p>Good for International profiles, come to live an experience.<br>Able to book remotely instead of visiting.<br>Make sure they understand your community based living before booking.</p><h3 id="leboncoin">LeBoncoin</h3><p>Good for Local profiles so looking for lower price. If you have a high pricing then you won't have much applications.</p><h3 id="lacartedescolocs">LaCarteDesColocs</h3><p>Good overall you will attract both : locals and internationals.</p><h3 id="appartager-roomlala">Appartager, Roomlala</h3><p>Too messy, low quality applications.</p><h3 id="how-to-write-a-good-listing">How to write a good listing ? </h3><p>Use some emoji, write a short description about the tenants, activities and what are your expectations.</p><figure class="kg-card kg-image-card"><img src="https://sbounmy.com/content/images/2020/08/Screenshot-2020-08-04-at-11.12.32.jpg" class="kg-image" alt="Build a community – How to hire in Coliving?" srcset="https://sbounmy.com/content/images/size/w600/2020/08/Screenshot-2020-08-04-at-11.12.32.jpg 600w, https://sbounmy.com/content/images/2020/08/Screenshot-2020-08-04-at-11.12.32.jpg 798w" sizes="(min-width: 720px) 720px"></figure><h2 id="conclusion">Conclusion</h2><p>I often say : you can always build a good house with good than bad people.</p><p><strong>Now let's talk about it join me on a live session the 3rd October 2020 :</strong></p><figure class="kg-card kg-bookmark-card"><a class="kg-bookmark-container" href="https://www.crowdcast.io/e/coliving-creer-communaute-recruter-locataires"><div class="kg-bookmark-content"><div class="kg-bookmark-title">Créer une communauté Coliving - Recruter ses futurs locataires ? - Crowdcast</div><div class="kg-bookmark-description">Register now for Stephane Bounmy’s event on Crowdcast, scheduled to go live on Saturday October 03, 2020 at 11:00 am CEST.</div><div class="kg-bookmark-metadata"><img class="kg-bookmark-icon" src="https://www.crowdcast.io/favicon.ico" alt="Build a community – How to hire in Coliving?"><span class="kg-bookmark-author">Crowdcast, Inc.</span><span class="kg-bookmark-publisher">Crowdcast</span></div></div><div class="kg-bookmark-thumbnail"><img src="https://crowdcast-prod.imgix.net/-M9Xpklt-Nqb5Vda5B3t/event-cover-6266?w=800" alt="Build a community – How to hire in Coliving?"></div></a></figure><p>Cheers,</p>]]></content:encoded></item><item><title><![CDATA[🌿 Permaculture | Build a full Wicking bed for 60€]]></title><description><![CDATA[<blockquote>The greatest change we need to make is from consumption to production, even if on a small scale, in our own gardens. If only 10% of us do this, there is enough for everyone. Hence the futility of revolutionaries who have no gardens, who depend on the very system they</blockquote>]]></description><link>https://sbounmy.com/permaculture-wicking-bed-for-60eu/</link><guid isPermaLink="false">5f04300e6f7edf04e24de016</guid><category><![CDATA[LifeHack]]></category><dc:creator><![CDATA[Stephane Bounmy]]></dc:creator><pubDate>Tue, 21 Jul 2020 09:19:18 GMT</pubDate><media:content url="https://sbounmy.com/content/images/2020/07/IMG_4497-1.JPG" medium="image"/><content:encoded><![CDATA[<blockquote>The greatest change we need to make is from consumption to production, even if on a small scale, in our own gardens. If only 10% of us do this, there is enough for everyone. Hence the futility of revolutionaries who have no gardens, who depend on the very system they attack, and who produce words and bullets, not food and shelter. – Bill Mollison</blockquote><img src="https://sbounmy.com/content/images/2020/07/IMG_4497-1.JPG" alt="🌿 Permaculture | Build a full Wicking bed for 60€"><p>Don't wait to have the perfect place to start something – you don't need a garden to start growing your veggies ! 🍅🥕🍆🥦</p><h3 id="what-is-a-wicking-bed">What is a wicking bed ?</h3><p>Wicking bed is agricultural <a href="https://en.wikipedia.org/wiki/Irrigation">irrigation system</a> used in <a href="https://en.wikipedia.org/wiki/Arid">arid</a> countries where water is scarce, devised by Australian inventor <a href="https://en.wikipedia.org/wiki/Colin_Austin_(Moldflow)">Colin Austin</a>. It can be used both in (arid) fields as in containers.</p><p>The system is designed to increase <a href="https://en.wikipedia.org/wiki/Food_production">food production</a> while using approximately 50% less water than traditional irrigation, by utilizing underground <a href="https://en.wikipedia.org/wiki/Water_reservoir">water reservoirs</a> filled with decomposing organic matter and the process of <a href="https://en.wikipedia.org/wiki/Evaporation">evaporation</a>.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/07/Wicking-Bed-1-750x380.jpg" class="kg-image" alt="🌿 Permaculture | Build a full Wicking bed for 60€"><figcaption>How it works</figcaption></figure><p>There are many tutorials online on building a wicking but my hack will be appliable on :</p><ul><li>Balcony : Yes you don't need to buy a land to grow your favorite tomatoes 🍅 </li><li>Easy and fun : You don't need to be an engineer to build this, trust me ! 🤯</li><li>Cheap : You will spend less than 60€ 💰</li></ul><h3 id="shopping-list">Shopping list</h3><figure class="kg-card kg-image-card kg-width-full"><img src="https://sbounmy.com/content/images/2020/07/Permaculture.png" class="kg-image" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></figure><ul><li>Container 6,90€ : <a href="https://www.leroymerlin.fr/v3/p/produits/poubelle-de-rue-80-l-h-67-x-l-51-x-p-51-cm-e181637">https://www.leroymerlin.fr/v3/p/produits/poubelle-de-rue-80-l-h-67-x-l-51-x-p-51-cm-e181637</a></li><li>Geotextile 21,20€ : <a href="https://www.leroymerlin.fr/v3/p/produits/feutre-geotextile-gris-100gr-m2-l-20-x-l-1-m-e1500340608">https://www.leroymerlin.fr/v3/p/produits/feutre-geotextile-gris-100gr-m2-l-20-x-l-1-m-e1500340608</a> One can make lots of wicking beds 🌱🌱🌱</li><li>Gravel 2,95€ : <a href="https://www.leroymerlin.fr/v3/p/produits/graviers-pierre-naturelle-blanc-calcaire-6-16mm-25-kg-e32477">https://www.leroymerlin.fr/v3/p/produits/graviers-pierre-naturelle-blanc-calcaire-6-16mm-25-kg-e32477</a></li><li>Pipe L.1m diam.50mm 2,40€ : <a href="https://www.leroymerlin.fr/v3/p/produits/tube-d-evacuation-pvc-diam-50-mm-l-1-m-e1401622197">https://www.leroymerlin.fr/v3/p/produits/tube-d-evacuation-pvc-diam-50-mm-l-1-m-e1401622197</a></li><li>Angle 1,40€ <a href="https://www.leroymerlin.fr/v3/p/produits/coude-87-3-en-pvc-a-coller-femelle-femelle-d-50-e10069">https://www.leroymerlin.fr/v3/p/produits/coude-87-3-en-pvc-a-coller-femelle-femelle-d-50-e10069</a></li><li>Glue 3,25€ : <a href="https://www.leroymerlin.fr/v3/p/produits/colle-en-tube-pvc-125-ml-e9926">https://www.leroymerlin.fr/v3/p/produits/colle-en-tube-pvc-125-ml-e9926</a></li><li>Clay balls 4,90€ : <a href="https://www.leroymerlin.fr/v3/p/produits/billes-d-argile-balcons-et-terrasse-geolia-5-l-e1401396445">https://www.leroymerlin.fr/v3/p/produits/billes-d-argile-balcons-et-terrasse-geolia-5-l-e1401396445</a></li><li>Mulch 10,95€ <a href="https://www.jardiland.com/copeaux-de-bois-naturel-50-l-1442067.html">https://www.jardiland.com/copeaux-de-bois-naturel-50-l-1442067.html</a></li><li>Terreau Potager 8,95€ <a href="https://www.jardiland.com/jardiland-terreau-potager-50-l-1444491.html">https://www.jardiland.com/jardiland-terreau-potager-50-l-1444491.html</a></li></ul><p>+2 or 3 empty plastic bottle.</p><p>Total : 62,90€</p><h3 id="tools">Tools</h3><ul><li>Drill</li><li>Drill bit 5mm</li><li>Small Saw</li><li>Scissor</li></ul><p>PS : if you decide to have a bigger water tank take the diam 63 pipe <a href="https://www.leroymerlin.fr/v3/p/produits/tube-d-evacuation-pvc-diam-100-mm-l-1-m-e9941"><a href="https://www.leroymerlin.fr/v3/p/produits/tube-d-evacuation-pvc-diam-63-mm-l-1-m-e165529">https://www.leroymerlin.fr/v3/p/produits/tube-d-evacuation-pvc-diam-100-mm-l-1-m-e9941</a></a> ( you will need to change the angle to 63mm too )</p><h2 id="pipe-the-water-tank">PIPE - the water tank</h2><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4499-1.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4500.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div></div><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4502.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4507-1.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div></div></div></figure><p>In the 1st picture I return the container so I can easily mark the length needed for the pipe. Use a Saw to cut it and do the same for the height pipe.</p><p></p><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4517.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4514.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div></div><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4526.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4533.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div></div></div><figcaption>5mm drill bit is enough dont take too big otherwise the gravel can get inside the pipe</figcaption></figure><p>Use a sand paper to prepare the pipe part that will go inside the Angle. Add the glue and drill holes for water.</p><h1 id="geotextile">Geotextile</h1><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4546.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4543.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div></div></div></figure><p>Draw the geotextile form ( you can do slightfly bigger so it will cover more )</p><p>Geotextile will prevent roots to go the stone part of the wicking bed.</p><h2 id="gravel-clay-balls">Gravel &amp; Clay balls</h2><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4554.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4559.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div></div><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4563.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4566-3.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div></div></div></figure><p>Put the gravel that will serve mineral to your vegetables and cut 2 plastic bottles or any cups that will hold the clay balls.<br></p><p>Make sure that gravel and top of your clay ball cups are flat.</p><p>Clay balls will prevent water stagnation.</p><h2 id="overflow-valve">Overflow valve</h2><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4569.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4568.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4576.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div></div></div></figure><p>Use a 5mm drill so it is small enough that the gravel don't escape.<br>The hole should be just below the geotextile level.<br><br>Cut out a small part of the geotextile so it fits the pipe's shape.</p><p>Now you can put your potting soil !</p><p>And don't forget to mulch : it will prevents water evaporation in summer / icing in winter and it brings nutriments to your plants when it decompose.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/07/images--3-.jpeg" class="kg-image" alt="🌿 Permaculture | Build a full Wicking bed for 60€"><figcaption>mulch</figcaption></figure><h1 id="test-it-">Test it !</h1><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4586.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4590.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div></div></div></figure><p>Fill the pipe with water and see if your overflow hole works.<br>When the water comes out you know that you're wicking bed have enough water</p><h1 id="bonus">Bonus</h1><h2 id="add-a-lombricompost-">Add a lombricompost 🐛</h2><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4601.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div><div class="kg-gallery-image"><img src="https://sbounmy.com/content/images/2020/07/IMG_4603.JPG" width="3024" height="4032" alt="🌿 Permaculture | Build a full Wicking bed for 60€"></div></div></div></figure><p>This bottle will contain your organic trash (no meat, no garlic, no fish, no bones)<br>The lombrics will come there and take the nutriments to the soil : you won't need any fertilizer.</p><p>You will need to drill few 3 holes on the lower side of the bottle so the lombrics can enter/leave your bottle.</p><h2 id="conclusion">Conclusion</h2><p>Building a wicking bed is a great way to start growing your own food whether you are busy or not skilled. I like the hacky way to create a sustainable system that will help feeding people living in cities.<br>I am bringing this mindset to my <a href="https://hackerhouse.paris">coliving spaces</a> so we can enjoy home grown food no matter where you live :)</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://sbounmy.com/content/images/2020/07/IMG_4497.JPG" class="kg-image" alt="🌿 Permaculture | Build a full Wicking bed for 60€"><figcaption>3x Tomato + 1x basilic + 2x spinach</figcaption></figure><h3 id="happy-hacking-">Happy Hacking !</h3>]]></content:encoded></item></channel></rss>