From f48db38fd4adc5b92fd6d89c3630bc8f5471389a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?well=C3=A1?= Date: Thu, 13 Jun 2019 12:04:30 +0200 Subject: [PATCH 1/5] adding new PHP resources fixes #7 #11 #1 #14 #17 --- pages/php/index.vue | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/pages/php/index.vue b/pages/php/index.vue index 042c25a..bc9121c 100644 --- a/pages/php/index.vue +++ b/pages/php/index.vue @@ -23,6 +23,31 @@ export default { desc: 'The PHP manual is documenting the whole spec while giving examples for each property.', url: 'https://www.php.net/manual/en/' }, + { + title: 'PHP for beginners', + desc: 'We all start somewhere. When it comes to web development with PHP, well, your first stop is this series. Designed specifically and exclusively for beginners, here, you'll learn the fundamentals of PHP - all the way down to defining variables and arrays.', + url: 'https://laracasts.com/series/php-for-beginners' + }, + { + title: 'Learn PHP in Y Minutes', + desc: 'A quick short overview of PHP utilizing most of the spec.', + url: 'https://learnxinyminutes.com/docs/php/' + }, + { + title: 'An online book for learning PHP', + desc: 'PHP Apprentice is an online, open source book about the PHP programming language. PHP is one of the most popular platforms for building websites and web services.', + url: 'https://phpapprentice.com/' + }, + { + title: 'PHP-FIG', + desc: 'Moving PHP forward through collaboration and standards. Welcome to the PHP Framework Interop Group! We're a group of established PHP projects whose goal is to talk about commonalities between our projects and find ways we can work better together.', + url: 'https://www.php-fig.org/' + }, + { + title: 'PHP Subreddit', + desc: 'Ask questions about frameworks, try your hand at php golf and strike gold or simply show off your latest work.', + url: 'https://reddit.com/r/php' + }, ] } }, From 000f18e6ed709246ef61cf9048d7fc649fd8241c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?well=C3=A1?= Date: Thu, 13 Jun 2019 12:08:46 +0200 Subject: [PATCH 2/5] fix ' --- pages/php/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/php/index.vue b/pages/php/index.vue index bc9121c..81a3bf0 100644 --- a/pages/php/index.vue +++ b/pages/php/index.vue @@ -25,7 +25,7 @@ export default { }, { title: 'PHP for beginners', - desc: 'We all start somewhere. When it comes to web development with PHP, well, your first stop is this series. Designed specifically and exclusively for beginners, here, you'll learn the fundamentals of PHP - all the way down to defining variables and arrays.', + desc: 'We all start somewhere. When it comes to web development with PHP, well, your first stop is this series. Designed specifically and exclusively for beginners, here, you\'ll learn the fundamentals of PHP - all the way down to defining variables and arrays.', url: 'https://laracasts.com/series/php-for-beginners' }, { @@ -40,7 +40,7 @@ export default { }, { title: 'PHP-FIG', - desc: 'Moving PHP forward through collaboration and standards. Welcome to the PHP Framework Interop Group! We're a group of established PHP projects whose goal is to talk about commonalities between our projects and find ways we can work better together.', + desc: 'Moving PHP forward through collaboration and standards. Welcome to the PHP Framework Interop Group! We\'re a group of established PHP projects whose goal is to talk about commonalities between our projects and find ways we can work better together.', url: 'https://www.php-fig.org/' }, { From b7a75af8c166a35a14771c4e21fa5ce94e523d15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?well=C3=A1?= Date: Thu, 13 Jun 2019 13:30:29 +0200 Subject: [PATCH 3/5] add new resource --- pages/php/index.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pages/php/index.vue b/pages/php/index.vue index 81a3bf0..b0a7242 100644 --- a/pages/php/index.vue +++ b/pages/php/index.vue @@ -48,6 +48,11 @@ export default { desc: 'Ask questions about frameworks, try your hand at php golf and strike gold or simply show off your latest work.', url: 'https://reddit.com/r/php' }, + { + title: '(The only proper) PDO tutorial', + desc: 'There are many tutorials on PDO already, but unfortunately, most of them fail to explain the real benefits of PDO, or even promote rather bad practices. The only two exceptions are phptherightway.com and hashphp.org, but they miss a lot of important information. As a result, half of PDO's features remain in obscurity and are almost never used by PHP developers, who, as a result, are constantly trying to reinvent the wheel which already exists in PDO.', + url: 'https://phpdelusions.net/pdo' + }, ] } }, From 2f37d511e5951152956ed1d2a9d550ffcdbe4989 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?well=C3=A1?= Date: Thu, 13 Jun 2019 13:33:13 +0200 Subject: [PATCH 4/5] fix ' --- pages/php/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/php/index.vue b/pages/php/index.vue index b0a7242..28dd3e7 100644 --- a/pages/php/index.vue +++ b/pages/php/index.vue @@ -50,7 +50,7 @@ export default { }, { title: '(The only proper) PDO tutorial', - desc: 'There are many tutorials on PDO already, but unfortunately, most of them fail to explain the real benefits of PDO, or even promote rather bad practices. The only two exceptions are phptherightway.com and hashphp.org, but they miss a lot of important information. As a result, half of PDO's features remain in obscurity and are almost never used by PHP developers, who, as a result, are constantly trying to reinvent the wheel which already exists in PDO.', + desc: 'There are many tutorials on PDO already, but unfortunately, most of them fail to explain the real benefits of PDO, or even promote rather bad practices. The only two exceptions are phptherightway.com and hashphp.org, but they miss a lot of important information. As a result, half of PDO\'s features remain in obscurity and are almost never used by PHP developers, who, as a result, are constantly trying to reinvent the wheel which already exists in PDO.', url: 'https://phpdelusions.net/pdo' }, ] From 298ce623b311f1850960cb40a3095e296b86dd8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?well=C3=A1?= Date: Fri, 14 Jun 2019 16:20:27 +0200 Subject: [PATCH 5/5] add new HTML resource fixes #39 --- pages/html/index.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pages/html/index.vue b/pages/html/index.vue index f04cb0a..7c51d55 100644 --- a/pages/html/index.vue +++ b/pages/html/index.vue @@ -33,6 +33,11 @@ export default { desc: 'A curated list of awesome Canvas examples, related articles and posts.', url: 'https://github.com/raphamorim/awesome-canvas#readme' }, + { + title: 'HTML Spec', + desc: 'This specification defines a big part of the Web platform, in lots of detail.', + url: 'https://html.spec.whatwg.org/' + }, ] } },