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
puts "My first doc" |
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
puts "My first doc" |
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
956 cd Bureau/ | |
957 ls | |
958 cd clmystery/ | |
959 ls | |
960 cat hint1 | |
961 cat hint2 | |
962 cat hint3 | |
963 cat hint4 | |
964 cat hint5 | |
965 cat hint6 |
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
/** | |
* Use this website for generate pdf label http://raw.githack.com/MrRio/jsPDF/master/ | |
* copy / past the code | |
**/ | |
var doc = new jsPDF('l', 'mm', [70,24]); | |
doc.setFontSize(15); | |
var i; |
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 React, { useState } from 'react'; | |
import { Box, Checkbox, FormControlLabel, FormGroup } from '@material-ui/core'; | |
import Highcharts from 'highcharts'; | |
import HighchartsReact from 'highcharts-react-official'; | |
import configObj from '../utils/configObj'; | |
export const StackedBarChart = () => { | |
const [scopeButton, setScopeButton] = useState(<div />); | |
const highchartsCallback = chart => { | |
chart.series.forEach((item, index) => { |
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
console.log('hello') |
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
console.log('hello') | |
bonjour tous le monde |
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
var __INHOUSE_BASE_URL = "https://core-stage.inhouse.app"; | |
var __INHOUSE_LOAD_INTERVAL = 2000; | |
var axiosScript = document.createElement("script"); | |
const openModal = (pickupPointWidgetUrl) => { | |
document.getElementById("main-header").innerHTML = ` | |
<div id="sympl_modal_pickup_point" style="position: fixed; overflow: hidden; top: 0; left: 0; z-index: 2147483647; width: 100%; height: 100%; overflow: auto; background-color: rgb(0,0,0); background-color: rgba(0,0,0,0.4);"> | |
<iframe | |
id="pickupPointIframe" | |
title="Pickup Point" |