Welcome! This page is using CodeRay 1.1.2.

We currently have 3040 rays in the database.
You can add a New Ray or browse the posted rays by pages.

Page 245, 10 entries

delete (mostly) duplicate entries 4 lines of SQL by dieter 108 Bytes Show Edit Expand
1
2
3
4
delete T1
from MyTable T1, MyTable T2
where T1.dupField = T2.dupField
and T1.uniqueField > T2.uniqueField
Java 9 lines of Java by BoyProgram 121 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
public class Teste{

public static void main(String[] args){
System.out.println("Faço programa mamãe!");

}


}
test 1 line of C 11 Bytes Show Edit Expand
1
def testing
zzz 12 lines of SQL 387 Bytes Show Edit Expand
1
2
3
4
--Modif de la table [SpecialRights]: ajout dse roles TSAdjustmentRead et TSAdjustmentWrite
ALTER TABLE [Timesheet].dbo.[SpecialRights] 
ADD TSAdjustmentRead bit NOT NULL DEFAULT(0), 
TSAdjustmen...
ss 1 line of SQL 16 Bytes Show Edit Expand
1
select * from ty
123 1 line of Python by who 20 Bytes Show Edit Expand
1
print "pythonpython"
JStest 11 lines of JavaScript 153 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
9
10
11

function addiere( a , b ) {
    return a+b;
}


if( addiere( 2 , 4 ) == 6 ) {
    document.write('Ja');
} else {
    document.write('Nein');
}
vv 1 line of HTML 1.37 KB Show Edit Expand
1
<meta http-equiv="content-type" content="text/html;charset=utf-8"> <title>404 Not Found</title> <style><!-- body {font-family: arial,sans-serif} div.nav {margin-top: 1ex} div.nav A {font-size: 10pt...
html 3 lines of HTML by prem 72 Bytes Show Edit Expand
1
2
3
<html>
   <body>this is something which i am trying out</body>
</html>
new 5 lines of HTML 405 Bytes Show Edit Expand
1
2
3
rake harsh:theme:list # lists available themes
rake harsh:theme:install[twilight] # installs the twilight theme into /public/stylesheets/harsh/
rake harsh:theme:install THEME=twilight # also inst...

Page 245, 10 entries