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
| * 264 nb bugzilla soumis http://bugs.koha-community.org/bugzilla3/buglist.cgi?cmdtype=runnamed&list_id=117343&namedcmd=created_in_2014 | |
| * nb patchs attachés | |
| * nb signés | |
| * nb qas |
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
| #!/bin/perl | |
| # | |
| # Just find status of bugzilla numbers given in a file. | |
| # Use https://github.com/frasertweedale/bugzillatools | |
| # | |
| # perl thisfile.pl bznum > statusoutput.csv | |
| # | |
| # $ cat bznum | |
| # 42 | |
| # 1024 |
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
| $ curl -d "{'issue': {'story_points' : 13} }" -D - -XPUT http://sbox-forge/issues/12789.json -H "Content-Type: application/json" &> 1.out | |
| % Total % Received % Xferd Average Speed Time Time Time Current | |
| Dload Upload Total Spent Left Speed | |
| 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 | |
| 100 707 100 674 100 33 8771 429 --:--:-- --:--:-- --:--:-- 32095 | |
| HTTP/1.1 500 Internal Server Error | |
| Date: Wed, 02 Jul 2014 14:05:39 GMT |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
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
| story_points;redmine number | |
| 5;13655 | |
| 5;151 | |
| 5;9340 | |
| 5;14106 | |
| 5;14166 | |
| 5;14776 | |
| 5;12624 | |
| 5;13769 | |
| 5;12957 |
- Ces fichiers sont des checklists que j'ai écrites pour nos rituels divers, ils sont adaptés à notre pratique de Scrum et autres ateliers
- Elles peuvent au mieux vous inspirer :)
- Les actions que je ne réalise pas systématiquement sont notées entre crochets
EDIT: checklists déplacées et maintenus dans un dépôt sur github: https://github.com/clrh/checklists-facilitation
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Model</title> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | |
| <style type="text/css"> | |
| @import url(http://fonts.googleapis.com/css?family=Droid+Serif); | |
| @import url(http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz); | |
| body { |
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
| $ git describe | |
| v3.08.00-1339-g8ba2c8a | |
| $ git log --oneline --decorate --color -5 | |
| 8ba2c8a (HEAD, current) Add robots txt file to deny all bots | |
| 5d92ab3 (tag: v3.10.00) Adding 3.10 release notes | |
| e261ec3 Bumping version to 3.10.0 and adding sponsors that are were not already written | |
| f41cd9e Merge remote-tracking branch 'tamil/3.10.0-translate' into 3.10.xb | |
| 4fd58d8 Bug 9018 Italian translation of ccsr.po |
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
| #!/bin/bash | |
| # | |
| # lxc: linux Container library | |
| # Authors: | |
| # Serge Hallyn <serge.hallyn@ubuntu.com> | |
| # Daniel Lezcano <daniel.lezcano@free.fr> | |
| # This library is free software; you can redistribute it and/or |
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
| #!/bin/bash | |
| # Geal: csv file for ab testing, just describe pages to call and tests to launch | |
| # csv sample: | |
| # Get date;Page;Test;Time per request;Total transferred;Requests per second | |
| # 201209271713;http://drupac_test/;ab -n 1 -c 1;181.345;13866;5.13 | |
| # 201209271713;http://drupac_test/;ab -n 5 -c 2;240.892;69330;9.53 | |
| # 201209271713;http://drupac_test/test;ab -n 1 -c 1;156.220;14693;6.91 | |
| # 201209271713;http://drupac_test/test;ab -n 5 -c 2;205.237;73465;11.76 | |
| # 201209271713;http://drupac_test/;ab -n 1 -c 1;154.212;13866;6.37 |