Skip to content

Instantly share code, notes, and snippets.

View ivopauly's full-sized avatar

Ivo Pauly-Koelewijn ivopauly

View GitHub Profile
@ivopauly
ivopauly / embedded-file-viewer.md
Created November 28, 2019 19:07 — forked from tzmartin/embedded-file-viewer.md
Embedded File Viewer: Google Drive, OneDrive

Office Web Apps Viewer

('.ppt' '.pptx' '.doc', '.docx', '.xls', '.xlsx')

http://view.officeapps.live.com/op/view.aspx?src=[OFFICE_FILE_URL]

<iframe src='https://view.officeapps.live.com/op/embed.aspx?src=[OFFICE_FILE_URL]' width='px' height='px' frameborder='0'>
</iframe>

OneDrive Embed Links

@ivopauly
ivopauly / vue-custom-style-guide.md
Last active April 10, 2019 11:37
Vue Custom Style Guide for sorting functions Components

Vue Custom Style Guide

Structure functions in components:

  • Options / Misc (name, delimiters, functional, model)
  • Options / Assets (components, directives, filters)
  • Options / Composition (parent, mixins, extends, provide, inject)
  • el / template
  • props
  • propsData
  • data
@ivopauly
ivopauly / front-end-checklist.md
Last active March 6, 2024 10:51
Code Review Checklist for Front-End Developers

Code Review Checklist for Front-End Developers

The goal is not to define a formal definition of practices for code review but to give some checklist for reviewers.

Of course, it helps a developer to know how the reviewer does his code review. He can so focus on writing a better and simpler code.

Philosophy

Code Review is about the code not about the coder.