Skip to content

Instantly share code, notes, and snippets.

View AntonValk's full-sized avatar

Antonios Valkanas AntonValk

View GitHub Profile
@acamino
acamino / README.md
Last active July 21, 2024 06:20
Shortcuts to Improve Your Bash & Zsh Productivity

Shortcut — Action

  • CTRL + A — Move to the beginning of the line
  • CTRL + E — Move to the end of the line
  • CTRL + [left arrow] — Move one word backward (on some systems this is ALT + B)
  • CTRL + [right arrow] — Move one word forward (on some systems this is ALT + F)
  • CTRL + U — (bash) Clear the characters on the line before the current cursor position
  • CTRL + U —(zsh) If you're using the zsh, this will clear the entire line
  • CTRL + K — Clear the characters on the line after the current cursor position
  • ESC + [backspace] — Delete the word in front of the cursor
@AntonValk
AntonValk / ParJac.java
Last active August 7, 2017 18:29
Parallel Jacobi Algorithm Tester Class
//This method uses Fork/Join in order to create a parallelized version of the Jacobi Algorithm to solve Ax=B.
//This is the tester class
package jacobi;
import java.util.Arrays;
import java.util.concurrent.ForkJoinPool;
import java.util.concurrent.RecursiveTask;
public class ParJac extends RecursiveTask<double[]> {
@baogorek
baogorek / kalman-derivations.ipynb
Last active February 3, 2023 04:29
Gist version of Miscellaneous/methods/kalman-filter/kalman-derivations.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.