Usefull Link:
This file contains hidden or 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
| doskey subl="C:\Program Files\Sublime Text 2\sublime_text.exe" $* | |
| doskey ls=ls $1 --color | |
| doskey ll=ls -la --color | |
| doskey sbl = sublime $* | |
| doskey sshs = ssh tom@188.230.237.133 | |
| doskey oocd = openocd-x64-0.6.1 -f .\stm32f4discovery.cfg | |
| doskey oocd7 = openocd-x64-0.7.0 -f .\stm32f4discovery.cfg | |
| doskey sshkey = type C:\Users\dcrystalj\.ssh\id_rsa.pub | clip & echo "ssh key in clipboard" | |
| :: Git |
This file contains hidden or 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
| @echo off | |
| :::: Commands :::: | |
| :: DosKey :: | |
| :: Creates a new alias | |
| doskey dk=doskey $* | |
| :: Lists current aliases | |
| doskey dkm=doskey /macros |
This file contains hidden or 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
| I use the first | |
| —– BEGIN LICENSE —– | |
| Michael Barnes | |
| Single User License | |
| EA7E-821385 | |
| 8A353C41 872A0D5C DF9B2950 AFF6F667 | |
| C458EA6D 8EA3C286 98D1D650 131A97AB | |
| AA919AEC EF20E143 B361B1E7 4C8B7F04 |
This file contains hidden or 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
| /** | |
| * A Javascript module to loadeding/refreshing options of a select2 list box using ajax based on selection of another select2 list box. | |
| * | |
| * @url : https://gist.github.com/ajaxray/187e7c9a00666a7ffff52a8a69b8bf31 | |
| * @auther : Anis Uddin Ahmad <[email protected]> | |
| * | |
| * Live demo - https://codepen.io/ajaxray/full/oBPbQe/ | |
| * w: http://ajaxray.com | t: @ajaxray | |
| */ | |
| var Select2Cascade = ( function(window, $) { |
This file contains hidden or 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
| <?php | |
| use PhpCsFixer\Config; | |
| use PhpCsFixer\Finder; | |
| $rules = [ | |
| 'array_indentation' => true, | |
| 'array_syntax' => ['syntax' => 'short'], | |
| 'binary_operator_spaces' => [ | |
| 'default' => 'single_space', |
This file contains hidden or 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
| { | |
| "preset": "psr12", | |
| "rules": { | |
| "align_multiline_comment": true, | |
| "array_indentation": true, | |
| "array_syntax": true, | |
| "blank_line_after_namespace": true, | |
| "blank_line_after_opening_tag": true, | |
| "combine_consecutive_issets": true, | |
| "combine_consecutive_unsets": true, |
This file contains hidden or 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
| app/Http/Controllers/UserController.php | |
| <?php | |
| namespace App\Http\Controllers; | |
| use App\DataTables\UsersDataTable; | |
| class UserController extends Controller | |
| { |
As an example, lets assume we want to change / customize the following :
- Change the Title of the GitBash window from default [MINGW64:/directoryName] to [Tushars Gitbash (Win64)]
- Change the default prompt () to a customized prompt e.g [GitBash (Win64):> ]
The below described method only focusses on customizing the 'GitBash' prompt and NOT about customizing default 'Bash' prompt on Linux terminals. Hence this method uses the '$HOME/.config' folder for storing 'GitBash' prompt customization as per XDG Directory Specs. If you are looking for customizing default 'Bash' prompt for your Linux terminal you should be using '$HOME/.bashrc' for storing your customization and hence advised not to continue with this method.
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Ticket</title> | |
| <style type="text/css"> | |
| *{ | |
| box-sizing: border-box; | |
| -webkit-user-select: none; /* Chrome, Opera, Safari */ | |
| -moz-user-select: none; /* Firefox 2+ */ | |
| -ms-user-select: none; /* IE 10+ */ |
OlderNewer
