This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ 6.115] | |
X.Org X Server 1.13.0 | |
Release Date: 2012-09-05 | |
[ 6.116] X Protocol Version 11, Revision 0 | |
[ 6.116] Build Operating System: Linux 3.2.0-30-generic x86_64 Ubuntu | |
[ 6.116] Current Operating System: Linux indal 3.5.0-30-generic #51-Ubuntu SMP Tue May 14 18:47:48 UTC 2013 x86_64 | |
[ 6.116] Kernel command line: BOOT_IMAGE=/vmlinuz-3.5.0-30-generic root=UUID=376e928b-885f-4917-b2a7-ca67161688ff ro quiet splash vt.handoff=7 | |
[ 6.116] Build Date: 08 October 2012 03:34:01PM | |
[ 6.116] xorg-server 2:1.13.0-0ubuntu6 (For technical support please see http://www.ubuntu.com/support) | |
[ 6.116] Current version of pixman: 0.26.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gcc -fPIC -g -O0 -D _DEBUG -o LinuxScreencapper.o LinuxScreencapper.cpp -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -lcairo | |
/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o: In function `_start': | |
(.text+0x20): undefined reference to `main' | |
collect2: error: ld returned 1 exit status | |
make: *** [LinuxScreencapper.o] Error 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if type ksshaskpass >/dev/null ^/dev/null | |
set SSH_ASKPASS ksshaskpass | |
ssh-add </dev/null | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# A fatal error has been detected by the Java Runtime Environment: | |
# | |
# SIGSEGV (0xb) at pc=0x00007f71ef0b848e, pid=7633, tid=140127277954816 | |
# | |
# JRE version: 7.0_25-b15 | |
# Java VM: Java HotSpot(TM) 64-Bit Server VM (23.25-b01 mixed mode linux-amd64 compressed oops) | |
# Problematic frame: | |
# C [libX11.so.6+0x3148e] XRootWindow+0xe | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# encoding: utf-8 | |
from selenium import webdriver | |
import unittest | |
import subprocess | |
class TestTwuttur(unittest.TestCase): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GistID: 6221685 | |
Arandel - In D | |
Trentemöller - Into the Great Wide Yonder | |
Nicolas Jaar - Space Is Only Noise | |
Hidden Orchestra - Night Walks | |
Stimming - Liquorice | |
Rone - Spanish Breakfast | |
Ripperton - Niwa | |
vOPhoniQ - Cosmogonie |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program laplsolv | |
!----------------------------------------------------------------------- | |
! Serial program for solving the heat conduction problem | |
! on a square using the Jacobi method. | |
! Written by Fredrik Berntsson ([email protected]) March 2003 | |
! Modified by Berkant Savas ([email protected]) April 2006 | |
!----------------------------------------------------------------------- | |
integer, parameter :: n=1000, maxiter=1000 | |
double precision,parameter :: tol=1.0E-3 | |
double precision,dimension(0:n+1,0:n+1) :: T |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
File: blurfilter_pthread.c | |
Implementation of blurfilter function using pthreads. | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <pthread.h> | |
#include "blurfilter.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
proxy:0:0@n155] HYDT_dmxu_poll_wait_for_event (./tools/demux/demux_poll.c:70): assert (!(pol lfds[i].revents & ~POLLIN & ~POLLOUT & ~POLLHUP)) failed | |
[proxy:0:0@n155] main (./pm/pmiserv/pmip.c:387): demux engine error waiting for event | |
srun: error: n155: task 0: Exited with exit code 7 | |
[mpiexec@n155] HYDT_bscu_wait_for_completion (./tools/bootstrap/utils/bscu_wait.c:101): one o f the processes terminated badly; aborting | |
[mpiexec@n155] HYDT_bsci_wait_for_completion (./tools/bootstrap/src/bsci_wait.c:18): bootstra p device returned error waiting for completion | |
[mpiexec@n155] HYD_pmci_wait_for_completion (./pm/pmiserv/pmiserv_pmci.c:521): bootstrap serv er returned error waiting for completion | |
[mpiexec@n155] main (./ui/mpich/mpiexec.c:548): process manager error wai |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var customShader = new THREE.ShaderMaterial({ | |
vertexShader: [ | |
'void main() {', | |
' gl_Position = projectionMatrix *', | |
' modelViewMatrix *', | |
' vec4(position,1.0);', | |
'}' | |
].join('\n'), | |
fragmentShader: [ | |
'void main() {', |