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
| "-------------------------------------------------- | |
| " NeoBundle Init | |
| " Turn off filetype plugins before bundles init | |
| filetype off | |
| " Auto installing NeoNeoBundle | |
| let hasAptGet = executable("apt-get") | |
| let hasGit = executable("git") | |
| let isNpmInstalled = executable("npm") | |
| let iCanHazNeoBundle=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
| /*! | |
| * Задание: написать простой сервис для расчета факториала. | |
| * Сервис получает в реквесте число и возвращает факториал этого числа. | |
| * Задание должно быть сделанно на node.js. | |
| * Вы можете использовать любые общедоступные технологии и библиотеки, которые сочтете нужными. | |
| * | |
| * Если вам кажется что в задании не хватает требований, то стоит придерживаться здравой логики. | |
| * | |
| * Если задание показалось вам слишком простым, вы можете: | |
| * - добавить возможность конфигурации порта и других опций, которые сочтете нужными |
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
| <div id="ct-read-review-widget" class="course-reviews-area" data-course="DEV204x"></div> | |
| <script src="http://127.0.0.1:8000/static/js/widgets/edx-course-widgets.js"></script> | |
| <script>window.courseTalk.init();</script> |
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
| <script src="http://mozilla.github.io/jschannel/src/jschannel.js"></script> | |
| <script type="text/javascript"> | |
| function closeMe() { | |
| var chan = Channel.build({ | |
| window: window.opener, | |
| origin: "*", | |
| scope: "signupPopupScope" | |
| }); | |
| chan.notify({method: "popup_close"}); | |
| window.close(); |
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
| <script src="http://mozilla.github.io/jschannel/src/jschannel.js"></script> | |
| <script type="text/javascript"> | |
| function openMe(url) { | |
| var popupWindow = window.open(url,'popUpWindow','height=300,width=400,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes'); | |
| var chan = Channel.build({ | |
| window: popupWindow, | |
| origin: "*", | |
| scope: "signupPopupScope" | |
| }); | |
| chan.bind('popup_close', function (context, params) { alert('I closed'); }); |
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
| <script src="http://mozilla.github.io/jschannel/src/jschannel.js"></script> | |
| <script type="text/javascript"> | |
| function close() { | |
| var chan = Channel.build({ | |
| window: window.opener, | |
| origin: "*", | |
| scope: "signupPopupScope" | |
| }); | |
| chan.notify({method: "popup_close"}); | |
| window.close(); |
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 parse_git_branch () { | |
| git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
| } | |
| git_push_master() { | |
| target_branch="master" | |
| if [ "$#" -gt "0" ] | |
| then | |
| name=$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
| <span class="ct-widget-stars" data-course="6.00.1x"></span><p>Some content</p><div id="ct-read-review-widget" data-course="6.00.1x"></div><script src="http://127.0.0.1:8000/static/js/widgets/edx-course-widgets.js"></script> |
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
| <iframe src="https://www.class-central.com/mooc/2466/coursera-introduction-to-electronics"></iframe> |
NewerOlder

