Nikola Brežnjak blog - Tackling software development with a dose of humor
  • Home
  • Daily Thoughts
  • Ionic
  • Stack Overflow
  • Books
  • About me
Home
Daily Thoughts
Ionic
Stack Overflow
Books
About me
  • Home
  • Daily Thoughts
  • Ionic
  • Stack Overflow
  • Books
  • About me
Nikola Brežnjak blog - Tackling software development with a dose of humor
Miscellaneou$

2nd Devz Meetup Varaždin

TBH, I wasn’t aware that something like this (meetups) exists “near” me (yeah, I hear you: “Where do you live, man?!”.), so I didn’t make it to the 1st one. All in all, kudos for the organizers and looking forward to the next one! As I usually do with posts about conferences, I’ll share my notes that I took in my notebook and a few pictures.

There were 3 talks and a Voogle 2016 conference announcement on this meetup:

  • Information security and why should you care
  • Introduction to VueJS
  • Startup accelerator experiences

 

Information security and why should you care

  • presenter: doc.dr.sc.  Tonimir Kišasondi
  • this was a very intriguing talk, that delivered on the authors expectations – it made me start thinking more about security! So, thank you!
  • thumb_IMG_5997_1024
  • problem is related to security ecosystem
  • after a company survives an attack it looses about 40% clients
  • exploit kit
  • it seems that we aren’t only good at sports ;). “Share of internet users who experienced security related problems in the EU Member States in 2015” – we hold position #1
    thumb_IMG_5993_1024
  • ISO 27000 (commercial), BSI (free)
  • OWASP ASVSP – must read!
  • SANS critical security checklist
  • Bitstamp incident
  • DREAD assesment risk model

 

Introduction to VueJS

  • presenter: Bruno Škvorc
  • speaker shared his views of why he thinks VueJS has the potential to become the best front end JS framework
  • thumb_IMG_6003_1024
  • Well, I guess that every new-shiny-JavaScript-framework talk has to show this slide 🙂
    thumb_IMG_6005_1024
  • it’s very easy to use and master (1-2 days)
  • you can have an app on literally one element
  • only focused on web
  • everything is a component and has it’s own JS, HTML and CSS
  • the simplest example (jsFiddle here):
    <!DOCTYPE html>
    <html>
    <head>
    	<title></title>
    	<script src="http://cdnjs.cloudflare.com/ajax/libs/vue/1.0.16/vue.min.js" type="text/javascript" charset="utf-8"></script>
    </head>
    <body>
    
    	<div id="demo">
    	  <p>{{message}}</p>
    	  <input v-model="message">
    	</div>
    
    	<script type="text/javascript" charset="utf-8">
    		var demo = new Vue({
    		  el: '#demo',
    		  data: {
    		    message: 'Hello Vue.js!'
    		  }
    		})		
    	</script>	
    
    </body>
    </html>
  • vue-router and vue-resource are must from the start

 

Startup accelerator experiences

  • presenter: Zvonimir Dimovski
  • speaker shared his experience with startup accelerator Eleven Accelerator
  • you have to deal with C.R.A.P:
    • C – critisism
    • R – rejection
    • A – assholes
    • P – pressure
  • if you get founded you get 100k € for 6 months, with investor owning 8%

 

Voogle conference announcement

  • March 15th 2016
  • An interesting lineup of speakers and talks
  • Register here, tickets are not expensive (99kn)
  • I got a 2014 T-shirt edition in a random draw 🙂
    thumb_IMG_6020_1024
  • all in all, see you there!

Great talks at 2nd Devz Meetup Varaždin by @bitfalls @kisasondi and @Zvonr https://t.co/vLMy1gUX6r

— Nikola Brežnjak (@HitmanHR) February 22, 2016

Recent posts

  • Discipline is also a talent
  • Play for the fun of it
  • The importance of failing
  • A fresh start
  • Perseverance

Categories

  • Android (3)
  • Books (114)
    • Programming (22)
  • CodeProject (35)
  • Daily Thoughts (77)
  • Go (3)
  • iOS (5)
  • JavaScript (127)
    • Angular (4)
    • Angular 2 (3)
    • Ionic (61)
    • Ionic2 (2)
    • Ionic3 (8)
    • MEAN (3)
    • NodeJS (27)
    • Phaser (1)
    • React (1)
    • Three.js (1)
    • Vue.js (2)
  • Leadership (1)
  • Meetups (8)
  • Miscellaneou$ (77)
    • Breaking News (8)
    • CodeSchool (2)
    • Hacker Games (3)
    • Pluralsight (7)
    • Projects (2)
    • Sublime Text (2)
  • PHP (6)
  • Quick tips (40)
  • Servers (8)
    • Heroku (1)
    • Linux (3)
  • Stack Overflow (81)
  • Unity3D (9)
  • Windows (8)
    • C# (2)
    • WPF (3)
  • Wordpress (2)

"There's no short-term solution for a long-term result." ~ Greg Plitt

"Everything around you that you call life was made up by people that were no smarter than you." ~ S. Jobs

"Hard work beats talent when talent doesn't work hard." ~ Tim Notke

© since 2016 - Nikola Brežnjak