SlideShare a Scribd company logo
OSX’s Free Swiss Army Knife
The Mighty OSX Terminal
OSX Roots
Source:	https://en.wikipedia.org/wiki/OS_X#/media/File:Unix_timeline.en.svg
The File System
/
/Applications /Library /System /Users /Volumes
/bin /etc /dev /opt /usr
user1
user2
App1
App2
… …
File System Properties
Name								-	The	unique	(case-sensitive)	name	of	a	file/directory.	
Size								-	How	many	bytes/kB/MB/GB	does	a	file	take	up?	
Permissions	-	Strict	control	of	who	can	access	which	files/directories,	and	
														what	they	can/can’t	do	with	those	files.	
Timestamps		-	When	files	were	created	or	last	modified.	
Owner							-	Which	user	“owns”	this	file?	(for	permissions)	
Group							-	Which	system	“group”	has	access	to	this	file?	(permissions)
File System Permissions
Owner/Group/Other	System	
Permissions	apply	separately	to	the	owner,	the	group,	and	other	users	(those	
who	fall	outside	of	being	the	owner	or	part	of	the	group).	
Read/Write/Execute	Permissions	
Can	the	owner	read/write/execute	the	file?	
Can	the	group	read/write/execute	the	file?	
Can	other	users	read/write/execute	the	file?	
(Execute	doesn’t	apply	to	directories)
Fire it Up
cmd ⌘ + Space
Terminal Window
Current Folder
Prompt
Pro Tip!
http://brew.sh
Quick Reference
Paths (1)
.	
The	current	directory.	
..	
The	parent	directory.	
/	
The	root	directory.
Paths (2)
~	
Refers	to	the	current	user’s	home	folder.	
~/Documents	
The	folder	called	“Documents”	within	the	current	user’s	home	folder.
Paths (3)
*	
“Wildcard”	used	in	a	path.	Used	alone,	refers	to	all	files	and	subfolders	in	
the	current	folder.	
*.txt	
All	files	whose	names	end	in	“.txt”.	
some_file*	
All	files/folders	whose	names	start	with	“some_file”.
Relative Paths (1)
./some_file.txt	
A	“relative”	path,	relative	to	the	current	folder.	
./subfolder/other/folder/some_other_file.txt	
A	more	complex	“relative”	path.	
../some_file.txt	
A	file	called	“some_file.txt”	in	the	parent	folder.
Relative Paths (2)
../../some_file.txt	
A	file	called	“some_file.txt”	in	the	parent	folder	of	our	current	parent	
folder	(two	“levels”	up).
Basic Navigation (1)
pwd	
Print	the	full	path	of	the	current	working	directory.	(“Print	working	
directory”)	
ls	
List	the	contents	of	the	current	directory.	
cd	/path/to/other/directory	
Change	the	current	working	directory	to	“/path/to/other/directory”.
Basic Navigation (2)
ls	-lh	
List	the	contents	of	the	current	directory,	but	show	the	contents	as	a	list	
and	in	a	human-friendlier	manner	than	usual.	
ls	/other/folder	
List	the	contents	of	“/other/folder”.	
ls	..	
List	the	contents	of	the	current	folder’s	parent	folder.
Basic Navigation (3)
ls	.	
Exactly	the	same	as	just	running	“ls”.	
ls	/	
List	the	contents	of	the	file	system	root	directory.	
ls	-a	
List	all	files,	including	hidden	files,	in	the	current	directory.
File Contents (1)
cat	some_file.txt	
Will	display	the	contents	of	“some_file.txt”,	from	the	current	folder,	in	
the	terminal.	
cat	some_file.txt	|	less	
“Pipes”	the	output	from	the	“cat”	command	through	the	“less”	program,	
effectively	allowing	you	to	scroll	through	the	content	of	“some_file.txt”.
File Contents (2)
cat	file1.txt	file2.txt	
First	outputs	the	contents	of	“file1.txt”,	then	the	contents	of	“file2.txt”,	
to	the	terminal.	
echo	“Hello	world!”	>	hello.txt	
Will	write	the	text	“Hello	world!”	into	the	text	file	called	“hello.txt”	in	
the	current	directory.	If	that	file	does	not	exist,	it	will	be	created.	If	
it	does	exist,	its	existing	contents	will	be	replaced.
File Contents (3)
cat	file1.txt	file2.txt	>	file_concatenated.txt	
Dumps	the	concatenated	contents	of	“file1.txt”,	followed	by	the	contents	of	
“file2.txt”,	into	another	file	called	“file_concatenated.txt”.
File Contents (4)
grep	“Hello”	*.txt	
Search	for	the	exact	string	“Hello”	(case-sensitive)	in	all	of	the	.txt	
files	in	the	current	folder.	
grep	-i	“hello”	*.txt	
Search	for	the	string	“hello”	(case-insensitive)	in	all	of	the	.txt	files	in	
the	current	folder.
File Contents (5)
grep	-ir	“hello”	*	
Search	recursively	(through	all	of	the	subfolders	in	the	current	folder	too)	
through	all	files	(*)	for	the	string	“hello”	(case-insensitive).
File Copying
cp	some_file.txt	/other/folder	
Copies	the	file	“some_file.txt”	in	our	current	folder	into	the	folder	whose	
path	is	“/other/folder”.	
cp	*.txt	/other/folder	
Copies	all	of	the	files,	from	the	current	folder,	whose	name	ends	in	“.txt”	
into	“/other/folder”.
Folder Copying
cp	-R	./mysubfolder	/other/folder	
Recursively	copies	all	of	the	contents	of	“mysubfolder”	(a	folder	within	our	
current	folder)	into	the	directory	called	“/other/folder”,	resulting	in	a	
new	folder	“/other/folder/mysubfolder”	whose	contents	will	be	the	same	as	
“./mysubfolder”.
Deleting Files
rm	some_file.txt	
Removes	the	file	in	the	current	directory	called	“some_file.txt”.	
rm	./subfolder/some_file.txt	
Removes	the	file	called	“some_file.txt”	within	this	folder’s	sub-folder	
called	“subfolder”.
Deleting Folders
WARNING!	Be	careful	with	these	commands.	
rm	-rf	./subfolder/	
Removes	all	of	the	contents	of	the	subfolder	called	“subfolder”,	and	removes	
the	folder	itself	as	well.
Executing Commands
./some_executable	
Executes	the	application	called	“some_executable”	in	the	current	directory.	
some_executable	
Assumes	that	the	executable	called	“some_executable”	is	in	your	system	
“path”	-	a	well-known	location	to	the	shell.
Historical Commands
history	
Gives	a	numbered,	chronologically	ordered	listing	of	all	of	the	commands	you	
have	previously	executed.	
!321	
When	looking	at	the	output	from	the	“history”	command,	running	this	executes	
command	number	321	from	the	list.
Additional Commands
clear	
Clears	the	contents	of	the	terminal	(usually	for	readability	purposes).	
which	some_executable	
Tells	you	the	path	where	the	best	candidate	for	“some_executable”	will	be.	
man	command_name	
Shows	the	help	manual	for	the	command	“command_name”	(replace	with	pretty	
much	any	command).

More Related Content

What's hot

Unix files
Unix filesUnix files
Unix files
Sunil Rm
 
The unix file system
The unix file systemThe unix file system
The unix file system
gsandeepmenon
 
Access control list acl - permissions in linux
Access control list acl  - permissions in linuxAccess control list acl  - permissions in linux
Access control list acl - permissions in linux
Sreenatha Reddy K R
 
File permission in linux
File permission in linuxFile permission in linux
File permission in linux
Prakash Poudel
 
Unix File System
Unix File SystemUnix File System
Unix File System
student(MCA)
 
Systems Programming - File IO
Systems Programming - File IOSystems Programming - File IO
Systems Programming - File IO
HelpWithAssignment.com
 
Unix fundamentals
Unix fundamentalsUnix fundamentals
Unix fundamentals
Dima Gomaa
 
Unix features, posix and single unix specification
Unix features, posix and single unix specificationUnix features, posix and single unix specification
Unix features, posix and single unix specification
sudha rani
 
Unix operating system architecture with file structure
Unix operating system architecture with file structure Unix operating system architecture with file structure
Unix operating system architecture with file structure
amol_chavan
 
Linux: Basics OF Linux
Linux: Basics OF LinuxLinux: Basics OF Linux
Linux: Basics OF Linux
Omkar Walavalkar
 
Advanced file permissions in linux
Advanced file permissions in linuxAdvanced file permissions in linux
Advanced file permissions in linux
Mohit Singh
 
Introduction to unix
Introduction to unixIntroduction to unix
Introduction to unix
sudheer yathagiri
 
Linux Introduction (Commands)
Linux Introduction (Commands)Linux Introduction (Commands)
Linux Introduction (Commands)
anandvaidya
 
Linux files and file permission
Linux files and file permissionLinux files and file permission
Linux files and file permission
U.P Police
 
Linux ppt
Linux pptLinux ppt
Linux ppt
Rohit Kumar
 
Introduction to Linux
Introduction to Linux Introduction to Linux
Introduction to Linux
Harish R
 
Unix & Linux File System in Operating System
Unix & Linux File System in Operating SystemUnix & Linux File System in Operating System
Unix & Linux File System in Operating System
Meghaj Mallick
 
Chapter 10 - File System Interface
Chapter 10 - File System InterfaceChapter 10 - File System Interface
Chapter 10 - File System Interface
Wayne Jones Jnr
 
Unix Introduction
Unix IntroductionUnix Introduction
Unix Introduction
ananthimurugesan
 

What's hot (19)

Unix files
Unix filesUnix files
Unix files
 
The unix file system
The unix file systemThe unix file system
The unix file system
 
Access control list acl - permissions in linux
Access control list acl  - permissions in linuxAccess control list acl  - permissions in linux
Access control list acl - permissions in linux
 
File permission in linux
File permission in linuxFile permission in linux
File permission in linux
 
Unix File System
Unix File SystemUnix File System
Unix File System
 
Systems Programming - File IO
Systems Programming - File IOSystems Programming - File IO
Systems Programming - File IO
 
Unix fundamentals
Unix fundamentalsUnix fundamentals
Unix fundamentals
 
Unix features, posix and single unix specification
Unix features, posix and single unix specificationUnix features, posix and single unix specification
Unix features, posix and single unix specification
 
Unix operating system architecture with file structure
Unix operating system architecture with file structure Unix operating system architecture with file structure
Unix operating system architecture with file structure
 
Linux: Basics OF Linux
Linux: Basics OF LinuxLinux: Basics OF Linux
Linux: Basics OF Linux
 
Advanced file permissions in linux
Advanced file permissions in linuxAdvanced file permissions in linux
Advanced file permissions in linux
 
Introduction to unix
Introduction to unixIntroduction to unix
Introduction to unix
 
Linux Introduction (Commands)
Linux Introduction (Commands)Linux Introduction (Commands)
Linux Introduction (Commands)
 
Linux files and file permission
Linux files and file permissionLinux files and file permission
Linux files and file permission
 
Linux ppt
Linux pptLinux ppt
Linux ppt
 
Introduction to Linux
Introduction to Linux Introduction to Linux
Introduction to Linux
 
Unix & Linux File System in Operating System
Unix & Linux File System in Operating SystemUnix & Linux File System in Operating System
Unix & Linux File System in Operating System
 
Chapter 10 - File System Interface
Chapter 10 - File System InterfaceChapter 10 - File System Interface
Chapter 10 - File System Interface
 
Unix Introduction
Unix IntroductionUnix Introduction
Unix Introduction
 

Viewers also liked

SOA MetaSaga Presentation
SOA MetaSaga PresentationSOA MetaSaga Presentation
SOA MetaSaga Presentation
SPSdd
 
Estado, impuestos
Estado, impuestosEstado, impuestos
Estado, impuestos
DANIEL RONDON
 
5-Г візитка
5-Г візитка5-Г візитка
5-Г візитка
Наталия Плисак
 
Bulan sebagai satelit bumi
Bulan sebagai satelit bumiBulan sebagai satelit bumi
Bulan sebagai satelit bumi
syifa arneta
 
1812
18121812
1812
Pelo Siro
 
Hojita evangelio domingo domingo iii cuaresma a on line
Hojita evangelio domingo domingo iii cuaresma a  on lineHojita evangelio domingo domingo iii cuaresma a  on line
Hojita evangelio domingo domingo iii cuaresma a on line
Nelson Gómez
 
3d 프린팅 제조업의 개념 바꾼다.
3d 프린팅 제조업의 개념 바꾼다.3d 프린팅 제조업의 개념 바꾼다.
3d 프린팅 제조업의 개념 바꾼다.
메가트렌드랩 megatrendlab
 
3d 프린팅 산업 동향
3d 프린팅 산업 동향3d 프린팅 산업 동향
3d 프린팅 산업 동향
메가트렌드랩 megatrendlab
 
3d 프린팅 혁명
3d 프린팅 혁명3d 프린팅 혁명
3d 프린팅 혁명
메가트렌드랩 megatrendlab
 
Foro 2 actividad 2
Foro 2  actividad 2Foro 2  actividad 2
Foro 2 actividad 2
Ivonne Cifuentes
 

Viewers also liked (10)

SOA MetaSaga Presentation
SOA MetaSaga PresentationSOA MetaSaga Presentation
SOA MetaSaga Presentation
 
Estado, impuestos
Estado, impuestosEstado, impuestos
Estado, impuestos
 
5-Г візитка
5-Г візитка5-Г візитка
5-Г візитка
 
Bulan sebagai satelit bumi
Bulan sebagai satelit bumiBulan sebagai satelit bumi
Bulan sebagai satelit bumi
 
1812
18121812
1812
 
Hojita evangelio domingo domingo iii cuaresma a on line
Hojita evangelio domingo domingo iii cuaresma a  on lineHojita evangelio domingo domingo iii cuaresma a  on line
Hojita evangelio domingo domingo iii cuaresma a on line
 
3d 프린팅 제조업의 개념 바꾼다.
3d 프린팅 제조업의 개념 바꾼다.3d 프린팅 제조업의 개념 바꾼다.
3d 프린팅 제조업의 개념 바꾼다.
 
3d 프린팅 산업 동향
3d 프린팅 산업 동향3d 프린팅 산업 동향
3d 프린팅 산업 동향
 
3d 프린팅 혁명
3d 프린팅 혁명3d 프린팅 혁명
3d 프린팅 혁명
 
Foro 2 actividad 2
Foro 2  actividad 2Foro 2  actividad 2
Foro 2 actividad 2
 

Similar to The Mighty OSX Terminal

Host security
Host securityHost security
Host security
Nguyen Tam
 
OS Unit IV.ppt
OS Unit IV.pptOS Unit IV.ppt
OS Unit IV.ppt
FarhanaMariyam1
 
Basic Linux
Basic LinuxBasic Linux
Basic Linux
Tan Huynh Cong
 
Lession1 Linux Preview
Lession1 Linux PreviewLession1 Linux Preview
Lession1 Linux Preview
leminhvuong
 
Unix/Linux Basic Commands and Shell Script
Unix/Linux Basic Commands and Shell ScriptUnix/Linux Basic Commands and Shell Script
Unix/Linux Basic Commands and Shell Script
sbmguys
 
file management_osnotes.ppt
file management_osnotes.pptfile management_osnotes.ppt
file management_osnotes.ppt
HelalMirzad
 
Linux 4 you
Linux 4 youLinux 4 you
Linux 4 you
Shashwat Shriparv
 
Linux File System.docx
Linux File System.docxLinux File System.docx
Linux File System.docx
BhuvanaR13
 
Programming Embedded linux
Programming Embedded linuxProgramming Embedded linux
Programming Embedded linux
Liran Ben Haim
 
intro unix/linux 09
intro unix/linux 09intro unix/linux 09
intro unix/linux 09
duquoi
 
Os6
Os6Os6
Linux introduction-commands2338
Linux introduction-commands2338Linux introduction-commands2338
Linux introduction-commands2338
Cam YP Co., Ltd
 
Linux introduction-commands2338
Linux introduction-commands2338Linux introduction-commands2338
Linux introduction-commands2338
Cam YP Co., Ltd
 
Course 102: Lecture 14: Users and Permissions
Course 102: Lecture 14: Users and PermissionsCourse 102: Lecture 14: Users and Permissions
Course 102: Lecture 14: Users and Permissions
Ahmed El-Arabawy
 
Unit 3 chapter 1-file management
Unit 3 chapter 1-file managementUnit 3 chapter 1-file management
Unit 3 chapter 1-file management
Kalai Selvi
 
Basic orientation to Linux
Basic orientation to LinuxBasic orientation to Linux
Basic orientation to Linux
Vidyaratha Kissoon
 
Unit 3 file management
Unit 3 file managementUnit 3 file management
Unit 3 file management
Kalai Selvi
 
Unix and shell programming | Unix File System | Unix File Permission | Blocks
Unix and shell programming | Unix File System | Unix File Permission | BlocksUnix and shell programming | Unix File System | Unix File Permission | Blocks
Unix and shell programming | Unix File System | Unix File Permission | Blocks
LOKESH KUMAR
 
CH11.pdf
CH11.pdfCH11.pdf
CH11.pdf
ImranKhan880955
 
User administration concepts and mechanisms
User administration concepts and mechanismsUser administration concepts and mechanisms
User administration concepts and mechanisms
Duressa Teshome
 

Similar to The Mighty OSX Terminal (20)

Host security
Host securityHost security
Host security
 
OS Unit IV.ppt
OS Unit IV.pptOS Unit IV.ppt
OS Unit IV.ppt
 
Basic Linux
Basic LinuxBasic Linux
Basic Linux
 
Lession1 Linux Preview
Lession1 Linux PreviewLession1 Linux Preview
Lession1 Linux Preview
 
Unix/Linux Basic Commands and Shell Script
Unix/Linux Basic Commands and Shell ScriptUnix/Linux Basic Commands and Shell Script
Unix/Linux Basic Commands and Shell Script
 
file management_osnotes.ppt
file management_osnotes.pptfile management_osnotes.ppt
file management_osnotes.ppt
 
Linux 4 you
Linux 4 youLinux 4 you
Linux 4 you
 
Linux File System.docx
Linux File System.docxLinux File System.docx
Linux File System.docx
 
Programming Embedded linux
Programming Embedded linuxProgramming Embedded linux
Programming Embedded linux
 
intro unix/linux 09
intro unix/linux 09intro unix/linux 09
intro unix/linux 09
 
Os6
Os6Os6
Os6
 
Linux introduction-commands2338
Linux introduction-commands2338Linux introduction-commands2338
Linux introduction-commands2338
 
Linux introduction-commands2338
Linux introduction-commands2338Linux introduction-commands2338
Linux introduction-commands2338
 
Course 102: Lecture 14: Users and Permissions
Course 102: Lecture 14: Users and PermissionsCourse 102: Lecture 14: Users and Permissions
Course 102: Lecture 14: Users and Permissions
 
Unit 3 chapter 1-file management
Unit 3 chapter 1-file managementUnit 3 chapter 1-file management
Unit 3 chapter 1-file management
 
Basic orientation to Linux
Basic orientation to LinuxBasic orientation to Linux
Basic orientation to Linux
 
Unit 3 file management
Unit 3 file managementUnit 3 file management
Unit 3 file management
 
Unix and shell programming | Unix File System | Unix File Permission | Blocks
Unix and shell programming | Unix File System | Unix File Permission | BlocksUnix and shell programming | Unix File System | Unix File Permission | Blocks
Unix and shell programming | Unix File System | Unix File Permission | Blocks
 
CH11.pdf
CH11.pdfCH11.pdf
CH11.pdf
 
User administration concepts and mechanisms
User administration concepts and mechanismsUser administration concepts and mechanisms
User administration concepts and mechanisms
 

Recently uploaded

LF Energy Webinar: Carbon Data Specifications: Mechanisms to Improve Data Acc...
LF Energy Webinar: Carbon Data Specifications: Mechanisms to Improve Data Acc...LF Energy Webinar: Carbon Data Specifications: Mechanisms to Improve Data Acc...
LF Energy Webinar: Carbon Data Specifications: Mechanisms to Improve Data Acc...
DanBrown980551
 
A Deep Dive into ScyllaDB's Architecture
A Deep Dive into ScyllaDB's ArchitectureA Deep Dive into ScyllaDB's Architecture
A Deep Dive into ScyllaDB's Architecture
ScyllaDB
 
Demystifying Knowledge Management through Storytelling
Demystifying Knowledge Management through StorytellingDemystifying Knowledge Management through Storytelling
Demystifying Knowledge Management through Storytelling
Enterprise Knowledge
 
"$10 thousand per minute of downtime: architecture, queues, streaming and fin...
"$10 thousand per minute of downtime: architecture, queues, streaming and fin..."$10 thousand per minute of downtime: architecture, queues, streaming and fin...
"$10 thousand per minute of downtime: architecture, queues, streaming and fin...
Fwdays
 
Y-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PPY-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PP
c5vrf27qcz
 
Northern Engraving | Nameplate Manufacturing Process - 2024
Northern Engraving | Nameplate Manufacturing Process - 2024Northern Engraving | Nameplate Manufacturing Process - 2024
Northern Engraving | Nameplate Manufacturing Process - 2024
Northern Engraving
 
"Scaling RAG Applications to serve millions of users", Kevin Goedecke
"Scaling RAG Applications to serve millions of users",  Kevin Goedecke"Scaling RAG Applications to serve millions of users",  Kevin Goedecke
"Scaling RAG Applications to serve millions of users", Kevin Goedecke
Fwdays
 
Apps Break Data
Apps Break DataApps Break Data
Apps Break Data
Ivo Velitchkov
 
AppSec PNW: Android and iOS Application Security with MobSF
AppSec PNW: Android and iOS Application Security with MobSFAppSec PNW: Android and iOS Application Security with MobSF
AppSec PNW: Android and iOS Application Security with MobSF
Ajin Abraham
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Tosin Akinosho
 
Astute Business Solutions | Oracle Cloud Partner |
Astute Business Solutions | Oracle Cloud Partner |Astute Business Solutions | Oracle Cloud Partner |
Astute Business Solutions | Oracle Cloud Partner |
AstuteBusiness
 
Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024
Jason Packer
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
akankshawande
 
Leveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and StandardsLeveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and Standards
Neo4j
 
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
Edge AI and Vision Alliance
 
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge GraphGraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
Neo4j
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
Brandon Minnick, MBA
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
Jakub Marek
 
GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)
Javier Junquera
 
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
Jason Yip
 

Recently uploaded (20)

LF Energy Webinar: Carbon Data Specifications: Mechanisms to Improve Data Acc...
LF Energy Webinar: Carbon Data Specifications: Mechanisms to Improve Data Acc...LF Energy Webinar: Carbon Data Specifications: Mechanisms to Improve Data Acc...
LF Energy Webinar: Carbon Data Specifications: Mechanisms to Improve Data Acc...
 
A Deep Dive into ScyllaDB's Architecture
A Deep Dive into ScyllaDB's ArchitectureA Deep Dive into ScyllaDB's Architecture
A Deep Dive into ScyllaDB's Architecture
 
Demystifying Knowledge Management through Storytelling
Demystifying Knowledge Management through StorytellingDemystifying Knowledge Management through Storytelling
Demystifying Knowledge Management through Storytelling
 
"$10 thousand per minute of downtime: architecture, queues, streaming and fin...
"$10 thousand per minute of downtime: architecture, queues, streaming and fin..."$10 thousand per minute of downtime: architecture, queues, streaming and fin...
"$10 thousand per minute of downtime: architecture, queues, streaming and fin...
 
Y-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PPY-Combinator seed pitch deck template PP
Y-Combinator seed pitch deck template PP
 
Northern Engraving | Nameplate Manufacturing Process - 2024
Northern Engraving | Nameplate Manufacturing Process - 2024Northern Engraving | Nameplate Manufacturing Process - 2024
Northern Engraving | Nameplate Manufacturing Process - 2024
 
"Scaling RAG Applications to serve millions of users", Kevin Goedecke
"Scaling RAG Applications to serve millions of users",  Kevin Goedecke"Scaling RAG Applications to serve millions of users",  Kevin Goedecke
"Scaling RAG Applications to serve millions of users", Kevin Goedecke
 
Apps Break Data
Apps Break DataApps Break Data
Apps Break Data
 
AppSec PNW: Android and iOS Application Security with MobSF
AppSec PNW: Android and iOS Application Security with MobSFAppSec PNW: Android and iOS Application Security with MobSF
AppSec PNW: Android and iOS Application Security with MobSF
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
 
Astute Business Solutions | Oracle Cloud Partner |
Astute Business Solutions | Oracle Cloud Partner |Astute Business Solutions | Oracle Cloud Partner |
Astute Business Solutions | Oracle Cloud Partner |
 
Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
 
Leveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and StandardsLeveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and Standards
 
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
 
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge GraphGraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
GraphRAG for LifeSciences Hands-On with the Clinical Knowledge Graph
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
 
GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)
 
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
 

The Mighty OSX Terminal