Skip to main content

Cafes to work in Hyderabad



I reccently wrote about Why you shouldn't work at your regular office. So here, I am publishing a list of cafes in Hyderabad where you can go and work. This is not the complete list and I have chosen a few which I think are quite good. Give it a try ! You'll never go back to your office :)


Deli 9 Bistro

A Great place to hangout, it has been designed very carefully, especially the walls and the sitting. 

We ordered Mango punch and Belgium chocolate something. Both were delicious. Mango punch kind of pushes you to a state of ‘Mangorgasm’ :) .
In food, we had nachos and garlic bread. Garlic bread was ok. Nachos were good. 

All the things had substantial quantity. In fact, I haven’t seen that much quantity being served at any other place, especially in case of drinks.
The wifi speed is decent enough and they provide you perfect couches to carry your laptop/tablet/book.


They should make the place more spacious. AND. maybe open 2-3 cubicles kind-of space at the end, as the place tends to be crowded at times.

Food : 4.5/5
Service : 5/5
Ambience : 4/5
Wifi speed : 4/5


Griffin Bread



This place seems like it has been made for this purpose. You can always see many other people with their laptops. They have great couches and wifi speed is good enough for surfing.

Regarding food, I had a ring donut their which was not upto the mark, but their cappuccino was good. There are many other bakery items to try out their and the menu offers you a lot of variety. 


Wifi speed : 4/5
Food : 3/5
Service : 4/5
Ambience : 4/5


Cafe Mocha 35mm

Located near the botanical Gardens, Kothaguda, it's usually a quite place during the day time, so you can go there and work for around 3-4 hours easily.

Due to not being crowded most of the times, the wifi speed is great there (You can stream youtube videos ! ).

It's pocket friendly with decent food quality. Give a try at their caramel flavoured coffee. 
They also serve breakfast, in case you are an early riser.  

Food : 4/5
Ambience : 3.5/5
Service : 4/5
Wifi speed : 5/5

Conçu




One of the best bakeries in the city and a must visit place for all the desert lovers. There are many other points that add to the beauty of this place such as great wooden furniture and the drawings on the walls.
The staff is very nice and service is pretty quick.

A place with a descent wifi speed, you can go there to just relax for some time, or carry your laptop if you have a habit of working with an awesome music playlist in the background and delicious food on one side.
I had mango passionfruit, irish chocolate eclairs and an espresso. Eclairs was awesome and other two were good. The prices are little on a high side but that's totally worth for the ambience that they provide you.
One thing I would suggest to them is that they should upgrade their sound system, and may be decentralize it around the whole cafe.

Ambience : 4.5/5
Service : 5/5
Food : 4/5

Wifi speed : 3.5/5


News Cafe




Stupendous view of the secret lake on one side and the usual hyderabadi breeze. It's surely a pleasure to work there. I am talking about their outdoor sitting here. 
Wifi speed here is decent because it's always a bit crowded.
Food is a little bit expensive, but continental starters are worth trying.
Great place to crash in happy hours and grab a beer. I've heard a lot about their cocktails also.  




Food : 3.5/5
Ambience : 5/5
Service : 3.5/5
Wifi speed: 3.5/5

Comments

Post a Comment

Popular posts from this blog

Android : AbsSavedState cannot be cast to $SavedState

Android AbsSavedState cannot be cast to $SavedState I came across a strange crash today. This is the stacktrace : Fatal Exception: java.lang.ClassCastException: android.view.AbsSavedState$1 cannot be cast to android.widget.ScrollView$SavedState at android.widget.ScrollView.onRestoreInstanceState(ScrollView.java:1810) at android.view.View.dispatchRestoreInstanceState(View.java:14768) at android.view.ViewGroup.dispatchRestoreInstanceState(ViewGroup.java:3123) at android.view.View.restoreHierarchyState(View.java:14746) at android.support.v4.app.Fragment.restoreViewState(SourceFile:470) at android.support.v4.app.FragmentManagerImpl.moveToState(SourceFile:1326) at android.support.v4.app.FragmentManagerImpl.moveFragmentsToInvisible(SourceFile:2323) at android.support.v4.app.FragmentManagerImpl.executeOpsTogether(SourceFile:2136) at android.support.v4.app.FragmentManagerImpl.optimizeAndExecuteOps(SourceFile:2092) at androi...

Android Tip : Handling back button in Fragments

Android Tip : Handling hardware back button in Fragment and DialogFragment This post explains how to handle hardware back button in a Fragment OR DialogFragment . In DialogFragment, it’s quiet straight forward to achieve this. You’ve to get the dialog instance and set onKeyListener on it : if (getDialog() != null ) { getDialog().setOnKeyListener( new DialogInterface.OnKeyListener() { @Override public boolean onKey (DialogInterface dialog, int keyCode, KeyEvent event) { if (event.getAction() == KeyEvent.ACTION_UP && keyCode == KeyEvent.KEYCODE_BACK) { Timber.i( "hardware back button pressed" ); } } }); } This can be done in the onViewCreated callback. For fragments, this method doesn’t work and fragments doesn’t have a direct callback to catch this event. So in this case, the approach that we follow is : You...

Android Material Showcase View - Part 1

In this series, I'll be talking about a library which is used by a lot of android developers for showcasing their in-app content,  MaterialShowcaseView . I used this library sometime back for my work and had to modify it to fit my needs. In this process, I ended up digging it a lot and would like to share what I learned. The original library offers a fix set of features, which are demonstrated by the screenshots in the README. Let's jump on the technicalities right away. The original library offers two things : 1) highlighting a view ( see the README to know what I mean by highlighting here) 2) showing a content box that tells user what the highlighted view is about. Here's how it does this : The library adds a direct view child ( this class ) in the window decor view, so that it's drawn on top of your activity's view ( here ). Then, for drawing the overlay and highlighting our view, it overrides the `onDraw()` method of this view and uses android...