Skip to content

Instantly share code, notes, and snippets.

View zahirkelloud's full-sized avatar

Zee (Zahir) Kelloud zahirkelloud

View GitHub Profile
@zahirkelloud
zahirkelloud / index.html
Last active January 10, 2018 22:27 — forked from victorb/app.js
Easy AngularJS Directive for Google Places Autocomplete
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?libraries=places&sensor=false"></script>
<div ng-app="myApp" ng-controller="MyCtrl">
<div>Google Places Autocomplte integration in Angular</div>
<div>To Test, start typing the name of any Indian city</div>
<div>selection is: {{chosenPlace}}</div>
<div><input ng-model="chosenPlace" googleplace/></div>
</div>
##Some points to mention...
##
##The model knows nothing about the view or the controller.
##The view knows nothing about the controller or the model.
##The controller understands both the model and the view.
##
##The model uses observables, essentially when important data is changed,
##any interested listener gets notified through a callback mechanism.
##
##The following opens up two windows, one that reports how much money you
@zahirkelloud
zahirkelloud / starulm.md
Last active June 19, 2020 09:56 — forked from DrYazid/starulm.md
StarUml 3.0 full version

StarUML 3.0

  • 1- install staruml. : staruml
  • 2- install node.js : node.js
  • 3- go to ...\AppData\Local\Programs\StarUML\resources
  • 4- open CMD As admin
  • 5- execute
@zahirkelloud
zahirkelloud / php54.rb
Created February 23, 2023 01:59 — forked from staurostriantafyllos/php54.rb
brew install php 5.4
require 'formula'
def mysql_installed?
`which mysql_config`.length > 0
end
def postgres_installed?
`which pg_config`.length > 0
end