Giter Site home page Giter Site logo

goobemaster / php-showcase Goto Github PK

View Code? Open in Web Editor NEW
5.0 2.0 1.0 3.17 MB

KISS solutions to blatantly easy tasks with the right ratio of server and client side code

License: GNU General Public License v3.0

PHP 65.25% HTML 8.65% JavaScript 12.44% CSS 11.96% Shell 0.87% Batchfile 0.83%
php vanilla-php vanilla-javascipt showcase showcases keep-it-simple-stupid keep-it-simple-and-no-fancy-ui minimalist minimalist-design object-oriented-php mock-server code-browser rss-aggregator custom-framework frameworkless

php-showcase's Introduction

php-showcase

KISS solutions to blatantly easy tasks with the right ratio of server and client side code.

If you like this project, or found it useful:

"Buy Me A Coffee"

Contents

How to run a solution

To try out a solution in your browser:

  1. Clone this respository
  2. Install PHP until php -v reports the version number ;) Or just run the included script called 'setup'
  3. Make sure 'php-showcase' is executable, then run it in the terminal
  4. Pick a solution
  5. Open a standards compliant browser and load "http://localhost:8000/"

Code Show Off Preview

Note:

  • 'setup' only works in Linux, 'php-showcase' best works on Linux.
  • If you're on Windows, see setup-win.bat and php-showcase-win.bat (limited support).

Pretty please: Open 'setup' and check what it actually does before you run it, because it may modify your system.

Solutions

More solutions to come, depending on ideas/free time. Suggestions are welcome. Important to point out, that none of these are particularly elegant, or production level code, but it demonstrates what you can achieve with so little! This whole repository is just a nice distraction for me from the everyday crunch. I like a good challenge.

Sneak Peek

Code Show Off Search The News
1) "Code Show Off" 2) "Search The News"
Restless Parrot Preview Wine Setup 3.1 Preview
3) "Restless Parrot" 4) "Wine Setup 3.1"

1) Code Show Off

⚑ Goal: Showing off your juicy code snippets on a page.

Code Show Off Preview

⊕ Requirements:

  • Only one index page.
  • Very fast page load.
  • Basic page layout: logo, title, navigation bar to choose the snippet from, footer.
  • Displaying one snippet at a time, chosen by the user from the navigation bar.
  • Caching contents (code snippets) on client side.
  • SEO friendly
  • Responsive design (mobile friendly)

⊘ Restrictions (derived from requirements):

  • No frameworks used
  • No database used
  • Vanilla PHP & JavaScript, standards compliant HTML5 & CSS3

⧗ Man-hours: Approximately 5 hours.

Total size: 45,6 kB (includes sample content)

⚒ Your challenge:

  • Make it nicer.
  • Implement a textual and/or source type filter for the nav side bar.

To add a new snippet copy a source file to the "content" folder.

If you wish to allow a certain source file extension, open docroot/index.php and add a new line to the ALLOWED_CONTENT const, e.g.:

const ALLOWED_CONTENT = [
    'c' => 'Ansi C',
    'java' => 'Java',
    'py' => 'Python',
    'rb' => 'Ruby',
    'sh' => 'Shell Script' // << New stuff inserted here
];

▲ Back to Contents

2) Search The News

⚑ Goal: Let users search the latest and greatest of tech news, and deliver the results quickly with background caching and indexing.

Search the News Preview

⊕ Requirements:

  • Only one index page.
  • Fetching tech news from select RSS feeds.
  • Caching and indexing news articles in the background.
  • Type-ahead style and regular search results delivery.

⊘ Restrictions (for the challenge):

  • No frameworks used
  • No database used
  • Vanilla PHP & JavaScript, standards compliant HTML5 & CSS3

⧗ Man-hours: Approximately 2 working days (or a weekend).

Total size: 123 kB

⚒ Your challenge:

  • Refactor, refactor, refactor!
  • There are very good, mature algos for this particular job. Learn them. You'll see that this implementation is very rudimentary (although it does a suprisingly good job).
  • There are really nice indexers out there on packagist.org, however you'll need to tweak them as they are geared towards mysql, redis etc.
  • Introduce strategies for the indexer, stemmer etc.
  • Oh, and the feeder should really be a CRON job!

If you wish to add a new RSS feed source, open the Feeder.php source and add a new line to the const, e.g.:

const RSS_FEEDS = [
    'https://www.techmeme.com/feed.xml?x=1',
    'https://feeds.feedburner.com/TechCrunch/',
    'https://www.technologyreview.com/topnews.rss',
    'http://feeds.arstechnica.com/arstechnica/technology-lab',
    'https://www.wired.com/feed/rss',
    'http://rss.nytimes.com/services/xml/rss/nyt/Technology.xml',
    'http://feeds.bbci.co.uk/news/technology/rss.xml'

    // << Insert a new URL here
];

To change how frequently the indexer should run, and for how long to keep news articles open the Feeder.php source and look for the following consts:

const UPDATE_INTERVAL_SEC = 900; // 15 minutes
const PURGE_OLDER_THAN_SEC = 86400; // 1 day

▲ Back to Contents

3) Restless Parrot

⚑ Goal: Your trusty parrot is restless, so much so it learned how to reply to your requests. With a mock server, and a handy companion web UI for configuration, we can develop and test the frontend of any project without a working backend.

Restless Parrot Preview

⊕ Requirements:

  • Only one index page for configuring the mock server
  • HTTP/1.1 compliant web server for mocking purposes
  • Performant, OOP implementation

⊘ Restrictions (for the challenge):

  • No frameworks used
  • No database used
  • Vanilla PHP & JavaScript, standards compliant HTML5 & CSS3

⧗ Man-hours: Approximately 3 working days (or a couple of late-night coding sessions).

Total size: 83.5 kB

⚒ Your challenge:

  • Make the UI nicer.
  • Try to optimise the controllers. Do we really need so many of them? Can we make it so, that each controller features multiple callable methods (not just index())?
  • Write unit tests.
  • Write a performance test for the hashing __toString() method, and prove it (see my comment what exactly).
  • Write a string parser that works character-by-character and replace LineParser with it (just for practising, I doubt it would be that much more performant).
  • Make the __construct() of Request class use more rigorous validation on the actual request data.
  • Find ready to use mock servers. See how they've been done and compare them with this solution. Think about the pros and cons.
  • Write the saved mock resources to disk periodically, and restore them on boot in the MockServer class.

Use the UI to register a couple of Request-Response pairs, then test it with JS or Postman or anything that can call the mock server via HTTP.

You get the fastest reponses when you send the registered request verbatim. If the request method, path, body matches, and all the registered headers are present the mock server will still respond!

If the mock server cannot start with ./php-showcase wait a little until the port becomes free. As a last resort try "killall php" before running. If port 8010 on your machine is always in use replace the default port in MockServer.php (DEFAULT_PORT const) AND in main.js (MOCK_SERVER_URL const)

▲ Back to Contents

4) Wine Setup 3.1

⚑ Goal: If you're clientele is not of the geeky bunch, they will surely appreciate a step based graphical setup wizard for your web application. Configuration is as simple as modifying a json file and the implementation of a couple of callback PHP classes. Themes will ensure easy adaptibility of the look and feel of your app. Should you need, custom templates are easily added.

Restless Parrot Preview

⊕ Requirements:

  • Only one index page, a json configuration file and a couple of callback classes
  • Templates and themes
  • Performant, OOP implementation

⊘ Restrictions (for the challenge):

  • No frameworks used
  • No database used
  • Vanilla PHP & JavaScript, standards compliant HTML5 & CSS3

⧗ Man-hours: Approximately 2 working days (or a couple of late-night coding sessions).

Total size: 1.9 Mb (includes sample data + a 1.8 Mb high-res image)

⚒ Your challenge:

  • Add a new theme
  • Add a custom template for something new and useful
  • Implement a sub-type of callback that can be polled to check whether the task is done. A progress bar displayed on the UI would be nice meanwhile.

You can customise the setup in configuration.json , coding is required only for the callback PHP classes!

Try switching to the secondary built-in theme by setting options > theme to "wine31" in configuration.json

To create a new theme just simply copy resources/theme/wine31.css and tweak it. Then just set options > theme to the css filename in configuration.json

To create a new template put an html in resources/template folder. I suggest copying an existing one. The contents of this HTML snippet goes into the main window. To set up the template during load, put a script tag there. To query the step parameters from configuration.json reference APP.options , while you can advance to the next step with onclick="APP.nextStep();" Templates are absolutely free-form you can put whatever markup there. If you put an input or select there, the user input will be handed over to the PHP callback automagically.

▲ Back to Contents

php-showcase's People

Contributors

goobemaster avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

5l1v3r1

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.