Skip to content

Instantly share code, notes, and snippets.

View PierreGe's full-sized avatar

Pierre Gérard PierreGe

View GitHub Profile
euro enregistrement notaire admin_max tva_max total_max
25000 3125 798 1100 398.58 5651.58
50000 6250 1228.32 1100 488.9471999999999 9297.2672
75000 9375 1451.16 1100 535.7435999999999 12691.9036
100000 12500 1593.66 1100 565.6686 15989.3286
125000 15625 1736.16 1100 595.5935999999999 19286.7536
150000 18750 1878.66 1100 625.5186 22584.1786
175000 21875 2021.16 1100 655.4436 25881.6036
200000 25000 2163.66 1100 685.3685999999999 29179.0286
225000 28125 2306.16 1100 715.2936 32476.4536
euro enregistrement notaire admin_max tva_max total_max
25000 50 798 1100 398.58 2576.58
50000 50 1228.32 1100 488.9471999999999 3097.2672
75000 50 1451.16 1100 535.7435999999999 3366.9035999999996
100000 50 1593.66 1100 565.6686 3539.3286
125000 50 1736.16 1100 595.5935999999999 3711.7536
150000 50 1878.66 1100 625.5186 3884.1785999999997
175000 50 2021.16 1100 655.4436 4056.6036
200000 3125 2163.66 1100 685.3685999999999 7304.0286
225000 6250 2306.16 1100 715.2936 10601.4536
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@PierreGe
PierreGe / create-iso.sh
Created November 25, 2016 22:25 — forked from julianxhokaxhiu/create-iso.sh
Simple bash script to create a Bootable ISO from macOS Sierra Install Image from Mac App Store
#!/bin/bash
#
# Credits to fuckbecauseican5 from https://www.reddit.com/r/hackintosh/comments/4s561a/macos_sierra_16a238m_install_success_and_guide/
# Adapted to work with the official image available into Mac App Store
#
# Enjoy!
hdiutil attach /Applications/Install\ macOS\ Sierra.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app
hdiutil create -o /tmp/Sierra.cdr -size 7316m -layout SPUD -fs HFS+J
hdiutil attach /tmp/Sierra.cdr.dmg -noverify -nobrowse -mountpoint /Volumes/install_build
>>> def foo(l=[]):
... l.append("Hello")
... print(l)
...
>>> foo()
['Hello']
>>> foo()
['Hello', 'Hello']
>>> foo()
['Hello', 'Hello', 'Hello']