├── .github └── workflows │ └── jekyll.yml ├── .gitignore ├── .ruby-version ├── 404.md ├── Gemfile ├── LICENSE ├── README.md ├── _config.yml ├── _includes ├── analytics.html ├── fanart.html ├── footer.html ├── header.html ├── js.html ├── meta.html ├── sponsors.html └── widget.html ├── _layouts ├── default.html └── post.html ├── _posts ├── 2014-01-03-forum.phalconphp.com.md ├── 2014-06-02-hypermailer.md ├── 2014-06-27-hurma.tv.md ├── 2014-06-30-delete.im.md ├── 2014-07-16-robinson.rs.md ├── 2014-07-17-giadamusic.com.md ├── 2014-07-21-danzerlogs.com.md ├── 2014-08-02-quidditchuk.org.md ├── 2014-11-13-yonacms.com.md ├── 2014-11-24-rightcasino.com.md ├── 2014-12-31-24sata.rs.md ├── 2015-04-21-oisie.com.md ├── 2015-05-09-free-templates.lt.md ├── 2015-11-12-polang.info.md ├── 2017-04-24-outsmart.io.md ├── 2017-10-11-socialveo.com.md ├── 2017-10-18-marchiauto.it.md ├── 2017-10-29-descontocupom.com.br.md ├── 2018-02-21-learny.online.md └── 2020-12-22-tvnfo.com.md ├── _redirects ├── assets ├── css │ ├── dark.css │ └── style.css ├── favicons │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ └── site.webmanifest ├── js │ ├── main.js │ ├── main.min.js │ └── theme-switcher.js └── projects │ ├── 24sata.rs │ ├── 24sata-2.png │ ├── 24sata-3.png │ └── thumb.png │ ├── danzerlogs.com │ └── thumb.png │ ├── delete.im │ ├── angled.jpg │ ├── sending.png │ ├── thumb.png │ └── viewing.png │ ├── descontocupom.com.br │ └── thumb.png │ ├── forum.phalconphp.com │ ├── forum01.png │ ├── forum02.png │ ├── forum03.png │ ├── forum04.png │ └── thumb.png │ ├── free-templates.lt │ ├── ss1.png │ ├── ss2.png │ ├── ss3.png │ └── thumb.png │ ├── giadamusic.com │ └── thumb.png │ ├── hurma.tv │ └── thumb.png │ ├── hypermailer │ ├── hmscreen1.png │ ├── hmscreen2.png │ ├── hmscreen3.png │ ├── hmscreen4.png │ ├── hmscreen5.png │ └── thumb.png │ ├── learny.online │ ├── cursos.jpg │ ├── home.jpg │ ├── paginas-informativas.jpg │ ├── perfiles.jpg │ └── thumb.png │ ├── marchiauto.it │ ├── marchi.png │ ├── marchi1.png │ └── thumb.png │ ├── oisie.com │ ├── ss1.png │ ├── ss2.png │ └── thumb.png │ ├── outsmart.io │ └── thumb.png │ ├── polang.info │ ├── detail.jpg │ ├── index.jpg │ ├── mobile.png │ └── thumb.png │ ├── quidditchuk.org │ ├── backend.png │ ├── backend2.png │ ├── frontend.png │ ├── frontend2.png │ └── thumb.png │ ├── rightcasino.com │ └── thumb.png │ ├── robinson.rs │ ├── backend.jpg │ ├── frontend.jpg │ └── thumb.png │ ├── socialveo.com │ ├── ios-app-1.png │ ├── ios-app-2.png │ ├── ios-app-3.png │ ├── ios-app-4.png │ ├── ios-app-5.png │ ├── rich_features_1.png │ ├── rich_features_2.png │ ├── thumb.png │ ├── webapp-1.png │ ├── webapp-3.png │ ├── webapp-4.png │ ├── webapp-5.png │ └── webapp-6.png │ ├── tvnfo.com │ └── home.png │ └── yonacms.com │ └── thumb.svg ├── build.sh ├── humans.txt ├── index.html ├── old-site ├── projects.json └── projects │ ├── 9score │ ├── index.html │ └── thumb.png │ ├── CG-Londrina │ ├── thumb.jpg │ ├── website01.jpg │ ├── website02.jpg │ ├── website03.jpg │ ├── website04.jpg │ └── website05.jpg │ ├── bootlegger-trail-race │ ├── records.png │ ├── results.png │ ├── runner-search.png │ └── thumb.png │ ├── dealdoodle-uk │ ├── dealdoodle_uk_categories.png │ ├── dealdoodle_uk_login.png │ ├── dealdoodle_uk_stores.png │ └── thumb.png │ ├── footballinclusive │ ├── champions-league-2015-2016.png │ ├── contribution-board.png │ ├── germany-vs-argentina-world-cup-2014.png │ └── thumb.png │ ├── homediary │ └── thumb.png │ ├── imeidata │ ├── blacklist_check.png │ ├── imei_check.png │ ├── iphone_check.png │ └── thumb.png │ ├── imgholdr │ └── thumb.png │ ├── istebenimstilim │ ├── thumb.png │ ├── website01.png │ ├── website02.png │ └── website03.png │ ├── jream │ ├── thumb.jpg │ └── thumb.png │ ├── kabar-indonesia-pintar │ ├── thumb.jpg │ └── thumb.png │ ├── karakurihiden │ └── thumb.png │ ├── king-of-episodes │ ├── show.png │ ├── thumb.png │ └── watch.png │ ├── kiwisoft │ └── thumb.png │ ├── mailfinder │ ├── dashboard.jpg │ ├── login.jpg │ ├── payment.jpg │ ├── thumb.png │ └── verify.jpg │ ├── meteoblue │ ├── meteogram.jpg │ ├── overview.jpg │ ├── radar.jpg │ ├── satellite.jpg │ ├── search.jpg │ └── thumb.png │ ├── mongosilakan │ └── thumb.png │ ├── newintoday │ └── thumb.png │ ├── nhieuviec │ └── thumb.png │ ├── phalcon-jobs │ └── thumb.png │ ├── phalcon-tip │ └── thumb.png │ ├── phalconphp-forum │ ├── forum01.png │ ├── forum02.png │ ├── forum03.png │ ├── forum04.png │ └── thumb.png │ ├── phalconphp-website │ ├── thumb.png │ ├── website01.png │ ├── website02.png │ ├── website03.png │ ├── website04.png │ └── website05.png │ ├── phanbook │ └── home.png │ ├── piggybank │ ├── full.png │ ├── landing.png │ └── thumb.png │ ├── practican-com │ └── thumb.png │ ├── prakse-lv │ ├── career-page.png │ ├── index.png │ ├── profile.png │ ├── thumb.png │ └── virtual-internship.png │ ├── qrmaker │ └── thumb.png │ ├── querobarato │ └── thumb.png │ ├── robertbojorcv │ └── thumb.png │ ├── safe_password_generate-Phalcon │ ├── test │ └── thumb.png │ ├── sauny-24 │ ├── blog.png │ ├── search.png │ └── thumb.png │ ├── searchmo │ └── thumb.png │ ├── shorturl │ └── thumb.png │ ├── smores │ ├── dashboard.png │ ├── login.png │ ├── registration.png │ └── thumb.png │ ├── stolarstwogiemza │ └── thumb.png │ ├── tasker │ ├── task-list.png │ └── thumb.png │ ├── the-dealio │ └── thumb.png │ ├── thedealsco │ ├── thedealsco-large.png │ ├── thedealsco-large2.png │ └── thumb.png │ ├── tsltranslator │ └── thumb.png │ ├── tutor-hero │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── readme.txt │ └── thumb.png │ ├── unturnedserv │ └── thumb.png │ ├── usacycling │ ├── myusac.png │ └── thumb.png │ ├── wallstreetcn │ └── thumb.png │ ├── whichbingo │ └── thumb.png │ └── yuyangongfu │ └── thumb.png ├── robots.txt ├── serve ├── tags.html └── updateData.php /.github/workflows/jekyll.yml: -------------------------------------------------------------------------------- 1 | # This workflow uses actions that are not certified by GitHub. 2 | # They are provided by a third-party and are governed by 3 | # separate terms of service, privacy policy, and support 4 | # documentation. 5 | 6 | # Sample workflow for building and deploying a Jekyll site to GitHub Pages 7 | name: Deploy BuiltWith to Pages 8 | 9 | on: 10 | # Runs on pushes targeting the default branch 11 | push: 12 | branches: ["master"] 13 | 14 | # Allows you to run this workflow manually from the Actions tab 15 | workflow_dispatch: 16 | 17 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 18 | permissions: 19 | contents: read 20 | pages: write 21 | id-token: write 22 | 23 | # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. 24 | # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. 25 | concurrency: 26 | group: "pages" 27 | cancel-in-progress: false 28 | 29 | jobs: 30 | # Build job 31 | build: 32 | runs-on: ubuntu-latest 33 | steps: 34 | - name: Checkout 35 | uses: actions/checkout@v4 36 | 37 | - name: "Setup PHP" 38 | uses: shivammathur/setup-php@v2 39 | with: 40 | php-version: 8.4 41 | 42 | - name: "Update FanArt" 43 | run: | 44 | php updateData.php 45 | 46 | - name: Setup Ruby 47 | # https://github.com/ruby/setup-ruby/releases/tag/v1.207.0 48 | uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4 49 | with: 50 | ruby-version: '3.1' # Not needed with a .ruby-version file 51 | bundler-cache: true # runs 'bundle install' and caches installed gems automatically 52 | cache-version: 0 # Increment this number if you need to re-download cached gems 53 | 54 | - name: Setup Pages 55 | id: pages 56 | uses: actions/configure-pages@v5 57 | 58 | - name: Build with Jekyll 59 | # Outputs to the './_site' directory by default 60 | run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" 61 | env: 62 | JEKYLL_ENV: production 63 | 64 | - name: Upload artifact 65 | # Automatically uploads an artifact from the './_site' directory by default 66 | uses: actions/upload-pages-artifact@v3 67 | 68 | # Deployment job 69 | deploy: 70 | environment: 71 | name: github-pages 72 | url: ${{ steps.deployment.outputs.page_url }} 73 | runs-on: ubuntu-latest 74 | needs: build 75 | steps: 76 | - name: Deploy to GitHub Pages 77 | id: deployment 78 | uses: actions/deploy-pages@v4 79 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | Gemfile.lock 3 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.2 2 | -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: 404 - Page not found 4 | permalink: /404.html 5 | --- 6 | 7 | ## 404 8 | 9 | Ooops! Something went wrong. 10 | 11 |

12 | Back To Home 13 |

14 | 15 | <3 Phalcon Team -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'jekyll', '~>4.3.4' 4 | 5 | group :jekyll_plugins do 6 | gem 'jekyll-paginate' 7 | gem 'kramdown-parser-gfm' 8 | gem 'jekyll-sitemap' 9 | gem 'jekyll-feed' 10 | gem 'algolia' 11 | end 12 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Barry Clark 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Built with Phalcon 2 | 3 | Gallery of applications, demos and projects built with Phalcon 4 | 5 | https://builtwith.phalcon.io 6 | 7 | ## Disclaimer 8 | This site has been inspired by https://builtwith.angularjs.org/. The github code has been forked and adapted to Phalcon. Credits to the contributors of that project for their hard work. 9 | 10 | ## Adding your project 11 | If you are familiar with Jekyll, then adding a site will be very easy! 12 | 13 | 1. Your site needs first a slug. This is the domain name (ignore the `www.`). So if your site is `www.sample.ld` the slug will be `sample.ld`. If your site is `blog.slug.ld` your slug will be `blog.slug.ld`. 14 | 15 | 2. Fork this repository. 16 | 17 | 3. Add images: 18 | * Create a folder under `/assets/projects` using your slug (i.e. `/assets/projects/blog.slug.ld`) 19 | * Add the main image for your site. The main image can named anything but it will have to be defined in the `meta.image` entry of your submission. This will be displayed in the front screen. 20 | * Add as many images as you like in that folder (i.e. `frontend.png`, `campaign.png`) 21 | 22 | 4. Add your page: 23 | * Go to the `_posts` folder. You can copy one of the existing files and adjust its name. The name must be `DATE-slug.md`. The date is in the `Y-m-d` format (i.e. `2018-12-15-blog.slug.ld.md`) 24 | 25 | 5. Open the file and adjust the metadata in the header. The metadata is enclosed between the `---` lines. Please be careful since errors here will not allow your site to be displayed. The metadata section resembles the `yaml` format 26 | 27 | ```yaml 28 | --- 29 | layout: post // Do not change this 30 | title: 'The Slug Sample site' // Add a small title 31 | stub: 'blog.slug.ld' // The unique slug 32 | tags: // One tag per line prefixed by `-` 33 | - production 34 | - productivity 35 | - forum 36 | - mysql 37 | - github 38 | meta: 39 | image: 'thumb.png' // The main image for the entry 40 | author: 41 | name: 'Nikolaos Dimopoulos' // Your name (can leave blank) 42 | avatar: '' // Github avatar or other 43 | github: 'https://github.com/niden' // Github profile 44 | bitbucket: '' // Bitbucket profile 45 | gitlab: '' // Gitlab profile 46 | site: 47 | tags: // One tag per line prefixed by `-` (same as above) 48 | - production 49 | - productivity 50 | - forum 51 | - mysql 52 | - github 53 | link: 'https://blog.slug.ld' // Website URL 54 | social: 55 | github: 'https://github.com/niden/slug.ld' // If the source code is available 56 | facebook: '' // Facebook page/group for the site 57 | twitter: '' // Twitter account for the site 58 | discord: '' // Discord channel for the site 59 | images: // If you don't have any images leave the below empty 60 | - name: 'hmscreen1.png' // Name of first image 61 | text: 'Event Log/Dashboard' // Description of first image 62 | - name: 'hmscreen2.png' // Name of second image 63 | text: 'Campaign Pre-Send Screen' // Description of second image 64 | --- 65 | ``` 66 | 67 | 6. Add the summary/description for your site. You will notice that there is a `` tag in the file you just copied. That placeholder splits the content and whatever is above it will show in the front page, while the rest will show in the page of your project. Please do not allow more than a handful of lines to be displayed at the front page to allow for an easy flow of reading and displaying projects. 68 | 69 | 7. Issue a pull request 70 | 71 | ## Sponsors 72 | 73 | Become a sponsor and get your logo on our README on Github with a link to your site. [[Become a sponsor](https://opencollective.com/phalcon#sponsor)] 74 | 75 | 76 | 77 | 78 | 79 | ## Backers 80 | 81 | Support us with a monthly donation and help us continue our activities. [[Become a backer](https://opencollective.com/phalcon#backer)] 82 | 83 | 84 | 85 | 86 | 87 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | title: Built With 2 | app: 3 | name: Built With 4 | author: 'Phalcon Team' 5 | description: "We are an open source web framework for PHP delivered as a C extension offering high performance and lower resource consumption" 6 | keywords: "php, phalcon, phalcon php, php framework, faster php framework, buultwith" 7 | avatar: https://avatars3.githubusercontent.com/u/1221505?v=4 8 | url: https://builtwith.phalcon.io 9 | baseurl: "/" 10 | analytics: 'G-RLMRZS0CB5' 11 | 12 | url: https://builtwith.phalcon.io 13 | social: 14 | email: team@phalcon.io 15 | facebook: 16 | github: phalcon 17 | rss: phalcon 18 | twitter: phalconphp 19 | 20 | tags_override: 21 | - phalcon4 22 | - release 23 | - zephir 24 | - lts 25 | - hangout 26 | - github 27 | - phalcon 28 | - community 29 | - update 30 | - roadmap 31 | - framework 32 | - benchmarks 33 | 34 | excerpt_separator: 35 | 36 | paginate: 5 37 | paginate_path: '/page-:num' 38 | permalink: /project/:title 39 | version: v1.2.0 40 | 41 | # Conversion 42 | markdown: kramdown 43 | highlighter: rouge 44 | lsi: false 45 | incremental: false 46 | 47 | # Markdown Processing 48 | kramdown: 49 | input: GFM 50 | syntax_highlighter: rouge 51 | hard_wrap: false 52 | auto_ids: true 53 | entity_output: as_char 54 | toc_levels: 1..6 55 | smart_quotes: lsquo,rsquo,ldquo,rdquo 56 | enable_coderay: false 57 | 58 | algolia: 59 | application_id: '3NJ6VL3MBW' 60 | index_name: 'phalcon-builtwith' 61 | search_only_api_key: 'a5196284f238decc7c99eda8ff991ea1' 62 | 63 | sass: 64 | style: :compressed # You might prefer to minify using :compressed 65 | 66 | include: 67 | - _redirects 68 | 69 | # Exclude these files from your production _site 70 | exclude: 71 | - Gemfile 72 | - Gemfile.lock 73 | - LICENSE 74 | - README.md 75 | - vendor 76 | - serve 77 | - updateData.php 78 | -------------------------------------------------------------------------------- /_includes/analytics.html: -------------------------------------------------------------------------------- 1 | {% if site.app.analytics %} 2 | 3 | 4 | 11 | {% endif %} 12 | -------------------------------------------------------------------------------- /_includes/fanart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/_includes/fanart.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/_includes/footer.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 9 | 10 | 14 | 15 | 64 | 65 | 113 | 114 |
115 | 116 |
117 | 118 | 125 | 126 | 135 | 136 |
137 |
138 |
139 |
140 | -------------------------------------------------------------------------------- /_includes/js.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/meta.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | {% if page.excerpt %} 18 | 19 | {% else %} 20 | 21 | {% endif %} 22 | 23 | 24 | 25 | 26 | 27 | {% if page.excerpt %} 28 | 29 | {% else %} 30 | 31 | {% endif %} 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | {% if page.title %}{{ page.title }} – {% endif %}{{ site.app.name }} – {{ site.app.description }} 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 58 | 59 | 61 | 63 | 64 | -------------------------------------------------------------------------------- /_includes/sponsors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/_includes/sponsors.html -------------------------------------------------------------------------------- /_includes/widget.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | Projects 4 |
5 |
6 | We're a nonprofit organization that creates 7 | solutions for web developers. Our products are 8 | Phalcon, 9 | Zephir and 10 | others. 11 | If you would like to help us stay free and open, 12 | please consider supporting us. 13 |
14 |
15 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | {% include fanart.html %} 2 | 3 | 4 | 5 | {% include meta.html %} 6 | {% include analytics.html %} 7 | 8 | 9 | {% include header.html %} 10 | 11 |
12 |
13 |
14 | {{ content }} 15 |
16 |
17 |
18 |
19 | Supporters 20 |
21 | {% include sponsors.html %} 22 |
23 | {% include widget.html %} 24 |
25 |
26 |
27 | {% include footer.html %} 28 | {% include js.html %} 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 |
5 |

6 | {{ page.title | escape }} 7 |

8 |
9 | {% if page.meta.link %} 10 | {{ page.meta.link }}  11 | {% endif %} 12 | {% if page.meta.social.github %} 13 | {{ page.meta.social.github }}  14 | {% endif %} 15 | {% if page.meta.social.facebook %} 16 | {{ page.meta.social.facebook }}  17 | {% endif %} 18 | {% if page.meta.social.twitter %} 19 | {{ page.meta.social.twitter }}  20 | {% endif %} 21 | {% if page.meta.social.discord %} 22 | {{ page.meta.social.discord }}  23 | {% endif %} 24 |
25 |
26 | {% for tag in page.tags %} 27 | 28 | {{ tag }} 29 | 30 | {% endfor %} 31 |
32 | {{ page.content }} 33 | 34 | {% assign path = '/assets/projects/' | append: page.slug | append: '/' %} 35 | {% for image in page.images %} 36 | {{ image.text }} 37 |
38 | {% endfor %} 39 |
40 | -------------------------------------------------------------------------------- /_posts/2014-01-03-forum.phalconphp.com.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Phalcon Community Discussion Forum" 4 | stub: forum.phalcon.io 5 | tags: 6 | - production 7 | - productivity 8 | - forum 9 | - mysql 10 | - github 11 | - open source 12 | - single module 13 | - tests included 14 | meta: 15 | image: 'thumb.png' 16 | author: 17 | name: "Phalcon Team" 18 | avatar: "" 19 | github: "https://github.com/phalcon" 20 | bitbucket: "" 21 | gitlab: "" 22 | site: 23 | tags: 24 | - production 25 | - productivity 26 | - forum 27 | - mysql 28 | - github 29 | - open source 30 | - single module 31 | - tests included 32 | link: "https://forum.phalcon.io" 33 | social: 34 | github: "https://phalcon.io/github" 35 | facebook: "https://phalcon.io/f" 36 | twitter: "https://phalcon.io/t" 37 | discord: "https://phalcon.io/discord" 38 | images: 39 | - name: "forum01.png" 40 | text: "Main Page" 41 | - name: "forum02.png" 42 | text: "Topic view with formatting" 43 | - name: "forum03.png" 44 | text: "Reply with formatting" 45 | - name: "forum04.png" 46 | text: "Reply screen" 47 | --- 48 | The Phalcon Community Discussion Forum where Phalconians can ask questions, find answers, offer advice etc. 49 | 50 | The Phalcon Community Discussion Forum is powered by PhalconPHP. The application offers discussions, my discussions, categories, +1/-1 functionality, karma measurements, and login with Github. 51 | -------------------------------------------------------------------------------- /_posts/2014-06-02-hypermailer.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Phalcon Powered Email Campaign Platform" 4 | stub: "hypermailer" 5 | tags: 6 | - production 7 | - productivity 8 | - mysql 9 | - github 10 | - open source 11 | - single module 12 | - micro 13 | meta: 14 | image: 'thumb.png' 15 | author: 16 | name: "" 17 | avatar: "" 18 | github: "https://github.com/ebrian" 19 | bitbucket: "" 20 | gitlab: "" 21 | site: 22 | tags: 23 | - production 24 | - productivity 25 | - mysql 26 | - github 27 | - open source 28 | - single module 29 | - micro 30 | link: 31 | social: 32 | github: "https://github.com/ebrian/hypermailer" 33 | facebook: "" 34 | twitter: "" 35 | discord: "" 36 | images: 37 | - name: "hmscreen1.png" 38 | text: "Event Log/Dashboard" 39 | - name: "hmscreen2.png" 40 | text: "Campaign Pre-Send Screen" 41 | - name: "hmscreen3.png" 42 | text: "Campaign Post-Send Screen" 43 | - name: "hmscreen4.png" 44 | text: "Dataset/View Creator" 45 | - name: "hmscreen5.png" 46 | text: "Campaign List" 47 | --- 48 | Hypermailer is an email platform utilizing Mailgun APIs built with Phalcon. 49 | 50 | Hypermailer is an open source project aimed at leveraging Mailgun APIs to provide a free platform that operates on the usage only billing of Mailgun. This project will continuously evolve and is currently the only open source email platform leveraging Mailgun's APIs. All project files and source code are available on GitHub., 51 | -------------------------------------------------------------------------------- /_posts/2014-06-27-hurma.tv.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Imageboard for intelligent individuals" 4 | stub: "hurma.tv" 5 | tags: 6 | - production 7 | - image-board 8 | - entertainment 9 | - fun 10 | - mysql 11 | meta: 12 | image: 'thumb.png' 13 | author: 14 | name: "" 15 | avatar: "" 16 | github: "https://github.com/vastly" 17 | bitbucket: "" 18 | gitlab: "" 19 | site: 20 | tags: 21 | - production 22 | - image-board 23 | - entertainment 24 | - fun 25 | - mysql 26 | link: "http://hurma.tv" 27 | social: 28 | github: "" 29 | facebook: "" 30 | twitter: "https://twitter.com/hurma_tv" 31 | discord: "" 32 | vk: "https://vk.com/hurmmma" 33 | images: 34 | --- 35 | Hurma.tv is a popular image blog with a lot of interesting brain-improving facts about everything. 36 | 37 | 38 | Hurma.tv project is a great collection of interesting facts which are added regularly. 39 | 40 | All the stuff is filtered accurately and provides a lot of fun for the viewers. The web-site is fully adaptive and works on all platforms from iMac to ancient Nokia 3110 41 | -------------------------------------------------------------------------------- /_posts/2014-06-30-delete.im.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "The forgetful messaging service" 4 | stub: "delete.im" 5 | tags: 6 | - messages 7 | - images 8 | - secret 9 | meta: 10 | image: 'thumb.png' 11 | author: 12 | name: "" 13 | avatar: "" 14 | github: "https://github.com/nazwa" 15 | bitbucket: "" 16 | gitlab: "" 17 | site: 18 | tags: 19 | - messages 20 | - images 21 | - secret 22 | link: "https://delete.im" 23 | social: 24 | github: "" 25 | facebook: "" 26 | twitter: "https://twitter.com/delete_im" 27 | discord: "" 28 | images: 29 | - name: "angled.jpg" 30 | text: "Artz" 31 | - name: "sending.png" 32 | text: "So Secret" 33 | - name: "Read me!.png" 34 | text: "Homepage" 35 | --- 36 | Delete.im is a non-permanent sharing service. It allows users to send messages that'll delete once they've been viewed. We've created a service where the sender has control of their information, not the receiver. 37 | 38 | Our API allows services to generate their own delete.im links. Whether they want to send out new passwords or allow their users to create deleteable messages. Our current integrations such as our Wordpress plug-in allows users to upload pictures to forums knowing that it will only be viewed a number of times before deleting itself. We see delete.im being a neutral service that people can trust with their information. We won't collect, scan or keep people's messages unlike the services they normally use. 39 | -------------------------------------------------------------------------------- /_posts/2014-07-16-robinson.rs.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Robinson Travel Agency Website" 4 | stub: "robinson.rs" 5 | tags: 6 | - production 7 | - incubator 8 | - composer 9 | - phpunit 10 | - phinx 11 | - php5.5 12 | - open source 13 | - travel 14 | - multi module 15 | - tests 16 | meta: 17 | image: 'thumb.png' 18 | author: 19 | name: "" 20 | avatar: "" 21 | github: "https://github.com/digitronac" 22 | bitbucket: "" 23 | gitlab: "" 24 | site: 25 | tags: 26 | - production 27 | - incubator 28 | - composer 29 | - phpunit 30 | - phinx 31 | - php5.5 32 | - open source 33 | - travel 34 | - multi module 35 | - tests 36 | link: "https://robinson.rs" 37 | social: 38 | github: "https://github.com/digitronac/robinson" 39 | facebook: "" 40 | twitter: "" 41 | discord: "" 42 | images: 43 | - name: "backend.jpg" 44 | text: "Backend module" 45 | - name: "frontend.jpg" 46 | text: "Frontend module" 47 | --- 48 | robinson.rs is website created for one of most popular Serbian travel agencies. 49 | 50 | Website consists of two modules: frontend and backend. Both modules are custom made using PhalconPHP framework from scratch. Includes functional (controller) tests. 51 | -------------------------------------------------------------------------------- /_posts/2014-07-17-giadamusic.com.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Giada" 4 | stub: "giadamusic.com" 5 | tags: 6 | - audio 7 | - open source 8 | - loop machine 9 | - sequencer 10 | - drum machine 11 | - music 12 | - linux 13 | - windows 14 | - os x 15 | meta: 16 | image: 'thumb.png' 17 | author: 18 | name: "" 19 | avatar: "" 20 | github: "https://github.com/monocasual" 21 | bitbucket: "" 22 | gitlab: "" 23 | site: 24 | tags: 25 | - audio 26 | - open source 27 | - loop machine 28 | - sequencer 29 | - drum machine 30 | - music 31 | - linux 32 | - windows 33 | - os x 34 | link: "https://giadamusic.com" 35 | social: 36 | github: "" 37 | facebook: "" 38 | twitter: "" 39 | discord: "" 40 | images: 41 | --- 42 | Your hardcore loop machine. 43 | 44 | Giada is a free, minimal, hardcore audio tool for DJs, live performers and electronic musicians. How does it work? 45 | 46 | Just pick up your channel, fill it with samples or MIDI events and start the show by using this tiny piece of software as a loop machine, drum machine, sequencer, live sampler or yet as a plugin/effect host. Giada aims to be a compact and portable virtual device for Linux, Mac OS X and Windows for production use and live sets. 47 | -------------------------------------------------------------------------------- /_posts/2014-07-21-danzerlogs.com.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Danzer Logs" 4 | stub: "danzerlogs.com" 5 | tags: 6 | - production 7 | - productivity 8 | - mysql 9 | - single 10 | meta: 11 | image: 'thumb.png' 12 | author: 13 | name: "" 14 | avatar: "" 15 | github: "https://github.com/lotcz" 16 | bitbucket: "" 17 | gitlab: "" 18 | site: 19 | tags: 20 | - production 21 | - productivity 22 | - mysql 23 | - single 24 | link: "https://danzerlogs.com" 25 | social: 26 | github: "" 27 | facebook: "" 28 | twitter: "" 29 | discord: "" 30 | images: 31 | --- 32 | Your source for buying logs online. 33 | 34 | 35 | DanzerLogs.com is the first website to offer hardwood logs for sale with actual photos and internal scanned images of individual logs. 36 | -------------------------------------------------------------------------------- /_posts/2014-08-02-quidditchuk.org.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "QuidditchUK" 4 | stub: "quidditchuk.org" 5 | tags: 6 | - production 7 | - CRUD 8 | - CMS 9 | - Management 10 | - php5 11 | - multi-module 12 | meta: 13 | image: 'thumb.png' 14 | author: 15 | name: "" 16 | avatar: "" 17 | github: "https://github.com/SquareOfPi" 18 | bitbucket: "" 19 | gitlab: "" 20 | site: 21 | tags: 22 | - production 23 | - CRUD 24 | - CMS 25 | - Management 26 | - php5 27 | - multi-module 28 | link: "https://quidditchuk.org" 29 | social: 30 | github: "" 31 | facebook: "" 32 | twitter: "" 33 | discord: "" 34 | images: 35 | - name: "backend.png" 36 | text: "Permissions system (ACL)" 37 | - name: "backend2.png" 38 | text: "User management" 39 | - name: "frontend.png" 40 | text: "Find a team (all automatically generated)" 41 | - name: "frontend2.png" 42 | text: "Registering an event (Tournament)" 43 | --- 44 | Website and management system for QuidditchUK 45 | 46 | Join QuidditchUK as a member, create your own team, get others to join, then get involved with user submitted events (friendly matches, tournaments) or challenge another team in the separate Challenge Shield League. 47 | 48 | Multi-module system with a complex ACL. In excess of 40 controllers, 220 actions, and over 75 models. Contact: [webmaster@quidditchuk.org](mailto:webmaster@quidditchuk.org) for more info 49 | -------------------------------------------------------------------------------- /_posts/2014-11-13-yonacms.com.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Yona CMS" 4 | stub: "yonacms.com" 5 | tags: 6 | - CMS 7 | - CRUD 8 | - mysql 9 | - multi module 10 | meta: 11 | image: 'thumb.svg' 12 | author: 13 | name: "" 14 | avatar: "" 15 | github: "https://github.com/webtorua" 16 | bitbucket: "" 17 | gitlab: "" 18 | site: 19 | tags: 20 | - CMS 21 | - CRUD 22 | - mysql 23 | - multi module 24 | link: "https://yonacms.com" 25 | social: 26 | github: "" 27 | facebook: "" 28 | twitter: "" 29 | discord: "" 30 | images: 31 | --- 32 | CMS based on Phalcon framework with multi module structure 33 | 34 | Yona CMS - content management system open source. Written in Phalcon PHP Framework (version 1.3.x). 35 | 36 | Has a convenient modular structure. Designed to develop simple websites to large portals and web 37 | applications. Thanks no complex configuration and a simple architecture that can be easily 38 | modified by any task. 39 | -------------------------------------------------------------------------------- /_posts/2014-11-24-rightcasino.com.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "RightCasino" 4 | stub: "rightcasino.com" 5 | tags: 6 | - production 7 | - CMS 8 | - CRUD 9 | - mysql 10 | - multi module 11 | - education 12 | - web application 13 | meta: 14 | image: 'thumb.png' 15 | author: 16 | name: "" 17 | avatar: "" 18 | github: "https://github.com/armonb" 19 | bitbucket: "" 20 | gitlab: "" 21 | site: 22 | tags: 23 | - production 24 | - CMS 25 | - CRUD 26 | - mysql 27 | - multi module 28 | - education 29 | - web application 30 | link: "https://rightcasino.com" 31 | social: 32 | github: "" 33 | facebook: "" 34 | twitter: "" 35 | discord: "" 36 | images: 37 | --- 38 | RightCasino takes the stress out of finding the perfect online casino for you. 39 | 40 | RightCasino.com is an online casino comparison portal that helps users find their right casino according to their preferences. It also features game strategies and gambling industry news. 41 | 42 | We have everything you need to know about the best online casinos for UK players. 43 | - Poker Chip Compare 100+ online casinos 44 | - Trophy Read independent casino reviews 45 | - Present Find exclusive bonuses & promotions 46 | - Thumbs Up Discover insider tips & tricks 47 | -------------------------------------------------------------------------------- /_posts/2014-12-31-24sata.rs.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "24sata.rs" 4 | stub: "24sata.rs" 5 | tags: 6 | - production 7 | - media 8 | - entertainment 9 | - high-load 10 | - high-volume 11 | - mysql 12 | - redis 13 | - memcache 14 | - multi module 15 | meta: 16 | image: 'thumb.png' 17 | author: 18 | name: "" 19 | avatar: "" 20 | github: "https://github.com/digitronac" 21 | bitbucket: "" 22 | gitlab: "" 23 | site: 24 | tags: 25 | - production 26 | - media 27 | - entertainment 28 | - high-load 29 | - high-volume 30 | - mysql 31 | - redis 32 | - memcache 33 | - multi module 34 | link: "http://24sata.rs" 35 | social: 36 | github: "" 37 | facebook: "" 38 | twitter: "" 39 | discord: "" 40 | images: 41 | - name: "24sata-2.png" 42 | - name: "24sata-3.png" 43 | --- 44 | 24sata.rs - online newspaper 45 | 46 | 24sata.rs is among top 10 most visited websites in Serbia with almost 6 million visits per month and reach of almost 23% according to https://www.audience.rs/. Both frontend API and underlying CMS are written from scratch using PhalconPHP version 1.3.2. 47 | -------------------------------------------------------------------------------- /_posts/2015-04-21-oisie.com.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Oisie.com" 4 | stub: "oisie.com" 5 | tags: 6 | - production 7 | - tool 8 | - making offline tests 9 | - multilingual 10 | meta: 11 | image: 'thumb.png' 12 | author: 13 | name: "Lukas Liesis" 14 | avatar: "" 15 | github: "" 16 | bitbucket: "" 17 | gitlab: "" 18 | site: 19 | tags: 20 | - production 21 | - tool 22 | - making offline tests 23 | - multilingual 24 | link: "http://oisie.com" 25 | social: 26 | github: "" 27 | facebook: "" 28 | twitter: "" 29 | discord: "" 30 | images: 31 | - name: "ss1.png" 32 | text: "Homepage" 33 | - name: "ss2.png" 34 | text: "Page" 35 | --- 36 | Offline Tests building tool for Teachers written with Phalcon 37 | 38 | Working together prepare tests more effectively to achieve better results in your work! 39 | 40 | 41 | -------------------------------------------------------------------------------- /_posts/2015-05-09-free-templates.lt.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Free CMS Templates" 4 | stub: "free-templates.lt" 5 | tags: 6 | - production 7 | - templates 8 | - free 9 | meta: 10 | image: 'thumb.png' 11 | author: 12 | name: "Lukas Liesis" 13 | avatar: "" 14 | github: "https://github.com/gialang" 15 | bitbucket: "" 16 | gitlab: "" 17 | site: 18 | tags: 19 | - production 20 | - templates 21 | - free 22 | link: "http://free-templates.lt/" 23 | social: 24 | github: "" 25 | facebook: "" 26 | twitter: "" 27 | discord: "" 28 | images: 29 | - name: "ss1.png" 30 | text: "9500+ Free Wordpress Themes 2015" 31 | - name: "ss2.png" 32 | text: "Joomla 1.5 template" 33 | - name: "ss3.png" 34 | text: "1200+ Free Joomla 2.5 & 3.0 Templates 2015" 35 | --- 36 | Free Templates - We do have templates. 55 000+ templates for most popular Content Management Systems! 37 | 38 | -------------------------------------------------------------------------------- /_posts/2015-11-12-polang.info.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "polang.info" 4 | stub: "polang.info" 5 | tags: 6 | - polang 7 | - beauty news 8 | - news 9 | - homemade beauty tips 10 | - online newspaper 11 | meta: 12 | image: 'thumb.png' 13 | author: 14 | name: "" 15 | avatar: "" 16 | github: "https://github.com/gialang" 17 | bitbucket: "" 18 | gitlab: "" 19 | site: 20 | tags: 21 | - beauty news 22 | - polang 23 | - news 24 | - homemade beauty tips 25 | - online newspaper 26 | link: "https://polang.info" 27 | social: 28 | github: "" 29 | facebook: "" 30 | twitter: "" 31 | discord: "" 32 | images: 33 | - name: "index.png" 34 | text: "Homepage" 35 | - name: "detail.png" 36 | text: "Page detail" 37 | - name: "mobile-version.png" 38 | text: "Mobile version" 39 | --- 40 | Online newspaper, homemade beauty tips. 41 | 42 | Polang.info is the online newspaper. This website is all about homemade beauty tips. 43 | 44 | -------------------------------------------------------------------------------- /_posts/2017-04-24-outsmart.io.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Outsmart" 4 | stub: "outsmart.io" 5 | tags: 6 | - production 7 | - SaaS 8 | - responsive 9 | - analytics 10 | - competitive benchmarking 11 | meta: 12 | image: 'thumb.png' 13 | author: 14 | name: "Ty Kroll" 15 | avatar: "" 16 | github: "" 17 | bitbucket: "" 18 | gitlab: "" 19 | site: 20 | tags: 21 | - production 22 | - SaaS 23 | - responsive 24 | - analytics 25 | - competitive benchmarking 26 | link: "https://outsmart.io" 27 | social: 28 | github: "" 29 | facebook: "" 30 | twitter: "" 31 | discord: "" 32 | images: 33 | - name: "thumb.png" 34 | text: "Home page" 35 | --- 36 | 37 | Competitive analytics made easy for small business 38 | 39 | Social media, SEO, and marketing analytics for you and your competitors. Outsmart is the easiest way to turn all your data into simple, beautiful reports. 40 | -------------------------------------------------------------------------------- /_posts/2017-10-11-socialveo.com.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Socialveo" 4 | stub: "socialveo.com" 5 | tags: 6 | - production 7 | - productivity 8 | - social network 9 | - mobile app 10 | - multi module 11 | - multilingual 12 | - mysql 13 | - rest api 14 | - ios app 15 | - android app 16 | - responsive design 17 | meta: 18 | image: 'thumb.png' 19 | author: 20 | name: "" 21 | avatar: "" 22 | github: "https://github.com/macagoraga" 23 | bitbucket: "" 24 | gitlab: "" 25 | site: 26 | tags: 27 | - production 28 | - productivity 29 | - social network 30 | - mobile app 31 | - multi module 32 | - multilingual 33 | - mysql 34 | - rest api 35 | - ios app 36 | - android app 37 | - responsive design 38 | link: "https://learny.online" 39 | social: 40 | github: "https://github.com/socialveo" 41 | facebook: "" 42 | twitter: "" 43 | discord: "" 44 | images: 45 | - name: "webapp-1.png" 46 | text: "Responsive Website accessible in any device" 47 | - name: "webapp-4.png" 48 | text: "Responsive Website accessible in any device" 49 | - name: "rich_features_1.png" 50 | text: "Responsive Website accessible in any device" 51 | - name: "webapp-5.png" 52 | text: "Responsive Website accessible in any device" 53 | - name: "webapp-6.png" 54 | text: "Responsive Website accessible in any device" 55 | - name: "ios-app-1.png" 56 | text: "iOS and Android App" 57 | - name: "ios-app-2.png" 58 | text: "iOS and Android App" 59 | - name: "ios-app-3.png" 60 | text: "iOS and Android App" 61 | - name: "ios-app-4.png" 62 | text: "iOS and Android App" 63 | - name: "ios-app-5.png" 64 | text: "iOS and Android App" 65 | --- 66 | Socialveo help you build a powerful and beautifully designed social network for your community 67 | 68 | Socialveo is a social network software built on top of PhalconPHP. Develop your own social networking platform on any device. [Start your own social network now!](https://socialveo.com/start) 69 | -------------------------------------------------------------------------------- /_posts/2017-10-18-marchiauto.it.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Marchi Auto" 4 | stub: "marchiauto.it" 5 | tags: 6 | - production 7 | - CRUD 8 | - mysql 9 | - multi module 10 | - website 11 | meta: 12 | image: 'thumb.png' 13 | author: 14 | name: "" 15 | avatar: "" 16 | github: "https://github.com/gadz82" 17 | bitbucket: "" 18 | gitlab: "" 19 | site: 20 | tags: 21 | - production 22 | - CRUD 23 | - mysql 24 | - multi module 25 | - website 26 | link: "https://www.marchiauto.it" 27 | social: 28 | github: "" 29 | facebook: "" 30 | twitter: "" 31 | discord: "" 32 | images: 33 | - name: "marchi.png" 34 | text: "Home Page of the Website - Completely Responsive and made with Bootstrap" 35 | - name: "marchi1.png" 36 | text: "Backend Access Page" 37 | --- 38 | Marchi Auto is auto dealer portal dedicated to Marchi Auto network, official distributor of Fiat and Alfa Romeo cars in central Italy 39 | 40 | The Marchi Auto website is totally developed with Phalcon Framework, the application is a multi module software projected as stand-alone cms able to handle and manage entities stored in dinamically generated flat tables and populated by back-end routines based on entities definitions and attributes. The front-end is totally projected with volt template engine. 41 | -------------------------------------------------------------------------------- /_posts/2017-10-29-descontocupom.com.br.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "DescontoCupom" 4 | stub: "descontocupom.com.br" 5 | tags: 6 | - production 7 | - shopping 8 | - coupons 9 | - offers 10 | - multi module 11 | - acl 12 | - redis 13 | - assets manager 14 | - social login 15 | - facebook 16 | - affiliate marketing 17 | - phalcon3 18 | - responsive design 19 | meta: 20 | image: 'thumb.png' 21 | author: 22 | name: "" 23 | avatar: "" 24 | github: "https://github.com/victorhramos" 25 | bitbucket: "" 26 | gitlab: "" 27 | site: 28 | tags: 29 | - production 30 | - shopping 31 | - coupons 32 | - offers 33 | - multi module 34 | - acl 35 | - redis 36 | - assets manager 37 | - social login 38 | - facebook 39 | - affiliate marketing 40 | - phalcon3 41 | - responsive design 42 | link: "https://descontocupom.com.br" 43 | social: 44 | github: "" 45 | facebook: "" 46 | twitter: "" 47 | discord: "" 48 | images: 49 | --- 50 | DescontoCupom is a catalog of discount coupons and special offers for virtual shopping in Brazil. 51 | 52 | DescontoCupom offers special prices and discount for your virtual shop time. 53 | 54 | -------------------------------------------------------------------------------- /_posts/2018-02-21-learny.online.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Learny Online" 4 | stub: "learny.online" 5 | tags: 6 | - education 7 | - production 8 | - multi module 9 | - acl 10 | - redis 11 | - assets manager 12 | - social login 13 | - phalcon3 14 | - responsive design 15 | - AWS 16 | - Bootstrap 17 | - startup 18 | meta: 19 | image: 'thumb.png' 20 | author: 21 | name: "" 22 | avatar: "" 23 | github: "https://github.com/emiliodeg" 24 | bitbucket: "" 25 | gitlab: "" 26 | site: 27 | tags: 28 | - education 29 | - production 30 | - multi module 31 | - acl 32 | - redis 33 | - assets manager 34 | - social login 35 | - phalcon3 36 | - responsive design 37 | - AWS 38 | - Bootstrap 39 | - startup 40 | link: "https://learny.online" 41 | social: 42 | github: "" 43 | facebook: "" 44 | twitter: "" 45 | discord: "" 46 | images: 47 | - name: "home.jpg" 48 | text: "Home page" 49 | - name: "cursos.jpg" 50 | text: "List of courses online" 51 | - name: "perfiles.jpg" 52 | text: "User's profile" 53 | - name: "paginas-informativas.jpg" 54 | text: "Information pages" 55 | --- 56 | Learny Online is an online educational platform with exclusive, original and quality content. 57 | 58 | A learny is a course on demand that combines videos and written content of high quality, accompanied by a test that will allow you to develop skills and acquire tools without the need to spend time and spend money to attend face-to-face classes. 59 | 60 | You only have to be connected to the Internet from your mobile, tablet or computer and start learning in a pleasant and simple way, at the moment you decide. 61 | -------------------------------------------------------------------------------- /_posts/2020-12-22-tvnfo.com.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "TVnfo" 4 | stub: "tvnfo.com" 5 | tags: 6 | - tv guide 7 | - tv schedule 8 | - tv shows 9 | - tv series 10 | - movies 11 | - boxsets 12 | - collages 13 | - entertainment 14 | - television 15 | - information 16 | meta: 17 | image: 'home.png' 18 | author: 19 | name: "TVnfo" 20 | avatar: "" 21 | github: "https://github.com/tvnfo" 22 | bitbucket: "" 23 | gitlab: "" 24 | site: 25 | tags: 26 | - tv guide 27 | - tv schedule 28 | - tv shows 29 | - tv series 30 | - movies 31 | - boxsets 32 | - collages 33 | - entertainment 34 | - television 35 | - information 36 | link: "https://tvnfo.com" 37 | social: 38 | github: "" 39 | facebook: "" 40 | twitter: "" 41 | discord: "" 42 | images: 43 | - name: "home.png" 44 | text: "Home page" 45 | --- 46 | TVnfo is a tv guide and schedule website for tv shows and movies. 47 | 48 | 49 | 50 | It has been online since May 31, 2016 and version 2.0 is currently been developed with many more features. 51 | -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/_redirects -------------------------------------------------------------------------------- /assets/css/dark.css: -------------------------------------------------------------------------------- 1 | .switcher button { 2 | border: none; 3 | padding: 0; 4 | cursor: pointer; 5 | display: flex; 6 | border-radius: 100px; 7 | font-size: inherit; 8 | outline: none; 9 | width: 20px; 10 | height: 20px; 11 | margin-left: 8px; 12 | } 13 | 14 | .switcher button:before { 15 | width: 20px; 16 | } 17 | 18 | .switcher-light button::before { 19 | content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffffff' d='M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z'%3E%3C/path%3E%3C/svg%3E");; 20 | width: 17px; 21 | margin-top: 1px; 22 | } 23 | 24 | .switcher-dark button::before { 25 | content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffffff' d='M256 160c-52.9 0-96 43.1-96 96s43.1 96 96 96 96-43.1 96-96-43.1-96-96-96zm246.4 80.5l-94.7-47.3 33.5-100.4c4.5-13.6-8.4-26.5-21.9-21.9l-100.4 33.5-47.4-94.8c-6.4-12.8-24.6-12.8-31 0l-47.3 94.7L92.7 70.8c-13.6-4.5-26.5 8.4-21.9 21.9l33.5 100.4-94.7 47.4c-12.8 6.4-12.8 24.6 0 31l94.7 47.3-33.5 100.5c-4.5 13.6 8.4 26.5 21.9 21.9l100.4-33.5 47.3 94.7c6.4 12.8 24.6 12.8 31 0l47.3-94.7 100.4 33.5c13.6 4.5 26.5-8.4 21.9-21.9l-33.5-100.4 94.7-47.3c13-6.5 13-24.7.2-31.1zm-155.9 106c-49.9 49.9-131.1 49.9-181 0-49.9-49.9-49.9-131.1 0-181 49.9-49.9 131.1-49.9 181 0 49.9 49.9 49.9 131.1 0 181z'%3E%3C/path%3E%3C/svg%3E"); 26 | } 27 | 28 | .dark .phalcon-blog, 29 | .dark body, 30 | .dark .base-info { 31 | background-color: #1e2129; 32 | } 33 | 34 | .dark h1, 35 | .dark h2, 36 | .dark h3, 37 | .dark h4, 38 | .dark h5, 39 | .dark h6, 40 | .dark p , 41 | .dark ul li, 42 | .dark ol li, 43 | .dark .phalcon-blog__title, 44 | .dark .phalcon-blog__projects-text, 45 | .dark .phalcon-blog__main-title, 46 | .dark .header-dropdown li a, 47 | .dark .tag-button, 48 | .dark .phalcon-blog-detail table th, 49 | .dark .phalcon-blog-detail table td, 50 | .dark .base-info-descr__first, 51 | .dark .base-info-descr__second, 52 | .dark .watch-demo__title, 53 | .dark .watch-demo__descr, 54 | .dark .join__title, 55 | .dark .join__descr, 56 | .dark .contributors__top, 57 | .dark .feature__title, 58 | .dark .feature__descr, 59 | .dark .buildwith-nav__list a, 60 | .dark .features-nav__list li { 61 | color: #e2e4e9d1; 62 | } 63 | 64 | .dark .phalcon-blog a, 65 | .dark main a { 66 | color: #00bda4; 67 | } 68 | 69 | .dark .phalcon-blog__sponsors-item, 70 | .dark .sponsors__item { 71 | background-color: #ffffffb3; 72 | } 73 | 74 | .dark .footer { 75 | background-color: #17191e; 76 | } 77 | 78 | .dark .footer__license, 79 | .dark .footer__supported span, 80 | .dark .footer-nav li a, 81 | .dark .previous, 82 | .dark .page_number, 83 | .dark .next, 84 | .dark .green-button, 85 | .dark .features-nav__list li.active, 86 | .dark .info .buildwith-nav__list li.active a, 87 | .dark .header-nav--mobile a, 88 | .dark .alert-warning, 89 | .dark .info blockquote cite, 90 | .dark .features-accordion__trigger { 91 | color: #ffffff; 92 | } 93 | 94 | .dark .footer__supported-logo svg, 95 | .dark .footer__supported-logo svg path { 96 | stroke: #ffffff; 97 | } 98 | 99 | .dark .phalcon-blog__sponsors-item:hover, 100 | .dark .header-dropdown li a:hover { 101 | border-color: #00bda4; 102 | } 103 | 104 | .dark .phalcon-blog__sponsors-item span { 105 | color: #000000; 106 | } 107 | 108 | .dark .header-dropdown--eco { 109 | background-color: #1e2129; 110 | border-color: #1e2129; 111 | } 112 | 113 | .dark .header-nav>li a, 114 | .dark .footer-nav li a { 115 | opacity: 0.7; 116 | } 117 | 118 | .dark .header a:hover, 119 | .dark .header-nav>li.active>a, 120 | .dark .header-nav>li:hover>a, 121 | .dark .header-dropdown li a:hover, 122 | .dark .footer-nav li a:hover { 123 | opacity: 1; 124 | color: #ffffff; 125 | } 126 | 127 | .dark .light-dark-auto-button:hover { 128 | color: #00bda4 !important; 129 | } 130 | 131 | .dark .phalcon-blog__item-date, 132 | .dark .phalcon-blog__item-author { 133 | color: #bfbfbfd1; 134 | } 135 | 136 | .dark .phalcon-blog__tags-item span:first-child { 137 | color: #e2e4e98f; 138 | } 139 | 140 | .dark .phalcon-blog__right .phalcon-blog__tags-items .phalcon-blog__tags-item { 141 | border-color: #385b56; 142 | } 143 | 144 | .dark .phalcon-blog-detail table td { 145 | border-color: #e2e4e9d1; 146 | } 147 | 148 | .dark .buildwith-nav__list li.active hr, 149 | .dark .features-nav__list li.active hr{ 150 | background-color: #ffffff; 151 | } 152 | 153 | .dark .buildwith-nav__list li.active:hover hr, 154 | .dark .features-nav__list li:hover hr, 155 | .dark .buildwith-nav__list li:hover hr { 156 | background-color: #ffffff; 157 | } 158 | 159 | .dark .info .buildwith-nav__list li:hover a, 160 | .dark .features-nav__list li span:hover { 161 | color: #ffffff; 162 | } 163 | 164 | .dark .header-dropdown--lang { 165 | background-color: #1e2129; 166 | border-color: #1e2129; 167 | } 168 | 169 | .dark .info-block__img img { 170 | background-color: #ffffff; 171 | } 172 | -------------------------------------------------------------------------------- /assets/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /assets/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /assets/favicons/site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Phalcon", 3 | "icons": [ 4 | { 5 | "src": "/assets/favicons/android-chrome-192x192.png", 6 | "sizes": "192x192", 7 | "type": "image/png" 8 | }, 9 | { 10 | "src": "/assets/favicons/android-chrome-512x512.png", 11 | "sizes": "512x512", 12 | "type": "image/png" 13 | } 14 | ], 15 | "theme_color": "#273646", 16 | "background_color": "#273646", 17 | "display": "standalone" 18 | } 19 | -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- 1 | "use strict" 2 | 3 | /** 4 | * инициализация всех инициализаций 5 | */ 6 | $(document).ready(function() 7 | { 8 | o2.init(); 9 | }); 10 | 11 | /** 12 | * основной объект 13 | * @type {object} 14 | */ 15 | var o2 = 16 | { 17 | /** 18 | * вызов функций, которые должны запускаться при загрузке страницы 19 | */ 20 | init: function() 21 | { 22 | this.header.mobileNavDropdown(); 23 | this.header.closeMobileNav('.header-nav__burger'); 24 | }, 25 | header: 26 | { 27 | openMobileNav: function(instance) 28 | { 29 | if ($(instance).hasClass('active') == false) 30 | { 31 | $(instance).addClass('active'); 32 | $(instance).parents().find('._navToggle').addClass('active'); 33 | $('body').addClass('hidden'); 34 | event.stopPropagation(); 35 | } 36 | }, 37 | 38 | closeMobileNav: function(instance) 39 | { 40 | $(document).click(function() { 41 | if ($(instance).hasClass('active')) 42 | { 43 | $(instance).removeClass('active'); 44 | $(instance).parents().find('._navToggle').removeClass('active'); 45 | $('body').removeClass('hidden'); 46 | } 47 | }); 48 | }, 49 | 50 | mobileNavDropdown: function() 51 | { 52 | var extAcc = $('.extendable'); 53 | 54 | for (i = 0; i < extAcc.length; i++) { 55 | extAcc[i].addEventListener("click", function() { 56 | this.classList.toggle("extended"); 57 | }); 58 | } 59 | } 60 | } 61 | } -------------------------------------------------------------------------------- /assets/js/theme-switcher.js: -------------------------------------------------------------------------------- 1 | class themeSwitcher { 2 | constructor() { 3 | const html = document.documentElement, 4 | mode = localStorage.getItem('mode') || 'auto'; 5 | const getPreferredMode = () => 6 | matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'; 7 | 8 | const switchMode = (mode) => { 9 | const newMode = mode === 'auto' ? getPreferredMode() : mode; 10 | html.style.colorScheme = mode === 'auto' ? 'light dark' : newMode; 11 | 12 | html.classList.remove('light', 'dark'); 13 | html.classList.add(`${newMode}`); 14 | localStorage.setItem('mode', mode); 15 | 16 | document 17 | .querySelectorAll('[data-mode]') 18 | .forEach((el) => 19 | el.classList.toggle('active', el.dataset.mode === mode) 20 | ); 21 | 22 | this.updateSwitcherClass(); 23 | }; 24 | 25 | this.updateSwitcherClass = () => { 26 | const switchers = document.querySelectorAll('.switcher'); 27 | if (switchers.length > 0) { 28 | const currentMode = localStorage.getItem('mode') || 'auto'; 29 | const systemMode = getPreferredMode(); 30 | const effectiveMode = currentMode === 'auto' ? systemMode : currentMode; 31 | 32 | switchers.forEach(switcher => { 33 | switcher.classList.remove('switcher-light', 'switcher-dark'); 34 | switcher.classList.add(`switcher-${effectiveMode}`); 35 | }); 36 | } 37 | }; 38 | 39 | this.handleswitcherClick = () => { 40 | const currentMode = localStorage.getItem('mode') || 'auto'; 41 | const systemMode = getPreferredMode(); 42 | 43 | let newMode; 44 | if (currentMode === 'auto') { 45 | newMode = systemMode === 'light' ? 'dark' : 'light'; 46 | } else { 47 | newMode = 'auto'; 48 | } 49 | 50 | switchMode(newMode); 51 | }; 52 | 53 | matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => { 54 | if (localStorage.getItem('mode') === 'auto') switchMode('auto'); 55 | }); 56 | 57 | document.addEventListener('click', (e) => { 58 | if (e.target.dataset.mode) { 59 | switchMode(e.target.dataset.mode); 60 | } 61 | }); 62 | 63 | document.querySelectorAll('.switcher').forEach(switcher => { 64 | switcher.addEventListener('click', this.handleswitcherClick); 65 | }); 66 | 67 | switchMode(mode); 68 | } 69 | } 70 | 71 | new themeSwitcher() 72 | -------------------------------------------------------------------------------- /assets/projects/24sata.rs/24sata-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/24sata.rs/24sata-2.png -------------------------------------------------------------------------------- /assets/projects/24sata.rs/24sata-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/24sata.rs/24sata-3.png -------------------------------------------------------------------------------- /assets/projects/24sata.rs/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/24sata.rs/thumb.png -------------------------------------------------------------------------------- /assets/projects/danzerlogs.com/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/danzerlogs.com/thumb.png -------------------------------------------------------------------------------- /assets/projects/delete.im/angled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/delete.im/angled.jpg -------------------------------------------------------------------------------- /assets/projects/delete.im/sending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/delete.im/sending.png -------------------------------------------------------------------------------- /assets/projects/delete.im/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/delete.im/thumb.png -------------------------------------------------------------------------------- /assets/projects/delete.im/viewing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/delete.im/viewing.png -------------------------------------------------------------------------------- /assets/projects/descontocupom.com.br/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/descontocupom.com.br/thumb.png -------------------------------------------------------------------------------- /assets/projects/forum.phalconphp.com/forum01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/forum.phalconphp.com/forum01.png -------------------------------------------------------------------------------- /assets/projects/forum.phalconphp.com/forum02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/forum.phalconphp.com/forum02.png -------------------------------------------------------------------------------- /assets/projects/forum.phalconphp.com/forum03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/forum.phalconphp.com/forum03.png -------------------------------------------------------------------------------- /assets/projects/forum.phalconphp.com/forum04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/forum.phalconphp.com/forum04.png -------------------------------------------------------------------------------- /assets/projects/forum.phalconphp.com/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/forum.phalconphp.com/thumb.png -------------------------------------------------------------------------------- /assets/projects/free-templates.lt/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/free-templates.lt/ss1.png -------------------------------------------------------------------------------- /assets/projects/free-templates.lt/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/free-templates.lt/ss2.png -------------------------------------------------------------------------------- /assets/projects/free-templates.lt/ss3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/free-templates.lt/ss3.png -------------------------------------------------------------------------------- /assets/projects/free-templates.lt/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/free-templates.lt/thumb.png -------------------------------------------------------------------------------- /assets/projects/giadamusic.com/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/giadamusic.com/thumb.png -------------------------------------------------------------------------------- /assets/projects/hurma.tv/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/hurma.tv/thumb.png -------------------------------------------------------------------------------- /assets/projects/hypermailer/hmscreen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/hypermailer/hmscreen1.png -------------------------------------------------------------------------------- /assets/projects/hypermailer/hmscreen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/hypermailer/hmscreen2.png -------------------------------------------------------------------------------- /assets/projects/hypermailer/hmscreen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/hypermailer/hmscreen3.png -------------------------------------------------------------------------------- /assets/projects/hypermailer/hmscreen4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/hypermailer/hmscreen4.png -------------------------------------------------------------------------------- /assets/projects/hypermailer/hmscreen5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/hypermailer/hmscreen5.png -------------------------------------------------------------------------------- /assets/projects/hypermailer/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/hypermailer/thumb.png -------------------------------------------------------------------------------- /assets/projects/learny.online/cursos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/learny.online/cursos.jpg -------------------------------------------------------------------------------- /assets/projects/learny.online/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/learny.online/home.jpg -------------------------------------------------------------------------------- /assets/projects/learny.online/paginas-informativas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/learny.online/paginas-informativas.jpg -------------------------------------------------------------------------------- /assets/projects/learny.online/perfiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/learny.online/perfiles.jpg -------------------------------------------------------------------------------- /assets/projects/learny.online/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/learny.online/thumb.png -------------------------------------------------------------------------------- /assets/projects/marchiauto.it/marchi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/marchiauto.it/marchi.png -------------------------------------------------------------------------------- /assets/projects/marchiauto.it/marchi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/marchiauto.it/marchi1.png -------------------------------------------------------------------------------- /assets/projects/marchiauto.it/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/marchiauto.it/thumb.png -------------------------------------------------------------------------------- /assets/projects/oisie.com/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/oisie.com/ss1.png -------------------------------------------------------------------------------- /assets/projects/oisie.com/ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/oisie.com/ss2.png -------------------------------------------------------------------------------- /assets/projects/oisie.com/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/oisie.com/thumb.png -------------------------------------------------------------------------------- /assets/projects/outsmart.io/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/outsmart.io/thumb.png -------------------------------------------------------------------------------- /assets/projects/polang.info/detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/polang.info/detail.jpg -------------------------------------------------------------------------------- /assets/projects/polang.info/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/polang.info/index.jpg -------------------------------------------------------------------------------- /assets/projects/polang.info/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/polang.info/mobile.png -------------------------------------------------------------------------------- /assets/projects/polang.info/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/polang.info/thumb.png -------------------------------------------------------------------------------- /assets/projects/quidditchuk.org/backend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/quidditchuk.org/backend.png -------------------------------------------------------------------------------- /assets/projects/quidditchuk.org/backend2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/quidditchuk.org/backend2.png -------------------------------------------------------------------------------- /assets/projects/quidditchuk.org/frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/quidditchuk.org/frontend.png -------------------------------------------------------------------------------- /assets/projects/quidditchuk.org/frontend2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/quidditchuk.org/frontend2.png -------------------------------------------------------------------------------- /assets/projects/quidditchuk.org/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/quidditchuk.org/thumb.png -------------------------------------------------------------------------------- /assets/projects/rightcasino.com/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/rightcasino.com/thumb.png -------------------------------------------------------------------------------- /assets/projects/robinson.rs/backend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/robinson.rs/backend.jpg -------------------------------------------------------------------------------- /assets/projects/robinson.rs/frontend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/robinson.rs/frontend.jpg -------------------------------------------------------------------------------- /assets/projects/robinson.rs/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/robinson.rs/thumb.png -------------------------------------------------------------------------------- /assets/projects/socialveo.com/ios-app-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/socialveo.com/ios-app-1.png -------------------------------------------------------------------------------- /assets/projects/socialveo.com/ios-app-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/socialveo.com/ios-app-2.png -------------------------------------------------------------------------------- /assets/projects/socialveo.com/ios-app-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/socialveo.com/ios-app-3.png -------------------------------------------------------------------------------- /assets/projects/socialveo.com/ios-app-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/socialveo.com/ios-app-4.png -------------------------------------------------------------------------------- /assets/projects/socialveo.com/ios-app-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/socialveo.com/ios-app-5.png -------------------------------------------------------------------------------- /assets/projects/socialveo.com/rich_features_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/socialveo.com/rich_features_1.png -------------------------------------------------------------------------------- /assets/projects/socialveo.com/rich_features_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/socialveo.com/rich_features_2.png -------------------------------------------------------------------------------- /assets/projects/socialveo.com/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/socialveo.com/thumb.png -------------------------------------------------------------------------------- /assets/projects/socialveo.com/webapp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/socialveo.com/webapp-1.png -------------------------------------------------------------------------------- /assets/projects/socialveo.com/webapp-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/socialveo.com/webapp-3.png -------------------------------------------------------------------------------- /assets/projects/socialveo.com/webapp-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/socialveo.com/webapp-4.png -------------------------------------------------------------------------------- /assets/projects/socialveo.com/webapp-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/socialveo.com/webapp-5.png -------------------------------------------------------------------------------- /assets/projects/socialveo.com/webapp-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/socialveo.com/webapp-6.png -------------------------------------------------------------------------------- /assets/projects/tvnfo.com/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/assets/projects/tvnfo.com/home.png -------------------------------------------------------------------------------- /assets/projects/yonacms.com/thumb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | BUILD_BASE="/opt/buildhome/repo" 4 | INPUT_BASE="https://raw.githubusercontent.com/phalcon/assets/master/phalcon" 5 | 6 | echo "Updating Sponsors" 7 | wget -O "$BUILD_BASE/_includes/sponsors.html" "$INPUT_BASE/sponsors-fragment.html" 8 | 9 | echo "Updating Fan Art" 10 | wget -O "$BUILD_BASE/_includes/fanart.html" "$INPUT_BASE/fanart-fragment.html" 11 | 12 | echo "Updating Footer" 13 | wget -O "$BUILD_BASE/_includes/footer.html" "$INPUT_BASE/footer-fragment.html" 14 | 15 | echo "Building Site" 16 | jekyll build 17 | -------------------------------------------------------------------------------- /humans.txt: -------------------------------------------------------------------------------- 1 | /* TEAM */ 2 | 3 | Chef: Nikolaos (Nikos) Dimopoulos 4 | Contact: nikos [at] phalcon.io 5 | GitHub: @niden 6 | From: Charles Town, WV, USA 7 | 8 | Developer: Serghei (klay) Iakovlev 9 | Contact: serghei [at] phalcon.io 10 | GitHub: @sergeyklay 11 | From: Kyiv, Ukraine 12 | 13 | /* THANKS */ 14 | 15 | Thanks to all our contributors and users! 16 | 17 | Now that you're here, why not start contributing as well? :) 18 | 19 | https://github.com/phalcon/cphalcon 20 | 21 | /* SITE */ 22 | 23 | Last update: 2019/01/05 24 | Framework: Phalcon 25 | Language: Jekyll 26 | Doctype: HTML5 27 | Standards: HTML5, CSS3 28 | Components: Twitter Bootstrap, jQuery, Google Fonts, highlight.js, Jekyll, Netlify 29 | 30 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | {% for post in paginator.posts %} 5 | {% if 1 == forloop.index %} 6 | {% if 1 == paginator.page %} 7 |
8 |
9 |
10 |
11 | {{ post.title }} 12 |
13 |
14 |
15 | {{ post.date | date: "%b %d, %Y" }} 16 |
17 |
18 | Phalcon Team 19 |
20 |
21 |
22 | {{ post.excerpt }} 23 |
24 | Read More 26 |
27 | 28 | {% assign image = '/assets/projects/' | append: post.stub | append: '/' | append: post.meta.image %} 29 | {{ post.title }} 30 | 31 |
32 |
33 |
34 | LATEST POSTS 35 |
36 | {% endif %} 37 |
38 | {% else %} 39 |
40 |
41 |
42 | {{ post.title }} 43 |
44 |
45 |
46 | {{ post.date | date: "%b %d, %Y" }} 47 |
48 |
49 | Phalcon Team 50 |
51 |
52 |
53 | {{ post.excerpt }} 54 |
55 | Read More 57 |
58 | 59 | {% assign image = '/assets/projects/' | append: post.stub | append: '/' | append: post.meta.image %} 60 | {{ post.title }} 61 | 62 |
63 | {% endif %} 64 | {% endfor %} 65 |
66 | 83 | -------------------------------------------------------------------------------- /old-site/projects.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ 3 | { 4 | "permalink": "karakurihiden", 5 | "name": "Karakuri Hiden Website", 6 | "summary": "The website of the Samurai Factory Inc", 7 | "description": "The website has posted the technical information of Phalcon, PHP etc.", 8 | "url": "https://hiden.samurai-factory.jp", 9 | "info": "", 10 | "submitter": "kjdev", 11 | "submissionDate": "2014-08-06", 12 | "images": [], 13 | "tags": [ 14 | "website", 15 | "php-5.5", 16 | "mysql", 17 | "multi module" 18 | ] 19 | }, 20 | { 21 | "permalink": "jream", 22 | "name": "JREAM", 23 | "summary": "Online Programming Courses", 24 | "description": "Learn to Program by Following Along!", 25 | "url": "https://jream.com", 26 | "info": "Streaming Video Service", 27 | "submitter": "jream", 28 | "submissionDate": "2014-09-14", 29 | "images": [ 30 | { 31 | "name": "thumb.jpg", 32 | "description": "" 33 | } 34 | ], 35 | "tags": [ 36 | "PHP 5.5", 37 | "Composer", 38 | "Codeception", 39 | "AWS", 40 | "Gulp", 41 | "Bower", 42 | "Phalcon Dev Tools", 43 | "Phalcon Vagrant" 44 | ] 45 | }, 46 | { 47 | "permalink": "phalcon-jobs", 48 | "name": "Phalcon Jobs", 49 | "summary": "The best place to find Phalcon (and other) programming jobs. ", 50 | "description": "Online job search for employer and job seeker resources.", 51 | "url": "https://phalconjobs.com", 52 | "info": "Job Site Service", 53 | "submitter": "duythien", 54 | "submissionDate": "2014-09-21", 55 | "images": [ 56 | { 57 | "name": "thumb.png", 58 | "description": "Main page" 59 | } 60 | ], 61 | "tags": [ 62 | "Mysql", 63 | "Nginx", 64 | "Phalcon", 65 | "production", 66 | "CRUD", 67 | "Bootstrap" 68 | ] 69 | }, 70 | { 71 | "permalink": "wallstreetcn", 72 | "name": "WallstreetCN", 73 | "summary": "One of the most famous Chinese finance websites. Maybe the biggest phalcon based project in China", 74 | "description": "WallstreetCN.com is top 5 finance websites in China which completely build by Phalcon, thanks to the high performance of Phalcon, WallstreetCN handle over 40 million page visits and 4 billion API calls per month by very few cost (less than 10 VPS).", 75 | "url": "https://wallstreetcn.com/", 76 | "info": "WallstreetCN", 77 | "src": "https://github.com/EvaEngine/EvaEngine", 78 | "submitter": "AlloVince", 79 | "submissionDate": "2015-01-07", 80 | "images": [ 81 | ], 82 | "tags": [ 83 | "finance", 84 | "realtime", 85 | "evaengine", 86 | "Chinese" 87 | ] 88 | }, 89 | { 90 | "permalink": "unturnedserv", 91 | "name": "Unturned servers", 92 | "summary": "Monitoring of Unturned servers", 93 | "description": "Unturned server list with frequent checking of availability and players.", 94 | "url": "https://unturnedserv.ru/", 95 | "info": "", 96 | "src": "", 97 | "submitter": "quantum13", 98 | "submissionDate": "2015-01-26", 99 | "images": [ 100 | { 101 | "name": "thumb.png", 102 | "description": "Main Page" 103 | } 104 | ], 105 | "tags": [ 106 | "production", 107 | "game", 108 | "unturned", 109 | "mysql", 110 | "multi module", 111 | "nginx", 112 | "russian" 113 | ] 114 | }, 115 | { 116 | "permalink": "bootlegger-trail-race", 117 | "name": "Boolegger50K", 118 | "summary": "Website for Bootlegger 25k/50k", 119 | "description": "Bootlegger is a trail running race in Boulder City, NV with a 25k and 50k ultramarathon option. ", 120 | "url": "https://bootlegger50k.com/", 121 | "info": "", 122 | "submitter": "ShadMickelberry", 123 | "submissionDate": "2015-02-10", 124 | "images": [ 125 | { 126 | "name": "thumb.png", 127 | "description": "Front Page" 128 | }, 129 | { 130 | "name": "records.png", 131 | "description": "Race Records Page" 132 | }, 133 | { 134 | "name": "results.png", 135 | "description": "Race Results Page" 136 | }, 137 | { 138 | "name": "runner-search.png", 139 | "description": "Runner Search Page" 140 | } 141 | ], 142 | "tags": [ 143 | "bootstrap", 144 | "angularjs", 145 | "mysql", 146 | "apache", 147 | "website" 148 | ] 149 | }, 150 | 151 | { 152 | "permalink": "tasker", 153 | "name": "Task manager", 154 | "summary": "A task manager based on Phalcon using Launchkey login", 155 | "description": "Manage tasks and projects with this simple task manager that uses OAuth logins.", 156 | "url": "https://github.com/ShadMickelberry/phalcon-tasker", 157 | "info": "Task manager", 158 | "submitter": "ShadMickelberry", 159 | "submissionDate": "2015-04-01", 160 | "images": [ 161 | { 162 | "name": "thumb.png", 163 | "description": "Dashboard" 164 | }, 165 | { 166 | "name": "task-list.png", 167 | "description": "Task List" 168 | } 169 | ], 170 | "tags": [ 171 | "demo", 172 | "productivity", 173 | "mysql", 174 | "multi-module", 175 | "Open Source", 176 | "Github", 177 | "Apache" 178 | ] 179 | }, 180 | { 181 | "permalink": "meteoblue", 182 | "name": "meteoblue.com", 183 | "summary": "meteoblue provides high-quality weather forests world-wide", 184 | "description": "We operate our own high-resolution weather models and provide free weather forecasts for every place on earth. meteoblue models were initially developed at the University of Basel, Switzerland in 2006. Weather forecasts became quickly popular with scientists and the public having a specific interest in meteorology, including mountaineers, (hobby) pilots, and astronomers. The web-site started with Typo3 and Zend Framework and migrated early 2015 to Phalcon 2.", 185 | "url": "https://www.meteoblue.com/", 186 | "info": "", 187 | "submitter": "patrick-zippenfenig", 188 | "submissionDate": "2015-05-07", 189 | "images": [ 190 | { 191 | "name": "overview.jpg", 192 | "description": "Overview" 193 | }, 194 | { 195 | "name": "search.jpg", 196 | "description": "Location search" 197 | }, 198 | { 199 | "name": "satellite.jpg", 200 | "description": "Satellite" 201 | }, 202 | { 203 | "name": "radar.jpg", 204 | "description": "Radar" 205 | }, 206 | { 207 | "name": "meteogram.jpg", 208 | "description": "Meteogram" 209 | } 210 | ], 211 | "tags": [ 212 | "production", 213 | "weather-forecasting", 214 | "real-time", 215 | "travel", 216 | "productivity", 217 | "mysql", 218 | "memcache", 219 | "nginx", 220 | "PHP 5.6", 221 | "multi-module", 222 | "multilingual" 223 | ] 224 | }, 225 | { 226 | "permalink": "querobarato", 227 | "name": "QueroBarato", 228 | "summary": "QueroBarato (https://querobarato.com.br) is a search engine to products.", 229 | "description": "QueroBarato - Temos milhões de produtos para você filtrar e encontrar o produto que deseja comprar entre mais de 100 lojas parceiras. Descubra as melhores oportunidades de compra.", 230 | "url": "https://querobarato.com.br", 231 | "info": "QueroBarato.com.br is a site search engine to you find products from the best stores.", 232 | "submitter": "renatomarinho", 233 | "submissionDate": "2016-02-01", 234 | "tags": [ 235 | "production", 236 | "shopping", 237 | "search engine", 238 | "stores", 239 | "best products", 240 | "elasticsearch", 241 | "mariadb", 242 | "brazil", 243 | "PHP 5.6", 244 | "phalcon 2.0" 245 | ] 246 | }, 247 | { 248 | "permalink": "CG-Londrina", 249 | "name": "Comuinidade da Graça de Londrina", 250 | "summary": "A foreign project ( Brazillian ) for a non profit organization.", 251 | "description": "A foreign project ( Brazillian ) for a non profit organization, with a CMS for all of the pages content.", 252 | "url": "https://www.cglondrina.com.br", 253 | "info": "The website is mobile friendly (responsive via Bootstrap).", 254 | "submitter": "HudsonNicoletti", 255 | "submissionDate": "2015-07-23", 256 | "images": [ 257 | { 258 | "name": "website01.jpg", 259 | "description": "Main Page" 260 | }, 261 | { 262 | "name": "website02.jpg", 263 | "description": "All Articles" 264 | }, 265 | { 266 | "name": "website03.jpg", 267 | "description": "Article Info" 268 | }, 269 | { 270 | "name": "website04.jpg", 271 | "description": "Admin Panel - Login" 272 | }, 273 | { 274 | "name": "website05.jpg", 275 | "description": "Admin Panel - Logged" 276 | } 277 | ], 278 | "tags": [ 279 | "Production", 280 | "CRUD", 281 | "mysql", 282 | "Multi Module", 283 | "Portuguese", 284 | "Composer", 285 | "Mustache", 286 | "PHP 5.5", 287 | "Phalcon 2.0", 288 | "Responsive", 289 | "Non Profit", 290 | "Website" 291 | ] 292 | }, 293 | { 294 | "permalink": "phanbook", 295 | "name": "A Q&A, Discussion PHP platform", 296 | "summary": "Phanbook is the next-generation Q&A and forum software.", 297 | "description": "Phanbook is the next-generation Q&A and forum software that makes online discussion, question and answer site for professional and enthusiast people. Also the name Phanbook is mean - Phan(Phalcon PHP)book(the your note book).", 298 | "url": "https://phanbook.com", 299 | "info": "Q&A, Discussion, Forum", 300 | "submitter": "duythien", 301 | "submissionDate": "2015-08-27", 302 | "images": [ 303 | { 304 | "name": "home.png", 305 | "description": "Main page" 306 | } 307 | ], 308 | "tags": [ 309 | "Mysql", 310 | "Nginx", 311 | "Phalcon", 312 | "production", 313 | "Bootstrap", 314 | "Elastichsearch", 315 | "Docker", 316 | "Vagrant" 317 | ] 318 | }, 319 | 320 | { 321 | "permalink": "dealdoodle-uk", 322 | "name": "DealDoodle UK", 323 | "summary": "DealDoodle is a Deals Sharing website!", 324 | "description": "DealDoodles is a lively community for those of us who shop online and who prefer the experience when we manage to find a good deal. This is the perfect space to share deals, experiences, suggestions or tips. We promise to provide you with an environment to keep it simple and also to keep an eye out for good deals and add them to DealDoodles.", 325 | "url": "https://www.dealdoodle.co.uk/", 326 | "info": "We have responsive design on the site, so it fits in mobile visits perfectly, everything is developed based on phalcon and native template engine - Volt.", 327 | "submitter": "code100", 328 | "submissionDate": "2015-08-27", 329 | "images": [ 330 | { 331 | "name": "dealdoodle_uk_categories.png", 332 | "description": "Categories Page" 333 | }, 334 | { 335 | "name": "dealdoodle_uk_stores.png", 336 | "description": "Stores Page" 337 | }, 338 | { 339 | "name": "dealdoodle_uk_login.png", 340 | "description": "user login" 341 | } 342 | ], 343 | "tags": [ 344 | "production", 345 | "shopping", 346 | "deals and discounts", 347 | "sales and clearances", 348 | "responsive", 349 | "apache", 350 | "PHP 5.5", 351 | "phalcon 2.0" 352 | ] 353 | }, 354 | 355 | { 356 | "permalink": "soccer livescore", 357 | "name": "Soccer Livescore Website", 358 | "summary": "The fastest soccer livescore website, written with Phalcon!", 359 | "description": "We work hard to build a awesome website", 360 | "url": "https://www.9score.com", 361 | "info": "", 362 | "src": "https://github.com/phalcon/website", 363 | "submitter": "9score", 364 | "submissionDate": "2015-10-20", 365 | "images": [ 366 | { 367 | "name": "thumb.png", 368 | "description": "Homepage" 369 | } 370 | ], 371 | "tags": [ 372 | "emberjs", 373 | "redis", 374 | "phalcon 2.0", 375 | "php", 376 | "mongo", 377 | "livescore", 378 | "soccer" 379 | ] 380 | }, 381 | { 382 | "permalink": "usacycling", 383 | "name": "USA Cycling Website", 384 | "summary": "USA Cycling website and portal for athletes, coaches, and race directors.", 385 | "description": "Phalcon is used to power several major components of the USA Cycling web portal, which serves over 100,000 athletes, coaches, and race directors worldwide.", 386 | "url": "https://www.usacycling.org", 387 | "info": "", 388 | "submitter": "patr1k", 389 | "submissionDate": "2016-06-07", 390 | "images": [ 391 | { 392 | "name": "thumb.png", 393 | "description": "Homepage" 394 | }, 395 | { 396 | "name": "myusac.png", 397 | "description": "MyUSAC Portal" 398 | } 399 | ], 400 | "tags": [ 401 | "production", 402 | "mysql", 403 | "multi module", 404 | "redis", 405 | "phalcon 2.0", 406 | "php 5.6", 407 | "cycling", 408 | "usac", 409 | "usoc", 410 | "olympics", 411 | "team usa" 412 | ] 413 | }, 414 | { 415 | "permalink": "tutor-hero", 416 | "name": "Tutor Hero", 417 | "summary": "A network platform for tutors and students.", 418 | "description": "This is a network platform for tutors and students; both parties can search, chat, and make appointment. It has multi-languages user interface, and it has international locations available, which means a student from United States is able to find a Chinese language tutor from China. It can have more new and useful functionalities, if you have any great idea, please let me know, credit will be given.", 419 | "url": "https://tutorhero.online", 420 | "info": "", 421 | "src": "", 422 | "submitter": "chiWahWong", 423 | "submissionDate": "2016-10-05", 424 | "images": [ 425 | { 426 | "name": "thumb.png", 427 | "description": "logo" 428 | }, 429 | { 430 | "name": "01.png", 431 | "description": "Multi-languages user interface" 432 | }, 433 | { 434 | "name": "02.png", 435 | "description": "List of tutor profiles" 436 | }, 437 | { 438 | "name": "03.png", 439 | "description": "Making appointment" 440 | }, 441 | { 442 | "name": "04.png", 443 | "description": "Tutor's user interface" 444 | }, 445 | { 446 | "name": "05.png", 447 | "description": "List of appointments" 448 | }, 449 | { 450 | "name": "06.png", 451 | "description": "Built-in chat" 452 | } 453 | ], 454 | "tags": [ 455 | "production", 456 | "CRUD", 457 | "mysql", 458 | "single" 459 | ] 460 | }, 461 | { 462 | "permalink": "mongosilakan", 463 | "name": "Mongosilakan", 464 | "summary": "Translator local language website, written with Phalcon API!", 465 | "description": "This app separate UI and API, the API using Phalcon micro app, and for UI using Angular JS.", 466 | "url": "https://mongosilakan.net", 467 | "info": "", 468 | "src": "", 469 | "submitter": "soetedja", 470 | "submissionDate": "2016-10-07", 471 | "images": [ 472 | "thumb.png" 473 | ], 474 | "tags": [ 475 | "api", 476 | "mysql", 477 | "crud" 478 | ] 479 | }, 480 | 481 | { 482 | "permalink": "tsltranslator", 483 | "name": "TSL Translator", 484 | "summary": "Specialised translation services.", 485 | "description": "Specialised translation services provided to transport, tourism and other sectors. Your words in safe hands.", 486 | "url": "https://tsltranslator.eu", 487 | "info": "", 488 | "src": "", 489 | "submitter": "wojbach", 490 | "submissionDate": "2016-11-16", 491 | "images": [ 492 | { 493 | "name": "thumb.png", 494 | "description": "Homepage" 495 | } 496 | ], 497 | "tags": [ 498 | "production", 499 | "forms", 500 | "translations", 501 | "mailer-ext" 502 | ] 503 | }, 504 | { 505 | "permalink": "footballinclusive", 506 | "name": "Footballinclusive", 507 | "summary": "Footballinclusive, where football fans unite", 508 | "description": "Historical soccer/football website. Find historical teams and players. Contribute to the database.", 509 | "url": "https://footballinclusive.com/", 510 | "info": "", 511 | "src": "", 512 | "submitter": "challet", 513 | "submissionDate": "2017-02-13", 514 | "images": [ 515 | { 516 | "name": "thumb.png", 517 | "description": "thumb" 518 | }, 519 | { 520 | "name": "champions-league-2015-2016.png", 521 | "description": "all games from champions league 2015-2016" 522 | }, 523 | { 524 | "name": "germany-vs-argentina-world-cup-2014.png", 525 | "description": "Germany vs Argentina games, World Cup final" 526 | }, 527 | { 528 | "name": "contribution-board.png", 529 | "description": "all the competitions and their completion ratio" 530 | } 531 | ], 532 | "tags": [ 533 | "production", 534 | "mysql", 535 | "mongo", 536 | "elasticsearch", 537 | "beanstalkd", 538 | "semantic ui", 539 | "multi languages" 540 | ] 541 | }, 542 | { 543 | "permalink": "homediary", 544 | "name": "HomeDiary", 545 | "summary": "Plan spaces. Log inventory. Save ideas. Document improvements.", 546 | "description": "HomeDiary was created by a group of veterans from the online real estate industry. Our mission is to help you better manage your most important asset.", 547 | "url": "https://homediary.com", 548 | "info": "", 549 | "submitter": "akatasonov", 550 | "submissionDate": "2016-02-19", 551 | "images": [ 552 | { 553 | "name": "thumb.png", 554 | "description": "Homepage" 555 | } 556 | ], 557 | "tags": [ 558 | "production", 559 | "productivity", 560 | "CRUD", 561 | "mysql", 562 | "multi module", 563 | "phalcon 2.x", 564 | "php", 565 | "api" 566 | ] 567 | }, 568 | { 569 | "permalink": "mailfinder", 570 | "name": "mailfinder", 571 | "summary": "Email validation platform", 572 | "description": "mailfinder is a platform to verify your lists of emails to improve the sender score.", 573 | "url": "https://mailfinder.io", 574 | "info": "This platform is all built with phalcon micro api + angularjs. Our blog is https://blog.mailfinder.io ", 575 | "submitter": "mailfinder", 576 | "submissionDate": "2017-03-02", 577 | "images": [ 578 | { 579 | "name": "thumb.png", 580 | "description": "Logo" 581 | }, 582 | { 583 | "name": "login.jpg", 584 | "description": "Login" 585 | }, 586 | { 587 | "name": "dashboard.jpg", 588 | "description": "Dashboard" 589 | }, 590 | { 591 | "name": "payment.jpg", 592 | "description": "Payment" 593 | }, 594 | { 595 | "name": "verify.jpg", 596 | "description": "Verify" 597 | } 598 | ], 599 | "tags": [ 600 | "production", 601 | "CRUD", 602 | "mysql", 603 | "angularjs", 604 | "phalcon 3.x", 605 | "php", 606 | "api", 607 | "AWS", 608 | "marketing" 609 | ] 610 | }, 611 | { 612 | "permalink": "shorturl", 613 | "name": "URL Shortnr", 614 | "summary": "Free URL shortener service", 615 | "description": "URL Shortnr is a free URL shortener service.", 616 | "url": "https://s.juhara.id", 617 | "info": "", 618 | "submitter": "Zamrony P. Juhara", 619 | "submissionDate": "2017-04-05", 620 | "images": [ 621 | { 622 | "name": "thumb.png", 623 | "description": "Main page" 624 | } 625 | ], 626 | "tags": [ 627 | "production", 628 | "service", 629 | "mysql", 630 | "phalcon 3.x", 631 | "php", 632 | "url", 633 | "url shortener" 634 | ] 635 | }, 636 | { 637 | "permalink": "qrmaker", 638 | "name": "QR Makr", 639 | "summary": "Free QR Code generator service", 640 | "description": "QR Makr is a free QR Code generator service.", 641 | "url": "https://qr.juhara.com", 642 | "info": "", 643 | "submitter": "Zamrony P. Juhara", 644 | "submissionDate": "2017-04-05", 645 | "images": [ 646 | { 647 | "name": "thumb.png", 648 | "description": "Main page" 649 | } 650 | ], 651 | "tags": [ 652 | "production", 653 | "service", 654 | "QR Code", 655 | "phalcon 3.x" 656 | ] 657 | }, 658 | { 659 | "permalink": "imgholdr", 660 | "name": "ImageHoldr", 661 | "summary": "Free image placeholder service", 662 | "description": "ImageHoldr is a free image placeholder service.", 663 | "url": "https://img.juhara.com", 664 | "info": "", 665 | "submitter": "Zamrony P. Juhara", 666 | "submissionDate": "2017-04-05", 667 | "images": [ 668 | { 669 | "name": "thumb.png", 670 | "description": "Main page" 671 | } 672 | ], 673 | "tags": [ 674 | "production", 675 | "service", 676 | "image placeholder", 677 | "phalcon 3.x" 678 | ] 679 | }, 680 | 681 | { 682 | "permalink": "prakse-lv", 683 | "name": "Prakse.lv", 684 | "summary": "A career platform for youngsters/students, educational institutions and employers/companies", 685 | "description": "Find and apply for first internship/job, get the insights of hundreds of companies by using \"Virtual Internship\". Do not know, where to study your future profession? Check the studies TOP, which is created by TOP employer all over the world!", 686 | "url": "https://www.prakse.lv", 687 | "info": "", 688 | "src": "", 689 | "submitter": "janisbizkovskis", 690 | "submissionDate": "2017-08-26", 691 | "images": [ 692 | { 693 | "name" : "index.png", 694 | "description": "Main page" 695 | }, 696 | { 697 | "name": "profile.png", 698 | "description": "Profile of the company" 699 | }, 700 | { 701 | "name": "virtual-internship.png", 702 | "description": "Overview of Virtual Internship" 703 | }, 704 | { 705 | "name": "career-page.png", 706 | "description": "Overview of educational institutions career page" 707 | } 708 | ], 709 | "tags": [ 710 | "production", 711 | "service", 712 | "multi module", 713 | "phalcon 3.x", 714 | "phalcon 2.x", 715 | "phalcon 1.x", 716 | "platform" 717 | ] 718 | }, 719 | { 720 | "permalink": "practican-com", 721 | "name": "PractiCan.com", 722 | "summary": "A career platform for youngsters/students, educational institutions and employers/companies", 723 | "description": "Find and apply for first internship/job, get the insights of hundreds of companies by using \"Virtual Internship\". Do not know, where to study your future profession? Check the studies TOP, which is created by TOP employer all over the world!", 724 | "url": "https://www.practican.com", 725 | "info": "", 726 | "src": "", 727 | "submitter": "janisbizkovskis", 728 | "submissionDate": "2017-08-26", 729 | "images": [], 730 | "tags": [ 731 | "production", 732 | "service", 733 | "multi module", 734 | "phalcon 3.x", 735 | "phalcon 2.x", 736 | "phalcon 1.x", 737 | "platform" 738 | ] 739 | }, 740 | { 741 | "permalink": "whichbingo", 742 | "name": "WhichBingo", 743 | "summary": "WhichBingo home of the UKs largest online bingo reviews directory", 744 | "description": "We have the largest collection of Bingo Sites brought to you by licensed UK operators, read positive & negative reviews from real players with starred ratings", 745 | "url": "https://www.whichbingo.co.uk/", 746 | "info": "", 747 | "src": "", 748 | "submitter": "jamesneale1996", 749 | "submissionDate": "2017-10-05", 750 | "images": [], 751 | "tags": [ 752 | "production", 753 | "service", 754 | "multi module", 755 | "phalcon 3.x", 756 | "Affiliate Marketing" 757 | ] 758 | }, 759 | { 760 | "permalink": "thedealsco", 761 | "name": "The Deals Co.", 762 | "summary": "The Deals Co. (https://thedeals.co) is a price tracking and comparison website.", 763 | "description": "The Deals Co. tracks and categorizes millions of products some of the most popular stores. We enables users to sort through products from multiple stores in one place. A unique feature on our site is the ability to sort by \"Biggest Price Drop.\" Users can also sign up for price drop alerts.", 764 | "url": "https://thedeals.co/", 765 | "info": "The website is mobile friendly (responsive via Bootstrap). In addition to using Phalcon's volt templating we are also using doT.js for final frontend layout.", 766 | "submitter": "dasong", 767 | "submissionDate": "2015-07-15", 768 | "images": [ 769 | { 770 | "name": "thedealsco-large.png", 771 | "description": "Store menu" 772 | }, 773 | { 774 | "name": "thedealsco-large2.png", 775 | "description": "Categories menu" 776 | } 777 | ], 778 | "tags": [ 779 | "production", 780 | "shopping", 781 | "price tracking", 782 | "responsive", 783 | "price comparison", 784 | "postgres", 785 | "nginx", 786 | "doT.js", 787 | "PHP 5.5", 788 | "phalcon 2.0" 789 | ] 790 | }, 791 | ] -------------------------------------------------------------------------------- /old-site/projects/9score/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /old-site/projects/9score/thumb.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /old-site/projects/CG-Londrina/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/CG-Londrina/thumb.jpg -------------------------------------------------------------------------------- /old-site/projects/CG-Londrina/website01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/CG-Londrina/website01.jpg -------------------------------------------------------------------------------- /old-site/projects/CG-Londrina/website02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/CG-Londrina/website02.jpg -------------------------------------------------------------------------------- /old-site/projects/CG-Londrina/website03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/CG-Londrina/website03.jpg -------------------------------------------------------------------------------- /old-site/projects/CG-Londrina/website04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/CG-Londrina/website04.jpg -------------------------------------------------------------------------------- /old-site/projects/CG-Londrina/website05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/CG-Londrina/website05.jpg -------------------------------------------------------------------------------- /old-site/projects/bootlegger-trail-race/records.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/bootlegger-trail-race/records.png -------------------------------------------------------------------------------- /old-site/projects/bootlegger-trail-race/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/bootlegger-trail-race/results.png -------------------------------------------------------------------------------- /old-site/projects/bootlegger-trail-race/runner-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/bootlegger-trail-race/runner-search.png -------------------------------------------------------------------------------- /old-site/projects/bootlegger-trail-race/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/bootlegger-trail-race/thumb.png -------------------------------------------------------------------------------- /old-site/projects/dealdoodle-uk/dealdoodle_uk_categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/dealdoodle-uk/dealdoodle_uk_categories.png -------------------------------------------------------------------------------- /old-site/projects/dealdoodle-uk/dealdoodle_uk_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/dealdoodle-uk/dealdoodle_uk_login.png -------------------------------------------------------------------------------- /old-site/projects/dealdoodle-uk/dealdoodle_uk_stores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/dealdoodle-uk/dealdoodle_uk_stores.png -------------------------------------------------------------------------------- /old-site/projects/dealdoodle-uk/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/dealdoodle-uk/thumb.png -------------------------------------------------------------------------------- /old-site/projects/footballinclusive/champions-league-2015-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/footballinclusive/champions-league-2015-2016.png -------------------------------------------------------------------------------- /old-site/projects/footballinclusive/contribution-board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/footballinclusive/contribution-board.png -------------------------------------------------------------------------------- /old-site/projects/footballinclusive/germany-vs-argentina-world-cup-2014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/footballinclusive/germany-vs-argentina-world-cup-2014.png -------------------------------------------------------------------------------- /old-site/projects/footballinclusive/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/footballinclusive/thumb.png -------------------------------------------------------------------------------- /old-site/projects/homediary/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/homediary/thumb.png -------------------------------------------------------------------------------- /old-site/projects/imeidata/blacklist_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/imeidata/blacklist_check.png -------------------------------------------------------------------------------- /old-site/projects/imeidata/imei_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/imeidata/imei_check.png -------------------------------------------------------------------------------- /old-site/projects/imeidata/iphone_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/imeidata/iphone_check.png -------------------------------------------------------------------------------- /old-site/projects/imeidata/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/imeidata/thumb.png -------------------------------------------------------------------------------- /old-site/projects/imgholdr/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/imgholdr/thumb.png -------------------------------------------------------------------------------- /old-site/projects/istebenimstilim/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/istebenimstilim/thumb.png -------------------------------------------------------------------------------- /old-site/projects/istebenimstilim/website01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/istebenimstilim/website01.png -------------------------------------------------------------------------------- /old-site/projects/istebenimstilim/website02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/istebenimstilim/website02.png -------------------------------------------------------------------------------- /old-site/projects/istebenimstilim/website03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/istebenimstilim/website03.png -------------------------------------------------------------------------------- /old-site/projects/jream/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/jream/thumb.jpg -------------------------------------------------------------------------------- /old-site/projects/jream/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/jream/thumb.png -------------------------------------------------------------------------------- /old-site/projects/kabar-indonesia-pintar/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/kabar-indonesia-pintar/thumb.jpg -------------------------------------------------------------------------------- /old-site/projects/kabar-indonesia-pintar/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/kabar-indonesia-pintar/thumb.png -------------------------------------------------------------------------------- /old-site/projects/karakurihiden/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/karakurihiden/thumb.png -------------------------------------------------------------------------------- /old-site/projects/king-of-episodes/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/king-of-episodes/show.png -------------------------------------------------------------------------------- /old-site/projects/king-of-episodes/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/king-of-episodes/thumb.png -------------------------------------------------------------------------------- /old-site/projects/king-of-episodes/watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/king-of-episodes/watch.png -------------------------------------------------------------------------------- /old-site/projects/kiwisoft/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/kiwisoft/thumb.png -------------------------------------------------------------------------------- /old-site/projects/mailfinder/dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/mailfinder/dashboard.jpg -------------------------------------------------------------------------------- /old-site/projects/mailfinder/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/mailfinder/login.jpg -------------------------------------------------------------------------------- /old-site/projects/mailfinder/payment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/mailfinder/payment.jpg -------------------------------------------------------------------------------- /old-site/projects/mailfinder/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/mailfinder/thumb.png -------------------------------------------------------------------------------- /old-site/projects/mailfinder/verify.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/mailfinder/verify.jpg -------------------------------------------------------------------------------- /old-site/projects/meteoblue/meteogram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/meteoblue/meteogram.jpg -------------------------------------------------------------------------------- /old-site/projects/meteoblue/overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/meteoblue/overview.jpg -------------------------------------------------------------------------------- /old-site/projects/meteoblue/radar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/meteoblue/radar.jpg -------------------------------------------------------------------------------- /old-site/projects/meteoblue/satellite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/meteoblue/satellite.jpg -------------------------------------------------------------------------------- /old-site/projects/meteoblue/search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/meteoblue/search.jpg -------------------------------------------------------------------------------- /old-site/projects/meteoblue/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/meteoblue/thumb.png -------------------------------------------------------------------------------- /old-site/projects/mongosilakan/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/mongosilakan/thumb.png -------------------------------------------------------------------------------- /old-site/projects/newintoday/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/newintoday/thumb.png -------------------------------------------------------------------------------- /old-site/projects/nhieuviec/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/nhieuviec/thumb.png -------------------------------------------------------------------------------- /old-site/projects/phalcon-jobs/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/phalcon-jobs/thumb.png -------------------------------------------------------------------------------- /old-site/projects/phalcon-tip/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/phalcon-tip/thumb.png -------------------------------------------------------------------------------- /old-site/projects/phalconphp-forum/forum01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/phalconphp-forum/forum01.png -------------------------------------------------------------------------------- /old-site/projects/phalconphp-forum/forum02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/phalconphp-forum/forum02.png -------------------------------------------------------------------------------- /old-site/projects/phalconphp-forum/forum03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/phalconphp-forum/forum03.png -------------------------------------------------------------------------------- /old-site/projects/phalconphp-forum/forum04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/phalconphp-forum/forum04.png -------------------------------------------------------------------------------- /old-site/projects/phalconphp-forum/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/phalconphp-forum/thumb.png -------------------------------------------------------------------------------- /old-site/projects/phalconphp-website/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/phalconphp-website/thumb.png -------------------------------------------------------------------------------- /old-site/projects/phalconphp-website/website01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/phalconphp-website/website01.png -------------------------------------------------------------------------------- /old-site/projects/phalconphp-website/website02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/phalconphp-website/website02.png -------------------------------------------------------------------------------- /old-site/projects/phalconphp-website/website03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/phalconphp-website/website03.png -------------------------------------------------------------------------------- /old-site/projects/phalconphp-website/website04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/phalconphp-website/website04.png -------------------------------------------------------------------------------- /old-site/projects/phalconphp-website/website05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/phalconphp-website/website05.png -------------------------------------------------------------------------------- /old-site/projects/phanbook/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/phanbook/home.png -------------------------------------------------------------------------------- /old-site/projects/piggybank/full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/piggybank/full.png -------------------------------------------------------------------------------- /old-site/projects/piggybank/landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/piggybank/landing.png -------------------------------------------------------------------------------- /old-site/projects/piggybank/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/piggybank/thumb.png -------------------------------------------------------------------------------- /old-site/projects/practican-com/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/practican-com/thumb.png -------------------------------------------------------------------------------- /old-site/projects/prakse-lv/career-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/prakse-lv/career-page.png -------------------------------------------------------------------------------- /old-site/projects/prakse-lv/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/prakse-lv/index.png -------------------------------------------------------------------------------- /old-site/projects/prakse-lv/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/prakse-lv/profile.png -------------------------------------------------------------------------------- /old-site/projects/prakse-lv/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/prakse-lv/thumb.png -------------------------------------------------------------------------------- /old-site/projects/prakse-lv/virtual-internship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/prakse-lv/virtual-internship.png -------------------------------------------------------------------------------- /old-site/projects/qrmaker/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/qrmaker/thumb.png -------------------------------------------------------------------------------- /old-site/projects/querobarato/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/querobarato/thumb.png -------------------------------------------------------------------------------- /old-site/projects/robertbojorcv/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/robertbojorcv/thumb.png -------------------------------------------------------------------------------- /old-site/projects/safe_password_generate-Phalcon/test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /old-site/projects/safe_password_generate-Phalcon/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/safe_password_generate-Phalcon/thumb.png -------------------------------------------------------------------------------- /old-site/projects/sauny-24/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/sauny-24/blog.png -------------------------------------------------------------------------------- /old-site/projects/sauny-24/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/sauny-24/search.png -------------------------------------------------------------------------------- /old-site/projects/sauny-24/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/sauny-24/thumb.png -------------------------------------------------------------------------------- /old-site/projects/searchmo/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/searchmo/thumb.png -------------------------------------------------------------------------------- /old-site/projects/shorturl/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/shorturl/thumb.png -------------------------------------------------------------------------------- /old-site/projects/smores/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/smores/dashboard.png -------------------------------------------------------------------------------- /old-site/projects/smores/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/smores/login.png -------------------------------------------------------------------------------- /old-site/projects/smores/registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/smores/registration.png -------------------------------------------------------------------------------- /old-site/projects/smores/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/smores/thumb.png -------------------------------------------------------------------------------- /old-site/projects/stolarstwogiemza/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/stolarstwogiemza/thumb.png -------------------------------------------------------------------------------- /old-site/projects/tasker/task-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/tasker/task-list.png -------------------------------------------------------------------------------- /old-site/projects/tasker/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/tasker/thumb.png -------------------------------------------------------------------------------- /old-site/projects/the-dealio/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/the-dealio/thumb.png -------------------------------------------------------------------------------- /old-site/projects/thedealsco/thedealsco-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/thedealsco/thedealsco-large.png -------------------------------------------------------------------------------- /old-site/projects/thedealsco/thedealsco-large2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/thedealsco/thedealsco-large2.png -------------------------------------------------------------------------------- /old-site/projects/thedealsco/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/thedealsco/thumb.png -------------------------------------------------------------------------------- /old-site/projects/tsltranslator/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/tsltranslator/thumb.png -------------------------------------------------------------------------------- /old-site/projects/tutor-hero/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/tutor-hero/01.png -------------------------------------------------------------------------------- /old-site/projects/tutor-hero/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/tutor-hero/02.png -------------------------------------------------------------------------------- /old-site/projects/tutor-hero/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/tutor-hero/03.png -------------------------------------------------------------------------------- /old-site/projects/tutor-hero/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/tutor-hero/04.png -------------------------------------------------------------------------------- /old-site/projects/tutor-hero/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/tutor-hero/05.png -------------------------------------------------------------------------------- /old-site/projects/tutor-hero/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/tutor-hero/06.png -------------------------------------------------------------------------------- /old-site/projects/tutor-hero/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /old-site/projects/tutor-hero/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/tutor-hero/thumb.png -------------------------------------------------------------------------------- /old-site/projects/unturnedserv/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/unturnedserv/thumb.png -------------------------------------------------------------------------------- /old-site/projects/usacycling/myusac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/usacycling/myusac.png -------------------------------------------------------------------------------- /old-site/projects/usacycling/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/usacycling/thumb.png -------------------------------------------------------------------------------- /old-site/projects/wallstreetcn/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/wallstreetcn/thumb.png -------------------------------------------------------------------------------- /old-site/projects/whichbingo/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/whichbingo/thumb.png -------------------------------------------------------------------------------- /old-site/projects/yuyangongfu/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/builtwith/c0accadb8d883d268f78bdd60e6953c8bd247b28/old-site/projects/yuyangongfu/thumb.png -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | -------------------------------------------------------------------------------- /serve: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | bundle exec jekyll serve --host 0.0.0.0 --port 4000 --verbose 4 | -------------------------------------------------------------------------------- /tags.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Tags 4 | permalink: /tags 5 | --- 6 |
7 |

8 | Tags 9 |

10 |
11 | {% assign tags = site.tags | sort %} 12 | {% for tag in tags %} 13 | 14 |
{{ tag[0] }}
15 |

16 |

22 |

23 | {% endfor %} 24 |
25 |
26 | -------------------------------------------------------------------------------- /updateData.php: -------------------------------------------------------------------------------- 1 |