Skip to content

Commit

Permalink
teaching
Browse files Browse the repository at this point in the history
  • Loading branch information
ahoundetoungan authored and ahoundetoungan committed Sep 14, 2022
1 parent 6f2a188 commit ea8d26d
Show file tree
Hide file tree
Showing 51 changed files with 7,350 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,5 @@ gem "wdm", "~> 0.1.0", :install_if => Gem.win_platform?
gem "kramdown-parser-gfm"

gem "jekyll", "~> 3.9"

gem 'webrick', '>=1.7.0'
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ GEM
unf_ext (0.0.7.7)
unicode-display_width (1.7.0)
wdm (0.1.1)
webrick (1.7.0)
zeitwerk (2.4.2)

PLATFORMS
Expand All @@ -270,6 +271,7 @@ DEPENDENCIES
tzinfo (~> 1.2)
tzinfo-data
wdm (~> 0.1.0)
webrick (>= 1.7.0)

BUNDLED WITH
2.1.4
Empty file.
Binary file added files/teaching/panel-iv/bestprojects/Djigo21.pdf
Binary file not shown.
Binary file not shown.
Binary file added files/teaching/panel-iv/bestprojects/Nguyen21.pdf
Binary file not shown.
9 changes: 8 additions & 1 deletion teaching/panel-iv.html
Original file line number Diff line number Diff line change
Expand Up @@ -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/>
Expand Down Expand Up @@ -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.
3 changes: 3 additions & 0 deletions vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source 'https://rubygems.org'

gemspec
22 changes: 22 additions & 0 deletions vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/LICENSE.txt
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.
61 changes: 61 additions & 0 deletions vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/README.md
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).
10 changes: 10 additions & 0 deletions vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/Rakefile
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
14 changes: 14 additions & 0 deletions vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/bin/console
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__)
8 changes: 8 additions & 0 deletions vendor/bundle/ruby/3.0.0/gems/webrick-1.7.0/bin/setup
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
Loading

0 comments on commit ea8d26d

Please sign in to comment.