Skip to content

Instantly share code, notes, and snippets.

View sandord's full-sized avatar

Sandor Drieënhuizen sandord

  • Subspace Software Development
  • Netherlands
  • X @sandord
View GitHub Profile
@cbmeeks
cbmeeks / Yacht.txt
Created July 18, 2019 17:57
M68000 Cycle Counting
Yacht
(Yet Another Cycle Hunting Table)
-------------------------------------------------------------------------------
Forewords :
-------------------------------------------------------------------------------
This document is based on :
- 9th Edition of M68000 8-16-32-bit Microporcessor User's Manual
(Motorola, 1993) (laterly refered as M68000UM)
@remcok
remcok / gist:437556f043ced0eb3784
Created May 15, 2014 11:46
Query to find certain text used in sql server objects
-- Set search text
DECLARE @searchTerm varchar(MAX)
SET @searchTerm = '<SEARCH_TERM>'
-- Stored Procedures
SELECT OBJECT_NAME(M.object_id) as sp_name, M.*
FROM sys.sql_modules M
JOIN sys.procedures P
ON M.object_id = P.object_id
WHERE M.definition LIKE @searchTerm