[ create a new paste ] login | about

pyvisa

Name:
Email:
Site/Blog:
Location:
Default language:
Favorite languages:
About:

Saved pastes by pyvisa:

Plain Text, pasted on May 1:
1
2
3
4
5
https://github.com/xyproto/gofractions/blob/master/fraction.go
http://groups.google.com/group/golang-nuts/search?group=golang-nuts&q=oniguruma&qt_g=Search+this+group
https://groups.google.com/group/golang-nuts/browse_thread/thread/ed908bc661f60e44/9b7cdb8297d779d6
http://cxwangyi.wordpress.com/2011/03/28/statically-linking-c-code-with-go-code/
http://code.google.com/p/gopages/source/browse/README
...
view (6 lines)
Plain Text, pasted on Jan 5:
1
2
3
4
5
C:\Users\mymas\Desktop\関連gtk>valac --pkg gtk+-2.0 --thread cairo-threaded.vala

cairo-threaded.vala:63.13-63.29: warning: Gdk.draw_drawable has been deprecated
since 2.22
            Gdk.draw_drawable (tmppixmap, this.style.fg_gc[this.get_state ()],
...
view (9 lines)
Plain Text, pasted on Jan 5:
1
2
3
4
5
C:\Users\mymas\Desktop\関連gtk>valac --pkg gtk+-2.0 cairo-threaded.vala --thread

cairo-threaded.vala:62.13-62.29: warning: Gdk.draw_drawable has been deprecated
since 2.22
            Gdk.draw_drawable (tmppixmap, this.style.fg_gc[this.get_state ()],
...
view (17 lines)
Plain Text, pasted on Jan 2:
1
2
3
4
5
753 :デフォルトの名無しさん:2011/01/01(土) 09:54:19 
Python 3.1.3での質問です 

# encoding: euc-jp 
x = "テストⅡ" 
...
view (124 lines)
Python, pasted on Jul 30:
1
2
3
4
5
# -*- coding: utf-8 -*-"

Alpha=[list(u"abcde__"),list(u"fghijkl"),list(u"mnopq__")]
Alpha.reverse()
for d in apply(zip, Alpha):
...
view (22 lines, 27 lines of output)
Python, pasted on May 21:
1
2
3
4
# -*- coding: utf-8 -*-
en_names = "apple,banana,grape".split(',')
ja_names = "りんご,ばなな,ぶどう".split(',') 
fruits = zip(en_names, ja_names)
...
view (7 lines, 3 lines of output)
Python, pasted on May 21:
1
2
3
4
#[mattpap-py2js-3c3b51d] cat tests/lists/zip.py 
l1 = [1,2,3,4,5]
l2 = [5,4,3,2,1]
l3 = [4,4,4,4]
...
view (22 lines, 32 lines of output)
Ruby, pasted on Feb 18:
1
2
3
4
5
#!/usr/bin/env ruby
# wxRuby2 Sample Code. Copyright (c) 2004-2008 wxRuby development team
# Freely reusable code: see SAMPLES-LICENSE.TXT for details
begin
  require 'rubygems' 
...
view (131 lines)
Plain Text, pasted on Dec 31:
1
2
3
4
5
[mymas@localhost valide]$ ./waf configure --prefix=/usr
Checking for program gcc,cc              : ok /usr/bin/gcc 
Checking for program cpp                 : ok /usr/bin/cpp 
Checking for program ar                  : ok /usr/bin/ar 
Checking for program ranlib              : ok /usr/bin/ranlib 
...
view (173 lines)
Plain Text, pasted on Oct 9:
1
2
3
4
5
config.status: executing po/stamp-it commands

Build Configuration:
   Debug......................no
   Profiling/Coverage.........no
...
view (27 lines)
Python, pasted on Mar 29:
1
2
3
4
5
# -*- coding: utf-8 -*- 
def jp_ord(list):
  word_list = []
  for e in list:
    hexword = str(hex(ord(e)))[2:]
...
view (10 lines, 1 line of output)
Plain Text, pasted on Feb 24:
1
2
3
4
5
mymas@mymas-laptop:~/clutter-0.8.8$ ls /usr/lib |grep clutter
libclutter-glx-0.8.so
libclutter-glx-0.8.so.0
libclutter-glx-0.8.so.0.800.0
mymas@mymas-laptop:~/clutter-0.8.8$ ls /usr/local/lib
...
view (18 lines)
Python, pasted on Jan 7:
1
2
3
4
5
#!/usr/bin/python
__howto__ = """

1. Abhängigkeiten:
==================
...
view (413 lines)