- Telescop Newton 200/1000
- Queue d'aronde vixen
- Ring SVBony SV116
- Rasberry PI 4 + box + ventirad
- Guiding camera Datyson T7C (ZWO ASI 120MC-like)
- Cordon raspi camera
- RPi camera HQ: https://www.kubii.com/en/cameras-sensors/2950-official-hq-camera-c-to-cs-mount-5056561800127.html
This file contains 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
/** | |
* Source: https://gist.github.com/leesaxby/fabc59c82569a225f8d833b5924e23c6 | |
* @param sourceNode | |
* @param destinationNode | |
*/ | |
const automaticDragAndDrop = (sourceNode, destinationNode) => { | |
const DRAG_OVER = 'dragover'; | |
const DRAG_END = 'dragend'; | |
const DRAG_START = 'dragstart'; | |
const DROP = 'drop'; |
This file contains 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
#syntax=docker/dockerfile:1.4 | |
ARG PHP_VERSION=8.1 | |
ARG NODE_VERSION=14 | |
####################### | |
# Node | |
####################### | |
FROM node:${NODE_VERSION}-alpine AS app_node | |
WORKDIR /var/www/deep-space-objects |
This file contains 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 Routing from './path/to/routing'; | |
;(function() { | |
const init = () => { | |
let myRoute = Routing.generate('my_route'); | |
console.log(myRoute); | |
}; | |
document.addEventListener("DOMContentLoaded", () => { | |
init(); |
VPS OVH | Ubuntu 16.04.3 LTS | LAMP | SYMFONY 4
- Votre projet doit être versionné avec
git
et hébergé (Github, Bitbucket...). - Vous devez avoir acheté un VPS et un nom de domaine.
- Vous devez également générer une clé SSH sur votre ordinateur. (explications ci-dessous)
This file contains 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 openlayers = require('openlayers'); | |
var moduleCarto = (function(ol) { | |
var initMap = function() | |
{ | |
// Couche Open Street map | |
var layerOsm = new ol.layer.Tile({ | |
title: 'Open Street Map', | |
visible: true, |