Иван Вавилов Package Manager

Total Page:16

File Type:pdf, Size:1020Kb

Иван Вавилов Package Manager $ pod install [!] Automatically assigning platform ‘ios’ with version ‘8.0’ because no platform was specified. [!] Your target overrides the ‘OTHER_LDFLAGS’ build settings defined in xcconfig. This can lead to problems with the CocoaPods installation. [!] The dependency ‘Alamofire’ is not used in any concrete target. [!] Pods written in Swift can only be integrated as frameworks [!] Unable to find a specification for ‘Alamofire’. [!] CocoaPods could not find compatible versions for pod ‘Alamofire’: Transport depends on Alamofire (~> 1.0) Mapper depends on Alamofire (~> 2.0) [!] There is a circular dependency between Transport and Mapper Pod installation complete! There are 2 dependencies from the Podfile and 4 total pods installed. $ git log —numstat e123123 83 0 project project.pbxproj commit e123123ccde12313c123e Когда наконец поставил pod-ы Package manager — это не просто curl Иван Вавилов [email protected] Агенда Разновидности менеджеров зависимостей (МЗ) Схема проекта с использованием МЗ Алгоритм работы МЗ Redmadrobot Агенда Разновидности менеджеров зависимостей (МЗ) Схема проекта с использованием МЗ Алгоритм работы МЗ Redmadrobot Разновидности МЗ Операционной системы (системные) Языка Проекта Redmadrobot Как это работает или все зло в деталях Redmadrobot Агенда Разновидности менеджеров зависимостей (МЗ) Схема проекта с использованием МЗ Алгоритм работы МЗ Redmadrobot Схема проекта с использованием Package Manager Код Код проекта Manifest-файл Lock-файл зависимостей Redmadrobot Схема проекта с использованием Package Manager Код Код проекта Manifest-файл Lock-файл зависимостей import Alamofire Redmadrobot Схема проекта с использованием Package Manager Код Код проекта Manifest-файл Lock-файл зависимостей Валидируется статическим анализатором, редактируется пользователем. Redmadrobot Схема проекта с использованием Package Manager Код Код проекта Manifest-файл Lock-файл зависимостей Генерируется из Manifest-файла Redmadrobot Схема проекта с использованием Package Manager Код Код проекта Manifest-файл Lock-файл зависимостей Получаем на основе Lock-файла Redmadrobot Схема проекта с использованием Package Manager Код Код проекта Manifest-файл Lock-файл зависимостей Redmadrobot Схема проекта с использованием Package Manager Код Компилятор/ Код проекта Manifest-файл Lock-файл зависимостей Интерпретатор Redmadrobot Схема проекта с использованием Package Manager Компилятор/ Интерпретатор коммитов История Redmadrobot Схема проекта с использованием Package Manager Создает пользователь Генерируется Код проекта Manifest-файл Lock-файл Код зависимостей Redmadrobot Агенда Разновидности менеджеров зависимостей (МЗ) Схема проекта с использованием МЗ Алгоритм работы МЗ Redmadrobot Работа МЗ 1. Валидация проекта и среды (Analyzer) 2. Построение графа (Resolver) 3. Скачивание зависимостей 4. Интеграция зависимостей 5. Обновление зависимостей Redmadrobot Валидация проекта и среды окружения Redmadrobot RVM > cocoapods Build Settings Код проекта OS X Manifest-файл Redmadrobot source 'https://github.com/CocoaPods/Specs.git' source 'https://github.com/RedMadRobot/cocoapods-specs' platform :ios, '10.0' use_frameworks! project 'Project.xcodeproj' workspace 'Project.xcworkspace' target 'Project' do project 'Project.xcodeproj' pod 'Alamofire' pod 'Fabric' pod 'GoogleMaps' end Redmadrobot source 'https://github.com/CocoaPods/Specs.git' source 'https://github.com/RedMadRobot/cocoapods-specs' platform :ios, '10.0' use_frameworks! project 'Project.xcodeproj' workspace 'Project.xcworkspace' target 'Project' do project 'Project.xcodeproj' pod 'Alamofire' pod 'Fabric' pod 'GoogleMaps' end Redmadrobot source 'https://github.com/CocoaPods/Specs.git' source 'https://github.com/RedMadRobot/cocoapods-specs' platform :ios, '10.0' use_frameworks! project 'Project.xcodeproj' workspace 'Project.xcworkspace' target 'Project' do project 'Project.xcodeproj' pod 'Alamofire' pod 'Fabric' pod 'GoogleMaps' end Redmadrobot source 'https://github.com/CocoaPods/Specs.git' source 'https://github.com/RedMadRobot/cocoapods-specs' platform :ios, '10.0' use_frameworks! project 'Project.xcodeproj' workspace 'Project.xcworkspace' target 'Project' do project 'Project.xcodeproj' pod 'Alamofire' pod 'Fabric' pod 'GoogleMaps' end Redmadrobot source 'https://github.com/CocoaPods/Specs.git' source 'https://github.com/RedMadRobot/cocoapods-specs' platform :ios, '10.0' use_frameworks! project 'Project.xcodeproj' workspace 'Project.xcworkspace' target 'Project' do project 'Project.xcodeproj' pod 'Alamofire' pod 'Fabric' pod 'GoogleMaps' end Redmadrobot Построение графа зависимостей Redmadrobot Ориентированный ацикличный граф C A B E G D F Redmadrobot Алгоритм!!1 Сводится к задаче топологической сортировки Кан – перебор вершин Тарьян - поиск в глубину Демукрон – поиск в ширину Redmadrobot Алгоритм!!1 NP-полная задача Решается за полиномиальное время При общих зависимостях могут использоваться различные стратегии Алгоритм так же используется в компиляторах, AI, ML Redmadrobot Результат решения Manifest-файл Lock-файл Redmadrobot Зависимости наших зависимостей — наши зависимости Redmadrobot Project A B E C F D Redmadrobot Общая зависимость � Project Diamond problem A B E C F D Redmadrobot Стратегия №1 Project A B <=1.0.3 =1.1.1 C-1.0.3 C-1.1.1 Redmadrobot [!] CocoaPods could not find compatible versions for pod ‘Alamofire’: Transport depends on Alamofire (~> 1.0) Mapper depends on Alamofire (~> 2.0) Стратегия №2 Project A B >=1.0.2 1.x C-1.2.0 Redmadrobot Project A B E C F D Redmadrobot [!] There is a circular dependency between B and D Redmadrobot Зависимости наших зависимостей — наши зависимости Redmadrobot Возможные оптимизации? � Параллельные алгоритмы Redmadrobot Возможные оптимизации? � O(log^2(n))* *При использовании полиномиального количества процессоров Redmadrobot Построение графа зависимостей Carthage SwiftPM Redmadrobot Построение графа зависимостей в Carthage typealias DependencyGraph = [Dependency: Set<Dependency>] public enum Dependency { case gitHub(Server, Repository) case git(GitURL) case binary(URL) } bit.ly/2FGnZln Redmadrobot Построение графа зависимостей в Carthage typealias DependencyGraph = [Dependency: Set<Dependency>] enum Dependency { case gitHub(Server, Repository) case git(GitURL) case binary(URL) } bit.ly/2FGnZln Redmadrobot Построение графа зависимостей в Carthage protocol ResolverProtocol { init(versions, dependencies, gitReference) func resolve(dependencies, lastResolved, dependenciesToUpdate) } bit.ly/2IyxpNB Redmadrobot Построение графа зависимостей в SwiftPM struct PackageGraph { public let rootPackages: [ResolvedPackage] public let packages: [ResolvedPackage] public let reachableTargets: Set<ResolvedTarget> public let reachableProducts: Set<ResolvedProduct> public let allTargets: Set<ResolvedTarget> public var allProducts: Set<ResolvedProduct> } bit.ly/2GBaKzK Redmadrobot Построение графа зависимостей в SwiftPM bit.ly/2DyLNBW Redmadrobot Lock зависимостей Manifest-файл Lock-файл Redmadrobot Lock-файл PODS: - Alamofire (4.7.0) - Fabric (1.7.5) - GoogleMaps (2.6.0): - GoogleMaps/Maps (= 2.6.0) - GoogleMaps/Base (2.6.0) - GoogleMaps/Maps (2.6.0): - GoogleMaps/Base SPEC CHECKSUMS: Alamofire: 907e0a98eb68cdb7f9d1f541a563d6ac5dc77b25 Fabric: ae7146a5f505ea370a1e44820b4b1dc8890e2890 GoogleMaps: 42f91c68b7fa2f84d5c86597b18ceb99f5414c7f PODFILE CHECKSUM: 5294972c5dd60a892bfcc35329cae74e46aac47b COCOAPODS: 1.4.0 Redmadrobot Lock-файл PODS: - Alamofire (4.7.0) - Fabric (1.7.5) - GoogleMaps (2.6.0): - GoogleMaps/Maps (= 2.6.0) - GoogleMaps/Base (2.6.0) - GoogleMaps/Maps (2.6.0): - GoogleMaps/Base SPEC CHECKSUMS: Alamofire: 907e0a98eb68cdb7f9d1f541a563d6ac5dc77b25 Fabric: ae7146a5f505ea370a1e44820b4b1dc8890e2890 GoogleMaps: 42f91c68b7fa2f84d5c86597b18ceb99f5414c7f PODFILE CHECKSUM: 5294972c5dd60a892bfcc35329cae74e46aac47b COCOAPODS: 1.4.0 Redmadrobot Lock-файл PODS: - Alamofire (4.7.0) - Fabric (1.7.5) - GoogleMaps (2.6.0): - GoogleMaps/Maps (= 2.6.0) - GoogleMaps/Base (2.6.0) - GoogleMaps/Maps (2.6.0): - GoogleMaps/Base SPEC CHECKSUMS: Alamofire: 907e0a98eb68cdb7f9d1f541a563d6ac5dc77b25 Fabric: ae7146a5f505ea370a1e44820b4b1dc8890e2890 GoogleMaps: 42f91c68b7fa2f84d5c86597b18ceb99f5414c7f PODFILE CHECKSUM: 5294972c5dd60a892bfcc35329cae74e46aac47b COCOAPODS: 1.4.0 Redmadrobot Lock-файл PODS: - Alamofire (4.7.0) - Fabric (1.7.5) - GoogleMaps (2.6.0): - GoogleMaps/Maps (= 2.6.0) - GoogleMaps/Base (2.6.0) - GoogleMaps/Maps (2.6.0): - GoogleMaps/Base SPEC CHECKSUMS: Alamofire: 907e0a98eb68cdb7f9d1f541a563d6ac5dc77b25 Fabric: ae7146a5f505ea370a1e44820b4b1dc8890e2890 GoogleMaps: 42f91c68b7fa2f84d5c86597b18ceb99f5414c7f PODFILE CHECKSUM: 5294972c5dd60a892bfcc35329cae74e46aac47b COCOAPODS: 1.4.0 Redmadrobot Lock-файл PODS: - Alamofire (4.7.0) - Fabric (1.7.5) - GoogleMaps (2.6.0): - GoogleMaps/Maps (= 2.6.0) - GoogleMaps/Base (2.6.0) - GoogleMaps/Maps (2.6.0): - GoogleMaps/Base SPEC CHECKSUMS: Alamofire: 907e0a98eb68cdb7f9d1f541a563d6ac5dc77b25 Fabric: ae7146a5f505ea370a1e44820b4b1dc8890e2890 GoogleMaps: 42f91c68b7fa2f84d5c86597b18ceb99f5414c7f PODFILE CHECKSUM: 5294972c5dd60a892bfcc35329cae74e46aac47b COCOAPODS: 1.4.0 Redmadrobot Скачивание зависимостей Код Lock-файл Зависимостей Redmadrobot Скачивание зависимостей Безопасность Централизация Redmadrobot Скачивание зависимостей Безопасность Централизация Redmadrobot Безопасность Redmadrobot Homebrew HOMEBREW_NO_INSECURE_REDIRECT Проверка устаревшей версии curl (OS X ≤ 10.8) Хэш SHA256 для файла по http bit.ly/2pph45i bit.ly/2GKUKLP Redmadrobot Carthage guard binaryURL.scheme == "file" || binaryURL.scheme == "https" else {
Recommended publications
  • Alexander Vaos [email protected] - 754.281.9609 - Alexvaos.Com
    SENIOR FullStack SOFTWARE ENGINEER Alexander Vaos [email protected] - 754.281.9609 - alexvaos.com PERSONA Portfolio My name is Alexander Vaos and I love changing the world. Resume alexvaos.com/resume I’ve worn nearly ever hat I could put on in the last 18 years. I truly love being a part of something WEBSITE alexvaos.com meaningful. github github.com/kriogenx0 linkedin linkedin.com/pub/alex-vaos I love every part of creating a product: starting from an abstract idea, working through the experience, writing up it’s features, designing it, architecting it, building the front-end and back-end, integrating with stackoverflow stackoverflow.com/users/327934/alex-v other apps, bringing it together, testing, and ending at a physical result that makes a difference in Behance behance.net/kriogenx someone’s life. At an early age, I pursued design and programming, eventually learning some of the other Flickr flickr.com/alexvaos components of a business: marketing, product management, business development, sales. I worked as a part of every company size, from startup to enterprise. I've learned the delicacy of a startup, and how essential ROI can be for the roadmap of any company. I'd like to make an impact and create products people love, use, and can learn things from. I'd like the change the world one step at a time. FULL-TIME POSITIONS 2015-2018 SENIOR FullSTack ENGINEER Medidata Mdsol.com Overseeing 8 codebases, front-end applications and API services. Configured countless new applications from scratch with Rails, Rack, Express (Node), and Roda, using React/Webpack for front-end.
    [Show full text]
  • ROOT Package Management: “Lazy Install” Approach
    ROOT package management: “lazy install” approach Oksana Shadura ROOT Monday meeting Outline ● How we can improve artifact management (“lazy-install”) system for ROOT ● How to organise dependency management for ROOT ● Improvements to ROOT CMake build system ● Use cases for installing artifacts in the same ROOT session Goals ● Familiarize ROOT team with our planned work ● Explain key misunderstandings ● Give a technical overview of root-get ● Explain how root-get and cmake can work in synergy Non Goals We are not planning to replace CMake No change to the default build system of ROOT No duplication of functionality We are planning to “fill empty holes” for CMake General overview Manifest - why we need it? ● Easy to write ● Easy to parse, while CMakeLists.txt is impossible to parse ● Collect information from ROOT’s dependencies + from “builtin dependencies” + OS dependencies + external packages to be plugged in ROOT (to be resolved after using DAG) ● It can be easily exported back as a CMakeLists.txt ● It can have extra data elements [not only what is in CMakeLists.txt, but store extra info] ○ Dependencies description (github links, semantic versioning) ■ url: "ssh://[email protected]/Greeter.git", ■ versions: Version(1,0,0)..<Version(2,0,0) Manifest is a “dump” of status of build system (BS), where root-get is just a helper for BS Manifest - Sample Usage scenarios and benefits of manifest files: LLVM/Clang LLVM use CMake as a LLVMBuild utility that organize LLVM in a hierarchy of manifest files of components to be used by build system llvm-build, that is responsible for loading, verifying, and manipulating the project's component data.
    [Show full text]
  • A Package Manager for Curry
    A Package Manager for Curry Jonas Oberschweiber Master-Thesis eingereicht im September 2016 Christian-Albrechts-Universität zu Kiel Programmiersprachen und Übersetzerkonstruktion Betreut durch: Prof. Dr. Michael Hanus und M.Sc. Björn Peemöller Eidesstattliche Erklärung Hiermit erkläre ich an Eides statt, dass ich die vorliegende Arbeit selbstständig ver- fasst und keine anderen als die angegebenen Quellen und Hilfsmittel verwendet habe. Kiel, Contents 1 Introduction 1 2 The Curry Programming Language 3 2.1 Curry’s Logic Features 3 2.2 Abstract Curry 5 2.3 The Compiler Ecosystem 6 3 Package Management Systems 9 3.1 Semantic Versioning 10 3.2 Dependency Management 12 3.3 Ruby’s Gems and Bundler 16 3.4 JavaScript’s npm 19 3.5 Haskell’s Cabal 21 4 A Package Manager for Curry 25 4.1 The Command Line Interface 26 4.2 What’s in a Package? 29 4.3 Finding Packages 35 4.4 Installing Packages 37 4.5 Resolving Dependencies 38 vi A Package Manager for Curry 4.6 Interacting with the Compiler 43 4.7 Enforcing Semantic Versioning 46 5 Implementation 51 5.1 The Main Module 52 5.2 Packages and Dependencies 56 5.3 Dependency Resolution 58 5.4 Comparing APIs 71 5.5 Comparing Program Behavior 73 6 Evaluation 85 6.1 Comparing Package Versions 85 6.2 A Sample Dependency Resolution 88 6.3 Performance of the Resolution Algorithm 90 6.4 Performance of API and Behavior Comparison 96 7 Summary & Future Work 99 A Total Order on Versions 105 B A Few Curry Packages 109 C Raw Performance Figures 117 D User’s Manual 121 1 Introduction Modern software systems typically rely on many external libraries, reusing func- tionality that can be shared between programs instead of reimplementing it for each new project.
    [Show full text]
  • Freertos …What’S New in the Freertos Project
    FreeRTOS …What’s new in the FreeRTOS project Richard Barry Founder, FreeRTOS Project Principal Engineer, AWS IoT © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Agenda The FreeRTOS Kernel Amazon FreeRTOS New Ecosystem Projects New Architecture Ports © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. FreeRTOS—Open source real time kernel © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. FreeRTOS downloads per month over 15 years 14,000 12,000 10,000 8,000 6,000 Downloads 4,000 2,000 0 Date © 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved. gbm java apache (http server) cerebro alks-cli oss-attribution-generator libfabric xen devel cryptography tslint-eslint-rules cynical glib incubator mxnet jruby arrow rollbar linux (kvm) hue rgp netlink gerrit-check web socket sharp cni jgi scapy tabular diaporama packer json11 postcss-extract-animations authenticator fast align tez emscripten lmdbjava gucumber securitymonkey linux-nvme-cli t licensee lombok dovecot smack aalto-xml homebrew nodejs pygresql amphtml flink gpy wing slight.alexa 2018 unicode cldr gpyoptapache phoenix libarchive capybara jcommander tslint appium little proxy typescript-fsa kotlinpoet zipper moby go-git cmock plantuml-syntax esp-open-rtos gradle kuromoji github-plugin cbmc elastalert libsoup eclipse paho mariadb-connector-j kappa irate mysql workbench pyzmq cnn r509-ocsp-responder cocoapods cmis_5 flask-sqlalchemy aws iot devkit tensorboard git git lfs rails fortune server server
    [Show full text]
  • Mdevtalk-Swiftpm.Pdf
    29.09.2016 HONZA DVORSKY @czechboy0 honzadvorsky.com Swift • created by Apple • announced in June 2014 • open sourced December 2015 • Swift 3.0 - September 2016 Swift Package Manager SwiftPM Listen carefully if you’re… • an iOS/macOS developer • backend developer • an Android developer • interested in what Apple sees as the future of programming Agenda • introduction to SwiftPM • demo • advanced topics [SwiftPM] is a tool for managing the distribution of Swift code. It’s integrated with the Swift build system to automate the process of downloading, compiling and linking dependencies. — swift.org/package-manager SwiftPM is a • dependency manager • build tool • test tool SwiftPM is • command line based • cross-platform (macOS, Linux) • decentralized • opinionated • convention over configuration Where to learn more about it • swift.org/package-manager • github.com/apple/swift-package-manager • Mailing list: swift-build-dev • Slack: https://swift-package-manager.herokuapp.com Swift Package Manager Swift Package Manager Package • is a folder • Package.swift • source files • contains modules Module • collection of source files (e.g. .swift files) • build instructions (e.g. “build as a library”) • e.g. Foundation, XCTest, Dispatch, … Example Package: Environment • 1 library module • 1 test module “I already use CocoaPods/Carthage, is this just another dependency manager?” — you “I already support CocoaPods, how can I support SwiftPM?” — you CocoaPods -> SwiftPM • https://github.com/neonichu/schoutedenapus • converts CocoaPods Spec to Package.swift
    [Show full text]
  • Tim Sutton, Montreal (YUL) Sauce Labs
    Owning Your Stuff (Escaping from Development Dependency Hell) Tim Sutton, Montreal (YUL) Sauce Labs http://proposmontreal.com/index.php/mais-pourquoi-yul/ Dependencies AutoPkg and GitHub TLSv1.0/1.1 removal (Feb 22, 2018) #!/usr/bin/python >>> platform.mac_ver()[0] '10.11.6' >>> ssl.OPENSSL_VERSION 'OpenSSL 0.9.8zh 14 Jan 2016' >>> platform.mac_ver()[0] '10.12.6' >>> ssl.OPENSSL_VERSION 'OpenSSL 0.9.8zh 14 Jan 2016' >>> platform.mac_ver()[0] '10.13.4' >>> ssl.OPENSSL_VERSION 'LibreSSL 2.2.7' github.com/clburlison/vendored Clay Caviness - Securing Management Tools - MacADUK 2017 What is so hard? It's just `pip install`? NPM (part 1) (Feb 21, 2018) Library Package Managers (LPMs) Repo mirrors Version pinning Isolated runtime Isolated packages Repo mirrors Version pinning Isolated runtime Isolated packages Isolate packages • Don't sudo <pip|gem|npm> install anything • Eliminates contamination of OS managed/supplied packages • Your project's environment lives independently of any other projects and packages • (Mostly) portable to any other OS / environment Isolate packages (Python) • Install virtualenv once (and ideally virtualenvwrapper or similar) • virtualenv / mkvirtualenv -p to specify which Python you want to use when creating • Use workon to easily switch between environments • pip install, then pip freeze to save a requirements.txt Isolate packages (Python) Isolate packages (Python) Isolate packages (Ruby) • Install Bundler • Define project gems in Gemfile, constrain versions as you wish • bundle update to resolve and "freeze" the
    [Show full text]
  • Towards Left Duff S Mdbg Holt Winters Gai Incl Tax Drupal Fapi Icici
    jimportneoneo_clienterrorentitynotfoundrelatedtonoeneo_j_sdn neo_j_traversalcyperneo_jclientpy_neo_neo_jneo_jphpgraphesrelsjshelltraverserwritebatchtransactioneventhandlerbatchinsertereverymangraphenedbgraphdatabaseserviceneo_j_communityjconfigurationjserverstartnodenotintransactionexceptionrest_graphdbneographytransactionfailureexceptionrelationshipentityneo_j_ogmsdnwrappingneoserverbootstrappergraphrepositoryneo_j_graphdbnodeentityembeddedgraphdatabaseneo_jtemplate neo_j_spatialcypher_neo_jneo_j_cyphercypher_querynoe_jcypherneo_jrestclientpy_neoallshortestpathscypher_querieslinkuriousneoclipseexecutionresultbatch_importerwebadmingraphdatabasetimetreegraphawarerelatedtoviacypherqueryrecorelationshiptypespringrestgraphdatabaseflockdbneomodelneo_j_rbshortpathpersistable withindistancegraphdbneo_jneo_j_webadminmiddle_ground_betweenanormcypher materialised handaling hinted finds_nothingbulbsbulbflowrexprorexster cayleygremlintitandborient_dbaurelius tinkerpoptitan_cassandratitan_graph_dbtitan_graphorientdbtitan rexter enough_ram arangotinkerpop_gremlinpyorientlinkset arangodb_graphfoxxodocumentarangodborientjssails_orientdborientgraphexectedbaasbox spark_javarddrddsunpersist asigned aql fetchplanoriento bsonobjectpyspark_rddrddmatrixfactorizationmodelresultiterablemlibpushdownlineage transforamtionspark_rddpairrddreducebykeymappartitionstakeorderedrowmatrixpair_rddblockmanagerlinearregressionwithsgddstreamsencouter fieldtypes spark_dataframejavarddgroupbykeyorg_apache_spark_rddlabeledpointdatabricksaggregatebykeyjavasparkcontextsaveastextfilejavapairdstreamcombinebykeysparkcontext_textfilejavadstreammappartitionswithindexupdatestatebykeyreducebykeyandwindowrepartitioning
    [Show full text]
  • Announcement
    Announcement 100 articles, 2016-02-23 12:01 1 Samsung Galaxy S7 edge vs Apple iPhone 6s Plus: Which one is best for you? (3) Samsung's new Galaxy S7 edge will soon arrive in stores across the globe, giving consumers yet another great option to choose from in the phablet space. Naturally, many of you will also be considering Apple's iPhone 6s Plus for your next big smartphone, so how does Samsung's latest and greatest fare against it? Samsung’s new Galaxy S7 edge will soon arrive in stores across the globe, giving consumers yet another great option to choose from in the phablet space. Naturally, many of you will also be co… 2016-02-22 16:45:54+00:00 8KB betanews.com 2 Samsung showcases heatpipe-cooled Galaxy S7 family with f/1.7 aperture cameras, IP68 rating and more (2) Samsung on Sunday announced two new additions to its Galaxy family of mobile devices, the Samsung Galaxy S7 and Galaxy S7 edge. 2016-02-23 11:14:41 3KB www.techspot.com 3 John McAfee says he'll decrypt the San Bernardino iPhone for free with his team of super hackers (2) John McAfee, developer of the first commercial anti-virus program and current presidential candidate for the Libertarian Party, has entered the debate surrounding Apple’s refusal to create a backdoor that will enable the FBI to access the iPhone 5c used by… 2016-02-23 11:14:41 2KB www.techspot.com 4 Neverware wants to turn your old computer into a speedy 'Chromebook' (2) There's no shortage of options when it comes to deciding what to do with an old computer once it has been replaced.
    [Show full text]
  • Introduction to Ruby on Rails
    Introduction to Ruby on Rails Software Engineering II WS 2020/21 Enterprise Platform and Integration Concepts Image by swoofty on flickr https://www.flickr.com/photos/swoofty/7151482167/ (CC BY-NC-ND 2.0) Agenda 1. Ruby & Ruby on Rails ■ What is Ruby on Rails? ■ A few words about Ruby ■ Rails' core components ■ RESTful architecture 2. Your first Rails application 3. Your introductory Rails exercise Introduction to Ruby on Rails 6. November 2020 2 Introduction to Ruby on Rails — Software Engineering II — WS 2018/19 Following based on https://speakerdeck.com/y310/ruby-on-rails-introduction6. November 2020 3 Ruby Some basic facts http://www.ruby-lang.org/ ■ Interpreted, high-level, general-purpose language ■ Supports multiple programming paradigms, incl. □ procedural □ object-oriented □ functional Yukihiro "Matz" Matsumoto with R. Stallman ■ Influenced by Perl, Smalltalk, Eiffel, and Lisp ■ Open-source, mature software ■ Additionally different VMs available, e.g. JRuby Introduction to Ruby on Rails Image by Rubén Rodríguez (CC BY 3.0) - http://commons.wikimedia.org/wiki/File:Matz.jpg6. November 2020 4 History of Ruby More than 20 years of active development 2017 v2.5 2019 v2.7 2018 v2.6 Introduction to Ruby on Rails 6. November 2020 5 Basic Ruby Syntax Object-orientation and procedural programming Introduction to Ruby on Rails 6. November 2020 6 Important Ruby Tools Tools needed for every day development ■ A Ruby version manager - e.g. rbenv ■ A package manager - RubyGems ■ A dependency management and provisioning tool - bundler Introduction to Ruby on Rails 6. November 2020 7 Version Management You want to run a specific version of Ruby, here using rbenv, alternative RVM Introduction to Ruby on Rails 6.
    [Show full text]
  • Developing Ios Applications with Rubymotion
    Developing iOS Applications With RubyMotion Matias Korhonen Bachelor’s Thesis Degree Programme in Business Information Technology 2013 Abstract 01 December 2013 Degree Programme in Business Information Technology Author Year of entry Matias Korhonen 2008 Title of report Number of report and Developing iOS Applications With RubyMotion attachment pages 50 + 22 Advisor Juhani Välimäki Users are spending an ever larger amount of time using smartphones and other mo- bile devices. Users are more willing than ever to both buy apps for these devices and more willing to buy other products using these devices. Until recently, it has not been possible to use the Ruby language to create applica- tions for any popular smartphone platforms. However, this has relatively recently changed with the introduction of Ruboto for Android and RubyMotion for iOS de- velopment. The purpose of this thesis project was to investigate the development of iOS applica- tions in RubyMotion. RubyMotion is a toolchain that enables the development of iOS and OS X applications using the Ruby programming language. RubyMotion ap- plications can use all the same features that are available to regular, Objective-C based applications. Developers can also use 3rd party Objective-C libraries in their RubyMotion applications. The thesis indicated that RubyMotion is a viable option for developers with prior ex- perience in either Ruby or with iOS application development (or both). Nevertheless, at this point, RubyMotion does not seem like a language that should be recom- mended to novice developers as the mix of Ruby and the iOS SDK can be confusing at times. Keywords RubyMotion, Ruby, iOS, mobile, programming, development Table of contents Terms and abbreviations .........................................................................................................
    [Show full text]
  • The Developer Factor in Software Privacy
    The Developer Factor in Software Privacy Mohammad Tahaei Doctor of Philosophy School of Informatics University of Edinburgh 2021 Abstract Computer programming operates and controls our personal devices, cars, and infrastructures. These programs are written by software developers who use tools, software development platforms, and online resources to build systems used by billions of people. As we move towards societies that rely on computer programs, the need for private and secure systems increases. Developers, the workforce behind the data economy, impact these systems’ privacy, and consequently, the users and society. Therefore, understanding the developer factor in software privacy provides invaluable inputs to software companies, regulators, and tool builders. This thesis includes six research papers that look at the developer factor in software privacy. We find that developers impact software privacy and are also influenced by external entities such as tools, platforms, academia, and regulators. For example, changes in regulations create challenges and hurdles for developers, such as creating privacy policies, managing permissions, and keeping user data private and secure. Developers interactions with tools and software development platforms, shape their understanding of what privacy means, such as consent and access control. Presentation of privacy information and options on platforms also heavily impact developers’ decisions for their users’ privacy, and platforms may sometimes nudge developers into sharing more of their users’ data by using design (dark) patterns. Other places developers learn about privacy include universities, though they may not learn how to include privacy in software. Some organisations are making efforts to champion privacy as a concept inside development teams, and we find that this direction shows promise as it gives developers direct access to a champion who cares about privacy.
    [Show full text]
  • API-Driven Devops Strategies for Continuous Deployment
    API-Driven DevOps Strategies for Continuous Deployment Nordic APIs This book is for sale at http://leanpub.com/api-driven-devops This version was published on 2016-06-06 This is a Leanpub book. Leanpub empowers authors and publishers with the Lean Publishing process. Lean Publishing is the act of publishing an in-progress ebook using lightweight tools and many iterations to get reader feedback, pivot until you have the right book and build traction once you do. © 2015 - 2016 Nordic APIs Contents Preface ............................. i Defining the Emerging Role of DevOps ........... 1 What is DevOps? ..................... 2 Why DevOps is Powerful ................. 2 Implementing DevOps .................. 3 DevOps Tools ....................... 4 DevOps as a Career .................... 5 Analysis: Less Uptime Sacrificed for new Features . 7 10 Continuous Integration Tools to Spur API Development 9 Abao ............................ 11 DHC ............................ 11 Dredd, by Apiary ..................... 11 APIMATIC ......................... 12 Chakram .......................... 12 Runscope .......................... 13 SmartBear TestComplete Platform . 14 Swagger Diff ........................ 14 Analysis: CI is a Growing Presence in the API Economy 15 Reaching DevOps Zen: Tracking the Progress of Contin- uous Integration ..................... 16 Traditional CI ....................... 17 CI in the cloud ....................... 19 Mobile CI ......................... 20 CONTENTS Future of CI ........................ 22 Analysis: CI is a
    [Show full text]