Skip to content

Instantly share code, notes, and snippets.

View JuanCSUCoder's full-sized avatar
📚
Learning

Juan Camilo Sánchez Urrego JuanCSUCoder

📚
Learning
View GitHub Profile
@JuanCSUCoder
JuanCSUCoder / .bashrc
Last active July 8, 2025 22:27 — forked from voidptr/.bashrc
Execute Fish Shell from Bash at end of .bashrc -- while being able to invoke Bash shell from fish without re-running Fish -- and without having to use --norc
### don't autostart fish if we alredy did it.
if [ -z "$STARTEDFISH" ];
then
export STARTEDFISH=1;
exec fish;
exit;
fi
eval "$(starship init bash)"
@JuanCSUCoder
JuanCSUCoder / index.html
Created October 2, 2020 19:59 — forked from StickyCube/index.html
Electron click through transparency example
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test App</title>
</head>
<style>
html, body {
height: 100%;