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
| $('input[id="pick_period2"]').daterangepicker({ | |
| singleDatePicker: true, | |
| showDropdowns: false, | |
| minDate: moment(today).add(1, 'days'), | |
| maxDate: moment(today).add(45, 'days'), | |
| //add locale to your daterangepicker call function | |
| locale: { | |
| format: 'DD-MM-YYYY', | |
| applyLabel: 'Принять', | |
| cancelLabel: 'Отмена', |
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
| // Tarantool quick test | |
| // Copyright, Dennis Anikin 2016 | |
| // | |
| // Quick disclaimer: | |
| // | |
| // This test shows 500K-1000K transactions per second on one CPU core | |
| // and 600K-1600K queries per second on one CPU core. | |
| // | |
| // Based on the $6.57 per-month-price for the AWS t2.micro instance we can afford the tremendous number of 630bln queries for just $1 | |
| // |
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
| // Tarantool quick test | |
| // Copyright, Dennis Anikin 2016 | |
| // | |
| // Quick disclaimer: | |
| // | |
| // This test shows 500K-1000K transactions per second on one CPU core | |
| // and 600K-1600K queries per second on one CPU core. | |
| // | |
| // Based on the $6.57 per-month-price for the AWS t2.micro instance we can afford the tremendous number of 630bln queries for just $1 | |
| // |
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
| $('.modal.draggable>.modal-dialog').draggable({ | |
| cursor: 'move', | |
| handle: '.modal-header' | |
| }); | |
| $('.modal.draggable>.modal-dialog>.modal-content>.modal-header').css('cursor', 'move'); |
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
| @font-face { | |
| font-family: 'Open Sans Regular'; | |
| src: local("Open Sans"), local("OpenSans"), url("../fonts/opensans/opensans.woff2") format("woff2"), url("../fonts/opensans/opensans.woff") format("woff"), url("../fonts/opensans/opensans.ttf") format("truetype"); | |
| font-weight: 400; | |
| font-style: normal; | |
| } | |
| @font-face { | |
| font-family: 'Open Sans Semibold'; |
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
| am4core.ready(function () { | |
| setTimeout(function () { | |
| $("g[aria-labelledby]").remove(); | |
| },50); | |
| }); |
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; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.Management; | |
| namespace omrokMultimediaPlayer | |
| { | |
| public static class OmrokDynamicsSystemLibrary |
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
| select FORMAT (getdate(), 'dd.MM.yyyy') |
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
| public static void Main(string[] args) | |
| { | |
| var content = "Example test"; | |
| var key = "E546C8DF278CD5931069B522E695D4F2"; | |
| var encrypted = EncryptString(content, key); | |
| Console.WriteLine(encrypted); | |
| var decrypted = DecryptString(encrypted, key); | |
| Console.WriteLine(decrypted); |
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
| ====== | |
| Videos | |
| ====== | |
| DevOps | |
| What is DevOps? by Rackspace - Really great introduction to DevOps | |
| https://www.youtube.com/watch?v=_I94-tJlovg | |
| Sanjeev Sharma series on DevOps (great repetition to really get the DevOps concept) |