Fork me on GitHub

Welcome! This page is using CodeRay 1.0.9.

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

Page 1, 10 entries

bash? 1 line of Plain text 35 Bytes Show Edit Expand
strings $(which gedit) | grep share
1c 18 lines of C 743 Bytes Show Edit Expand
1
2
3
4
5
6
ВЫБРАТЬ
  ТаблицаРегистра.АС_НоменклатурнаяГруппа КАК Номенклатура,
  ТаблицаРегистра.Контрагент КАК Контрагент,
  ТаблицаРегистра.Арт_Подразделение КАК ЦФО,
  СУММА(ВЫБОР
      КОГДА ТаблицаРегистра...
Jungle 64 lines of Plain text by waterboy 5.97 KB Show Edit Expand
1
2
3
4
5
6
7
8
9
/usr/bin/git remote set-url origin git@github.com:iphoner/phone.git
0
git.2
/usr/bin/git fetch origin
0
git.3
/usr/bin/git checkout -qf 4dc5554bede01da4a6d72c0df2fc6845a0da0479
0
before_ins...
send reminder 3 lines of Ruby 66 Bytes Show Edit Expand
1
2
3
task :send_reminder => :environment do
  Reminder.new.send
end
cpp test 5 lines of C++ 73 Bytes Show Edit Expand
1
2
3
4
5
EXCEPTION_TRY()
//block de code à tester
int toto;
EXCEPTION_CATCH()
Test 19 lines of diff by d 3.75 KB Show Edit Expand
1
2
3
4
--- /cygdrive/c/Users/admin/Desktop/1.txt  2013-06-11 13:36:25.755748900 -0500
+++ /cygdrive/c/Users/admin/Desktop/2.txt  2013-06-11 13:47:11.347282800 -0500
@@ -1,7 +1,7 @@
-0000069799abcdefghijk...
Something 14 lines of C 736 Bytes Show Edit Expand
1
2
3
4
5
6
//Add the using statements so you don’t have to
//type out the full namespace.
using Fortumo;
using FortumoWindows;
//Create the Fortumo object, use your Service ID and sercet.
//You can find ...
Max Flow (Ford-Falkerson) 33 lines of Java by Dmitry 893 Bytes Show Edit Expand
1
2
3
4
5
6
7
public class MaxFlowFordFulkerson {

  static int findPath(int[][] cap, boolean[] vis, int u, int t, int f) {
    if (u == t)
      return f;
    vis[u] = true;
    for (int v = 0; v < vis.le...
javascript 11 lines of JavaScript 327 Bytes Show Edit Expand
1
2
3
4
5
6
var element = rule.getDataDimensionVal('closureLiveTarget');
if (args.parent){
 element = rule.core.jQ(element).parents(args.parent);
}
if (args.child){
  element = rule.core.jQ(args.child, el...
Testing 8 lines of XML by Phrogz 86 Bytes Show Edit Expand
1
2
3
4
5
6
7
8
<r>
  <p>Hello</p>
  World
  <x><![CDATA[
    moar
  ]]></x>
</r>
<!-- sgfs -->

Page 1, 10 entries