This document provides an Xcode survival guide created by Kristina Fox, a senior iOS engineer. It includes tips and tricks for common Xcode tasks organized into a cheat sheet. The cheat sheet covers topics like adding color assets, locking storyboard elements, viewing device logs, creating custom code snippets, and recommended Swift resources. The guide is presented as a fictional story documenting Kristina's progress through various stages of a project.
“Well, most users will have 3D touch by the next iPhone”
“I doubt many visually impaired people even use our product anyway”
“Don’t worry, users will get it once they use it”
"It's a power user feature, it's fine if it's hidden away in a hard to find location in the app."
As developers and product owners, we make assumptions every day - whether it be about our user's profile, our user's behaviors or even who uses our products in general. However, as Alan Alda stated, “Your assumptions are your windows on the world. Scrub them off every once in awhile, or the light won't come in.” Our perceived thoughts on our customers and clients drive how we approach software development - for better or worse. This talk will walk through some of the most common assumptions engineers and product managers encounter and discuss ways we can learn to think more inclusively when it comes to both feature and app development. We’ll also cover some strategies on how to keep an open mind when approaching these kinds of topics and how to use these learnings to help educate others.
The document discusses using Google hacking techniques to locate vulnerabilities on websites. It describes what Google hacking is, which is using Google to find sensitive information that may have been exposed due to poor web application security. It provides examples of what attackers can do with vulnerable websites, such as file inclusion, SQL injection, and arbitrary file uploads. It also discusses the Google Hacking Database (GHDB), which is a collection of Google dorks or search queries that have revealed vulnerabilities. Finally, it covers some basics of Google hacking like using the Google cache to crawl website information and using Google as a proxy server.
WordPress is powered by magic and jazz music. This talk demystifies one of the fundamental components of the WordPress software, WP_Query and the Loop. We’ll talk about URL query strings, how they are used in WordPress and how to manipulate them to control the behavior and output of your site. We’ll also talk about the Loop, what it does, how it works and how to create custom Loops specific to the needs of your project.
The upcoming version Plone 5.2 will support Plone 3, what does that mean for you?
When should you start to use Python 3 in your new Plone projects? When and how should you migrate existing projects to Python 3? How do you migrate addons and your custom code?
Drawing from the experience with the migration of Plone itself I'll answer all the questions that arise from moving to Python 3.
This document provides an overview of 10 different NoSQL databases: MongoDB, ElasticSearch, Neo4j, HBase, Apache Marmotta, Voldemort, TempoDB, Object databases, DynamoDB, and Graph databases. Each database is briefly described, highlighting its data model and usage cases. The document advocates using the right data store for the job rather than relying only on SQL databases.
The document outlines 6 composition rules for photography: rule 1 emphasizes simplicity; rule 2 is the rule of thirds which divides an image into thirds both horizontally and vertically; rule 3 discusses using lines in photographs to draw the eye; rule 4 stresses balancing elements in the frame; rule 5 addresses framing the subject; and rule 6 advises avoiding mergers where unrelated elements are combined in a frame. The document also lists 6 sources cited for the composition rules.
JDD2014: Introducing groovy into JAVA project - Yuriy ChulovskyyPROIDEA
This is story about thing you wanted to do but didn't yet. We will start with comparison of Groovy and Java code, will see how to test with Groovy and finally will try to sell it to manager
Introduction to neo4j and graph databases in generally - looking at what neo4j is, why we should use it, the Cypher query language and the wider ecosystem.
This document discusses Fluentd, an open source data collector. It collects and processes log data from multiple sources and locations. Fluentd handles log collection in JSON format from various systems like user log files, databases, and applications. It then routes the logs to their destinations such as file outputs, databases, or analytics tools through flexible configuration. This allows log data from different sources and formats to be normalized and processed in a unified manner.
The document describes profiling web archives to provide concise summaries of their holdings. It discusses generating different types of profiles, including profiles based on complete URI-Rs, top-level domains (TLDs), sub-URIs, and segment digests. Frequency measurements are included to predict the presence of mementos. The profiles balance size and detail. A sample profile following the described structure is also shown.
PyLadies Talk: Learn to love the command line!Blanca Mancilla
This talks aims to uncover some of the magic powers of scripting and the command line.
I'll share with you some of my experience using the shell to schedule backups of a git repository or to find strings in files of unknown name and location.
And then you might see that it is a tough love!
The document discusses processing linked data at high speeds using the Signal/Collect graph algorithm framework. It provides examples of how Signal/Collect can be used to perform tasks like RDFS subclass inference and PageRank calculation on semantic graphs. It also summarizes performance results showing that TripleRush, an implementation of Signal/Collect, outperforms other graph processing systems on benchmark datasets. Finally, it discusses ongoing work on graph partitioning with TripleRush.
Spring scala - Sneaking Scala into your corporationHenryk Konsek
Spring Scala provides an API for defining beans in Scala and wrappers for existing Spring functionality. It allows defining beans as functions, using Scala collections and options instead of Java APIs, and aspect-oriented programming without inner classes. While pure Java configuration can be used with Scala, Spring Scala offers a more Scala-friendly experience when integrating Scala code with existing Spring applications and services. Introducing Spring Scala in an incremental, evolutionary manner is recommended over rewriting large projects.
Designing a Horizontally Scalable Event-Driven Big Data Architecture with Apa...Ricardo Fanjul Fandiño
Traditional data architectures are not enough to handle the huge amounts of data generated from millions of users. In addition, the diversity of data sources are increasing every day: Distributed file systems, relational, columnar-oriented, document-oriented or graph Databases.
Letgo has been growing quickly during the last years. Because of this, we needed to improve the scalability or our data platform and endow it further capabilities, like “dynamic infrastructure elasticity”, real-time processing or real-time complex event processing. In this talk, we are going to dive deeper into our journey. We started from a traditional data architecture with ETL and Redshift, till nowadays where we successfully have made an event oriented and horizontally scalable data architecture.
We will explain in detail from the event ingestion with Kafka / Kafka Connect to its processing in streaming and batch with Spark. On top of that, we will discuss how we have used Spark Thrift Server / Hive Metastore as glue to exploit all our data sources: HDFS, S3, Cassandra, Redshift, MariaDB … in a unified way from any point of our ecosystem, using technologies like: Jupyter, Zeppelin, Superset ⦠We will also describe how to made ETL only with pure Spark SQL using Airflow for orchestration.
Along the way, we will highlight the challenges that we found and how we solved them. We will share a lot of useful tips for the ones that also want to start this journey in their own companies.
This document provides an overview of a lesson plan on cryptographic systems. It includes the objectives, major concepts, and outline of the content to be covered in the 3-4 hour lesson. The lesson will describe how encryption, hashes, and digital signatures provide security and will cover the functions of cryptographic algorithms like MD5, SHA-1, DES, 3DES, AES and RSA. It will also discuss cryptanalysis methods and the history of cryptography.
Advanced Use of Properties and Scripts in TIBCO SpotfireHerwig Van Marck
The document discusses advanced uses of properties and scripts in TIBCO Spotfire including:
1) Using properties to control trellis simulations and page selections.
2) Using the $map and $csearch functions to search data and summarize results.
3) Parsing comma separated tag columns and dynamically updating list box content using scripts.
This document discusses unit testing in PostgreSQL. It defines a unit in PostgreSQL as domains, types, functions, views, tables, and triggers. It notes some benefits of unit testing include stability and reduced time troubleshooting errors. The document provides examples of unit testing different PostgreSQL elements like functions, views with window functions, and triggers. It recommends testing more complex elements like triggers and functions first before testing simpler elements like domains and types if time allows. A key advantage of PostgreSQL unit testing is not needing mock objects since the database is directly tested.
This document provides an introduction to React for beginners. It discusses why React is useful, including its declarative syntax and component-based approach. It covers key React concepts like components, props, state, lifecycles, and the virtual DOM. It also discusses ES6 features supported by React and how to set up tooling with Babel and Webpack. The document concludes with a demonstration of building a basic React app.
[E-Dev-Day 2014][5/16] C++ and JavaScript bindings for EFL and Elementary EnlightenmentProject
[E-Dev-Day 2014][5/16] C++ and JavaScript bindings for EFL and Elementary
at Enlightenment Developers Day 2014
https://phab.enlightenment.org/w/events/enlightenment_developer_day_2014/
REST est devenu un standard pour les APIs web. Mais malgré sa popularité, il est plein de défauts. Son successeur existe et il vient de Facebook. Venez découvrir en détail le principe, la mise en oeuvre et l’écosystème de GraphQL.
This document introduces GraphQL and Relay. It discusses how GraphQL addresses issues with REST APIs like overfetching and nested resources. It provides examples of GraphQL queries, mutations, and connections. It also explains key aspects of Relay like object identification, connections, and mutations with client mutation IDs. Finally, it outlines setting up a simplified todo app with GraphQL and Relay.
This document provides an overview of 10 different NoSQL databases: MongoDB, ElasticSearch, Neo4j, HBase, Apache Marmotta, Voldemort, TempoDB, Object databases, DynamoDB, and Graph databases. Each database is briefly described, highlighting its data model and usage cases. The document advocates using the right data store for the job rather than relying only on SQL databases.
The document outlines 6 composition rules for photography: rule 1 emphasizes simplicity; rule 2 is the rule of thirds which divides an image into thirds both horizontally and vertically; rule 3 discusses using lines in photographs to draw the eye; rule 4 stresses balancing elements in the frame; rule 5 addresses framing the subject; and rule 6 advises avoiding mergers where unrelated elements are combined in a frame. The document also lists 6 sources cited for the composition rules.
JDD2014: Introducing groovy into JAVA project - Yuriy ChulovskyyPROIDEA
This is story about thing you wanted to do but didn't yet. We will start with comparison of Groovy and Java code, will see how to test with Groovy and finally will try to sell it to manager
Introduction to neo4j and graph databases in generally - looking at what neo4j is, why we should use it, the Cypher query language and the wider ecosystem.
This document discusses Fluentd, an open source data collector. It collects and processes log data from multiple sources and locations. Fluentd handles log collection in JSON format from various systems like user log files, databases, and applications. It then routes the logs to their destinations such as file outputs, databases, or analytics tools through flexible configuration. This allows log data from different sources and formats to be normalized and processed in a unified manner.
The document describes profiling web archives to provide concise summaries of their holdings. It discusses generating different types of profiles, including profiles based on complete URI-Rs, top-level domains (TLDs), sub-URIs, and segment digests. Frequency measurements are included to predict the presence of mementos. The profiles balance size and detail. A sample profile following the described structure is also shown.
PyLadies Talk: Learn to love the command line!Blanca Mancilla
This talks aims to uncover some of the magic powers of scripting and the command line.
I'll share with you some of my experience using the shell to schedule backups of a git repository or to find strings in files of unknown name and location.
And then you might see that it is a tough love!
The document discusses processing linked data at high speeds using the Signal/Collect graph algorithm framework. It provides examples of how Signal/Collect can be used to perform tasks like RDFS subclass inference and PageRank calculation on semantic graphs. It also summarizes performance results showing that TripleRush, an implementation of Signal/Collect, outperforms other graph processing systems on benchmark datasets. Finally, it discusses ongoing work on graph partitioning with TripleRush.
Spring scala - Sneaking Scala into your corporationHenryk Konsek
Spring Scala provides an API for defining beans in Scala and wrappers for existing Spring functionality. It allows defining beans as functions, using Scala collections and options instead of Java APIs, and aspect-oriented programming without inner classes. While pure Java configuration can be used with Scala, Spring Scala offers a more Scala-friendly experience when integrating Scala code with existing Spring applications and services. Introducing Spring Scala in an incremental, evolutionary manner is recommended over rewriting large projects.
Designing a Horizontally Scalable Event-Driven Big Data Architecture with Apa...Ricardo Fanjul Fandiño
Traditional data architectures are not enough to handle the huge amounts of data generated from millions of users. In addition, the diversity of data sources are increasing every day: Distributed file systems, relational, columnar-oriented, document-oriented or graph Databases.
Letgo has been growing quickly during the last years. Because of this, we needed to improve the scalability or our data platform and endow it further capabilities, like “dynamic infrastructure elasticity”, real-time processing or real-time complex event processing. In this talk, we are going to dive deeper into our journey. We started from a traditional data architecture with ETL and Redshift, till nowadays where we successfully have made an event oriented and horizontally scalable data architecture.
We will explain in detail from the event ingestion with Kafka / Kafka Connect to its processing in streaming and batch with Spark. On top of that, we will discuss how we have used Spark Thrift Server / Hive Metastore as glue to exploit all our data sources: HDFS, S3, Cassandra, Redshift, MariaDB … in a unified way from any point of our ecosystem, using technologies like: Jupyter, Zeppelin, Superset ⦠We will also describe how to made ETL only with pure Spark SQL using Airflow for orchestration.
Along the way, we will highlight the challenges that we found and how we solved them. We will share a lot of useful tips for the ones that also want to start this journey in their own companies.
This document provides an overview of a lesson plan on cryptographic systems. It includes the objectives, major concepts, and outline of the content to be covered in the 3-4 hour lesson. The lesson will describe how encryption, hashes, and digital signatures provide security and will cover the functions of cryptographic algorithms like MD5, SHA-1, DES, 3DES, AES and RSA. It will also discuss cryptanalysis methods and the history of cryptography.
Advanced Use of Properties and Scripts in TIBCO SpotfireHerwig Van Marck
The document discusses advanced uses of properties and scripts in TIBCO Spotfire including:
1) Using properties to control trellis simulations and page selections.
2) Using the $map and $csearch functions to search data and summarize results.
3) Parsing comma separated tag columns and dynamically updating list box content using scripts.
This document discusses unit testing in PostgreSQL. It defines a unit in PostgreSQL as domains, types, functions, views, tables, and triggers. It notes some benefits of unit testing include stability and reduced time troubleshooting errors. The document provides examples of unit testing different PostgreSQL elements like functions, views with window functions, and triggers. It recommends testing more complex elements like triggers and functions first before testing simpler elements like domains and types if time allows. A key advantage of PostgreSQL unit testing is not needing mock objects since the database is directly tested.
This document provides an introduction to React for beginners. It discusses why React is useful, including its declarative syntax and component-based approach. It covers key React concepts like components, props, state, lifecycles, and the virtual DOM. It also discusses ES6 features supported by React and how to set up tooling with Babel and Webpack. The document concludes with a demonstration of building a basic React app.
[E-Dev-Day 2014][5/16] C++ and JavaScript bindings for EFL and Elementary EnlightenmentProject
[E-Dev-Day 2014][5/16] C++ and JavaScript bindings for EFL and Elementary
at Enlightenment Developers Day 2014
https://phab.enlightenment.org/w/events/enlightenment_developer_day_2014/
REST est devenu un standard pour les APIs web. Mais malgré sa popularité, il est plein de défauts. Son successeur existe et il vient de Facebook. Venez découvrir en détail le principe, la mise en oeuvre et l’écosystème de GraphQL.
This document introduces GraphQL and Relay. It discusses how GraphQL addresses issues with REST APIs like overfetching and nested resources. It provides examples of GraphQL queries, mutations, and connections. It also explains key aspects of Relay like object identification, connections, and mutations with client mutation IDs. Finally, it outlines setting up a simplified todo app with GraphQL and Relay.
Managing codebases and projects takes time, and time usually means money (especially with development resources). Using some of the methods discussed, we can help make ourselves and our teams more productive as we move from project to project, which saves time, money, and costly research time. We'll cover code complexity, reusability, and the dreaded 'refactoring' question.
Continuous Delivery enables building, testing and deploying of software through build pipelines faster and more frequently with a well known steps.
But how to implement a continuous delivery pipeline in real world? How to translate the theory into practice?
In this session we are going to discuss how Jenkins and Gradle can help you on build this pipeline/workflow and the advantages of implementing this pipeline as code instead of using Jenkins static build steps.
We will start by a really simple Java EE application and learn how to build it with Gradle, automating unit, integration and functional tests, incorporating popular code quality tools, as well as packaging, publishing and deploying the deliverable using Jenkins Workflow as the director of the whole process.
MOUG17: Visualizing Air Traffic with Oracle APEX and Raspberry PIMonica Li
The document discusses a presentation about visualizing air traffic data using a Raspberry Pi and Oracle APEX. It includes an agenda for the presentation, details about assembling the necessary hardware and software components, loading and streaming air traffic data, and potential use cases for the data. The presentation also includes a live demo of visualizing air traffic data on a map.
GraphQL is a query language for your API. This allows you to interact with your existing web services and databases in a new way. Instead of relying on a predetermined output structure from your API, you can “query” it and choose only the fields that you’re interested in. In this talk, learn what GraphQL is all about and how you can take advantage of it in your applications.
A few key GraphQL terms we'll cover are:
* Fields/Types
* Variables
* Queries/Mutations
We’re going to explore how you can create a GraphQL Server with a stack written entirely in Kotlin. Then we'll take a look at how you can integrate the Apollo Client library inside of a Kotlin-powered Android application. GraphQL isn't going away, so here's your chance to get a grip on this exciting technology!
Talk on what it's like to deal with change in software engineering teams. Covers growth from a team aspect, as well as dealing with change in personal career growth.
It’s hard to believe that it’s already been 3 years since the Apple Watch was first announced to the public. We’ve seen a multitude of changes throughout its short history and are still imagining what the future is for the “most personal product Apple has ever made.”
In this session we’ll walk through the Apple Watch’s brief history, discuss the evolution the product has made in its short lifespan and what developers can do to make the most out of it’s most personal attributes. From tips and tricks for Watch Connectivity to lessons learned from implementing ClockKit, we’ll cover an array of Watch specific APIs. At the end, we’ll take a look at upcoming changes in watchOS 4, as well as take a deep dive into what needs to be done to upgrade from previous watchOS versions to support the latest one.
“Well, most users will have 3D touch by the next iPhone”
“I doubt many visually impaired people even use our product anyway”
“Sarah didn’t say anything during our meeting so she doesn’t seem to have an opinion on the architecture design”
“Don’t worry, users will get it once they use it”
As developers, we make assumptions every day. However, as Alan Alda stated “Your assumptions are your windows on the world. Scrub them off every once in awhile, or the light won't come in.” Whether it is about your users or your teammates, our perceived thoughts drive how we approach software development - for better or worse. This talk will walk through some of the most common assumptions iOS engineers encounter and discuss ways we can learn to think more inclusively when it comes to both feature and app development, as well as within our own teams. We’ll also cover some strategies on how to keep an open mind when approaching these kinds of topics.
Hello Watch! Build your First Apple Watch AppKristina Fox
Introduction tutorial to building an Apple Watch app focusing on both the watch interface and how to use various watchOS 3 features such as Watch Connectivity. Written in Swift 3. You'll need Xcode 8 to follow this tutorial.
Check out the final project code here: https://github.com/kristinathai/watchOS3Counter
Driving User Engagement with watchOS 3Kristina Fox
Learn how to use complications, local notifications and background tasks to make your app essential for your users, without them having to do anything. Using certain features of Apple watch development, you can keep up with your users without much or any direct interaction.
How to Build a Compelling Apple Watch App/ComplicationKristina Fox
watchOS 3 talk about various ways to build a compelling watch app for Apple Watch. Includes how-tos on accessibility, quick actions, watch connectivity, animation and watch complications.
Become a Better Engineer Through WritingKristina Fox
Tips on how you can use various forms of writing to advance your engineering skills. This talk content is primarily targeted towards iOS developers, but can be used for any software engineering medium.
How to Build a Compelling Apple Watch AppKristina Fox
This presentation will cover how developers can take advantage of the most beneficial aspects of the watch in their apps, along with optimal ways of using watch frameworks. Looking at current user behavior, I'll pair these habits with key features that any compelling watch app should have.
This includes:
Watch accessibility
Animations
Data and file transfer (Watch Connectivity)
Optimal battery performance
Dictation
I'll also take a look at the best uses for complications (widgets on watch home screen), and how to use the ClockKit framework better-suited to developers' needs. This largely differs based on the type of service that developers' apps provide and the talk will cover the most optimal ways to show their users the information that is most useful to them.
The audience will be able to walk away with a better idea of what it takes to create a watch app experience that will keep users coming back again and again.
AI and Data Privacy in 2025: Global TrendsInData Labs
In this infographic, we explore how businesses can implement effective governance frameworks to address AI data privacy. Understanding it is crucial for developing effective strategies that ensure compliance, safeguard customer trust, and leverage AI responsibly. Equip yourself with insights that can drive informed decision-making and position your organization for success in the future of data privacy.
This infographic contains:
-AI and data privacy: Key findings
-Statistics on AI data privacy in the today’s world
-Tips on how to overcome data privacy challenges
-Benefits of AI data security investments.
Keep up-to-date on how AI is reshaping privacy standards and what this entails for both individuals and organizations.
Semantic Cultivators : The Critical Future Role to Enable AIartmondano
By 2026, AI agents will consume 10x more enterprise data than humans, but with none of the contextual understanding that prevents catastrophic misinterpretations.
Mobile App Development Company in Saudi ArabiaSteve Jonas
EmizenTech is a globally recognized software development company, proudly serving businesses since 2013. With over 11+ years of industry experience and a team of 200+ skilled professionals, we have successfully delivered 1200+ projects across various sectors. As a leading Mobile App Development Company In Saudi Arabia we offer end-to-end solutions for iOS, Android, and cross-platform applications. Our apps are known for their user-friendly interfaces, scalability, high performance, and strong security features. We tailor each mobile application to meet the unique needs of different industries, ensuring a seamless user experience. EmizenTech is committed to turning your vision into a powerful digital product that drives growth, innovation, and long-term success in the competitive mobile landscape of Saudi Arabia.
Technology Trends in 2025: AI and Big Data AnalyticsInData Labs
At InData Labs, we have been keeping an ear to the ground, looking out for AI-enabled digital transformation trends coming our way in 2025. Our report will provide a look into the technology landscape of the future, including:
-Artificial Intelligence Market Overview
-Strategies for AI Adoption in 2025
-Anticipated drivers of AI adoption and transformative technologies
-Benefits of AI and Big data for your business
-Tips on how to prepare your business for innovation
-AI and data privacy: Strategies for securing data privacy in AI models, etc.
Download your free copy nowand implement the key findings to improve your business.
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Aqusag Technologies
In late April 2025, a significant portion of Europe, particularly Spain, Portugal, and parts of southern France, experienced widespread, rolling power outages that continue to affect millions of residents, businesses, and infrastructure systems.
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptxJustin Reock
Building 10x Organizations with Modern Productivity Metrics
10x developers may be a myth, but 10x organizations are very real, as proven by the influential study performed in the 1980s, ‘The Coding War Games.’
Right now, here in early 2025, we seem to be experiencing YAPP (Yet Another Productivity Philosophy), and that philosophy is converging on developer experience. It seems that with every new method we invent for the delivery of products, whether physical or virtual, we reinvent productivity philosophies to go alongside them.
But which of these approaches actually work? DORA? SPACE? DevEx? What should we invest in and create urgency behind today, so that we don’t find ourselves having the same discussion again in a decade?
Dev Dives: Automate and orchestrate your processes with UiPath MaestroUiPathCommunity
This session is designed to equip developers with the skills needed to build mission-critical, end-to-end processes that seamlessly orchestrate agents, people, and robots.
📕 Here's what you can expect:
- Modeling: Build end-to-end processes using BPMN.
- Implementing: Integrate agentic tasks, RPA, APIs, and advanced decisioning into processes.
- Operating: Control process instances with rewind, replay, pause, and stop functions.
- Monitoring: Use dashboards and embedded analytics for real-time insights into process instances.
This webinar is a must-attend for developers looking to enhance their agentic automation skills and orchestrate robust, mission-critical processes.
👨🏫 Speaker:
Andrei Vintila, Principal Product Manager @UiPath
This session streamed live on April 29, 2025, 16:00 CET.
Check out all our upcoming Dev Dives sessions at https://community.uipath.com/dev-dives-automation-developer-2025/.
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPathCommunity
Join this UiPath Community Berlin meetup to explore the Orchestrator API, Swagger interface, and the Test Manager API. Learn how to leverage these tools to streamline automation, enhance testing, and integrate more efficiently with UiPath. Perfect for developers, testers, and automation enthusiasts!
📕 Agenda
Welcome & Introductions
Orchestrator API Overview
Exploring the Swagger Interface
Test Manager API Highlights
Streamlining Automation & Testing with APIs (Demo)
Q&A and Open Discussion
Perfect for developers, testers, and automation enthusiasts!
👉 Join our UiPath Community Berlin chapter: https://community.uipath.com/berlin/
This session streamed live on April 29, 2025, 18:00 CET.
Check out all our upcoming UiPath Community sessions at https://community.uipath.com/events/.
Andrew Marnell: Transforming Business Strategy Through Data-Driven InsightsAndrew Marnell
With expertise in data architecture, performance tracking, and revenue forecasting, Andrew Marnell plays a vital role in aligning business strategies with data insights. Andrew Marnell’s ability to lead cross-functional teams ensures businesses achieve sustainable growth and operational excellence.
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul
Artificial intelligence is changing how businesses operate. Companies are using AI agents to automate tasks, reduce time spent on repetitive work, and focus more on high-value activities. Noah Loul, an AI strategist and entrepreneur, has helped dozens of companies streamline their operations using smart automation. He believes AI agents aren't just tools—they're workers that take on repeatable tasks so your human team can focus on what matters. If you want to reduce time waste and increase output, AI agents are the next move.
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc
Most consumers believe they’re making informed decisions about their personal data—adjusting privacy settings, blocking trackers, and opting out where they can. However, our new research reveals that while awareness is high, taking meaningful action is still lacking. On the corporate side, many organizations report strong policies for managing third-party data and consumer consent yet fall short when it comes to consistency, accountability and transparency.
This session will explore the research findings from TrustArc’s Privacy Pulse Survey, examining consumer attitudes toward personal data collection and practical suggestions for corporate practices around purchasing third-party data.
Attendees will learn:
- Consumer awareness around data brokers and what consumers are doing to limit data collection
- How businesses assess third-party vendors and their consent management operations
- Where business preparedness needs improvement
- What these trends mean for the future of privacy governance and public trust
This discussion is essential for privacy, risk, and compliance professionals who want to ground their strategies in current data and prepare for what’s next in the privacy landscape.
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Impelsys Inc.
Impelsys provided a robust testing solution, leveraging a risk-based and requirement-mapped approach to validate ICU Connect and CritiXpert. A well-defined test suite was developed to assess data communication, clinical data collection, transformation, and visualization across integrated devices.
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...SOFTTECHHUB
I started my online journey with several hosting services before stumbling upon Ai EngineHost. At first, the idea of paying one fee and getting lifetime access seemed too good to pass up. The platform is built on reliable US-based servers, ensuring your projects run at high speeds and remain safe. Let me take you step by step through its benefits and features as I explain why this hosting solution is a perfect fit for digital entrepreneurs.
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxshyamraj55
We’re bringing the TDX energy to our community with 2 power-packed sessions:
🛠️ Workshop: MuleSoft for Agentforce
Explore the new version of our hands-on workshop featuring the latest Topic Center and API Catalog updates.
📄 Talk: Power Up Document Processing
Dive into smart automation with MuleSoft IDP, NLP, and Einstein AI for intelligent document workflows.
Role of Data Annotation Services in AI-Powered ManufacturingAndrew Leo
From predictive maintenance to robotic automation, AI is driving the future of manufacturing. But without high-quality annotated data, even the smartest models fall short.
Discover how data annotation services are powering accuracy, safety, and efficiency in AI-driven manufacturing systems.
Precision in data labeling = Precision on the production floor.
Quantum Computing Quick Research Guide by Arthur MorganArthur Morgan
This is a Quick Research Guide (QRG).
QRGs include the following:
- A brief, high-level overview of the QRG topic.
- A milestone timeline for the QRG topic.
- Links to various free online resource materials to provide a deeper dive into the QRG topic.
- Conclusion and a recommendation for at least two books available in the SJPL system on the QRG topic.
QRGs planned for the series:
- Artificial Intelligence QRG
- Quantum Computing QRG
- Big Data Analytics QRG
- Spacecraft Guidance, Navigation & Control QRG (coming 2026)
- UK Home Computing & The Birth of ARM QRG (coming 2027)
Any questions or comments?
- Please contact Arthur Morgan at [email protected].
100% human made.
Big Data Analytics Quick Research Guide by Arthur MorganArthur Morgan
This is a Quick Research Guide (QRG).
QRGs include the following:
- A brief, high-level overview of the QRG topic.
- A milestone timeline for the QRG topic.
- Links to various free online resource materials to provide a deeper dive into the QRG topic.
- Conclusion and a recommendation for at least two books available in the SJPL system on the QRG topic.
QRGs planned for the series:
- Artificial Intelligence QRG
- Quantum Computing QRG
- Big Data Analytics QRG
- Spacecraft Guidance, Navigation & Control QRG (coming 2026)
- UK Home Computing & The Birth of ARM QRG (coming 2027)
Any questions or comments?
- Please contact Arthur Morgan at [email protected].
100% human made.
63. kristina.io @krstnfx
> Looks like your colleague used a regular
expression before to search, but can’t remember
what it was. What do you recommend?
65. kristina.io @krstnfx
> Say you have to replace some old prefixed enum
code that looks something like this:
enum APPLFontStyle {
case APPLFontStyleBold
case APPLFontStyleItalic
case APPLFontStyleUnderline
case APPLFontStyleStrikethrough
}
> Know any shortcuts?
66. kristina.io @krstnfx
M U LT I P L E C U R S O R S
Option + drag (rectangular selection)
Ctrl + shift + click (place multiple cursors)
79. B A S E D O N A T R U E S T O RY
Just kidding 😁
80. kristina.io @krstnfx
X C O D E S U R V I VA L G U I D E C H E AT S H E E T
Name Location Shortcut
Color Assets Assets Folder Add Color Set
Lock Storyboard Identity Inspector Lock - All Properties
Side-By-Side Editors View -> Assistant Editor All Editors Stacked Horizontally
Place File In Editor Keyboard/Mouse Alt + Shift (Click On File)
Select Code Structure Keyboard/Mouse Command + Click (On Function)
81. kristina.io @krstnfx
X C O D E S U R V I VA L G U I D E C H E AT S H E E T
Name Location Shortcut
Pre-Xcode 8 Style Jump
Xcode Settings ->
Navigation
Command-Click On Code ->Jumps To
Definition
User Defined
Environment Variables
Project File -> Build
Settings
Add variables to User-Defined Settings
Device Logs For
Crashes
Window -> Devices And
Simulators
View Device Logs
Catch All Breakpoints Breakpoints Panel Plus Button On Bottom Left
Edit Breakpoints Breakpoints Panel
Double-Click Blue Breakpoint To Bring
Up Action Menu
82. kristina.io @krstnfx
X C O D E S U R V I VA L G U I D E C H E AT S H E E T
Name Location Shortcut
Slow Animations Simulator -> Debug Slow Animations
Custom Photos Simulator Drag and drop photo
Pattern Matching In
Search/Search History
Search Sidebar
Click On Magnifying Glass Drop Down,
Insert Pattern/Recent Queries
Multiple Cursors Editor
Ctrl + Shift +Click (Place Cursors)
Option + Drag (Rectangular Selection)
Simulate Poor Network System Preferences Network Link Conditioner
83. kristina.io @krstnfx
R E S O U R C E S
• Paul Hudson’s Swift Knowledge Base
https://www.hackingwithswift.com/example-code/
• API Endpoint Configuration
https://medium.com/@danielgalasko/change-your-api-endpoint-environment-
using-xcode-configurations-in-swift-c1ad2722200e
• Type Safe JSON in Swift
https://medium.com/grand-parade/creating-type-safe-json-in-swift-74a612991893
• WWDC-Style Code Snippets
https://kristina.io/tutorial-wwdc-style-live-code-snippets/
84. kristina.io @krstnfx
R E S O U R C E S
• How To Simulate A Bad Network Connection On Your iOS Device and
Simulator
https://www.natashatherobot.com/simulate-bad-network-ios-simulator/
• Regular Expression Search
https://medium.com/@onmyway133/regular-expression-search-in-
xcode-28a1a17fc863
• Twitter iOS Community (@twostraws, @aligatr, @_inside & many more!)
https://twitter.com/krstnfx/status/940265683690180608