Skip to content

Instantly share code, notes, and snippets.

View faboo03's full-sized avatar

Fabien Rondeau faboo03

  • Stereograph
  • Lille
View GitHub Profile
This file has been truncated, but you can view the full file.
{"producer":{"name":"Stereograph3D","version":"0","exporter_version":"v2019.0.0","file":"Duplex.ifc","type":"IFC","schema":"IFC2X3","date":"10/08/2022 16:57"},"autoClear":true,"clearColor":[0.0,0.0,0.0],"ambientColor":[0.0,0.0,0.0],"gravity":[0.0,-9.81,0.0],"materials":[{"name":"e9234aaa-0ac3-47ac-9e69-3ab2655975a6","id":"e9234aaa-0ac3-47ac-9e69-3ab2655975a6","ambient":[0.0,0.0,0.0],"diffuse":[0.75,0.75,0.75],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":0.0,"alpha":1.0,"checkReadyOnlyOnce":false},{"name":"material_Default Wall","id":"c49a971a-96c1-4247-8baf-3f3ed401a239","ambient":[0.5019608,0.5019608,0.5019608],"diffuse":[0.5019608,0.5019608,0.5019608],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":0.0,"alpha":1.0,"checkReadyOnlyOnce":false},{"name":"material_Counter Top","id":"22f8992b-1df3-4aed-aa63-a86e8b4e4965","ambient":[0.8862745,0.694117665,0.5019608],"diffuse":[0.8862745,0.694117665,0.5019608],"specular":[0.0,0.0,0.0],"emissive":[0.0,0.0,0.0],"specularPower":0.
@faboo03
faboo03 / Code.gs
Created October 17, 2020 13:21
Google App Script - Extract event from calendar to Google Spreadsheet automatically
var calendarId = 'xxxx@group.calendar.google.com';
var startDate = "2020-01-01";
var stopDate = "2020-12-31";
// Add element to menu to force the trigger
function addMenu() {
var ui = SpreadsheetApp.getUi()
var menu = ui.createMenu("Menu AddOn").addItem("Extract Calendar", "extractFromCalendar").addToUi()
}
@faboo03
faboo03 / KeyExchange.md
Last active August 8, 2016 09:56
Notes d'installation
@faboo03
faboo03 / installDoc.md
Last active October 10, 2016 13:02
Install Apache With PHP-FPM
@faboo03
faboo03 / RestartMysqlPassword.md
Last active March 16, 2017 09:11
Restart Mysql Root Password

Restart Mysql Password

sudo service mysql stop
sudo mysqld_safe --skip-grant-tables &

Restart password

mysql -u root -e 'update user set authentication_string="" where User="root"' mysql
@faboo03
faboo03 / .travis
Created January 26, 2016 09:11
Example .travis
language: php
php:
- 5.5
- 5.6
- hhvm
matrix:
fast_finish: true
allow_failures:
@faboo03
faboo03 / test.md
Last active January 13, 2016 07:19
Symfony 2 : TP AnonymousGift

Symfony 2 : TP AnonymousGift

Sommaire

  • Présentation du contexte
  • Analyse UML
    • Flow
    • Entités
  • User
@faboo03
faboo03 / test.md
Created January 12, 2016 20:48
Hello!

Symfony 2 : TP AnonymousGift

Sommaire

  • Présentation du contexte
  • Analyse UML
    • Flow
    • Entités
  • User
@faboo03
faboo03 / test.html
Created January 12, 2016 20:46
Hello!
<h1 id="symfony-2-tp-anonymousgift">Symfony 2 : TP AnonymousGift</h1>
<h2 id="sommaire">Sommaire</h2>
<ul>
<li>Présentation du contexte</li>
<li>Analyse UML <br>
<ul><li>Flow</li>
@faboo03
faboo03 / boundingBox.php
Last active August 5, 2020 21:57
boundingBox.php code sample
<?php
interface iBoundingBox {
/**
* Récupère les coordonnées de la BoundingBox
*/
public function getCoords();
/**
* Fusionne 2 BoundingBox et retourne une BoundingBox qui contient les 2 précédentes.
*/