About Razworks

Razworks is a company founded Michael Rassel in Sarasota, FL in  2002. Michael is an Internet  developer and rock musician, originally hailing from Minneapolis, MN. As a realtime 3D developer in New York City, Michael worked on web 3D projects for clients such as Sony, Nike, and IBM. Michael managed a team that won a…

Repsonsive Video embed

This is the standard CSS for making video embeds responsive. The CSS <style> .video-container { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; } .video-container iframe, .video-container object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } </style> The iframe wrapper <div class=”video-container”> <iframe width=”1280″ height=”720″ src=”https://www.youtube.com/embed/GY25hkrZyZA?rel=0&amp;showinfo=0″ frameborder=”0″…

Youtube Responsive JS embed

Embed Youtube without an Iframe. It loads the thumbnail only, until a user clicks it, then it loads the Youtube player. Faster initial page load. Responsive. The JS: /* Responsive YouTube Embed */ /* Web: http://rooksadvertising.com */ document.addEventListener(“DOMContentLoaded”, function() { var div, n, v = document.getElementsByClassName(“youtube-player”); for (n = 0; n < v.length; n++) {…

Import CSV to PHPMyAdmin

Create the CSV file in spreadsheet software like Excel or Calc. Include the columns from your database that you want to import data to. Then save the spreadsheet to a CSV file. Open the CSV file and cut the column header row. Save the final CSV. Paste the cut header row names into a blank text document in your…