This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.1.0 | |
info: | |
title: User service | |
version: '1.0' | |
servers: | |
- url: 'http://localhost:3000' | |
paths: | |
'/users/{userId}': | |
parameters: | |
- schema: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Author : Jeroen Herczeg <[email protected]> HASSELT, LIMBURG, BELGIUM, EUROPE, EARTH | |
# | |
# Hello. My name is Jeroen Herczeg and I can help you or your team with my broad knowledge | |
# of frontend & backend web technologies and tools. I'm an eager learner and easily adapt to | |
# new environments. Work remotely? I like that. Need me on location? I'm sure we'll figure something out! | |
# | |
# http://herczeg.be | |
# Stop the script if there is an error |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Author : Jeroen Herczeg <[email protected]> HASSELT, LIMBURG, BELGIUM, EUROPE, EARTH | |
# | |
# Hello. My name is Jeroen Herczeg and I can help you or your team with my broad knowledge | |
# of frontend & backend web technologies and tools. I'm an eager learner and easily adapt to | |
# new environments. Work remotely? I like that. Need me on location? I'm sure we'll figure something out! | |
# | |
# http://herczeg.be | |
echo "PHP Tools will be installed to /usr/local/bin and renamed with .phar" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="jquery.min.js" type="text/javascript"></script> | |
<script type="text/javascript"> | |
// On window load. This waits until images have loaded which is essential | |
$(window).load(function(){ | |
// Fade in images so there isn't a color "pop" document load and then on window load | |
$(".item img").fadeIn(500); | |
// clone image |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap { | |
protected function _initNavigation() { | |
// make sure the layout is loaded | |
$this->bootstrap('layout'); | |
// get the view of the layout | |
$layout = $this->getResource('layout'); | |
$view = $layout->getView(); | |