Skip to content

Instantly share code, notes, and snippets.

View Ankrat's full-sized avatar

Ankrat Ankrat

  • Vente-privee.com @vente-privee
  • Lyon, France
View GitHub Profile
@Ankrat
Ankrat / project-ideas01.md
Created October 7, 2021 07:51 — forked from MWins/project-ideas01.md
Back end Projects - list

Project Ideas

Ok. I'm going to list off some ideas for projects. You will have to determine if any particular idea is good enough to include in a portfolio. These aren't creative ideas. They likely already exist. Some are way too advanced while others are simplistic.

I will recommend to post any project you make to github and make a github project page for it. Explain in as much detail as possible how you made it, how it can be improved etc. Document it.

If you pick an advanced idea, setup a development roadmap and follow it. This will show some project management skills.

Another piece of advice for those who are design challenged. Use different front end frameworks and use different themes for those frameworks to provide appealing designs without looking like yet another bootstrap site.

@Ankrat
Ankrat / README-Template.md
Created September 4, 2018 08:14 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@Ankrat
Ankrat / proxy.js
Created June 9, 2016 15:41 — forked from cmawhorter/proxy.js
Node script to forward all http requests to another server and return the response with an access-control-allow-origin header. Follows redirects.
// Simple proxy/forwarding server for when you don't want to have to add CORS during development.
// Usage: node proxy.js
// Open browser and navigate to http://localhost:9100/[url]
// Example: http://localhost:9100/http://www.google.com
// This is *NOT* for anything outside local development. It has zero error handling among other glaring problems.
// This started as code I grabbed from this SO question: http://stackoverflow.com/a/13472952/670023
@Ankrat
Ankrat / html:video
Created August 24, 2012 20:55 — forked from SkyronDevelopers/gist:3187612
html:video, Sample of html5 video tag implementation.
<div class="video">
<video autoplay controls id="video_intro" poster="/img/loading-vid.png" width="640" height="360">
<source src="/video/intro.mp4" type="video/mp4" />
<source src="/video/intro.webm" type="video/webm" />
<object class="vid-object" type="application/x-shockwave-flash" data="/video/player.swf" width="640" height="360">
<param name="allowfullscreen" value="true">
<param name="allowscriptaccess" value="always">
<param name="flashvars" value="file=/video/intro.mp4&amp;autostart=true">
<param name="wmode" value="opaque">
<!--[if IE]><param name="movie" value="/video/player.swf"><![endif]-->