-
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.
- Loading branch information
ahoundetoungan
authored and
ahoundetoungan
committed
Sep 14, 2022
1 parent
6f2a188
commit ea8d26d
Showing
51 changed files
with
7,350 additions
and
1 deletion.
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
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
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -20,7 +20,6 @@ <h2>Informations</h2> | |
<li> <strong>NB :</strong> <span style="color: #a00000">Au delà de cette date, vous perdez <strong>2 points</strong> sur votre note, chaque jour supplémentaire.</span> </li> | ||
</ul> | ||
<li> Vous devez rendre un rapport de 10 à 15 pages, votre code ansi que vos données. Utilisez le logiciel de votre choix. Envoyez vos fichiers à <a href="mailto:[email protected]">[email protected]</a>. Vous devez recevoir un accusé de réception dans les 24 heures.</li> | ||
<li> L'accès à cette page sera fermé à partir du 24 Décembre 2022.</li> | ||
</ul> | ||
<br/> | ||
<br/> | ||
|
@@ -61,6 +60,14 @@ <h2>Données</h2> | |
<li> <a href="/files/teaching/panel-iv/rwm.RDS" class="disabled">German Health Care Data, Unbalanced Panel</a> [<u>source</u> : Riphahn, Regina T., Achim Wambach, and Andreas Million, (2003)] | ||
</li> | ||
</ul> | ||
|
||
<br/> | ||
<br/> | ||
<h2>Meilleurs Projets</h2> | ||
<ul> | ||
<li> <a href="/files/teaching/panel-iv/bestprojects/Nguyen21.pdf" target="_blank" class="abled"> Thanh Huong Nguyen (2021)</a> -- <a href="/files/teaching/panel-iv/bestprojects/Djouda21.pdf" target="_blank" class="abled"> Michael Djouda Tchinda (2021)</a> -- <a href="/files/teaching/panel-iv/bestprojects/Djigo21.pdf" target="_blank" class="abled"> Fatimata Djigo (2021)</a><!-- This is activated with CH0--> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div><!-- teaching --> |
Binary file not shown.
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,3 @@ | ||
source 'https://rubygems.org' | ||
|
||
gemspec |
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,22 @@ | ||
Copyright (C) 1993-2013 Yukihiro Matsumoto. All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions | ||
are met: | ||
1. Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
2. Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | ||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
SUCH DAMAGE. |
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,61 @@ | ||
# Webrick | ||
|
||
WEBrick is an HTTP server toolkit that can be configured as an HTTPS server, a proxy server, and a virtual-host server. | ||
|
||
WEBrick features complete logging of both server operations and HTTP access. | ||
|
||
WEBrick supports both basic and digest authentication in addition to algorithms not in RFC 2617. | ||
|
||
A WEBrick server can be composed of multiple WEBrick servers or servlets to provide differing behavior on a per-host or per-path basis. WEBrick includes servlets for handling CGI scripts, ERB pages, Ruby blocks and directory listings. | ||
|
||
WEBrick also includes tools for daemonizing a process and starting a process at a higher privilege level and dropping permissions. | ||
|
||
## Installation | ||
|
||
Add this line to your application's Gemfile: | ||
|
||
```ruby | ||
gem 'webrick' | ||
``` | ||
|
||
And then execute: | ||
|
||
$ bundle | ||
|
||
Or install it yourself as: | ||
|
||
$ gem install webrick | ||
|
||
## Usage | ||
|
||
To create a new WEBrick::HTTPServer that will listen to connections on port 8000 and serve documents from the current user's public_html folder: | ||
|
||
```ruby | ||
require 'webrick' | ||
|
||
root = File.expand_path '~/public_html' | ||
server = WEBrick::HTTPServer.new :Port => 8000, :DocumentRoot => root | ||
``` | ||
|
||
To run the server you will need to provide a suitable shutdown hook as | ||
starting the server blocks the current thread: | ||
|
||
```ruby | ||
trap 'INT' do server.shutdown end | ||
|
||
server.start | ||
``` | ||
|
||
## Development | ||
|
||
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. | ||
|
||
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). | ||
|
||
## Contributing | ||
|
||
Bug reports and Patch are welcome on https://bugs.ruby-lang.org/. | ||
|
||
## License | ||
|
||
The gem is available as open source under the terms of the [2-Clause BSD License](https://opensource.org/licenses/BSD-2-Clause). |
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,10 @@ | ||
require "bundler/gem_tasks" | ||
require "rake/testtask" | ||
|
||
Rake::TestTask.new(:test) do |t| | ||
t.libs << "test" << "test/lib" | ||
t.libs << "lib" | ||
t.test_files = FileList['test/**/test_*.rb'] | ||
end | ||
|
||
task :default => :test |
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,14 @@ | ||
#!/usr/bin/env ruby | ||
|
||
require "bundler/setup" | ||
require "webrick" | ||
|
||
# You can add fixtures and/or initialization code here to make experimenting | ||
# with your gem easier. You can also use a different console, if you like. | ||
|
||
# (If you use this, don't forget to add pry to your Gemfile!) | ||
# require "pry" | ||
# Pry.start | ||
|
||
require "irb" | ||
IRB.start(__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,8 @@ | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
IFS=$'\n\t' | ||
set -vx | ||
|
||
bundle install | ||
|
||
# Do any other automated setup that you need to do here |
Oops, something went wrong.