| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
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
| class PagesControler(Controller): | |
| # Some code here | |
| def get_route(self, page_entity): | |
| if page_entity.parent: | |
| # return page1/page2/page3 | |
| return "/".join([page_entity.parent.get_route(), page_entity.slug]) | |
| else: | |
| # return page1 |
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
| <!DOCTYPE HTML> | |
| <html lang="en-US"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title></title> | |
| <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> | |
| </head> | |
| <body> |
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
| C:\Documents and Settings\Admin>ping 192.168.1.3 | |
| Обмен пакетами с 192.168.1.3 по 32 байт: | |
| Ответ от 192.168.1.3: число байт=32 время<1мс TTL=128 | |
| Ответ от 192.168.1.3: число байт=32 время<1мс TTL=128 | |
| Ответ от 192.168.1.3: число байт=32 время<1мс TTL=128 | |
| Ответ от 192.168.1.3: число байт=32 время<1мс TTL=128 | |
| Статистика Ping для 192.168.1.3: |
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
| PS C:\Users\BlackFoks> ping 192.168.1.5 | |
| Pinging 192.168.1.5 with 32 bytes of data: | |
| Request timed out. | |
| Request timed out. | |
| Request timed out. | |
| Request timed out. | |
| Ping statistics for 192.168.1.5: | |
| Packets: Sent = 4, Received = 0, Lost = 4 (100% loss), |
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
| PS C:\Users\BlackFoks> ping 192.168.1.5 | |
| Pinging 192.168.1.5 with 32 bytes of data: | |
| Reply from 192.168.1.5: bytes=32 time<1ms TTL=128 | |
| Reply from 192.168.1.5: bytes=32 time<1ms TTL=128 | |
| Reply from 192.168.1.5: bytes=32 time<1ms TTL=128 | |
| Reply from 192.168.1.5: bytes=32 time<1ms TTL=128 | |
| Ping statistics for 192.168.1.5: | |
| Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), |
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
| <%@ Master Language="VB" CodeFile="Default.master.vb" Inherits="Default_master" %> | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head runat="server"> | |
| <title>Сибирская академия государственной службы</title> | |
| <meta http-equiv="Content-Language" content="ru"/> |
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
| Sub rep_processing() | |
| is_prev_header = False | |
| Dim pp As Paragraph | |
| Dim regEx | |
| ' Add paragraphs | |
| For Each p In ActiveDocument.Paragraphs | |
| If p.Style.NameLocal = "Çàãîëîâîê 1" Or _ | |
| p.Style.NameLocal = "Çàãîëîâîê 2" Or _ |
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
| $ gem list --local | cut -d" " -f1 | xargs gem uninstall -aIx |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>fileTypes</key> | |
| <array> | |
| <string>haml</string> | |
| <string>sass</string> | |
| </array> | |
| <key>foldingStartMarker</key> |