Si aujourd'hui les étudiants font face aux défis de l'efficacité de leur orientation et de leur professionalisation, entrepreneuriat est une des notions les plus partagées vers eux. The Starters se veut être une communcauté bâtie autour de ces points là et qui permettra de développer des professionnels doués et des entrepreneurs efficaces.
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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
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 os | |
import sys | |
from sqlalchemy import Column, ForeignKey, Integer, String | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlalchemy.orm import relationship | |
from sqlalchemy import create_engine | |
Base = declarative_base() | |
class Person(Base): |
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
# coding: utf-8 | |
from odoo import fields, models | |
class ProductTemplate(models.Model): | |
_inherit = 'product.template' | |
book_id = fields.Many2one('oo.consultation', string="Livre associé") |
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
<?xml version="1.0" encoding="utf-8"?> | |
<odoo> | |
<data> | |
<!-- Héritage de la vue 'product.product_template_only_form_view' --> | |
<record model="ir.ui.view" id="oo_product_template_form"> | |
<field name="name">oo_product_template.form</field> | |
<field name="model">product.template</field> | |
<field name="inherit_id" ref="product.product_template_only_form_view"/> | |
<field name="arch" type="xml"> |
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
<?xml version="1.0" encoding="utf-8"?> | |
<odoo> | |
<data> | |
<!-- Définir l'action pour ouvrir le formulaire de devis --> | |
<record model="ir.actions.act_window" id="oo_purchase_order_action"> | |
<field name="name">Devis</field> | |
<field name="res_model">purchase.order</field> | |
<field name="view_type">form</field> | |
<field name="view_mode">tree,form</field> |
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
DATABASE_URI = 'postgresql+psycopg2://user:password@localhost/dbname' |
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
""" | |
Flask-Simple | |
------------- | |
Just to test how flask's extensions work! | |
""" | |
from setuptools import setup | |
setup( | |
name='Flask-Simple', |
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
from flask import Blueprint | |
class Simple(object): | |
def __init__(self, app): | |
self.app = None | |
if app is not None: | |
self.init_app(app) | |
def init_app(self, app): | |
simple = self.register('simple') |
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
/* @odoo-module */ | |
import { registry } from "@web/core/registry"; | |
import { Model, useModel } from "@web/views/helpers/model"; | |
import { ControlPanel } from "@web/search/control_panel/control_panel"; | |
import { XMLParser } from "@web/core/utils/xml"; | |
import { KeepLast } from "@web/core/utils/concurrency"; | |
import { useService } from "@web/core/service_hook"; | |
// ----------------------------------------------------------------------------- |
OlderNewer