Bit Feed


1
Posted by albydarned 4 years ago
      
<?php echo "Hello there, world!" ?>      
    

0
Posted by albydarned 4 years ago
Useful snippet for converting millisecond timestamp to date in MS SQL Server
      
DECLARE @UTC BIGINT
SET @UTC = 1348203320997 

-- This is a comment

SELECT DATEADD(MILLISECOND, @UTC...      
    
MORE

2
Posted by albydarned 4 years ago
From pythonforbeginners.com
      
# Import the modules
import sys
import random

ans = True

while ans:
    question = raw_input("Ask t...      
    
MORE