build
: Build related changes (e.g npm related/ adding external dependencies)
chore
: A code change that external user won't see (eg: change to .gitignore file or .prettierrc file)
feat
: A new feature
fix
: A bug fix
docs
: Documentation related changes
refactor
: A code that neither fix bug nor adds a feature. (eg: You can use this when there is semantic changes like renaming a variable/ function name)
perf
: A code that improves performance
style
: A code that is related to styling
test
: Adding new test or making changes to existing test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="particles-js"> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Arduino Bluetooth Controlled Car// | |
// Before uploading the code you have to install the necessary library// | |
//AFMotor Library https://learn.adafruit.com/adafruit-motor-shield/library-install // | |
#include <AFMotor.h> | |
#include <Servo.h> | |
Servo name_servo; | |
//initial motors pin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// - on the root of the project directory create a `myservice.js` | |
// - code: | |
const Service = require('node-windows').Service; | |
// Create a new service object | |
const svc = new Service({ | |
name:'My Service Name', | |
description: 'My service description', | |
script: 'C:\\Path\\to\\myservice.js', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
oh-my-posh --init --shell pwsh --config ~fullPathHere\justinbalaguer.omp.json | Invoke-Expression | |
#change fullPathHere to path of .omp.json file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Windows */ | |
{ | |
"blocks": [ | |
{ | |
"type": "prompt", | |
"alignment": "left", | |
"segments": [ | |
{ | |
"type": "os", | |
"style": "plain" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Announcent here, Announcent here, Announcent here, Announcent here, some <a href='https://google.com/'>link</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": 1661505036392, | |
"name": "Project 1", | |
"description": "Project Description 1", | |
"color": "#2196F3" | |
}, | |
{ | |
"id": 1661770079941, | |
"name": "Test 2", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"lanes": [ | |
{ | |
"id": "bbee5a30-2543-11ed-bdb4-d9bfb75d740e", | |
"title": "To:Do", | |
"cards": [ | |
{ | |
"id": "c71e3ee0-2546-11ed-88d8-e9102625d80a", | |
"tags": [], | |
"createdAt": "2022-08-26T13:55:37.691Z", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Configure Monitor with XRANDR (resolution and monitor hz etc) | |
https://linuxconfig.org/how-to-configure-your-monitors-with-xrandr-in-linux |
OlderNewer