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
| https://msguides.com/ |
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
| TRUNCATE TABLE dua_xlsx; | |
| LOAD DATA | |
| LOCAL INFILE 'C:\\Users\\skynet\\AppData\\Local\\Temp\\dua_xlsx.csv' | |
| INTO TABLE `file_collection`.`dua_xlsx` | |
| CHARACTER SET latin1 | |
| FIELDS TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\r\n' | |
| IGNORE 1 LINES; | |
| SELECT COUNT(*) FROM dua_xlsx; |
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
| powershell -command "Get-ChildItem . -File | %%{$_.Name.TrimEnd($_.Extension)} | %%{(Get-Culture).TextInfo.ToTitleCase($_.ToLower())} | ForEach-Object {new-item -Name $_ -ItemType directory}" |
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
| const urlExists = require('url-exists'); | |
| const request = require('requestretry'); | |
| const spawn = require('child_process').spawn; | |
| const mvn = require('maven').create({ | |
| profiles:['development'] | |
| }); | |
| const url = 'http://localhost:8080'; | |
| var cleanRedeploy = function(){ | |
| request({ | |
| url: url, |
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
| Database Navigator - https://plugins.jetbrains.com/plugin/1800-database-navigator | |
| Lombok Plugin - https://plugins.jetbrains.com/plugin/6317-lombok-plugin | |
| PlantUML integration - https://plugins.jetbrains.com/plugin/7017-plantuml-integration | |
| ReST Console - https://plugins.jetbrains.com/plugin/8114-rest-console | |
| TeXiFy IDEA - https://plugins.jetbrains.com/plugin/9473-texify-idea |
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
| @startuml | |
| ' see: http://plantuml.com/classes.html#More | |
| skinparam LineType ortho | |
| skinparam Shadowing false | |
| skinparam Class { | |
| HeaderBackgroundColor #98BFDA | |
| BackgroundColor White | |
| BorderColor #808080 | |
| ArrowColor #8c8c8c | |
| } |
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
| """ | |
| VectorDrawable2Svg | |
| This script convert your VectorDrawable to a Svg | |
| Author: Alessandro Lucchet | |
| See: https://gitlab.com/Hyperion777/VectorDrawable2Svg/blob/fac86195ba78f27301a70fb612b7c638f066a335/VectorDrawable2Svg.py | |
| Usage: drop one or more vector drawable onto this script to convert them to svg format | |
| """ | |
| from xml.dom.minidom import * | |
| import sys |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\Directory\shell\cmdprompt] | |
| @="@shell32.dll,-8506" | |
| "Extended"="" | |
| "NoWorkingDirectory"="" | |
| [HKEY_CLASSES_ROOT\Directory\shell\cmdprompt\command] | |
| @="cmd.exe /s /k pushd \"%V\"" |
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
| # Ignore everything | |
| * | |
| # Don't ignore .gitignore | |
| !.gitignore | |
| # Don't ignore gist | |
| !package.json |
NewerOlder