July 2008
1 post
1 tag
Text -> Morse Code in SQL
Just something stupid I did yesterday - following an even stupider conversation about servers sending out an SOS. DECLARE @txt varchar(max) SET @txt = ‘You cannot call server functions from javascript, That is what the AJAX handler is for.’ SET @txt = REPLACE(@txt,’.’,’^|^’) SET @txt = REPLACE(@txt,’_’,’^_^’) SET @txt =...