Hacker Newsnew | past | comments | ask | show | jobs | submit | apsdehal's commentslogin

You can also try the colab notebook available at https://colab.research.google.com/drive/1Z9fsh10rFtgWe4uy8nv... to test the model in realtime.


Well, I have a pretty good github profile https://github.com/apsdehal but I still had a hard time finding intern this year. So I would say most of the github profile doesn't matter much, but it sure makes you look impressive. Also as far as I have experienced, if you apply in big companies, nothing matters for internship, only thing you should know is competitive programming.


Having a quick scan of your Github profile it looks like a lot of lists or collections of things or forks. I think you may be suffering from information overload as I was unable to find a decent example of code within 30 or so seconds


Location: Roorkee, India

Remote: Yes

Willing to Relocate: Yes

Technologies: JavaScript, GoLang, PHP, Python, Rails, Node.js, C++, Git, Matlab, SQL, Bash Scripting, Linux

Email: me@apsdehal.in

Github: http://github.com/apsdehal

Portfolio/Website: http://apsdehal.in

I'm a student developer looking for Summer 2015 internship.

Google Summer of Code 2014 internee with MediaWiki, Winter Intern with Wingify.

I'm interested in Web Development, API's, Data Analysis/Mining and Networking


Location: Roorkee, India

Remote: Yes

Willing to Relocate: Yes

Technologies: JavaScript, GoLang, PHP, Python, Rails, Node.js, C++, Git, Matlab, SQL, Bash Scripting, Linux

Email: me@apsdehal.in

Github: http://github.com/apsdehal

Portfolio/Website: http://apsdehal.in

I'm a student developer looking for Summer 2015/Winter 2014 internship.

Google Summer of Code 2014 internee with MediaWiki

I'm interested in WebDevelopment, API's, Data Analysis/Mining and Networking.


I applied for Intern at your corporation a month back, didn't even get a followup.


I apologize, we received a lot of intern applications and we are really just starting the intern search. We will get to yours for sure and send you a response. Or you can just send me an email at skhalsa@climate.com and we can go from there.


Location: Roorkee, India

Remote: Yes

Willing to Relocate: Yes

Technologies: JavaScript, GoLang, PHP, Python, Rails, Node.js, C++, Git, Matlab, MySQL, Bash Scripting, Linux

Email: me@apsdehal.in

Github: http://github.com/apsdehal

Portfolio/Website: http://apsdehal.in

I'm a student developer looking for Summer 2015/Winter 2014 internship.

Google Summer of Code 2014 internee with MediaWiki, co-founder of startup - http://insteshop.com

I'm interested in API's, Data Analysis/Mining, Networking and Web Development.


Check whats your need, if you are building up much bigger apps go for a fully fledged framework, rest for small apps you can use microrouters , according to your need, each has its own unique features.


For small apps, you don't need a "router", period. Routing is done by the file system and placing .php files in directories!


One of the benefits of using a url router is access control - you could have a problem with just letting every file be executable by url, especially if you happen to have a remote file inclusion issue anywhere. With a router you know explicitly what can get invoked and what can't.

Although, doing it without a router is probably always going to be faster.


A late trick I discovered, was that you can configure your php instance to inclued a file with every script. For example the following can be added to .htaccess:

  php_value auto_prepend_file 'before.php'
You can then use that for bootstrapping, front controller and to limit access. Can be a bit clumsy, but it's nicely divorced from simple page controllers.


neat! this beats putting an include at the top of each file...


It certainly does.

I personally would still prefer a router but I know of a project which was written almost entirely in sprawling, procedural PHP that might benefit from this. Although I do wonder what the performance hit would be.


Its under development, much to be added. Thanks for your concern.


Thanks for your concern, this router is a result out of a effort to learn about routing. I will try to add benchmarks soon.


Thanks for your concern, I would try to implement features you have said, Its still under development mode and needs much polish.


Good luck! Another feature of my router is that the method name converts snake_case to camelCase, so that resource/list_actions calls ResourceController::listActions(), but some of the features I mention will most likely incur a performance hit, but it shouldn't be significant once opcache comes into play


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: