Skip to content

Instantly share code, notes, and snippets.

View carlajarchuleta1-a11y's full-sized avatar
🏠
Working from home

Carla Archuleta carlajarchuleta1-a11y

🏠
Working from home
View GitHub Profile
@carlajarchuleta1-a11y
carlajarchuleta1-a11y / AdbCommands
Created December 28, 2025 00:51 — forked from Pulimet/AdbCommands
Adb useful commands list
Hi All!
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future.
Feel free to request any features you'd like to see, and I'll prioritize them accordingly.
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it.
Here's the link to the repository: https://github.com/Pulimet/ADBugger
App Description:
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups.
  1. cd into the directory
  2. go to https://github.com/new and create a new repo. DO NOT check the initialize repo with README option.
  3. you will get a screen like
  4. run git init to create an empty git repo. (it is empty because we need to add files to the git repo, it doesnt account for the files in the same folder automatically)
  5. run git add --all to add all files & folders in the current folder to git repo. run git status to see files added to git staging area
  6. run git commit -m "short message about what changes happen in this commit" : note that a message is required by git.
  7. add a remote (github repo) to your local git repo using command git remote add origin git@github.com:user/repo.git
  8. send your local git repo to github using git push -u origin master: here origin is set to github by the prev command. master is the default branch.
  9. open github.com/user/repo in browser to view the git rep
Глава 2. Базовые операции
Прежде чем погружаться в дебри многочисленных команд Git, попробуйте воспользоваться приведенными ниже простыми примерами, чтобы немного освоиться. Каждый из них полезен, несмотря на свою простоту. На самом деле первые месяцы использования Git я не выходил за рамки материала этой главы.
Сохранение состояния
Собираетесь попробовать внести некие радикальные изменения? Предварительно создайте снимок всех файлов в текущем каталоге с помощью команд
$ git init
$ git add .
$ git commit -m "Моя первая резервная копия"
Теперь, если новые правки всё испортили, можно восстановить первоначальную версию:
@carlajarchuleta1-a11y
carlajarchuleta1-a11y / endless-images-download.md
Created December 18, 2025 20:57 — forked from garrett/endless-images-download.md
Download EndlessOS 2.6.3 Images

Card Beam Animation

An experimental animation where cards slide through a glowing beam and transform into code. Inspired by the awesome Evervault visuals ✨

A Pen by Carla Archuleta on CodePen.

License.

@carlajarchuleta1-a11y
carlajarchuleta1-a11y / git-auto-sign-commits.sh
Last active December 11, 2025 14:54 — forked from mort3za/git-auto-sign-commits.sh
Auto sign your git commits
# Generate a new pgp key: (better to use gpg2 instead of gpg in all below commands)
gpg --gen-key
# maybe you need some random work in your OS to generate a key. so run this command: `find ./* /home/username -type d | xargs grep some_random_string > /dev/null`
# check current keys:
gpg --list-secret-keys --keyid-format LONG
# See your gpg public key:
gpg --armor --export YOUR_KEY_ID
# YOUR_KEY_ID is the hash in front of `sec` in previous command. (for example sec 4096R/234FAA343232333 => key id is: 234FAA343232333)
@carlajarchuleta1-a11y
carlajarchuleta1-a11y / changes
Created December 6, 2025 23:29 — forked from dtelaroli/changes
Java configuration to solve error "The driver could not establish a secure connection to SQL Server by using Secure Sockets Layer (SSL) encryption"
jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 1024
jdk.tls.disabledAlgorithms=SSLv3, RC4, DH keySize < 768
https://stackoverflow.com/questions/14149545/java-security-cert-certificateexception-certificates-does-not-conform-to-algori#
@carlajarchuleta1-a11y
carlajarchuleta1-a11y / index.markdown
Created November 25, 2025 16:50
Modal with react-modal
var PLAY = 1;
var END = 0;
var gameState = PLAY;
var trex, trex_running, trex_collided;
var ground, invisibleGround, groundImage;
var cloud, cloudsGroup, cloudImage;
var obstaclesGroup, obstacle1, obstacle2, obstacle3, obstacle4, obstacle5, obstacle6;