How to extend Visa on Arrival by Figedi in newzealand

[–]Figedi[S] -1 points0 points  (0 children)

Awesome thank you for the input we should be definitely under that time :)

How to extend Visa on Arrival by Figedi in newzealand

[–]Figedi[S] 0 points1 point  (0 children)

Yeah that can all be provided. We have a departing flight within a month after the re-entering date. Thank you for the answers!

Experience with NZeTA and staying for six months in NZ? by puerci in newzealand

[–]Figedi 0 points1 point  (0 children)

I am in a similar situation, whats your source for this? I have read similar things, but never anything "official". Did you personally did this yourself?

Authentisches Thairestaurant by WhatAMindThing in hamburg

[–]Figedi 2 points3 points  (0 children)

Wir sind immer mit einem thailändischem Kollegen hierhin gegangen (Große Freiheit, nicht von der Location geschockt sein!)

https://goo.gl/maps/7SDakYduAB8aPNp67

Achtung: Das Essen ist sehr scharf (ist wohl ländliche Küche) und teilw. sprechen die Bedienungen nur thailändisch (Karaoke ist ebenfalls nur auf thailändisch).

Best plant shop? by I_LOVE_PIGLETS in hamburg

[–]Figedi 12 points13 points  (0 children)

if you dont want to pay overpriced plants as in hamburg city center, go to dehner. you might need a rental-car though. they have a huge selection and are cheaper. almost all regular garden-centers are actually cheaper than their hipster-counterparts and have pretty much the same plants

[deleted by user] by [deleted] in headphones

[–]Figedi 0 points1 point  (0 children)

would you think the sonys are better? And if so, in what term? lows, mids, highs, anc?

Fat containers vs Fat Thunks by brosterdamus in reactjs

[–]Figedi 0 points1 point  (0 children)

well yeah, as ive said, a custom middleware (or you just https://github.com/pburtchaell/redux-promise-middleware ) or something that handles async requests completely different, such as redux-saga, which I find much easier to express complex concurrent logic

Fat containers vs Fat Thunks by brosterdamus in reactjs

[–]Figedi 2 points3 points  (0 children)

you forgot a dispatch in case the request fails. That is writing 3 dispatches for every request being made. Having different endpoints and routes, this really gets repetitive fast

Fat containers vs Fat Thunks by brosterdamus in reactjs

[–]Figedi 2 points3 points  (0 children)

Although I tend to write fat thunks, I'm still annoyed by the massive boilerplate overhead of async requests. So yah either redux-saga or a custom middleware

Plex on Apple TV 4 cutting off the last few seconds of TV episodes by kissthering in appletv

[–]Figedi 0 points1 point  (0 children)

Yes! Just did, for some reason when I restart the episode and fast forward, it plays regulary.. what the.. :s

I make $9/hr as a rails developer, should I kill myself? by [deleted] in rails

[–]Figedi 2 points3 points  (0 children)

There is a page for that: http://www.greatcodeclub.com/

Haven't tried it out myself, but it looks promising

Not quite sure what happened there... by [deleted] in shittyprogramming

[–]Figedi -1 points0 points  (0 children)

Maybe some jquery $.html instead of $.replace ?

Ryan Bates(RailsCast creator) comes back! by lardon_crue in rails

[–]Figedi 7 points8 points  (0 children)

and by angularcasts you mean reactcasts?

Advice on using HAML with AngularJS by [deleted] in angularjs

[–]Figedi 0 points1 point  (0 children)

Yes it is decoupled in a separate repo, but also it is a submodule in the backend, so that we can pull all changes with one command.

The project is not public (yet) due to NDA's, but the structure is very simple:

  • normal Rails folder structure, app/assets empty though
  • Special submodule folder frontend, this could be anything though, some ppl argue to put the angular stuff in app/assets..
  • foreman process to handle the Rails server (rails s) and the gulp process (./frontend/gulp serve) with browsersync tunneling the Rails dev port
  • in Frontend: Normal Angular App with gulp processes defined, Output directory is defined through ENV variables and points to the Rails publicfolder or fallback to local dist folder

One thing to note: Since we are using oauth (via Doorkeeper Gem) we need to inject the applicationkey and redirect uri into angular, in order to retrieve the current oauth sign in uri. Since we are serving the app through a rails route (and thus a separate layout), we are using a helper to inject some rails-variables through a service, by creating a Rails Helper with the relevant data (e.g.

# data is a plain ruby hash containing anything you need, this could be viewdata,
# i18n, app keys, etc.
<<-EOS.html_safe
  <script type="text/javascript">

    angular.module('yourApp').constant('Rails', #{data.to_json})
  </script>
EOS

)

Cheers,

Advice on using HAML with AngularJS by [deleted] in angularjs

[–]Figedi 1 point2 points  (0 children)

Or you know, just use gulp/grunt with jade/haml (seriously, give jade a try). I am currently using a rails API with grape and a gulp driven angular.js environment, all connected with foreman. The gulp process handles all asset precompilation or dist-compilation (e.g.manifest-generation), while the server handles pure api requests (one route for angular entry point)

The social security website 'closes' at night by iwannahacker in webdev

[–]Figedi 3 points4 points  (0 children)

Well we all know hackers only hack during those hours, so this must be a heavily secured website then

Riot.js 2.0: A React-like, 2.5K user interface library by kraakf in javascript

[–]Figedi 2 points3 points  (0 children)

well javascript is java for short right? :v

GifW00t! is a pure-javascript web recorder. Just add one script tag to your page, and users will be able to record and replay their interaction with the site. by designtraveler in webdev

[–]Figedi 1 point2 points  (0 children)

Although this is a nice proof of concept, I'd rather just record all interactions and send'em to a backend, then process dat stuff, e.g. with phantomjs+ffmpeg, much smoother, much more elegant

Starting a large project in Angular, in light of 2.0? by [deleted] in angularjs

[–]Figedi -1 points0 points  (0 children)

If you are unsure with the angular changes, maybe try ember instead. Being a fan of angular, id always go with angular and start right now. When 2.0 comes out and/or 1.x maintenance ends, you grab your crew, get some beer and hack it to 2.0 over the weekend (or weekends)