mkdir build
( cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DEXPERIMENTAL=1 )
( cd build && time make -j12 )
( cd build/tests && time ctest -j12 -E 'edges_view-options-tests|nef3_broken' )
( cd build/tests && time ctest -j12 -R 'fastcsg.*' )
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright 2021 Google LLC. | |
| // SPDX-License-Identifier: Apache-2.0 | |
| // | |
| /* | |
| This model exercices a few experimental features I've been brewing. | |
| It's not a theoretical case tho: I was trying to print a chainmail with | |
| variable tiles when OpenSCAD's rendering scalability challenges hit me hard :-S | |
| (guess I fell down the rabbit hole of 3d rendering optimization at the | |
| temporary expense of my 3d printing projects, oh well!) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:js'; | |
| import 'dart:html'; | |
| main() { | |
| printJsObject(o) => | |
| (JsObject(context['Function'], ['console.log(arguments[0])']) as JsFunction).apply([o]); | |
| printJsObject(DivElement()); | |
| // prints <div></div> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:js'; | |
| import 'dart:html'; | |
| main() { | |
| printJsObject(document.body); | |
| var o = IntersectionObserver((entries, observer) { | |
| printJsObject(observer); | |
| printJsObject(JsObject.fromBrowserObject(observer)); | |
| for (final entry in entries) { | |
| printJsObject(entry); |
Toute ressemblance avec l'affaire du racolage passif serait purement fortuite.
Ne nous voilons pas la face: en matière de politique publique, ce n'est pas l'intention qui compte, ce sont les résultats.
Eh bien quid justement des intentions en jeu dans l'affaire du burkini, et des résultats probables?
Je vois grosso modo 3 profils majeurs pour nos bien-intentionnés amis anti-burkini:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # https://gist.github.com/ochafik/9929ec51d3c4d3d613b71b5f5b45130b | |
| # For SPDY / HTTP2 push: https://github.com/eigengo/opensourcejournal/blob/master/2014.1/spdynetty/spdynetty.md | |
| import getopt | |
| import os | |
| import re | |
| import sys | |
| import threading | |
| import urllib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # {rtti,types,classes,errors,generators,operations,runtime} | |
| for lib in rtti types classes errors generators operations runtime ; do | |
| #_internal/compiler/js_lib/runtime.dart | |
| js=lib/runtime/dart/_$lib.js | |
| dart=tool/input_sdk/private/$lib.dart | |
| if [[ ! -f $dart || "$FORCE" == "1" ]]; then | |
| # ( cat $js | grep '\.\.\.' > /dev/null ) || | |
| cat $js | \ | |
| # egrep -v '^ exports.' | | |
| egrep -v "'use strict'" | \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Gets a property descriptor for a target instance, skipping its class | |
| * and walking up the super-classes hierarchy. | |
| * | |
| * @private | |
| * @param {!Object} target | |
| * @param {!string} name | |
| * @return {!Object.<ObjectPropertyDescriptor>|undefined} | |
| */ | |
| $jscomp.getSuperPropertyDescriptor_ = function(target, name) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- | |
| Widget build() { | |
| return new Scaffold( | |
| toolbar: buildToolBar(), | |
| body: buildBody() | |
| ); | |
| } | |
| }--> | |
| <paper-scaffold> | |
| <paper-header-panel> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Run with: | |
| // java -jar compiler.jar --language_in=ECMASCRIPT6_STRICT -O ADVANCED --warning_level VERBOSE functions.js | |
| /** | |
| * @param {function(*)} f1 ERROR | |
| * @param {function(*):*} f2 ERROR | |
| * @param {function(?):*} f3 | |
| * @param {function(*):?} f4 ERROR | |
| * @param {function(?):?} f5 | |
| * @param {function()} f6 ERROR |