-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding configure.ac and replacing Makefile(s) by Makefile.am files
- Loading branch information
Showing
16 changed files
with
905 additions
and
206 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
|
||
|
||
|
||
W E B D A R | ||
|
||
--------- | ||
----- | ||
- | ||
|
||
|
||
Original Design & Development: Denis Corbin | ||
|
||
https://github.com/Edrusb/webdar | ||
|
||
No answer to support requests will be done out of mailing-list or other public | ||
area: your questions and their answers may be of interest to others. For all | ||
and to all, if you need support thanks to read the link below: | ||
|
||
Sharing must be both directions. | ||
|
||
Else for non support requests only, you are welcome to send an email | ||
to Denis at [email protected] paying attention to add the following | ||
string (the quotes are not necessary) "[EARTH IS BEAUTIFUL]" in the | ||
subject of your email, to be able to pass anti-spam filter. | ||
|
||
|
||
Here follows an extract of Denis Corbin's resume: | ||
|
||
1990-1992 Classes Prepas (math. sup. math. spe. M) | ||
1992-1995 ENSEIRB - Ecole Nationale Superieur d'Electronique | ||
Informatique et Radiocommunications de Bordeaux | ||
Promo I-1995. | ||
1995 3 months Erasmus project in Bologna (Italy). | ||
1995-1996 Military Service: 28e Regiment Transmission Armee de Terre | ||
Formation Equipex-RITA, operator on the RITTER network. | ||
Military training PMTE (Preparation Militaire Terre | ||
Encadrement). | ||
1997-2000 Software developer, Team leader, Project leader for | ||
Netcomsystems (which was renamed Spirent Communications in | ||
1999) Designed software for the Smartbits network tester. | ||
2000-2002 Network Design, architecture and network support for DCN | ||
of Alcatel Submarine Networks. | ||
2002-2003 DNS maintainer and Firewall admin for the GPRS network for | ||
Bouygues Telecom. | ||
2003-2004 Network Design and support for SFR's wap and SMS platform, | ||
Managed change of ISP connectivity (activating BGP dual | ||
homing) for SFR with no loss of service. | ||
Nov. 2003 Cisco Certified CCNA | ||
2004-2005 Validation responsible of the hosting infrastructure | ||
that provides data to UMTS mobile phones for SFR. | ||
Dec. 2004 Cisco Certified CCNP | ||
2005-2011 Network and security engineer at Telindus France. | ||
July 2008 Cisco Certified Internetwork Expert, CCIE #21568 R&S | ||
June 2009 Checkpoint Certified Security Expert (CCSE) | ||
2011-2015 Pre-sales engineer at Telindus for WAN optimization | ||
(Riverbed Solution), LAN Campus and Datacenter design and | ||
architecture (Cisco Nexus and Catalysts solutions). | ||
Nov. 2011 Riverbed certified RCSA | ||
Apr. 2012 Cisco Certified Sales Expert | ||
Oct. 2014 Network Solution Architect at HP (today Hewlett | ||
Packard Entreprise, aka HPE) | ||
Feb. 2015 HP Certified ASE | ||
Feb. 2016 HPE Certified Master ASE | ||
Nov. 2016 System Engineer at Aruba a Hewlett Packard Enterprise | ||
Company | ||
Jul. 2018 Recertified CCIE (10 years anniversary) | ||
Sep. 2018 Certified Aruba ACSPv1 | ||
Dec. 2018 System Engineer for the "Composable Fabric" SDN | ||
solution (Plexxi acquisition) at HPE | ||
July 2020 System Engineer for the Pensando solution (HPE-Pensando | ||
Partnership) | ||
Sep. 2020 HPE Hybrid IT v2 ATP certification | ||
Apr. 2021 Since Solution Architect for the Ezmeral software stack | ||
at HPE |
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
######################################################################## | ||
# webdar - a web server and interface program to libdar | ||
# Copyright (C) 2013-2023 Denis Corbin | ||
# | ||
# This file is part of Webdar | ||
# | ||
# Webdar is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# Webdar is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with Webdar. If not, see <http://www.gnu.org/licenses/> | ||
# | ||
#---- | ||
# to contact the author: [email protected] | ||
######################################################################## | ||
|
||
SUBDIRS = src doc po | ||
dist_noinst_DATA = INSTALL README TODO AUTHORS COPYING ChangeLog | ||
|
||
CPPCHECKDIR=./cppcheckbuilddir | ||
|
||
cppcheck: | ||
@if cppcheck --help > /dev/null ; then \ | ||
( mkdir -p $(CPPCHECKDIR) && cppcheck --force --file-filter="*.?pp" -isrc/testing -isrc/python --cppcheck-build-dir=$(CPPCHECKDIR) `pwd` ) || exit 1 ; \ | ||
else \ | ||
echo "cppcheck not present, aborting" || exit 1 ; \ | ||
fi | ||
|
||
clean-local: | ||
rm -rf $(CPPCHECKDIR) | ||
|
Oops, something went wrong.