# cons

Published articles for cons.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Should You Stay In Your Current Job or Move For A Promotion?

DevFeed: [Should You Stay In Your Current Job or Move For A Promotion?](<https://devfeed.tech/articles/should-you-stay-in-your-current-job-or-move-for-a-promotion-33550.md>)

Original publisher: [Read original article](<https://www.softwareengineeringtimes.com/p/should-you-stay-in-your-current-job>)

Author: Ryan Murphy

Published: 2024-11-07T08:15:43Z

Content type: opinion

Language: en

Sources: [The Software Engineering Times](<https://devfeed.tech/sources/the-software-engineering-times.md>)

Topics: [Job](<https://devfeed.tech/topics/job.md>), [Software Engineering](<https://devfeed.tech/topics/software-engineering.md>)

Tags: [cons](<https://devfeed.tech/tags/cons.md>), [job](<https://devfeed.tech/tags/job.md>), [software-engineering](<https://devfeed.tech/tags/software-engineering.md>)

### AI overview

The article compares internal and external promotions, outlining the benefits and challenges of staying with a current employer versus moving to a new company. It discusses familiarity, existing relationships, visibility, and prior achievements as advantages of internal promotion, while framing the choice around individual career goals.

### Source excerpt

There are a lot of pros and cons when trying to weigh up if you should stay in your current role or look for a new one, for example when looking for a promotion, or a pay increase.

## When to Use jOOQ and When to Use Native SQL

DevFeed: [When to Use jOOQ and When to Use Native SQL](<https://devfeed.tech/articles/when-to-use-jooq-and-when-to-use-native-sql-28972.md>)

Original publisher: [Read original article](<https://blog.jooq.org/when-to-use-jooq-and-when-to-use-native-sql/>)

Author: lukaseder

Published: 2022-12-08T13:53:02Z

Content type: comparison

Language: en

Sources: [jOOQ](<https://devfeed.tech/sources/jooq.md>)

Topics: [SQL](<https://devfeed.tech/topics/sql.md>), [Databases](<https://devfeed.tech/topics/databases.md>), [rdbms](<https://devfeed.tech/topics/rdbms.md>), [Test-driven development](<https://devfeed.tech/topics/tdd.md>), [Testcontainers](<https://devfeed.tech/topics/testcontainers.md>)

Tags: [cons](<https://devfeed.tech/tags/cons.md>), [examples](<https://devfeed.tech/tags/examples.md>), [jdbc](<https://devfeed.tech/tags/jdbc.md>), [jdbctemplate](<https://devfeed.tech/tags/jdbctemplate.md>), [jdbi](<https://devfeed.tech/tags/jdbi.md>), [jooq](<https://devfeed.tech/tags/jooq.md>), [jooq-in-use](<https://devfeed.tech/tags/jooq-in-use.md>), [native-sql](<https://devfeed.tech/tags/native-sql.md>), [plain-jdbc](<https://devfeed.tech/tags/plain-jdbc.md>), [plain-sql-templating](<https://devfeed.tech/tags/plain-sql-templating.md>), [rdbms](<https://devfeed.tech/tags/rdbms.md>), [sql](<https://devfeed.tech/tags/sql.md>), [sql-json](<https://devfeed.tech/tags/sql-json.md>), [stored-procedures](<https://devfeed.tech/tags/stored-procedures.md>), [tdd](<https://devfeed.tech/tags/tdd.md>), [testcontainers](<https://devfeed.tech/tags/testcontainers.md>)

### AI overview

This comparison explains when to use the jOOQ API and when to use native SQL for complex queries. It describes jOOQ's advantages for dynamic SQL, multiple database dialects, type safety, data mapping, stored procedures, security, exports, and diagnostics, while noting usability drawbacks for large static queries with many CTEs or derived tables.

### Source excerpt

A frequently encountered doubt people have when using jOOQ is to decide when a "complex" query should be written using jOOQ API vs. when it should be implemented using native SQL. The jOOQ manual is full of side by side examples of the same query, e.g. Using jOOQ: Using native SQL: In the native SQL ... Continue reading When to Use jOOQ and When to Use Native SQL ->

## Getting started with GWT-Bootstrap

DevFeed: [Getting started with GWT-Bootstrap](<https://devfeed.tech/articles/getting-started-with-gwt-bootstrap-37719.md>)

Original publisher: [Read original article](<https://carlosbecker.com/posts/getting-started-with-gwt-bootstrap/>)

Author: Carlos Alexandro Becker

Published: 2012-06-26T00:00:00Z

Content type: tutorial

Language: en

Sources: [Carlos Becker](<https://devfeed.tech/sources/carlos-becker.md>)

Topics: [Bootstrap](<https://devfeed.tech/topics/bootstrap.md>), [Library](<https://devfeed.tech/topics/library.md>), [ui](<https://devfeed.tech/topics/ui.md>), [Development](<https://devfeed.tech/topics/development.md>)

Tags: [bootstrap](<https://devfeed.tech/tags/bootstrap.md>), [cons](<https://devfeed.tech/tags/cons.md>), [getting-started](<https://devfeed.tech/tags/getting-started.md>), [library](<https://devfeed.tech/tags/library.md>), [maven](<https://devfeed.tech/tags/maven.md>), [microservices](<https://devfeed.tech/tags/microservices.md>), [setup](<https://devfeed.tech/tags/setup.md>), [ui](<https://devfeed.tech/tags/ui.md>)

### AI overview

A tutorial on getting started with GWT-Bootstrap, a project that brings Twitter Bootstrap styles and widgets to GWT applications. It covers obtaining the JAR, configuring a GWT module, using UiBinder widgets, and adding the datepicker module.

### Source excerpt

GWT-Bootstrap is a project that aims to provide all the Twitter Bootstrap styles and widgets to GWT applications.