Skip to content

Instantly share code, notes, and snippets.

View ngotchac's full-sized avatar

Nicolas Gotchac ngotchac

  • Moonce
  • Berlin, Germany
View GitHub Profile
@ngotchac
ngotchac / patrimea.csv
Created May 24, 2020 18:43
Performances SCPI
2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019
Actipierre Europe - TDVM 0.78 5 5 5 4.16 4.55 4.7 4.75 4.31 4 3.6 4.04
Actipierre Europe - Prix 192.31 192 192 192 196.15 197.8 197.87 202.11 208.82 210 210 207.92
BTP Immobilier - TDVM 5.01 5.09 6.73 5.13 9.55
BTP Immobilier - Prix 375.25 375.25 375.93 376.22 375.92
Buroboutic - TDVM 5.44 5.42 5.22 4.89 5.31 5.15 4.55 4.3 4.42
Buroboutic - Prix 284.01 285.06 289.66 287.12 256.5 246.6 267.03 269.77 266.97
Cifocoma 2 - TDVM 4.85 8.09 7.25 6.81 6.45 6.02 4.77 4.24 4.56 5.1 5.35 4.09
Cifocoma 2 - Prix 340.21 271.94 331.03 425.84 465.12 528.24 644.03 660.38 592.11 529.41 504.67 440.1
Ficommerce - TDVM 5.27 5.21 5.18 5.04 4.76 4.52 4.61 4.57
@ngotchac
ngotchac / assurance-vie-stats.csv
Last active April 29, 2020 11:19
Fonds euros plus rentables ?
Année Fonds € UC Inflation MSCI World
2000 5.3 -2 1.7 -13.2
2001 5.3 -9.5 1.7 -16.8
2002 4.8 -15.2 1.9 -19.9
2003 4.5 8.4 2.1 33.1
2004 4.4 6.4 2.1 14.7
2005 4.2 14.4 1.8 9.5
2006 4.1 8.8 1.6 20.1
2007 4.1 1.5 1.5 9
2008 4 -22.3 2.8 -40.7

Keybase proof

I hereby claim:

  • I am ngotchac on github.
  • I am ngotchac (https://keybase.io/ngotchac) on keybase.
  • I have a public key ASDmm59S-39bW4WjoqOIARsabDSVWuRF8jxG1XMOrdEfwQo

To claim this, I am signing this object:

@ngotchac
ngotchac / verify-riot-channel.js
Created May 16, 2017 22:13
Verify every person in a Riot channel
(function () {
const waitUntil = (query, spent = 0) => {
if (spent > 2500) {
return Promise.reject(new Error(`Didn't find ${query} after 5s.`))
}
const has = document.querySelectorAll(query).length > 0;
if (has) {
return Promise.resolve();