Алгоритм кодирования объектов должен быть разработан с учетом требований национального стандарта РФ ГОСТ Р ИСО/МЭК 9834-1-2009 и методических рекомендаций Министерства здравоохранения РФ, приведенных в документе «Комплект спецификаций и технических условий обмена стандартизированными электронными медицинскими документами и сведениями для IHE-совместимых информационных систем». Регистра МО РФ (MDR308, OID: 1.2.643.5.1.13.2.1.1.178)
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
| # vim:ft=zsh ts=2 sw=2 sts=2 | |
| # | |
| # Based on Agnoster's Theme — https://gist.github.com/3712874 | |
| # A Powerline-inspired theme for ZSH | |
| # | |
| # [Powerline-patched font](https://github.com/Lokaltog/powerline-fonts) | |
| # [Solarized theme](https://github.com/altercation/solarized/) | |
| # [iTerm 2](http://www.iterm2.com/) | |
| ### Segment drawing |
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
| # GPG on Tower |
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 | |
| # | |
| # Description: Releases for this script are available at: | |
| # https://gist.github.com/gorakhargosh/c3902d08a939995fb4af/ | |
| # | |
| # The above URL has a bit.ly link as: | |
| # http://bit.ly/bhojo-config | |
| # | |
| # The script is intended to be written and reviewed in the repository | |
| # but released as a gist at the abovementioned URL. |
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 | |
| # IMPORTANT: You will need to disable SIP aka Rootless in order to fully execute this script, you can reenable it after. | |
| # WARNING: It might disable things that you may not like. Please double check the services in the TODISABLE vars. | |
| # Get active services: launchctl list | grep -v "\-\t0" | |
| # Find a service: grep -lR [service] /System/Library/Launch* /Library/Launch* ~/Library/LaunchAgents | |
| # Agents to disable | |
| TODISABLE=('com.apple.security.keychainsyncingoveridsproxy' 'com.apple.personad' 'com.apple.passd' 'com.apple.screensharing.MessagesAgent' 'com.apple.CommCenter-osx' 'com.apple.Maps.mapspushd' 'com.apple.Maps.pushdaemon' 'com.apple.photoanalysisd' 'com.apple.telephonyutilities.callservicesd' 'com.apple.AirPlayUIAgent' 'com.apple.AirPortBaseStationAgent' 'com.apple.CalendarAgent' 'com.apple.DictationIM' 'com.apple.iCloudUserNotifications' 'com.apple.familycircled' 'com.apple.familycontrols.useragent' 'com.apple.familynotificationd' 'com.apple.gamed' 'com.apple.icloud.findmydeviced.findmydevi |
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
| // use this format since .eslintrc is deprecated. | |
| // You can logically derive this format. | |
| module.exports = { | |
| parser: 'babel-eslint', | |
| extends: [ | |
| 'plugin:flowtype/recommended', | |
| 'plugin:jest/recommended', | |
| 'plugin:react/recommended', | |
| 'eslint-config-airbnb', |
rsync (Everyone seems to like -z, but it is much slower for me)
- a: archive mode - rescursive, preserves owner, preserves permissions, preserves modification times, preserves group, copies symlinks as symlinks, preserves device files.
- H: preserves hard-links
- A: preserves ACLs
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
| // How to: | |
| // 1) Login into https://icloud.com | |
| // 2) Open the developer tools and execute this code in the console | |
| // See more @ https://medium.com/bugbountywriteup/how-apple-stored-all-your-email-metadata-for-years-on-their-servers-2a61b1a3232d | |
| const _API_URL='https://p18-mailws.icloud.com/wm/recents'; | |
| const _requestContacts = () => { | |
| console.warn('Requesting your contacts...'); | |
| return fetch(_API_URL, { | |
| method: 'POST', | |
| headers: { |

