Skip to content

Instantly share code, notes, and snippets.

Build command multi-language - A Le Goff

Script bash executable

http://www.zsh.org/

$ chmod +x monScript.sh
$ ./monScript.sh

Cours shell UNIX - annotation - Anthony Le Goff


Démarrer sous shell UNIX 'crosh'

Résumer des commandes en shell UNIX pour débutant. Basic à connaitre pour naviguer sous un terminal UNIX (ie: Linux, Chromebook ou Mac OS)

ENTRER SHELL CROSH

@leg0ffant
leg0ffant / chromebook-dev.md
Last active November 23, 2021 13:23
Informatique sous Chromebook et codeurs

Configuration -- Chromebook dev -- Anthony Le Goff -- Alpharatz Consulting


#CHROMEBOOK & DEVELOPPEUR Débuter chromebook et apprendre langage informatique

Utiliser un chromebook comme machine de travail pour l'apprentissage du code est un choix de paradigme, méthode de travail orienté web et cloud computing, ici pas de maintenance PC, système d'exploitation minimal.

@leg0ffant
leg0ffant / golang-fr.md
Last active August 9, 2022 12:33
Golang introduction [FR]

Cours langage GO - annotation - Anthony Le Goff


#INTRO ALGORITHME SOUS GO De l'écriture du premier programme à la logique informatique golang

http://golang.org

Premier programme et présentation de "hello world"

@leg0ffant
leg0ffant / hacker-IoT-toolbox-chromeOS.md
Last active August 29, 2015 14:18
Tool for hacker webdev. Liste d'outil pour la production sur internet, informatique et internet des objets via chromebook

Tags: Python, golang, hacker, toolbox

Démarrer la production et la livraison d'apps dans le cloud pour un produit marketing avec une logique d'intégrer l'internet des objets

Il existe une nébuleuse de produit, et d'outil pour lancer un site et/ou interface et programmer les systèmes embarqués, y tirer du profit et entrer dans l'économie numérique au delà de l'idée initiale du projet et la mise en oeuvre de celui-ci. Certains outils sont utilisés par les développeurs depuis déja bien longtemps, puis avec un renouveau de l'offre en fonction des tendances en informatique. Une liste pour intégrer un workflow et faire un design.

Configuration optimisé pour Chromebook et le guide de démarrage

@leg0ffant
leg0ffant / wifiARM.md
Last active August 29, 2015 14:07
Wifi setup ArchLinux ARM tested on TrendNET micro USB Wifi TEW-649UB

Configuration dependencies

$ pacman -Sy wireless_tools netctl ifplugd wpa_actiond dialog

Connect to wireless network

$ cd /etc/netctl
$ sudo wifi-menu -o

Check SSID name created

@leg0ffant
leg0ffant / README.md
Last active February 8, 2018 09:25 — forked from ichpuchtli/README.md
ArchLinux ARM nginx+uwsgi+flask

Dependencies

$ pacman -Syu python-pip nginx uwsgi-plugin-python uwsgi
$ pip install flask

Directory nginx creation

$ sudo mkdir -p /etc/nginx/sites-enabled

This document has now been incorporated into the uWSGI documentation:

http://uwsgi-docs.readthedocs.org/en/latest/tutorials/Django_and_nginx.html

Set up Django, nginx and uwsgi

Steps with explanations to set up a server using:

server {
server_name [host];
root /var/www/[document_root]; ## <-- Your only path reference.
# Enable compression, this will help if you have for instance advagg module
# by serving Gzip versions of the files.
gzip_static on;
location = /favicon.ico {
@leg0ffant
leg0ffant / nginx.conf
Last active May 5, 2020 10:06
Nginx file configuration Wordpress full SSL HSTS
#read more here http://tautt.com/best-nginx-configuration-for-security/
#don't send the nginx version number in error pages and Server header
server_tokens off;
# config to don't allow the browser to render the page inside an frame or iframe
# and avoid clickjacking
add_header X-Frame-Options SAMEORIGIN;
# when serving user-supplied content, include a X-Content-Type-Options: nosniff header along with the Content-Type: header,