Don Figuerres
  • Posts
  • Cloud
    • AWS
      • Hosting a Website Using AWS S3
  • Hardware
    • Lenovo Swap Fn and Ctrl Keys
  • Programming Tutorials
    • Factorial
    • Fibonacci Sequence
  • Software Development
    • Common Tools for Software Development
    • Java
      • Java Performance Testing Using Zerocode
    • Tmux Settings
    • VS Code
      • Python Test Debugging Does Not Hit Breakpoint
  • Version Control
    • Git
      • Changing Committer, Author, and Email in Git
      • Git Connection Errors During Cloning
      • Global gitignore File
  • Virtualbox
    • CentOS 7 VirtualBox 5.2 Error
  • WSL2
    • Dark Theme in WSL2 GUI
Hero Image
Tmux Settings

Saving here a copy of tmux settings so it’s easy to set it up in a new machine. set -g mouse on # vi keybindings set-window-option -g mode-keys vi bind-key -T copy-mode-vi v send -X begin-selection bind-key -T copy-mode-vi V send -X select-line bind-key -T copy-mode-vi y send -X copy-pipe-and-cancel 'xclip -in -selection clipboard' # required by neovim checkhealth set -g default-terminal "tmux-256color" set-option -sa terminal-features ',xterm-256color:RGB' set-option -sg escape-time 10 set-option -g focus-events on

May 28, 2024 Read
Hero Image
VS Code Python Test Debugging Does Not Hit Breakpoint

I had this problem in Python development environment wherein a breakpoint is not hit while trying to debug tests. It turns out that this is a known issue and a work around is available via the launch.json file. { "version": "0.2.0", "configurations": [ { "name": "Debug Tests", "type": "python", "request": "launch", "purpose": [ "debug-test" ], "console": "integratedTerminal", "justMyCode": false, "env": { "PYTEST_ADDOPTS": "--no-cov" } } ] } Below is the explanation form Microsoft.

July 26, 2022 Read
Hero Image
Common Tools for Software Development

List of tools that I’ve used throughout my development career that you might find useful too. I use this list when setting up a new VM or workstation. Browser Google Chrome It’s most people’s default browser although Edge has a better performance in Windows. Brave Browser I use this personally for browsing. It has a lot of default privacy features. Can be used to test if a website will continue to function if all the security and privacy features are enabled.

June 23, 2022 Read
Hero Image
Java Performance Testing Using Zerocode

In one of my previous projects, I had to add a performance testing suite for our Java APIs to measure the performance gain in the performance improvement that I was working on. After some research, I found that Zerocode is able to fulfill our needs. Their GitHub Repo also includes an extensive documentation which made the process much easier for me. I found that you can reuse your existing JUnit tests as performance tests using the LoadWith annotation.

June 22, 2022 Read
Navigation
  • About
  • Skills
  • Experiences
  • Projects
  • Accomplishments
  • Education
  • Recent Posts
Contact me:
  • lyndonfiguerres@gmail.com

Toha Theme Logo Toha
Copyright © 2021-2022. donfiguerres.com. All rights reserved.
Powered by Hugo Logo