User samuraisam - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T00:19:19Zhttp://stackoverflow.com/feeds/user/42751http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1580922/alternative-to-dreamweaver/1580925#15809253Answer by samuraisam for Alternative to Dreamweaver?samuraisam2009-10-16T23:44:03Z2009-10-16T23:44:03Z<p>Notepad++ is the best for Window: <a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">http://notepad-plus.sourceforge.net/uk/site.htm</a></p>
http://stackoverflow.com/questions/1574513/building-django-app-using-comet-orbited-on-apache-use-modwsgi-or-modpython/1574586#15745862Answer by samuraisam for Building Django app using Comet/Orbited on Apache, use mod_wsgi or mod_python?samuraisam2009-10-15T19:39:19Z2009-10-15T19:39:19Z<ol>
<li><p>Yes, absolutely.</p></li>
<li><p>I would probably use Orbited as implemented by Dark Porter - It's the simplest solution to get your code running, and implemented in pure python. Not to mention, based on Twisted and thus <em>very</em> scalable, and has a well-established community of Django users.</p></li>
</ol>
http://stackoverflow.com/questions/1562244/mysql-j-connector-unloads-mysteriously-under-tomcat-6-jdk-61Mysql/j Connector Unloads Mysteriously Under Tomcat 6/JDK 6samuraisam2009-10-13T18:55:24Z2009-10-13T19:12:44Z
<p>Hello - Thank you for taking time to look at my question.</p>
<p>I developing a Java WAR file intended for distribution to only one server at a time. So far, I have tested on 3 different servers with success, one Debian, one Ubuntu and the other, the Windows machine I'm developing on.</p>
<p>On the final deployment server, for some reason the app deploys fine, and upon each startup, runs well for about 3 minutes. Database connectivity works, everything runs fine. After 3 minutes however, I start seeing NoClassDefFoundError's consistently every time the app tries to access the DB.</p>
<p>I'm the following libraries with all of them packaged in the WAR file:</p>
<p>Mysql/j Connecter, latest version
ActiveObjects, 0.8.2
Jasorb 1.3
Jython 2.5.1 (for some scripting)
Tomcat 6.0.20
mod_python
Apache</p>
<p>The error:</p>
<blockquote>
<p>Exception in thread "Timer-4"
java.lang.NoClassDefFoundError:
com/mysql/jdbc/SQLError
at com.mysql.jdbc.Util.handleNewInstance(Util.java:430)
at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:352)
at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:284)
at java.sql.DriverManager.getConnection(DriverManager.java:582)
at java.sql.DriverManager.getConnection(DriverManager.java:185)
at net.java.ao.DatabaseProvider.getConnectionImpl(DatabaseProvider.java:771)
at net.java.ao.DatabaseProvider.getConnection(DatabaseProvider.java:734)
at net.java.ao.EntityManager.find(EntityManager.java:666)
at net.java.ao.EntityManager.find(EntityManager.java:607)
at net.java.ao.EntityManager.find(EntityManager.java:579)
at com.sq.sa.SAPushAlertsTask.run(SAPushAlertsTask.java:32)
at java.util.TimerThread.mainLoop(Timer.java:512)
at java.util.TimerThread.run(Timer.java:462)
Caused by:
java.lang.ClassNotFoundException:
com.mysql.jdbc.SQLError
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:138
7)
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:123
3)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
... 13 more</p>
</blockquote>
http://stackoverflow.com/questions/1562246/separating-manytomanyfields-in-a-template/1562298#15622980Answer by samuraisam for Separating ManyToManyFields in a templatesamuraisam2009-10-13T19:06:34Z2009-10-13T19:06:34Z<p>Use Django's regroup tag: <a href="http://docs.djangoproject.com/en/dev/ref/templates/builtins/#regroup" rel="nofollow">http://docs.djangoproject.com/en/dev/ref/templates/builtins/#regroup</a></p>
<p>Would probably end up looking something like:</p>
<pre><code>{% regroup vehicle.features.all by type as vehicle_features %}
{% for feature in vehicle_features %}
{% ifequal feature "Interior" %}
<li>{{feature}}</li>
{% endifequal %}
{% endfor %}
</code></pre>
http://stackoverflow.com/questions/1225383/rounded-uiview-with-shadow0Rounded UIView with Shadow?samuraisam2009-08-04T01:38:14Z2009-09-09T14:03:41Z
<p>So using this link:
<a href="http://stackoverflow.com/questions/805872/how-do-i-draw-a-shadow-under-a-uiview">http://stackoverflow.com/questions/805872/how-do-i-draw-a-shadow-under-a-uiview</a></p>
<p>And this link:
<a href="http://iphonedevelopment.blogspot.com/2008/11/creating-transparent-uiviews-rounded.html" rel="nofollow">http://iphonedevelopment.blogspot.com/2008/11/creating-transparent-uiviews-rounded.html</a></p>
<p>I came upon this implementation:</p>
<pre><code>- (void)drawRect:(CGRect)rect {
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSaveGState(context);
CGContextSetShadow(context, CGSizeMake(-15.0f, 20.0f), 5.0f);
CGContextSetLineWidth(context, strokeWidth);
CGContextSetStrokeColorWithColor(context, self.strokeColor.CGColor);
CGContextSetFillColorWithColor(context, self.rectColor.CGColor);
CGRect rrect = self.bounds;
CGFloat radius = cornerRadius;
CGFloat width = CGRectGetWidth(rrect);
CGFloat height = CGRectGetHeight(rrect);
// Make sure corner radius isn't larger than half the shorter side
if (radius > width/2.0)
radius = width/2.0;
if (radius > height/2.0)
radius = height/2.0;
CGFloat minx = CGRectGetMinX(rrect);
CGFloat midx = CGRectGetMidX(rrect);
CGFloat maxx = CGRectGetMaxX(rrect);
CGFloat miny = CGRectGetMinY(rrect);
CGFloat midy = CGRectGetMidY(rrect);
CGFloat maxy = CGRectGetMaxY(rrect);
CGContextMoveToPoint(context, minx, midy);
CGContextAddArcToPoint(context, minx, miny, midx, miny, radius);
CGContextAddArcToPoint(context, maxx, miny, maxx, midy, radius);
CGContextAddArcToPoint(context, maxx, maxy, midx, maxy, radius);
CGContextAddArcToPoint(context, minx, maxy, minx, midy, radius);
CGContextClosePath(context);
CGContextDrawPath(context, kCGPathFillStroke);
CGContextRestoreGState(context);
}
</code></pre>
<p>However when it draws, the shadow is clipped to the bounds of the view. I have tried setting self.clipsToBounds = NO however this doesn't affect the problem.</p>
http://stackoverflow.com/questions/1140817/how-to-model-an-n-to-n-relationship-in-objective-c/1141017#11410170Answer by samuraisam for How to model an n-to-n relationship in Objective-C?samuraisam2009-07-17T00:45:10Z2009-07-17T00:45:10Z<p>You can use <a href="http://code.google.com/p/sqlitepersistentobjects/" rel="nofollow">SQLLitePersistentObjects</a>:</p>
<p>It allows you to define code like the following:</p>
<pre><code>#import "SQLLitePersistentObjects.h"
@interface CFCategory : SQLLitePersistentObject {
NSString *name;
CFRegion *region; // where region is another subclass of SQLLitePersistentObject
}
@property(nonatomic, retain, readwrite) NSString *name;
@property(nonatomic, retain, readwrite) CFRegion *region;
@end
</code></pre>
<p>And use it in your code:</p>
<pre><code>CFRegion *region = [CFCategory findByRegion:[myRegionObject pk]];
</code></pre>
<p>Memory and persistence is automatically handled by the framework. However, if you are working with large data sets be sure to use NSArray objects with the paired arrays functionality instead of allocating and deallocating hundreds or thousands of SQLLitePersistentObjects.</p>
http://stackoverflow.com/questions/665111/nsnumberformatter-to-format-us-telephone-numbers1NSNumberFormatter to format US Telephone Numberssamuraisam2009-03-20T05:49:59Z2009-06-04T20:39:36Z
<p>I'm trying to convert a string of numbers, entered by the user, into a sexy string like Phone.app on the iPhone. Here is the code I'm using, which doesn't work (no special format comes out) and after a certain number of digits it just starts adding "0" to the end of the string.</p>
<pre><code>NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
[formatter setNumberStyle:NSNumberFormatterNoStyle];
[formatter setPositiveFormat:@"+# (###) ###-###"];
[formatter setLenient:YES];
NSString *strDigits = [self stringByReplacingOccurrencesOfRegex:@"[^0-9+]" withString:@""];
return [formatter stringFromNumber:[NSNumber numberWithDouble:[strDigits doubleValue]]];
</code></pre>
http://stackoverflow.com/questions/784169/quick-brush-up-on-c-for-a-c-obj-c-programmer0Quick brush-up on C++ for a C/Obj-C programmer?samuraisam2009-04-24T01:08:31Z2009-04-24T04:50:54Z
<p>I'm being offered a C++ job and need a quick brush-up project so I can become fluent in the language again. Currently I develop iPhone applications and became fluent in C/Obj-C from a background of Python, Java and C# in a matter of days. I'm looking for an idea for a small project, or a brush-up sort of course online that I can complete quickly. I know C++ is a weird language, so this is why I ask. The company mainly develops embedded applications.</p>
http://stackoverflow.com/questions/694366/how-can-i-make-this-recursive-crawl-function-iterative0How can I make this recursive crawl function iterative?samuraisam2009-03-29T09:13:29Z2009-03-30T17:39:55Z
<p>For academic and performance sake, given this crawl recursive web-crawling function (which crawls only within the given domain) what would be the best approach to make it run iteratively? Currently when it runs, by the time it finishes python has climbed to using over 1GB of memory which isn't acceptable for running in a shared environment.</p>
<pre><code> def crawl(self, url):
"Get all URLS from which to scrape categories."
try:
links = BeautifulSoup(urllib2.urlopen(url)).findAll(Crawler._match_tag)
except urllib2.HTTPError:
return
for link in links:
for attr in link.attrs:
if Crawler._match_attr(attr):
if Crawler._is_category(attr):
pass
elif attr[1] not in self._crawled:
self._crawled.append(attr[1])
self.crawl(attr[1])
</code></pre>
http://stackoverflow.com/questions/694366/how-can-i-make-this-recursive-crawl-function-iterative/697001#6970012Answer by samuraisam for How can I make this recursive crawl function iterative?samuraisam2009-03-30T12:33:44Z2009-03-30T12:33:44Z<p>@Mehrdad - Thank you for your reply, the example you provided was concise and easy to understand.</p>
<p>The solution:</p>
<pre><code> def crawl(self, url):
urls = Queue(-1)
_crawled = []
urls.put(url)
while not urls.empty():
url = urls.get()
try:
links = BeautifulSoup(urllib2.urlopen(url)).findAll(Crawler._match_tag)
except urllib2.HTTPError:
continue
for link in links:
for attr in link.attrs:
if Crawler._match_attr(attr):
if Crawler._is_category(attr):
continue
else:
Crawler._visit(attr[1])
if attr[1] not in _crawled:
urls.put(attr[1])
</code></pre>
http://stackoverflow.com/questions/58711/how-would-you-design-a-very-pythonic-ui-framework/336525#3365255Answer by samuraisam for How would you design a very "Pythonic" UI framework?samuraisam2008-12-03T08:48:06Z2008-12-03T08:48:06Z<pre><code>## All you need is this class:
class MainWindow(Window):
my_button = Button('Click Me')
my_paragraph = Text('This is the text you wish to place')
my_alert = AlertBox('What what what!!!')
@my_button.clicked
def my_button_clicked(self, button, event):
self.my_paragraph.text.append('And now you clicked on it, the button that is.')
@my_paragraph.text.changed
def my_paragraph_text_changed(self, text, event):
self.button.text = 'No more clicks!'
@my_button.text.changed
def my_button_text_changed(self, text, event):
self.my_alert.show()
## The Style class is automatically gnerated by the framework
## but you can override it by defining it in the class:
##
## class MainWindow(Window):
## class Style:
## my_blah = {'style-info': 'value'}
##
## or like you see below:
class Style:
my_button = {
'background-color': '#ccc',
'font-size': '14px'}
my_paragraph = {
'background-color': '#fff',
'color': '#000',
'font-size': '14px',
'border': '1px solid black',
'border-radius': '3px'}
MainWindow.Style = Style
## The layout class is automatically generated
## by the framework but you can override it by defining it
## in the class, same as the Style class above, or by
## defining it like this:
class MainLayout(Layout):
def __init__(self, style):
# It takes the custom or automatically generated style class upon instantiation
style.window.pack(HBox().pack(style.my_paragraph, style.my_button))
MainWindow.Layout = MainLayout
if __name__ == '__main__':
run(App(main=MainWindow))
</code></pre>
<p>It would be relatively easy to do in python with a bit of that metaclass python magic know how. Which I have. And a knowledge of PyGTK. Which I also have. Gets ideas?</p>
http://stackoverflow.com/questions/1562244/mysql-j-connector-unloads-mysteriously-under-tomcat-6-jdk-6/1562326#1562326Comment by samuraisam on Mysql/j Connector Unloads Mysteriously Under Tomcat 6/JDK 6samuraisam2009-10-16T23:00:20Z2009-10-16T23:00:20ZChssPly76 - thank you so much, again, for your help! I think not using a connection pool was my exact problem! It turns out, ActiveObjects will automatically try to use a connection pool if one is available. In my other deployments, hibernate and C3P0 were on the classpath, which ActiveObjects was automatically using as it's provider. On the production server, it created a new connection each request leading to a lot of weird errors - some of which I still can't explain.http://stackoverflow.com/questions/1574513/building-django-app-using-comet-orbited-on-apache-use-modwsgi-or-modpython/1574586#1574586Comment by samuraisam on Building Django app using Comet/Orbited on Apache, use mod_wsgi or mod_python?samuraisam2009-10-16T22:52:55Z2009-10-16T22:52:55ZAwesome, if you have any trouble, let me know. I just completed a server a lot like the one you're planning, and went through several implementations. Since you're on a VPS, remember you're not limited to just Apache front ends. http://stackoverflow.com/questions/1562244/mysql-j-connector-unloads-mysteriously-under-tomcat-6-jdk-6/1562326#1562326Comment by samuraisam on Mysql/j Connector Unloads Mysteriously Under Tomcat 6/JDK 6samuraisam2009-10-15T21:06:50Z2009-10-15T21:06:50ZIt's possible that could be a side effect of using ActiveObjects. I haven't specified anything special in the configuration of ActiveObjects or JDBC besides supply a jdbc connection string to ActiveObjects. Is using tomcat's datasource functionality more portable/reliable?http://stackoverflow.com/questions/1562244/mysql-j-connector-unloads-mysteriously-under-tomcat-6-jdk-6/1562326#1562326Comment by samuraisam on Mysql/j Connector Unloads Mysteriously Under Tomcat 6/JDK 6samuraisam2009-10-15T20:28:43Z2009-10-15T20:28:43ZReally stretching here... perhaps I should build the WAR on a *nix machine instead of Windows?http://stackoverflow.com/questions/1562244/mysql-j-connector-unloads-mysteriously-under-tomcat-6-jdk-6/1562326#1562326Comment by samuraisam on Mysql/j Connector Unloads Mysteriously Under Tomcat 6/JDK 6samuraisam2009-10-15T20:21:14Z2009-10-15T20:21:14ZI have checked it with manager - the path it's deployed under stays deployed. I just made the servlet you recommended, and down the rabbit hole we go... <code>SQLError e = new SQLError(); out.println(e.toString());</code> yields <code>com.mysql.jdbc.SQLError@1db8962</code> when I hit the URL in my app's context. If the app fails from here on out - I'll let you know. Perhaps there is a bug in ActiveObjects? Thank you again for your help!http://stackoverflow.com/questions/1562244/mysql-j-connector-unloads-mysteriously-under-tomcat-6-jdk-6/1562326#1562326Comment by samuraisam on Mysql/j Connector Unloads Mysteriously Under Tomcat 6/JDK 6samuraisam2009-10-15T02:00:34Z2009-10-15T02:00:34ZTurned the logging <i>WAY</i> up on tomcat - and get the following output every second or so: <a href="http://pastie.org/655501" rel="nofollow">pastie.org/655501</a>http://stackoverflow.com/questions/1562244/mysql-j-connector-unloads-mysteriously-under-tomcat-6-jdk-6/1562326#1562326Comment by samuraisam on Mysql/j Connector Unloads Mysteriously Under Tomcat 6/JDK 6samuraisam2009-10-15T01:43:13Z2009-10-15T01:43:13ZSorry to keep bugging you - but, any more ideas?http://stackoverflow.com/questions/1562244/mysql-j-connector-unloads-mysteriously-under-tomcat-6-jdk-6/1562326#1562326Comment by samuraisam on Mysql/j Connector Unloads Mysteriously Under Tomcat 6/JDK 6samuraisam2009-10-15T01:36:53Z2009-10-15T01:36:53ZI still seem to be having the same issue. With a fresh tomcat install, I have been running by manually setting JRE_HOME and CLASSPATH like so: <code>JRE_HOME=/usr/local/java CLASSPATH='' /usr/local/tomcat/bin/startup.sh</code> It works for a few hours then starts throwing the same errors again - NoClassDefFoundError for SQLError. Here is the stack trace from a JSON client: <a href="http://pastie.org/655478" rel="nofollow">pastie.org/655478</a>http://stackoverflow.com/questions/1562244/mysql-j-connector-unloads-mysteriously-under-tomcat-6-jdk-6/1562326#1562326Comment by samuraisam on Mysql/j Connector Unloads Mysteriously Under Tomcat 6/JDK 6samuraisam2009-10-13T20:24:11Z2009-10-13T20:24:11ZNo, this is <i>supposed</i> to be a fresh tomcat install (no other apps deployed either). I've tried all combinations of WAR/exploded war, hot loading/config loading... I'm guessing something was borked, so I'll try to re-install it myself and run with an empty CLASSPATH. Thank you so much for your help ChssPly76. I'll give your suggestions a try.http://stackoverflow.com/questions/1562244/mysql-j-connector-unloads-mysteriously-under-tomcat-6-jdk-6/1562326#1562326Comment by samuraisam on Mysql/j Connector Unloads Mysteriously Under Tomcat 6/JDK 6samuraisam2009-10-13T19:56:24Z2009-10-13T19:56:24ZIt get's more strange - The app isn't even <i>deployed</i>, and the MySQL/j connector isn't in the tomcat/lib directory however, the stack traces from the above post keep getting dumped to tomcat/logs/catalina.out. Is my tomcat installation borked? Thank you again for your help!http://stackoverflow.com/questions/1562244/mysql-j-connector-unloads-mysteriously-under-tomcat-6-jdk-6/1562326#1562326Comment by samuraisam on Mysql/j Connector Unloads Mysteriously Under Tomcat 6/JDK 6samuraisam2009-10-13T19:21:43Z2009-10-13T19:21:43ZThank you for replying. I have tried removing the mysql/j connector from my WAR file and moving it to tomcat/libs. This produces a much larger stack trace that hopefully will be useful:
<a href="http://pastie.org/653416" rel="nofollow">pastie.org/653416</a>
Thank you so much!http://stackoverflow.com/questions/1225383/rounded-uiview-with-shadow/1399892#1399892Comment by samuraisam on Rounded UIView with Shadow?samuraisam2009-09-10T11:43:16Z2009-09-10T11:43:16Zyes, i shall be posting the code to soon!