<wysiwyg (onChangeText)="onChangeText($event)"></wysiwyg>
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
| <svg> | |
| <filter id="dropshadow" height="130%"> | |
| <feGaussianBlur in="SourceAlpha" stdDeviation="3"></feGaussianBlur> <!-- stdDeviation is how much to blur --> | |
| <feOffset dx="2" dy="2" result="offsetblur"></feOffset> <!-- how much to offset --> | |
| <feComponentTransfer> | |
| <feFuncA type="linear" slope="0.5"></feFuncA> <!-- slope is the opacity of the shadow --> | |
| </feComponentTransfer> | |
| <feMerge> | |
| <feMergeNode></feMergeNode> <!-- this contains the offset blurred image --> | |
| <feMergeNode in="SourceGraphic"></feMergeNode> <!-- this contains the element that the filter is applied to --> |
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
| #!/bin/bash | |
| # ---------------------------------------------------------- | |
| # Creado por Julian David <https://github.com/juliandavidmr> | |
| # Año 2018 | |
| # Licencia MIT | |
| # Generada: | |
| # - Certificados con keytool | |
| # - Instalador apk para produccion | |
| # - Procesa apk con jarsigner |
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 | |
| namespace common\components; | |
| class Request { | |
| public static function get($url, $data = null, $header = null) { | |
| return self::request("GET", $url, $data, $header); | |
| } |
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
| npm config delete http-proxy | |
| npm config delete https-proxy | |
| npm config rm proxy | |
| npm config rm https-proxy | |
| npm config --global rm proxy | |
| npm config --global rm https-proxy | |
| unset HTTP_PROXY |
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
| /* description: Parses end executes mathematical expressions. */ | |
| /* lexical grammar */ | |
| %lex | |
| %% | |
| \s+ /* skip whitespace */ | |
| [0-9]+("."[0-9]+)?\b return 'NUMBER' | |
| "true" return 'TRUE' | |
| "false" return 'FALSE' |
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
| # Stop | |
| net stop WAS | |
| # Start | |
| # net start W3SVC |
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
| using System.Web.Mvc; | |
| using Helpers; | |
| using System.Web.Security; | |
| namespace Project.Controllers { | |
| [AllowAnonymous] | |
| public class HomeController : Controller { | |
| [HttpGet] |
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
| function (a, b) { | |
| return a + b; | |
| } |