sudo apt install kali-linux-core
In short T-SQL is an extension of SQL language.
T-SQL(Transact-SQL) is a set of programming extensions from Sybase and Microsoft that add several features to the Structured Query Language (SQL), including transaction control, exception and error handling, row processing and declared variables
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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Comment: https://keybase.io/download | |
Version: Keybase Go 5.0.0 (linux) | |
xsFNBF3pYmQBEACdCmGDus5GD3qDuZ4YvVDqUB7BQumhdm5xZdUVu6T/G5xgpT01 | |
6JWTvD+oNLA9nW/lyfDVY83H/W52Ex579omlI9sbRJ8cB5WGgR0lj/zxHi+zEfFJ | |
Vy1Io6RPhhnGb6EoTpPFki3c5GLmFYvrDq7a/JBuD3WGCgg6ABPVsCbdD2MV+tSO | |
YbbVlU675NMiXbDVZs+arwaRKrb826tbeKdmXJ8ihb5HhRVUI6I/qC1U29MbO41G | |
f+4jkn9KdpxetY63J/EWxy3QqFzrjcOg4XVegrCiIBzN6ujOzQHcVbSscKn7vQAG | |
lCvl8Z3plaPVKQzvYuTMJ2VViAui5PQQ7ttr2vgIR/vxSayM5FbjSs5YN0Z1xuTe |
I hereby claim:
- I am alphaolomi on github.
- I am c0de1 (https://keybase.io/c0de1) on keybase.
- I have a public key ASCJLZPlbe0uorpIcXDqQr5XH-48vrFXBruu0Q9PhQrOTQo
To claim this, I am signing this object:
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
/* ******************************************************************************************* | |
* REACT.JS CHEATSHEET | |
* DOCUMENTATION: https://reactjs.org/docs/ | |
* FILE STRUCTURE: https://reactjs.org/docs/faq-structure.html | |
* ******************************************************************************************* */ | |
``` | |
npm install --save react // declarative and flexible JavaScript library for building UI | |
npm install --save react-dom // serves as the entry point of the DOM-related rendering paths |
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
/* ******************************************************************************************* | |
* GLOBAL CONFIG | |
* Vue.config is an object containing Vue’s global configurations. | |
* You can modify its properties listed below before bootstrapping your application. | |
* https://vuejs.org/v2/api/#Global-Config | |
* ******************************************************************************************* */ | |
// Configure whether to allow vue-devtools inspection | |
Vue.config.devtools = 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
# ############################################################################## | |
##### HEROKU TOOLBELT COMPLETE GUIDE ########################################### | |
################################################################################ | |
# Installing Heroku toolbelt using command line | |
# For MacOS... | |
brew tap heroku/brew && brew install heroku |
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 | |
$start = microtime(true); | |
// Do stuff | |
dd(microtime(true) - $start); |