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
.ciccione { | |
width: 257px; | |
border-radius: 6px; | |
font-size: 18px; | |
padding: 18px; | |
padding-left: 10px; | |
padding-top: 10px; | |
padding-bottom: 10px; | |
color: #555; | |
border: 1px solid #CCC; |
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
//remove annoying hint about semicolon in sublime linter | |
"jshint_options": | |
{ | |
"evil": true, | |
"regexdash": true, | |
"browser": true, | |
"wsh": true, | |
"trailing": true, | |
"sub": true, |
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
/packages/user/Default (OSX).sublime-keymap | |
[ | |
{ | |
"keys": ["shift+ctrl+super+f"], | |
"command": "open_dir", | |
"args": {"dir": "$file_path", "file": "$file_name"} | |
}, | |
{ | |
"keys": ["command+shift+."], |
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
document.styleSheets[0].disabled = true |
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
######## | |
class ActivationCode | |
include ActiveModel::Validations | |
attr_accessor :activation_code | |
validates :activation_code, :presence => true | |
def initialize(activation_code) | |
@activation_code = activation_code |
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
strlen('stringa'); | |
ini_set('display_errors', 'On'); | |
filter_var('stringa',FILTER_VALIDATE_EMAIL); |
NewerOlder