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
public JOptionPane validarLetra(java.awt.event.KeyEvent evt) { | |
char c = evt.getKeyChar(); | |
if (Character.isDigit(c)) { | |
getToolkit().beep(); | |
evt.consume(); | |
JOptionPane.showMessageDialog(rootPane, "Digite sólo letras."); | |
} | |
return null; | |
} |
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
<?php | |
define('LARAVEL_START', microtime(true)); | |
/* | |
|-------------------------------------------------------------------------- | |
| Register The Composer Auto Loader | |
|-------------------------------------------------------------------------- | |
| | |
| Composer provides a convenient, automatically generated class loader |
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
<?php | |
Route::group(['prefix' => 'configuracion'], function(){ | |
Route::controller('/perfil', [ | |
'uses' => 'ConfigController@perfil', | |
'as' => 'config.perfil' | |
]); | |
Route::controller('/password', [ | |
'uses' => 'ConfigController@password', | |
'as' => 'config.perfil' |
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
[ | |
{ | |
"name": "Afghanistan", | |
"dial_code": "+93", | |
"code": "AF" | |
}, | |
{ | |
"name": "Aland Islands", | |
"dial_code": "+358", | |
"code": "AX" |
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
{ | |
"install_link": "https://syslint.com/blog/tutorial/how-to-install-laravel-php-framework-on-a-centos-7-or-rhel-7/", | |
"requiriements": { | |
"php": ">=5.6.4", | |
"mysql": ">=5.5.42", | |
"composer": ">=1.3.1" | |
} | |
} |
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
$ code --list-extensions | |
Angular.ng-template | |
Tyriar.sort-lines | |
CoenraadS.bracket-pair-colorizer | |
cssho.vscode-svgviewer | |
dbaeumer.vscode-eslint | |
dracula-theme.theme-dracula | |
eamodio.gitlens | |
eg2.tslint |