ZOGOVIC.COM
Milovan Zogovicruby on rails developer
http://www.zogovic.com/
ruby on rails developer
http://www.zogovic.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
0.6 seconds
16x16
32x32
64x64
128x128
Milovan Zogovic
Novice●●●●●●vica 5
Pod●●●ica , 81000
Montenegro
View this contact
Milovan Zogovic
Novice●●●●●●vica 5
Pod●●●ica , 81000
Montenegro
View this contact
Milovan Zogovic
Novice●●●●●●vica 5
Pod●●●ica , 81000
Montenegro
View this contact
20
YEARS
4
MONTHS
7
DAYS
GODADDY.COM, LLC
WHOIS : whois.godaddy.com
REFERRED : http://registrar.godaddy.com
PAGES IN
THIS WEBSITE
20
SSL
EXTERNAL LINKS
21
SITE IP
66.6.44.4
LOAD TIME
0.594 sec
SCORE
6.2
Milovan Zogovic | zogovic.com Reviews
https://zogovic.com
ruby on rails developer
zogovic.com
Milovan Zogovic
http://zogovic.com/tagged/dynamodb
Ruby on rails developer. Starting up fake dynamo automatically with rspec test suite. All you have to do is create support file (e.g. Which will boot the fake dynamo before test suite, and shut it down after it:. RSpecconfigure do config dynamo thread = nil config.before(:suite) do FakeDynamo: Storage.db path = '/usr/local/var/fake dynamo/db.fdb' FakeDynamo: Logger.setup(:warn) FakeDynamo: Storage.instance.load aof dynamo thread = Thread.new do FakeDynamo: Server.run! And designed by Kcmr.
Milovan Zogovic
http://zogovic.com/tagged/rspec
Ruby on rails developer. Starting up fake dynamo automatically with rspec test suite. All you have to do is create support file (e.g. Which will boot the fake dynamo before test suite, and shut it down after it:. RSpecconfigure do config dynamo thread = nil config.before(:suite) do FakeDynamo: Storage.db path = '/usr/local/var/fake dynamo/db.fdb' FakeDynamo: Logger.setup(:warn) FakeDynamo: Storage.instance.load aof dynamo thread = Thread.new do FakeDynamo: Server.run! And require it in rspec config file:.
Benchmarking gem load times - Milovan Zogovic
http://zogovic.com/post/51546461224/benchmarking-gem-load-times
Ruby on rails developer. Benchmarking gem load times. There is an awesome gist written by Pan Thomakos, and later refined by Andrew Kane here: https:/ gist.github.com/ankane/5022636. Here is simple fish shell function that can be used to run this script in any project you need:. Function benchmark bundler set -x BUNDLE GROUPS $argv curl -fsSL https:/ gist.github.com/raw/5022636/benchmark.rb. Just put it in your. File and off you go. Curl -fsSL https:/ gist.github.com/raw/6121664/benchmark.rb.
Monitoring memory usage on long-running scripts - Milovan Zogovic
http://zogovic.com/post/46412739882/monitoring-memory-usage-on-long-running-scripts
Ruby on rails developer. Monitoring memory usage on long-running scripts. There is a simple way to monitor memory usage on long-running scripts. You can just create new thread which will output current memory usage to console in short time intervals:. Thread.new do while true do memory = `ps -o rss -p #{Process: pid}`.chomp.split(" n").last.strip.to i puts "Memory: #{memory/1024} MB" sleep 0.25 end end. Next post ». Laquo; Previous post. And designed by Kcmr.
Milovan Zogovic
http://zogovic.com/tagged/rails
Ruby on rails developer. Quick psql from URL, ENV variable or database.yml. Often times during development, I need access to psql console. Connecting to local or remote database is a tedious process (especially if you’re working on a project with multiple databases). I have written nice little ruby executable that allows me to connect to any postgres database by reading credentials from either ENV variables, or rails database.yml file. Postgres:/ ") } uri to config(arg) when lambda { a a.start with?
TOTAL PAGES IN THIS WEBSITE
20
Number of workdays between two dates – kolodvor
https://kolodvor.net/2010/08/01/number-of-workdays-between-two-dates
Ruby, rails, javascript, …. Number of workdays between two dates. August 1, 2010. It is pretty simple to get number of work days between two dates. For example we can get the number of workdays in this month. Start date = Date.civil(2010, 8, 1) end date = Date.civil(2010, 8, 31) workdays = (start date.end date).select { day! Please note that this doesn’t include any check for holidays, you’ll need to figure that yourself (if you have need for that at all). For more info see Array#select. You are commenti...
Uncategorized – kolodvor
https://kolodvor.net/category/uncategorized
Ruby, rails, javascript, …. Webkit placeholder attribute behavior. As you probably notice, placeholder behavior has changed in the latest versions of Webkit (Safari and Chrome). If you don’t like it you can have old behavior back with a simple CSS rule. Input:focus: -webkit-input-placeholder, textarea:focus: -webkit-input-placeholder { color:transparent; }. March 23, 2012. Webkit placeholder attribute behavior. Number of workdays between two dates. Simple Search Rails plugin. Follow “kolodvor”.
Flood – kolodvor
https://kolodvor.net/2010/06/22/flood
Ruby, rails, javascript, …. June 22, 2010. My neighbourhood was hit by flood today. We managed to prevent the water from entering the house, but it was a great reminder how powerful mother nature really is🙂. If you wanna see more, click here. Published by Vlado Cingel. Hi, my name is Vlado Cingel and I’m a Rails developer from Croatia. Apart from Rails, I really enjoy scripting in JavaScript and converting designs into great HTML and CSS. View all posts by Vlado Cingel. Simple Search Rails plugin.
Ruby – kolodvor
https://kolodvor.net/tag/ruby
Ruby, rails, javascript, …. Simple Search Rails plugin. SimpleSearch brings simple search to ActiveRecord. It ads simple search. Named scope that accepts query as parameter. The idea is that you provide the query and plugin does the rest (splits query to keywords and compose where statement). This can be very useful in case you just want to filter list of records by some query, you have autocomplete field, … or something similar. Continue reading “Simple Search Rails plugin”. June 26, 2010. Build a websi...
jQuery – kolodvor
https://kolodvor.net/category/jquery
Ruby, rails, javascript, …. MarkItUp: Rails plugin that turns any textarea into a markup editor. I recently published a plugin that helps you turn any textarea into a markup editor. It is based on excellent markItUp! The most simple usage with preset defaults. Html head %= javascript include tag "path/to/jquery" % %= mark it up '#miu test' % /head body %= form tag do % %= text area tag "miu test" % % end % /body /html. You can see a lot more cool examples in action on markitup.cingel.hr. July 5, 2010.
markitup – kolodvor
https://kolodvor.net/tag/markitup
Ruby, rails, javascript, …. MarkItUp: Rails plugin that turns any textarea into a markup editor. I recently published a plugin that helps you turn any textarea into a markup editor. It is based on excellent markItUp! The most simple usage with preset defaults. Html head %= javascript include tag "path/to/jquery" % %= mark it up '#miu test' % /head body %= form tag do % %= text area tag "miu test" % % end % /body /html. You can see a lot more cool examples in action on markitup.cingel.hr. July 5, 2010.
textarea – kolodvor
https://kolodvor.net/tag/textarea
Ruby, rails, javascript, …. MarkItUp: Rails plugin that turns any textarea into a markup editor. I recently published a plugin that helps you turn any textarea into a markup editor. It is based on excellent markItUp! The most simple usage with preset defaults. Html head %= javascript include tag "path/to/jquery" % %= mark it up '#miu test' % /head body %= form tag do % %= text area tag "miu test" % % end % /body /html. You can see a lot more cool examples in action on markitup.cingel.hr. July 5, 2010.
Divisible – kolodvor
https://kolodvor.net/2011/03/26/divisible
Ruby, rails, javascript, …. March 26, 2011. I just published my first ruby gem. It is a simple gem that is useful in case you need to find out if one number is divisible by another. 9divisible by(3) # = true 10.divisible by(3) # = false 12.divisible by(3) # = true 12.divisible by(4) # = true 15.divisible by(4) # = false. Same can be done with. For more info go to https:/ github.com/vlado/divisible. Published by Vlado Cingel. Number of workdays between two dates. Webkit placeholder attribute behavior.
TOTAL LINKS TO THIS WEBSITE
21
チンチラシルバーのペルシャがダイエットに成功したのに被毛に覆われて体型の変化が見えない004
Blog de ZOGOUA - Blog de ZOGOUA - Skyrock.com
Mot de passe :. J'ai oublié mon mot de passe. Plus d'actions ▼. S'abonner à mon blog. Création : 13/10/2013 à 08:59. Mise à jour : 13/10/2013 à 08:59. Ce blog n'a pas encore d'articles. Abonne-toi à mon blog! Poster sur mon blog.
海南圣棕科技产业股份有限公司、海南金棕科技产业有限公司
联系地址 海南省海口市美兰区琼山大道172号琥珀悠澜1号楼创业村江东电子商务产业园孵化楼8楼 电话 0898-66660818.
Zogova
Milovan Zogovic
Ruby on rails developer. Quick psql from URL, ENV variable or database.yml. Often times during development, I need access to psql console. Connecting to local or remote database is a tedious process (especially if you’re working on a project with multiple databases). I have written nice little ruby executable that allows me to connect to any postgres database by reading credentials from either ENV variables, or rails database.yml file. Psql for development database read from. Psql for url stored in local.
Creative custom web design, graphics, logos, print | Home
忠高物流
Zinc Wires | Mesh Galvanized | Electric Power Tools | Blades | UPS Systems
Power Tools and Spares. Galvanised Wire and Mesh. Tolasariya group is unique in its ability to provide customers a complete solution of power management products and custom build products. We stand behind every product we sell and are here to satisfy and power protection need you have. A company with a dedicated R and D team that has developed products like UPS Systems, Stabilizers for AC power supply, and all types of Spike Guards.
Zogoworx LLC
Scroll Down to find more information about Zogoworx International. It is our pleasure to serve you and we thank you for your business! All of our products are 100% Satisfaction Guaranteed, so if you don't like it or it doesn't work for you, we will find something that does work! Look and Feel Your Best with Zogoworx! Standard shipping within the Mainland United States is free of charge! Please note that shipments are not sent out on Saturdays, Sundays, or any holidays. Customer Service available by Phone...
ZOGOX - TRAVEL TRANSPORTATION LOGISTICS
For a limousine ride that is professional, punctual and safe, choose Zogox Chauffeuring Service for airport pickup anywhere nationwide. Zogox Travel delivers on-demand travel management solutions for your corporate individual or group travel arrangements. Zogox Logistics offers a wide range of carrier service levels for both Door to Door truckload and less then truck load services. Raquo; Link Exchange. Raquo; Travel Rewards Program. Raquo; Start Your Trucking Business. Raquo; Start Your Travel Agency .