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
| D:\Videos>ls | |
| 102_Sex_Positionen.avi | |
| 99_francs.avi | |
| Anonim.2011.D.DVDRip.avi | |
| Artist.2011.D.HDRip.IRONCLUB.avi | |
| Bezbrachnaja.nedelja.2011.D.HDRip.R.avi | |
| Borat Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhst | |
| an.[NoLimits-Team].mkv | |
| Dorz.1991.RUS.BDRip.XviD.AC3.-HQCLUB.avi | |
| Dynamic Yoga-Ashtanga Vinyasa.M4V |
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
| <!-- Included JS Files (Uncompressed) --> | |
| <!-- | |
| <script src="javascripts/modernizr.foundation.js"></script> | |
| <script src="javascripts/jquery.js"></script> | |
| <script src="javascripts/jquery.foundation.mediaQueryToggle.js"></script> | |
| <script src="javascripts/jquery.foundation.reveal.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
| 1. Вступ | |
| 2. Робочі місця | |
| 3. Характеристика сировини та продуктів | |
| 4. Технологія та обладнання | |
| 5. Специфікація обладнання | |
| 6. Зберігання та складування готової продукції | |
| 7. Внутрішньоцеховий транспорт | |
| 8. Контроль виробництва | |
| 9. Автоматичний контроль та управління процесом | |
| 10. Охорона праці |
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
| http://ru.opensuse.org/SDB:Broadcom_Bcm43xx | |
| http://wiki.mageialinux.ru/index.php?title=%D0%9D%D0%B0%D1%81%D1%82%D1%80%D0%BE%D0%B9%D0%BA%D0%B0_%D0%B8_%D0%B8%D1%81%D0%BF%D0%BE%D0%BB%D1%8C%D0%B7%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5_Wi-Fi_%D0%BA%D0%B0%D1%80%D1%82%D1%8B_Broadcom_BCM4312_%D1%81_b43_%D0%B4%D1%80%D0%B0%D0%B9%D0%B2%D0%B5%D1%80%D0%BE%D0%BC | |
| http://www.broadcom.com/support/802.11/linux_sta.php |
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
| var parts = location.hostname.split('.'); | |
| var subdomain = parts.shift(); | |
| var upperleveldomain = parts.join('.'); | |
| To get only the second-level-domain, you might use | |
| var sndleveldomain = parts.slice(-2).join('.'); | |
| Взято http://stackoverflow.com/questions/13367376/get-the-domain-name-of-the-subdomain-javascript |
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
| [furyz@one ~]$ cat /etc/init.d/httpd | |
| #!/bin/bash | |
| # | |
| # httpd Startup script for the Apache HTTP Server | |
| # | |
| # chkconfig: - 85 15 | |
| # description: The Apache HTTP Server is an efficient and extensible \ | |
| # server implementing the current HTTP standards. | |
| # processname: httpd | |
| # config: /etc/httpd/conf/httpd.conf |
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
| # This number should be, at maximum, the number of CPU cores on your system. | |
| worker_processes 8; | |
| # Number of file descriptors used for Nginx. | |
| worker_rlimit_nofile 200000; | |
| # Only log critical errors. | |
| error_log /var/log/nginx/error.log crit | |
| events { | |
| # Determines how many clients will be served by each worker process. | |
| worker_connections 4000; |
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
| <link rel="apple-touch-icon-precomposed" sizes="57x57" href="apple-touch-icon-114-precomposed.png" /> | |
| <link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114-precomposed.png" /> | |
| <link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon-144-precomposed.png " /> | |
| <link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon-144-precomposed.png" /> |
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
| $.ajax({ | |
| url: 'http://structor.io/api/v1/users/sign_in', | |
| type: "POST", | |
| data: { | |
| 'user[email]': 'login', | |
| 'user[password]': 'password' | |
| } | |
| }) |
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
| module OpenGraph | |
| # Rails implementation of OpenGraph generator | |
| # Author: sharpfuryz@gmail.com | |
| # Based on http://ogp.me and http://developers.facebook.com | |
| class << self | |
| # Magic | |
| def parse_options(options) | |
| output = '' | |
| options.each_key do |key| | |
| output += ActionView::Helpers::TagHelper.tag(:meta, {:property => "og:#{key}", :content => options[key]}) |
OlderNewer