DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

The Latest Software Design and Architecture Topics

article thumbnail
Top Six Kubernetes Best Practices for Fleet Management
Many enterprises are struggling to keep up with a rapidly growing number of Kubernetes clusters spread across on-prem, cloud, and edge locations.
Updated May 16, 2022
by Kyle Hunter
· 5,961 Views · 2 Likes
article thumbnail
Deployment of Low-Latency Solutions in the Cloud
This demo implements a replicated Chronicle Queue in a typical cloud-native environment.
Updated May 16, 2022
by Peter Lawrey
· 4,666 Views · 9 Likes
article thumbnail
Real-Time Supply Chain With Apache Kafka in the Food and Retail Industry
This article explores real-world deployments across the food and retail supply chain powered by data streaming with Apache Kafka to improve business processes.
Updated May 16, 2022
by Kai Wähner DZone Core CORE
· 5,717 Views · 3 Likes
article thumbnail
Why I'm Choosing Pulumi Over Terraform
My take on choosing an Infrastructure as solution
May 15, 2022
by Alexandre Nedelec
· 7,309 Views · 4 Likes
article thumbnail
Migrating From Heroku To Render
How hard is it to make the move from Heroku to Render? In this article, follow the step-by-step process that only took about 10 minutes.
May 13, 2022
by Benjamin Patton
· 5,543 Views · 2 Likes
article thumbnail
Composable Architecture
This article discusses the concept of composable application architecture and the architectural pattern. It also includes a real-world industry example.
Updated May 13, 2022
by Periasamy Irisappan
· 20,735 Views · 19 Likes
article thumbnail
Use Lambda Function URL To Write a Serverless App Backed by DynamoDB
This is a Go Lambda function that's packaged and deployed using AWS SAM.
Updated May 13, 2022
by Abhishek Gupta DZone Core CORE
· 40,026 Views · 5 Likes
article thumbnail
Modernize Legacy Code in Production: Rebuild Your Airplane Midflight Without Crashing
Rewriting apps is easy. Doing it while preserving compatibility...that's a bit hard. Doing it live in production? That's the big challenge!
May 13, 2022
by Shai Almog DZone Core CORE
· 6,945 Views · 6 Likes
article thumbnail
Best Practices for Resource Management in PrestoDB
Resource management in a distributed environment makes accessibility of data easier and manages resources over the network of autonomous computers.
May 13, 2022
by Rohan Pednekar
· 5,568 Views · 1 Like
article thumbnail
Flutter vs React Native. How to Cover All Mobile Platforms in 2022 With No Hassle
In this article, we will compare Flutter and React Native to decide which framework to choose for mobile app development.
May 13, 2022
by Sergey Laptick
· 5,976 Views · 2 Likes
article thumbnail
Debugging Deadlocks and Race Conditions
Threading issues are a piece of cake with these simple debugger techniques. Yes, you CAN debug threads with breakpoints, when using the right type!
May 12, 2022
by Shai Almog DZone Core CORE
· 6,887 Views · 7 Likes
article thumbnail
Time Synchronization in Distributed Systems: TiDB's Timestamp Oracle
This article is an introduction to PingCAP's TiDB’s timestamp oracle (TSO), how it delivers time services, and its strengths and weaknesses.
May 12, 2022
by haitao gao
· 7,086 Views · 2 Likes
article thumbnail
IoT Product Development Guide for Startups
75% of IoT projects fail. To avoid this scenario, you should carefully plan your project beforehand and familiarize yourself with the IoT product development stages.
May 12, 2022
by Roman Lapa
· 11,037 Views · 2 Likes
article thumbnail
Getting Started With Redis on AWS the Easy Way
This quick-start guide demonstrates how to use AWS Cloud9 IDE to help you get up and running with MemoryDB for Redis.
May 12, 2022
by Abhishek Gupta DZone Core CORE
· 39,463 Views · 3 Likes
article thumbnail
The Evolution of Configuration Management: IaC vs. GitOps
Misconfigurations are the leading cause behind security incidents in Kubernetes environments.
May 11, 2022
by Twain Taylor DZone Core CORE
· 7,718 Views · 3 Likes
article thumbnail
Choosing Between GraphQL Vs REST
GraphQL is a query language standard, whereas REST is an architectural idea for network-based computing.server.
May 11, 2022
by Tetiana Stoyko
· 5,304 Views · 4 Likes
article thumbnail
Kafka Fail-Over Using Quarkus Reactive Messaging
Learn about a scenario where, at first glance, I needed an active-active Kafka cluster with bi-directional replication. What happened as I dove deeper?
May 11, 2022
by Raffael Mendes
· 7,176 Views · 2 Likes
article thumbnail
Securely Authenticate to Google Cloud From GitHub
Learn how to authenticate to GCP and a suite of tools from GitHub.
Updated May 10, 2022
by Nicolas Fränkel
· 3,576 Views · 2 Likes
article thumbnail
Exporting and Importing Projects in Eclipse
I admit that I have (a few? or not so few) bad habits: one of them is that usually, I find a way to do things, and if that works, I stick with it. I know that there are other ways to do things, but hey, why bother? and sometimes a good friend asks an excellent question (are there any bad questions?), and this lets me review the way I’m doing things. and here is such a thing: exporting and importing projects in eclipse. Archive Files With Drag & Drop Here is how I usually move or copy a project to another machine: Find the project place on my hard disk. an easy way is to select the project folder and use the context menu with show in windows explorer Zip that projects into an archive file Delete from that archive file any derived resources (see dissection of mcu10 projects ), as well as remove all the version control information. Copy the archive file into the destination workspace and unzip it there Then drag&drop that folder into eclipse: this will import that project into the workspace. Instead of the folder I simply can drag&drop as well the .project file note: best if i drag&drop the project into the ‘codewarrior projects’ view. this will not work if i drop it into the processor expert ‘project panel’ view. well, that works, and I really get used to that process. so why bother? because there is actually a better way: to export and import. The Export and Import Way 1. Select one or more project and use the ‘export’ context menu or file > export. Here select general > archive file: export project as archive file 2. In the ext dialog, you can deselect files and folder. additionally, you need to specify the archive file. You could use filter types (e.g. to include *.c and *.h). I really wish that this dialog would consider the ‘derived’ flags for files and folder, so I could deselect them easier. archive file settings 3. In the destination workspace, use the menu file > import : import dialog to import a project and here is the stumbling point: Do not (!) select ‘archive file’, but ‘ existing projects into workspace ‘. I have exported it as archive file, but importing an archive file is importing an archive file inside a project , not (!) as a project . This is a usability quirk in eclipse. 4. In the next dialog, you can choose the archive file and make adjustments which project you want to import. Note that it will automatically copy the projects into my workspace. import archive projects 5. Click finish, and the projects get imported. Summary I'm using combinations of both ways: the archive file produced by the export is not different from an archive file I create with my winzip archive utility (or any other tool like this one). for both export ways, I need to manually remove what I do not want in the archive file. I wish there would be better support for this. but for importing projects the import functionality is really good, as it avoids the copy/extract/drag&drop way: I can go through two dialogs, and that’s it. happy export-import ps: thanks to mark ruthenbeck having me considering more the export/import way!
May 10, 2022
by Erich Styger
· 153,557 Views · 8 Likes
article thumbnail
How to Configure Git in Eclipse IDE
Let's get Git configured in Eclipse so you can import and perform operations on repos within your IDE.
Updated May 10, 2022
by Vishwas Sampath
· 46,853 Views · 5 Likes
  • Previous
  • ...
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • ...
  • Next
  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook
×