Posts by csassis • 83 points
6 posts
- 
		1 votes0 answers110 viewsQ: 2 Flash canvas animations on the same HTML pageI need to put 2 Flash animations on one page, appears only 1 animation, the other is blank. I tried to make 2 "inits" but it didn’t work, When I went to export, I managed to libs with different… 
- 
		1 votes0 answers63 viewsQ: Error loading uwsgi - cannot be Loaded as Python moduleI made the settings to work Django with Apache, but always gives the following error: cannot be Loaded as Python module My file: import os import sys… 
- 
		0 votes1 answer229 viewsQ: uwsgi configuration for high trafficI have a Django application and I’m having trouble configuring my server for high traffic. It’s very slow with few accesses. see my setup: [uwsgi] chdir =… 
- 
		3 votes1 answer156 viewsQ: Replace text BeautifulsoupI have the following html: <p>Um acidente no cruzamento da rua ... </p> <div id="marca"></div> <p>Um acidente no cruzamento ......</p> <div… 
- 
		-1 votes1 answer515 viewsQ: Convert Nginx redirect rule to . htaccessI have the following rule on an Nginx server in production: server { server_name meusite.srv.br; rewrite ^(.*) http://www.meusite.srv.br$1 permanent; } server { server_name www.meusite.srv.br;… 
- 
		3 votes2 answers2867 viewsQ: Assign selected item in a <select>I have the following code: $("#cep").on('mouseout', function() { var url = "http://cep.republicavirtual.com.br/web_cep.php"; var cep = $(this).val(); $.ajax({ type: "GET", dataType: 'json', data:…