use of libraries like bootstrap and semantic ui [closed] - web

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
Do you use bootstrap, semantic ui or any other library for building web pages, or do you directly code the html and css yourself?
I am curious whether developers use the frameworks or prefer the traditional way of doing things?
Please tell.

Always depends on what you want.
If It's about get the shit done very quickly and with a good Ui, use bootstrap or another libraries, but if you something very unique, you make your own styles.
But generally we use a combination of both, libraries and our own styles when is necessary.

Related

Is it a good practice to use both active_model_serializer and Jbuilder? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 5 years ago.
Improve this question
I have a legacy Ruby on Rails API project, I notice that the project uses both active_model_serializer and Jbuilder. There are app/serializers diretory for active_model_serializer, and app/view/api/ for Jbuilder.
I'm new to Ruby on Rails API. From what I have read from the internet it seems active_model_serializer and Jbuilder are both used to deal with JSON data, there's even an article arguing which one is better.
I don't know which one is better, but is it a good practice to use both?
There's no problem in using both, but it's definitely not a good practice. It can be confusing for new people coming to the project. I'd say it's ok to use both if you transition from one to the other (most often from Jbuilder to AMS), but it's good to eventually stick with one of them.

Use Gridstack or gridster for widget layout? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
I'm trying to choose a widget layout and I have come across:
gridstack: http://troolee.github.io/gridstack.js/
gridster: http://gridster.net/enter link description here
Any one used these before who can share the pros and cons and features?
Gridster is a great library built by Ducksboard who were acquired some time back. At this time, to the best of my understanding, they have ceased development and the fork community is not very active.
Gridstack is an active project at this time. It's openly states it was inspired by Gridster and so should offer much the same functionality, if not all, in time. Gridstack is not a rebuild of Gridster, however, and aims to improve upon the concept. For example, it supports responsive layouts, becoming a vertical stack of widgets on smaller format screens.
Gridstack is the way to go if you're looking for a library like this these days.
I have used Gridstack since .63 and like it very much. I built it using JQuery, and will be porting it to react soon. I would give this library a 9 out of ten.

Why node.js does not have something like goroutines from Go? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I wonder why callback hell did not get some conceptual solution. Something like goroutines from Go, stackless python, eventlet, gevent, monkey patching or something like that. Is it possible to make it for javascript? Does anybody work on it? JavaScript is a great concise language but the callback hell is a major drawback.
because those are language features and Javascript doesn't have them.
I think there's talk about finally getting coroutines, but I don't know the details.

AntiXSS in ServiceStack [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
Experimenting AntiXSS in ServiceStack. I saw you have lots of work put into AntiXsrf namespace. I added token in form, tried AntiForgery.Validate using global and request filter, all seem work fine.
Also, if I use request filter, is there a way to decorate auth/credential? Since I also has a CustomAuthProvider, I can authService.RequestContext.Get() and run validate separately if necessary.
Just want to verify this is the right approach, or in case you already have something built in that I missed.
BTW, is stackoverflow the preferred place to ask all these amateurish questions ^_^ ? Or should I ask more often in the google groups?

Looking for a list with examples of a class names [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
Is there any list/source/dictionary with examples of a good class names somewhere over the Internet? I'm not looking for naming conventions, but rather for some resource with names and explanations when is proper to use them. I'm finding it somewhat difficult to came up with good names when I'm naming my classes so something like this will be helpfull:
SomethingBuilder - use in such cases...
SomethingRequest - use in such cases...
I suggest to look for repositories of frameworks or projects. They have plenty of classes with some really good names. Examples are symfony, kohana, cakephp, codeigniter, drupal etc... You can search for them on github to reach their repositories.
I know it is not a straight answer to your question but it still may be of help.

Resources