- definiowanie problemu,
- określanie wymagań,
- planowanie,
- projektowanie architektury,
- projektowanie szczegółowe,
- pisanie kodu i debugowanie,
- testy jednostkowe,
- testy integracyjne,
- reprezentuje odrębną cechę podmiotu tabeli
Verb | Path | Action | Route Name |
---|---|---|---|
GET | /resource | index | resource.index |
GET | /resource/create | create | resource.create |
POST | /resource | store | resource.store |
GET | /resource/{resource} | show | resource.show |
GET | /resource/{resource}/edit | edit | resource.edit |
PUT/PATCH | /resource/{resource} | update | resource.update |
DELETE | /resource/{resource} | destroy | resource.destroy |
Podmiot deklaruje swoją tożsamość (identity). Na przykład:
Strona ufająca stosuje odpowiednią technikę uwierzytelniania (authentication mechanism) w celu weryfikacji zadeklarowanej wcześniej tożsamości. Na przykład:
find /home/protected/app/storage/backups/* -type d -not -newerct '30 minutes ago' -print0 | xargs -r rm -rf
find /var/www/gistlist.ksdev.pl/app/storage/backups/* -type d -mmin +30 -exec rm -rf {} +
------------------------------------------------------------ | |
C:\Program Files (x86)\JetBrains\PyCharm Community Edition 3.1.2\helpers\packaging_tool.py run on 07/24/14 19:34:45 | |
DEPRECATION: --no-install, --no-download, --build, and --no-clean are deprecated. See https://github.com/pypa/pip/issues/906. | |
Downloading/unpacking pelican | |
Getting page https://pypi.python.org/simple/pelican/ | |
URLs to search for versions for pelican: | |
* https://pypi.python.org/simple/pelican/ | |
Analyzing links from page https://pypi.python.org/simple/pelican/ | |
Found link https://pypi.python.org/packages/2.7/p/pelican/pelican-3.4.0-py2.py3-none-any.whl#md5=b6246f58cd02dfba752bb5c9b4534b13 (from https://pypi.python.org/simple/pelican/), version: 3.4.0 | |
Found link https://pypi.python.org/packages/source/p/pelican/pelican-1.1.1.tar.gz#md5=721e60eedcb2bced8bea1e5780c9eaaa (from https://pypi.python.org/simple/pelican/), version: 1.1.1 |
Now, if you needed to poll your web service, your first instinct might be to do something like this with JavaScript and jQuery:
setInterval(function(){
$.ajax({ url: "server", success: function(data){
//Update your dashboard gauge
salesGauge.setValue(data.value);
}, dataType: "json"});
To remove multiple files such as *.jpg or *.sh with one command find, use:
find . -name "FILE-TO-FIND" -exec rm -rf {} \;
OR
find . -type f -name "FILE-TO-FIND" -exec rm -f {} \;
The only difference between above two syntax is that the first command remove directories as well where second command only removes files. Options: