Skip to content

Instantly share code, notes, and snippets.

View jeremyVignelles's full-sized avatar

Jérémy VIGNELLES jeremyVignelles

  • Orléans, France
View GitHub Profile
@jeremyVignelles
jeremyVignelles / index.html
Created August 25, 2023 09:19
Aire de jeux vue.js 2
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aire de jeux vue.js</title>
</head>
<body>
<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>
<div id="app">{{ message }}</div>
@jeremyVignelles
jeremyVignelles / App.xaml
Created August 28, 2017 15:43
Repro warning mahapps
<Application x:Class="Test.Mahapps.Metro.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Test.Mahapps.Metro"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Controls.xaml" />
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Fonts.xaml" />
@jeremyVignelles
jeremyVignelles / testPerf.js
Last active August 29, 2015 14:25
Influx DB perf test using node.js
#!/usr/bin/node
var iCount = 96;
var jCount = 2;
// Number of points for a given (i;j) couple
var pointsCount = 4;
// The number of fields per point (1 = tags mode, max value is 255, I would like to set it to 512)
var fieldsCount = 128;