Solving tech problems

How to create Linked MS SQL Server in Management Studio?

Databases

Creating MS SQL Linked Server means that you can access your remote MS SQL database (on other server) like it is local. Syntax to access some data is as simple as that: [linked server name].[database name].dbo.[table name] Official Microsoft documentation is really sometimes hard to use. A lot of information but none practical example of usage. Google search also didn’t helped much on the first try. After few tries I finally found out how you can add MS SQL Linked server to your existing database server. So, you need first…read more

How to transform your standard business to Cloud oriented business?

Technologies

First thing that is good to know is that there is enough skilful people outside that can help you to achieve this goal. Among these people is also myself, with more then 10-years experience in SaaS Cloud solutions and IT infrastructure that earn money from monthly/annually subscriptions. Please feel free to contact me regarding this topic, I will be glad to help. First thing is to take deep thinking what useful value you can provide to your existing customers. If they can do their job done using you current solution,…read more

Lake Bled

Leisure and Pleasure

Located only 40-45 minutes from Ljubljana (with a car) Bled lake is perfect for one day trip. Completely beautiful this jewel of nature refill your batteries for a whole week. Just take a walk around the lake (approximately 1h of walking or 5km for full circle) and enjoy looking at Alps mountains cover with a snow, amazing small island with a church at the middle of the lake and old 1,000 years old castle at the top of rock near the lake. Bring some old bread and feed the swans…read more

When Microsoft make descriptive error message…

Technologies

We came to this error when rendering one ASP.NET MVC page: Only Content controls are allowed directly in a content page that contains Content controls. Very strange formulation butit means that you have some error in your View (maybe missing </asp:Content> or without its opening tag)

Scrum and Kanban development frameworks

Learning

Just returned from the very interesting lecture (by Dušan Omerčević from Zemanta and Andrej Zrimšek from NiceLabel) about Scrum and Kanban development frameworks here in Ljubljana, Slovenia and I am right now thinking about what I heard there and comparing with our approach, what we are doing in out development process. What I like is this: Developers protection from new feature requests while they are in one Sprint cycle. We have this problems all the time (adding new features and breaking the release date agreement). What was agreed this exactly…read more

Best new web technologies

Technologies

Creating modern website od SaaS service requires you to be familiar with a lot of new technologies such as: HTML 5 WebGL and 3D effects – look at these super nice examples jQuery (best popular JS library for easy front-end programming) CSS 3 (and it’s extensions: Sass or LESS) Responsive design frameworks (“One site to rule them all”): Foundation, Gumby, Bootstrap, Unsemantic, Skeleton Non-relation datastores or NoSQL such as MongoDB AJAX Delegated authentication & authorization, using OAuth, used by popular services such as Facebook, Twitter, Google & LinkedIn REST-ful paradigms…read more

Vacation in Komiža at Island Vis in Adriatic Sea, Croatia

Leisure and Pleasure

This was my first trip to the Island Vis in Adriatic Sea, Croatia and I spent a pleasant vacation with my family. It is one the farthest Island off the Croatian Coast (Palagruža is the farthest but you can not come there with a Ferry) and it has area about 90 square kilometres and about 3,500 inhabitants (off-season). How do you come here? You take A1 highway from Zagreb to Split and there you take the Ferry (here is the time table) and travel by boat for about 2.5 hours….read more

How to find quickly specific table in DBML designer in Visual Studio

Databases

I spent a lot of time in my life working on complex web, mobile and desktop projects in Microsoft Visual Studio and dealing with databases and I always wanted and easy way to find specific SQL table in DBML designer in Visual Studio. This is how DBML designer looks like: This is only one prt of DBML and if ou don’t have 30″ screen it is really hard to find specific table. Usually, after changing just on column in specific table, or adding/deleting some column,  it is easier to delete…read more

How to Convert HTML to PDF

Products and Services

Almost every SaaS product or service needs to create PDF document in an easy way and sometimes what is an obvious task is not so easy to implement. We are not talking about creating PDF from other programs but creating PDF on-the-fly, for example, when someone buy something in your webshop you want to send him thank you letter together with an attached PDF invoice. There are free and paid solutions to achieve this task. I will cover here only this topic “How to create PDF in Microsoft .NET and…read more