SourceForge logo
SourceForge logo
Menu

matplotlib-devel — matplotlib developers

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
(1)
Nov
(33)
Dec
(20)
2004 Jan
(7)
Feb
(44)
Mar
(51)
Apr
(43)
May
(43)
Jun
(36)
Jul
(61)
Aug
(44)
Sep
(25)
Oct
(82)
Nov
(97)
Dec
(47)
2005 Jan
(77)
Feb
(143)
Mar
(42)
Apr
(31)
May
(93)
Jun
(93)
Jul
(35)
Aug
(78)
Sep
(56)
Oct
(44)
Nov
(72)
Dec
(75)
2006 Jan
(116)
Feb
(99)
Mar
(181)
Apr
(171)
May
(112)
Jun
(86)
Jul
(91)
Aug
(111)
Sep
(77)
Oct
(72)
Nov
(57)
Dec
(51)
2007 Jan
(64)
Feb
(116)
Mar
(70)
Apr
(74)
May
(53)
Jun
(40)
Jul
(519)
Aug
(151)
Sep
(132)
Oct
(74)
Nov
(282)
Dec
(190)
2008 Jan
(141)
Feb
(67)
Mar
(69)
Apr
(96)
May
(227)
Jun
(404)
Jul
(399)
Aug
(96)
Sep
(120)
Oct
(205)
Nov
(126)
Dec
(261)
2009 Jan
(136)
Feb
(136)
Mar
(119)
Apr
(124)
May
(155)
Jun
(98)
Jul
(136)
Aug
(292)
Sep
(174)
Oct
(126)
Nov
(126)
Dec
(79)
2010 Jan
(109)
Feb
(83)
Mar
(139)
Apr
(91)
May
(79)
Jun
(164)
Jul
(184)
Aug
(146)
Sep
(163)
Oct
(128)
Nov
(70)
Dec
(73)
2011 Jan
(235)
Feb
(165)
Mar
(147)
Apr
(86)
May
(74)
Jun
(118)
Jul
(65)
Aug
(75)
Sep
(162)
Oct
(94)
Nov
(48)
Dec
(44)
2012 Jan
(49)
Feb
(40)
Mar
(88)
Apr
(35)
May
(52)
Jun
(69)
Jul
(90)
Aug
(123)
Sep
(112)
Oct
(120)
Nov
(105)
Dec
(116)
2013 Jan
(76)
Feb
(26)
Mar
(78)
Apr
(43)
May
(61)
Jun
(53)
Jul
(147)
Aug
(85)
Sep
(83)
Oct
(122)
Nov
(18)
Dec
(27)
2014 Jan
(58)
Feb
(25)
Mar
(49)
Apr
(17)
May
(29)
Jun
(39)
Jul
(53)
Aug
(52)
Sep
(35)
Oct
(47)
Nov
(110)
Dec
(27)
2015 Jan
(50)
Feb
(93)
Mar
(96)
Apr
(30)
May
(55)
Jun
(83)
Jul
(44)
Aug
(8)
Sep
(5)
Oct
Nov
(1)
Dec
(1)
2016 Jan
Feb
Mar
(1)
Apr
May
Jun
(2)
Jul
Aug
(3)
Sep
(1)
Oct
(3)
Nov
Dec
2017 Jan
Feb
(5)
Mar
Apr
May
Jun
Jul
(3)
Aug
Sep
(7)
Oct
Nov
Dec
2018 Jan
Feb
Mar
Apr
May
Jun
Jul
(2)
Aug
Sep
Oct
Nov
Dec
S M T W T F S



1
2
(1)
3
(7)
4
5
(9)
6
(7)
7
(10)
8
(5)
9
(2)
10
(5)
11
(6)
12
(1)
13
(6)
14
(1)
15
(15)
16
(1)
17
(2)
18
(1)
19
(1)
20
21
22
(1)
23
(2)
24
(4)
25
(2)
26
(2)
27
(1)
28
(11)
29
(14)
30
(7)


Showing 11 results of 11

From: Jae-Joon L. <lee...@gm...> - 2009年04月28日 19:49:44
This patch is now committed to the trunk (r7068).
-JJ
On Sat, Apr 25, 2009 at 8:29 AM, Ken Schutte <kts...@gm...> wrote:
> Yeah, that seems to work! thanks a lot,
> Ken
>
> On Fri, Apr 24, 2009 at 5:21 PM, Jae-Joon Lee <lee...@gm...> wrote:
>> ps backend, when usetex=True, uses latex with psfrag package to
>> generate the output (with some extra steps).
>> It seems that the bounding box information is not correctly recovered
>> during this process.
>> I first thought that it would be quite difficult to get this correct,
>> however the attached (relatively simple) patch seems to work fine.
>>
>> Ken, can you try the patch and see if it works?
>>
>> -JJ
>>
>>
>>
>>
>> On Thu, Apr 23, 2009 at 2:25 PM, Ken Schutte <kts...@gm...> wrote:
>>> I've been trying to track down some strange behavior I was getting,
>>> and I think narrowed it down to some code that I'll paste below.
>>>
>>> I'm trying to write to .eps files, and when I have usetex=True,
>>> something is screwed up with the padding on the left, and eventually
>>> the whole image is just white.
>>>
>>> If I run this script, the 'testA-*.eps' look good, but 'testB-*' does
>>> not. The same problem happens even if I remove the ticklabels.
>>>
>>> Any tips would be appreciated.
>>> thanks,
>>> Ken
>>>
>>>
>>>
>>> ------------------------------------------------
>>> import matplotlib.pyplot as plt
>>> import numpy as np
>>> from matplotlib import rc
>>>
>>> fig = plt.figure()
>>> ax = fig.add_axes([0,0,1,1],frameon=False)
>>>
>>> X = np.tile(np.arange(500),(10,1)) # (10,500) shape
>>>
>>> ax.imshow(X,interpolation='nearest',aspect='auto')
>>>
>>> def go(name):
>>>
>>>  for d in (1,2,3,4):
>>>
>>>    w = d*5
>>>    h = d
>>>
>>>    fig.set_size_inches(w,h)
>>>    fig.savefig("%s-%d.eps" % (name,d))
>>>
>>> rc('text', usetex=False)
>>> go("testA")
>>>
>>> rc('text', usetex=True)
>>> go("testB")
>>>
>>> ------------------------------------------------------------------------------
>>> Crystal Reports &#45; New Free Runtime and 30 Day Trial
>>> Check out the new simplified licensign option that enables unlimited
>>> royalty&#45;free distribution of the report engine for externally facing
>>> server and web deployment.
>>> http://p.sf.net/sfu/businessobjects
>>> _______________________________________________
>>> Matplotlib-devel mailing list
>>> Mat...@li...
>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>>>
>>
>
From: Dave P. <dpe...@en...> - 2009年04月28日 17:31:15
Darren Dale wrote:
> On Tue, Apr 28, 2009 at 12:19 PM, Pierre Raybaut <co...@py... 
> <mailto:co...@py...>> wrote:
>
> 2009年4月28日 John Hunter <jd...@gm... <mailto:jd...@gm...>>:
> >
> >
> > On Tue, Apr 28, 2009 at 8:18 AM, Pierre Raybaut
> <co...@py... <mailto:co...@py...>>
> > wrote:
> >>
> >> Hi all,
> >>
> >> I would like to contribute to matplotlib with this enhancement
> for the
> >> PyQt4 backend: the idea is to add a toolbar button to configure
> figure
> >> options (axes, curves, ...).
> >>
> >> It's based on a tiny module called formlayout to generate PyQt4
> form
> >> dialog automatically.
> >>
> >> Some screenshots:
> >> http://code.google.com/p/formlayout/
> >>
> >> So, if you're interested (all the following is GPL2):
> >>
> >> *matplotlib patch*
> >>
> >> In FigureManagerQT.__init__, added:
> >> self.canvas.axes = self.canvas.figure.add_subplot(111)
> >>
> >> In NavigationToolbar2QT._init_toolbar, added:
> >> a = self.addAction(self._icon("customize.png"), 'Customize',
> >> self.edit_parameters)
> >> a.setToolTip('Edit curves line and axes parameters')
> >>
> >> Added the following method in NavigationToolbar2QT:
> >> def edit_parameters(self):
> >> from figureoptions import figure_edit
> >> figure_edit(self.canvas, self)
> >>
> >> *additionnal modules and data*
> >>
> >> formlayout.py (http://code.google.com/p/formlayout/)
> >> figureoptions.py (http://code.google.com/p/PyQtShell/)
> >> customize.png (http://code.google.com/p/PyQtShell/)
> >
> > Hi Pierre -- this looks very nice (the last link is broken
> though , I get a
> > 404 error). We would be happy to include this in matplotlib or as a
>
> Here is the last link:
> http://code.google.com/p/pyqtshell/
>
> > toolkit. To contribute it to to mpl, the license needs to be
> matplotlib
> > compatible
> >
> (http://matplotlib.sourceforge.net/devel/coding_guide.html#licenses)
> but we
> > have more licensing flexibility in a toolkit, though we prefer
> to keep
> > everything BSD compatible where possible. And of course you
> would need to
> > agree to maintain it :-) but I think many users would appreciate
> a GUI plot
> > configuration dialog.
>
> I was not aware of this license restriction in matplotlib... I fully
> understand the motivation, of course, but still: I wrote all this on
> my free time which means no PyQt4 commercial license, so it can't be
> anything but GPL. Sorry...
>
>
> I think you have overlooked a subtlety of PyQt4's license. The author 
> of PyQt4 wrote on the enthought-dev mailing list:
>
> "PyQt is GPL but has exceptions that allow it to be used with BSD code -
> hence it's Ok for TraitsBackendQt to be BSD.
>
> However, the exception imposes additional conditions which, to all intents
> and purposes, infects the code with the GPL. To be fair to people that
> should be made clear in any text.
>
> It's still a good idea for TraitsBackendQt to use a BSD license because it
> allows commercial (ie. non-GPL) users to use it without problems."
>
> Darren
I think it might be worth contacting the PyQt folks (Phil Thompson) 
about this. I think there might be some differences here because Phil 
was the author of TraitsBackendQt and thus his efforts didn't quite fall 
under the "develop under a free license, your results needs to be GPL" 
clause Qt/PyQt have in their licensing.
-- Dave
From: Darren D. <dsd...@gm...> - 2009年04月28日 16:56:18
On Tue, Apr 28, 2009 at 12:19 PM, Pierre Raybaut <co...@py...>wrote:
> 2009年4月28日 John Hunter <jd...@gm...>:
> >
> >
> > On Tue, Apr 28, 2009 at 8:18 AM, Pierre Raybaut <co...@py...>
> > wrote:
> >>
> >> Hi all,
> >>
> >> I would like to contribute to matplotlib with this enhancement for the
> >> PyQt4 backend: the idea is to add a toolbar button to configure figure
> >> options (axes, curves, ...).
> >>
> >> It's based on a tiny module called formlayout to generate PyQt4 form
> >> dialog automatically.
> >>
> >> Some screenshots:
> >> http://code.google.com/p/formlayout/
> >>
> >> So, if you're interested (all the following is GPL2):
> >>
> >> *matplotlib patch*
> >>
> >> In FigureManagerQT.__init__, added:
> >> self.canvas.axes = self.canvas.figure.add_subplot(111)
> >>
> >> In NavigationToolbar2QT._init_toolbar, added:
> >> a = self.addAction(self._icon("customize.png"), 'Customize',
> >> self.edit_parameters)
> >> a.setToolTip('Edit curves line and axes parameters')
> >>
> >> Added the following method in NavigationToolbar2QT:
> >> def edit_parameters(self):
> >> from figureoptions import figure_edit
> >> figure_edit(self.canvas, self)
> >>
> >> *additionnal modules and data*
> >>
> >> formlayout.py (http://code.google.com/p/formlayout/)
> >> figureoptions.py (http://code.google.com/p/PyQtShell/)
> >> customize.png (http://code.google.com/p/PyQtShell/)
> >
> > Hi Pierre -- this looks very nice (the last link is broken though , I get
> a
> > 404 error). We would be happy to include this in matplotlib or as a
>
> Here is the last link:
> http://code.google.com/p/pyqtshell/
>
> > toolkit. To contribute it to to mpl, the license needs to be matplotlib
> > compatible
> > (http://matplotlib.sourceforge.net/devel/coding_guide.html#licenses) but
> we
> > have more licensing flexibility in a toolkit, though we prefer to keep
> > everything BSD compatible where possible. And of course you would need
> to
> > agree to maintain it :-) but I think many users would appreciate a GUI
> plot
> > configuration dialog.
>
> I was not aware of this license restriction in matplotlib... I fully
> understand the motivation, of course, but still: I wrote all this on
> my free time which means no PyQt4 commercial license, so it can't be
> anything but GPL. Sorry...
>
I think you have overlooked a subtlety of PyQt4's license. The author of
PyQt4 wrote on the enthought-dev mailing list:
"PyQt is GPL but has exceptions that allow it to be used with BSD code -
hence it's Ok for TraitsBackendQt to be BSD.
However, the exception imposes additional conditions which, to all intents
and purposes, infects the code with the GPL. To be fair to people that
should be made clear in any text.
It's still a good idea for TraitsBackendQt to use a BSD license because it
allows commercial (ie. non-GPL) users to use it without problems."
Darren
From: Pierre R. <co...@py...> - 2009年04月28日 16:19:48
2009年4月28日 John Hunter <jd...@gm...>:
>
>
> On Tue, Apr 28, 2009 at 8:18 AM, Pierre Raybaut <co...@py...>
> wrote:
>>
>> Hi all,
>>
>> I would like to contribute to matplotlib with this enhancement for the
>> PyQt4 backend: the idea is to add a toolbar button to configure figure
>> options (axes, curves, ...).
>>
>> It's based on a tiny module called formlayout to generate PyQt4 form
>> dialog automatically.
>>
>> Some screenshots:
>> http://code.google.com/p/formlayout/
>>
>> So, if you're interested (all the following is GPL2):
>>
>> *matplotlib patch*
>>
>> In FigureManagerQT.__init__, added:
>> self.canvas.axes = self.canvas.figure.add_subplot(111)
>>
>> In NavigationToolbar2QT._init_toolbar, added:
>> a = self.addAction(self._icon("customize.png"), 'Customize',
>> self.edit_parameters)
>> a.setToolTip('Edit curves line and axes parameters')
>>
>> Added the following method in NavigationToolbar2QT:
>> def edit_parameters(self):
>>  from figureoptions import figure_edit
>>  figure_edit(self.canvas, self)
>>
>> *additionnal modules and data*
>>
>> formlayout.py (http://code.google.com/p/formlayout/)
>> figureoptions.py (http://code.google.com/p/PyQtShell/)
>> customize.png (http://code.google.com/p/PyQtShell/)
>
> Hi Pierre -- this looks very nice (the last link is broken though , I get a
> 404 error). We would be happy to include this in matplotlib or as a
Here is the last link:
http://code.google.com/p/pyqtshell/
> toolkit. To contribute it to to mpl, the license needs to be matplotlib
> compatible
> (http://matplotlib.sourceforge.net/devel/coding_guide.html#licenses) but we
> have more licensing flexibility in a toolkit, though we prefer to keep
> everything BSD compatible where possible.  And of course you would need to
> agree to maintain it :-) but I think many users would appreciate a GUI plot
> configuration dialog.
I was not aware of this license restriction in matplotlib... I fully
understand the motivation, of course, but still: I wrote all this on
my free time which means no PyQt4 commercial license, so it can't be
anything but GPL. Sorry...
Pierre
>
> JDH
>
From: John H. <jd...@gm...> - 2009年04月28日 16:03:05
On Tue, Apr 28, 2009 at 10:59 AM, Olivier Feys <oli...@gm...>wrote:
> 0.98.5.2
>
I also am not seeing it on the 0.98 branch, so the good news is that if we
can ever get this release out as planned it should be fixed on the next
release. Or if you are happy with svn and a compiler, you can upgrade from
svn
 http://matplotlib.sourceforge.net/faq/installing_faq.html#install-svn
JDH
From: Olivier F. <oli...@gm...> - 2009年04月28日 15:59:14
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
 <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#666666">
0.98.5.2<br>
<br>
John Hunter wrote:
<blockquote
 cite="mid:88e...@ma..."
 type="cite"><br>
 <br>
 <div class="gmail_quote">On Tue, Apr 28, 2009 at 3:18 AM, Olivier
Feys <span dir="ltr">&lt;<a moz-do-not-send="true"
 href="mailto:oli...@gm...">oli...@gm...</a>&gt;</span>
wrote:<br>
 <blockquote class="gmail_quote"
 style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
 <div bgcolor="#ffffff" text="#666666"><font
 face="Helvetica, Arial, sans-serif">Hi,<br>
 <br>
I found a bug with the grid after passing by a log scale.<br>
Here is the sample code reproducing the bug : <br>
 <br>
 </font>
 <blockquote><tt>from pylab import *<br>
 <br>
plot(range(50),range(50))<br>
draw()<br>
gca().set_yscale('log')<br>
draw()<br>
gca().xaxis.grid()<br>
draw()<br>
gca().set_yscale('linear')<br>
draw()<br>
show()</tt><br>
 </blockquote>
 <br>
 <font face="Helvetica, Arial, sans-serif">The grid on the xaxis
disappears after setting back the yaxis to linear.</font><br>
 <font face="Helvetica, Arial, sans-serif">Please let me know i</font></div>
 </blockquote>
 </div>
 <br>
 <br>
I am not seeing this with svn matplotlib -- what version are you using?<br>
 <br>
&nbsp; <a moz-do-not-send="true"
 href="http://matplotlib.sourceforge.net/faq/troubleshooting_faq.html#report-a-problem">http://matplotlib.sourceforge.net/faq/troubleshooting_faq.html#report-a-problem</a><br>
&nbsp; <a moz-do-not-send="true"
 href="http://matplotlib.sourceforge.net/faq/troubleshooting_faq.html#obtaining-matplotlib-version">http://matplotlib.sourceforge.net/faq/troubleshooting_faq.html#obtaining-matplotlib-version</a><br>
 <br>
JDH<br>
</blockquote>
<br>
</body>
</html>
From: John H. <jd...@gm...> - 2009年04月28日 15:50:16
On Tue, Apr 28, 2009 at 3:18 AM, Olivier Feys <oli...@gm...>wrote:
> Hi,
>
> I found a bug with the grid after passing by a log scale.
> Here is the sample code reproducing the bug :
>
> from pylab import *
>
> plot(range(50),range(50))
> draw()
> gca().set_yscale('log')
> draw()
> gca().xaxis.grid()
> draw()
> gca().set_yscale('linear')
> draw()
> show()
>
>
> The grid on the xaxis disappears after setting back the yaxis to linear.
> Please let me know i
>
I am not seeing this with svn matplotlib -- what version are you using?
http://matplotlib.sourceforge.net/faq/troubleshooting_faq.html#report-a-problem
http://matplotlib.sourceforge.net/faq/troubleshooting_faq.html#obtaining-matplotlib-version
JDH
From: John H. <jd...@gm...> - 2009年04月28日 14:17:21
On Tue, Apr 28, 2009 at 8:18 AM, Pierre Raybaut <co...@py...>wrote:
> Hi all,
>
> I would like to contribute to matplotlib with this enhancement for the
> PyQt4 backend: the idea is to add a toolbar button to configure figure
> options (axes, curves, ...).
>
> It's based on a tiny module called formlayout to generate PyQt4 form
> dialog automatically.
>
> Some screenshots:
> http://code.google.com/p/formlayout/
>
> So, if you're interested (all the following is GPL2):
>
> *matplotlib patch*
>
> In FigureManagerQT.__init__, added:
> self.canvas.axes = self.canvas.figure.add_subplot(111)
>
> In NavigationToolbar2QT._init_toolbar, added:
> a = self.addAction(self._icon("customize.png"), 'Customize',
> self.edit_parameters)
> a.setToolTip('Edit curves line and axes parameters')
>
> Added the following method in NavigationToolbar2QT:
> def edit_parameters(self):
> from figureoptions import figure_edit
> figure_edit(self.canvas, self)
>
> *additionnal modules and data*
>
> formlayout.py (http://code.google.com/p/formlayout/)
> figureoptions.py (http://code.google.com/p/PyQtShell/)
> customize.png (http://code.google.com/p/PyQtShell/)
Hi Pierre -- this looks very nice (the last link is broken though , I get a
404 error). We would be happy to include this in matplotlib or as a
toolkit. To contribute it to to mpl, the license needs to be matplotlib
compatible (
http://matplotlib.sourceforge.net/devel/coding_guide.html#licenses) but we
have more licensing flexibility in a toolkit, though we prefer to keep
everything BSD compatible where possible. And of course you would need to
agree to maintain it :-) but I think many users would appreciate a GUI plot
configuration dialog.
JDH
From: Pierre R. <co...@py...> - 2009年04月28日 13:18:33
Hi all,
I would like to contribute to matplotlib with this enhancement for the
PyQt4 backend: the idea is to add a toolbar button to configure figure
options (axes, curves, ...).
It's based on a tiny module called formlayout to generate PyQt4 form
dialog automatically.
Some screenshots:
http://code.google.com/p/formlayout/
So, if you're interested (all the following is GPL2):
*matplotlib patch*
In FigureManagerQT.__init__, added:
self.canvas.axes = self.canvas.figure.add_subplot(111)
In NavigationToolbar2QT._init_toolbar, added:
a = self.addAction(self._icon("customize.png"), 'Customize',
self.edit_parameters)
a.setToolTip('Edit curves line and axes parameters')
Added the following method in NavigationToolbar2QT:
def edit_parameters(self):
 from figureoptions import figure_edit
 figure_edit(self.canvas, self)
*additionnal modules and data*
formlayout.py (http://code.google.com/p/formlayout/)
figureoptions.py (http://code.google.com/p/PyQtShell/)
customize.png (http://code.google.com/p/PyQtShell/)
cheers,
Pierre
From: Olivier F. <oli...@gm...> - 2009年04月28日 08:36:24
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#666666">
<font face="Helvetica, Arial, sans-serif">Hi,<br>
<br>
I found a bug with the grid after passing by a log scale.<br>
Here is the sample code reproducing the bug : <br>
<br>
</font>
<blockquote><tt>from pylab import *<br>
 <br>
plot(range(50),range(50))<br>
draw()<br>
gca().set_yscale('log')<br>
draw()<br>
gca().xaxis.grid()<br>
draw()<br>
gca().set_yscale('linear')<br>
draw()<br>
show()</tt><br>
</blockquote>
<br>
<font face="Helvetica, Arial, sans-serif">The grid on the xaxis
disappears after setting back the yaxis to linear.</font><br>
<font face="Helvetica, Arial, sans-serif">Please let me know if this is
the right place for posting this kind of message. If not, where can I
do that ?<br>
<br>
Thanks <br>
<br>
Olivier<br>
</font>
</body>
</html>
From: Sandro T. <mo...@de...> - 2009年04月28日 00:27:37
On Sun, Apr 26, 2009 at 18:08, John Hunter <jd...@gm...> wrote:
> On Sun, Apr 26, 2009 at 9:05 AM, Sandro Tosi <mo...@de...> wrote:
>>
>> Hi!
>> some days ago there was a thread about new matplotlib release, but it
>> seems there is some problem about windows binary pacakges preparation.
>>
>> Is this situation evolved a bit? Would it be considerable to do a
>> source-only release (there are a lot of changes in the svn that our
>> users would like to see), and then work on binary packages?
>
> Yes, we had problems with both the OSX and win32 builds, which we have not
> resolved yet unfortunately. The problem with a "source only" release is
> that on the sf download site, users will be directed to the latest release,
> and there will be no binaries available there. I suppose we could reupload
> the old binaries there, but I would prefer to et these issues resolved. I
Ah, I see.
> have had a crazy few weeks (first vacation, then my mom broke both her arms
> on vavation with me requiring surgery on both sides, and I've been spending
> time with her helping her recover), and I am just starting to get back into
> normal life here (meaning I'm behind on non-mpl things as well)
Ohh, sorry to hear that! take your time.
Cheers,
-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi

Showing 11 results of 11

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /