- https://ru.vuejs.org/v2/guide/
- Отрисовка списков: https://ru.vuejs.org/v2/guide/list.html
- Основы компонентов: https://ru.vuejs.org/v2/guide/components.html
- Валидация форм: https://vuejs.org/v2/cookbook/form-validation.html
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
| #include <string.h> | |
| #include <arpa/inet.h> | |
| #include <stdint.h> | |
| #include <string.h> | |
| #include <netinet/ip.h> | |
| #include <netinet/ip_icmp.h> | |
| #include <unistd.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> |
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
| <?php | |
| function s_datediff($str_interval, $dt_menor, $dt_maior, $relative=false) | |
| { | |
| if( is_string( $dt_menor)) $dt_menor = date_create( $dt_menor); | |
| if( is_string( $dt_maior)) $dt_maior = date_create( $dt_maior); | |
| $diff = date_diff( $dt_menor, $dt_maior, ! $relative); | |
| switch( $str_interval){ |
Source: https://medium.com/@Mahmoud_Zalt/eloquent-relationships-cheat-sheet-5155498c209
| One to one ( 1-1) |
One to many ( 1-n) |
Poly one to many ( 1x-n) |
Many to many ( n-n) |
Poly many to many ( nx-n) |
|
|---|---|---|---|---|---|
| Number of models | 2 only | 2 only | 3 and above | 2 only | 3 and above |
| Number of tables | 2 (1/model) | 2 (1/model) | 3+ (1/model) | 3 (1/model + pivot) | 4+ (1/model + pivot) |
| Pivot table | - | - | - | required |
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
| University of Alaska http://alaska.edu AK | |
| Alaska Christian College http://alaskacc.edu AK | |
| National Park Community College http://npcc.edu AK | |
| University of Alaska Fairbanks http://uaf.edu AK | |
| University of Arkansas – Fort Smith http://uafs.edu AK | |
| Alabama A&M University http://aamu.edu AL | |
| Athens State University http://athens.edu AL | |
| Auburn University http://auburn.edu AL | |
| Auburn University at Montgomery http://aum.edu AL | |
| Birmingham-Southern College http://bsc.edu AL |
Here are the simple steps needed to create a deployment from your local GIT repository to a server based on this in-depth tutorial.
You are developing in a working-copy on your local machine, lets say on the master branch. Most of the time, people would push code to a remote server like github.com or gitlab.com and pull or export it to a production server. Or you use a service like deepl.io to act upon a Web-Hook that's triggered that service.
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
| // http://www.olark.com/spw/2011/08/you-can-list-a-directory-with-8-million-files-but-not-with-ls/ | |
| #define _GNU_SOURCE | |
| #include <dirent.h> /* Defines DT_* constants */ | |
| #include <fcntl.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <unistd.h> | |
| #include <stdlib.h> | |
| #include <sys/stat.h> | |
| #include <sys/syscall.h> |
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
| <?php | |
| $context = array(); | |
| $proxy = getenv("http_proxy"); | |
| if ($proxy !== null) { | |
| $context['http'] = array( | |
| 'proxy' => str_replace("http", "tcp", $proxy), | |
| 'request_fulluri' => true | |
| ); | |
| } |