background preloader

Enabling Open Innovation & Collaboration

Enabling Open Innovation & Collaboration
Related:  ProgrammingCréation site internet

Geany Python Coding Setup | Tangent Technologies What is Geany? Geany is a lean little text editor that runs on Windows, Mac and Linux. On Ubuntu it take about ~1second to load and runs in about 60Mb of memory. Geany works well for Python development and in this article I go through installing, configuring and using Geany for Python development. The screen shot below gives you an idea of what Geany looks like. How to configure Geany for Python Linux Ubuntu Install and Setup To put these instructions together I am using a Raspberry Pi 4 with 4 MB of RAM. sudo apt-get install geany You're going to want to make sure you have Python installed first off. sudo apt-get install Python I also recommend installing the Python code checker and linter commands. sudo apt install pycodestyle pycodestyle checks your code formatting sudo apt install pyflakes pyflakes checks your dependencies and import statements sudo apt install pylint These commands can be used from a terminal to check your python files. pycodestyle main.py Code courtesy of Geany Wiki Python3

IDE PHP Quick Start Tutorial This document provides general guidelines for preparing the environment for PHP development, setting up a PHP project, and developing and running your first PHP application in the NetBeans IDE for PHP. Contents To follow this tutorial, you need the following software and resources. You can install the PHP engine, web server and database separately or use AMP (Apache, MySQL, PHP) packages. Installation and Configuration The following documents contain instructions for one or two ways to set up a PHP web stack on your operating system. Setting up a PHP Project in the NetBeans IDE for PHP For help in installing and starting NetBeans IDE, please see the installation documentation. To start PHP development in the NetBeans IDE for PHP, you first need to create a project. Start the IDE, switch to the Projects window, and choose File > New Project. In the Run As drop-down list, select Local Web Site. Running Your First PHP Project Start the IDE, choose File > Open Project. Congratulations! Next Steps

Les variables - Concevez votre site web avec PHP et MySQL Nous avons appris à créer des variables et à stocker des informations à l'intérieur. Mais pour le moment, aucun de nos codes sources n'affiche quoi que ce soit. Afficher le contenu d'une variable Vous vous souvenez que l'on peut afficher du texte avec echo ? <? $age_du_visiteur = 17; echo $age_du_visiteur; Comme vous le voyez, il suffit d'écrire le nom de la variable que vous voulez afficher. Au fait, on ne doit pas mettre de guillemets après le echo , comme tu nous as appris ? Non, quand il s'agit d'une variable, on ne met pas de guillemets autour. Créez un fichier PHP avec ce code source pour le tester. Le nombre contenu à l'intérieur de la variable s'affiche dans la page (ici, 17). La concaténation Non, ce n'est pas une insulte. En fait, écrire 17 tout seul comme on l'a fait n'est pas très parlant. Comment faire cela ? echo "Le visiteur a "; echo " ans"; Vous pouvez tester, ça fonctionne, comme vous le montre la figure suivante. Mais il y a plus malin. Concaténer avec des guillemets doubles

Open Source Software Licenses 101: The Eclipse Public License - FOSSA The Eclipse Public License (EPL) is a weak copyleft open source license maintained by the Eclipse Foundation. There are two versions of the EPL — the original EPL-1.0, which was released in 2004, and the EPL-2.0, which was published in 2017. The EPL-1.0 has been deprecated (and the Eclipse Foundation recommends OSS contributors consider switching to 2.0), so we’ll focus primarily on version 2.0 in this blog. (Assume all references to the Eclipse Public License are about the EPL-2.0 unless otherwise noted.) Much like fellow weak copyleft licenses LGPL and Mozilla Public License 2.0, the EPL carries more requirements on the use of the licensed code than permissive licenses, but offers more freedoms than strong copyleft licenses. In this blog, we’ll review the history of the Eclipse Public License, analyze its key provisions, and share some of the bigger projects that use it. RELATED: The Implications of SFC vs. History of the Eclipse Public License Thank you for submitting details. EPL vs.

Didapages - Télécharger Didapages (gratuit) Un livre permet la conservation des textes, l'accès à l'information ou encore la transmission d'idées. Avec la nouvelle technologie, les livres électroniques commencent à être populaires. Didapages est un logiciel qui permet de créer des livres multimédias. Principales fonctionnalités Ce logiciel permet à l'utilisateur de créer des livres virtuels pour des formations, ou des cours. Plus Didapages comprend 4 livres types pour guider votre apprentissage. A voir également Orthographe alternative : Didapages-1-2.zip Les opérateurs Operator are used to perform operation. Operator are mainly divided by three groups.1.Uniary Operators that takes one values2.Binary Operators that takes two values3.ternary operators that takes three values Operator are mainly divided by three groups that are totally seventeen types.1.Arithmetic Operator+ = Addition- = Subtraction* = Multiplication/ = Division% = Modulo** = Exponentiation 2.Assignment Operator = "equal to 3.Array Operator + = Union == = Equality === = Identity ! 4.Bitwise Operator& = and ^ = xor| = not<< = shift left>> = shift right 5.Comparison Operator== = equal=== = identical! 6.Execution Operator `` = backticks 7.Error Control Operator @ = at sign 8.Incrementing/Decrementing Operator ++$a = PreIncrement $a++ = PostIncrement --$a = PreDecrement $a-- = Postdecrement 9.Logical Operator && = And || = Or ! 10.string Operator . = concatenation operator .= concatenating assignment operator 11.Type Operator instanceof = instanceof 12.Ternary or Conditional operator ?

Duskers (Video Game) phpSecurePages - A PHP module to secure your web site with a login and password Les opérateurs arithmétiques Vous rappelez-vous des opérations élémentaires apprises à l'école ? Les opérateurs arithmétiques fonctionnent comme elles. L'opérateur de division ("/") retourne une valeur à virgule flottante sauf si les 2 opérandes sont des entiers (ou une chaîne de caractères qui a été convertie en entiers) et que leur division est exacte (i.e. a pour reste 0), auquel cas une valeur entière sera retournée. Les opérandes du modulo sont converties en entiers (en supprimant la partie décimale) avant exécution. Le résultat de l'opération modulo % a le même signe que le premier opérande, ansi le résultat de $a % $b aura le signe de . <? echo (5 % 3)." There are no user contributed notes for this page.

Related: