User kevzettler - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T02:05:05Zhttp://stackoverflow.com/feeds/user/93212http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1801018/why-is-this-jquery-animate-call-so-slow/1811078#18110781Answer by kevzettler for why is this jQuery .animate call so slow?kevzettler2009-11-28T00:09:08Z2009-11-28T00:09:08Z<p>After some arduous troubleshooting i tracked it down to being an issue with the browser detection loop in the disable method:</p>
<pre><code> jQuery.each(jQuery.browser, function(i) {
if($.browser.msie){
//module.css("display","none");
//if using ie give sheild a transparent background layout
}else{
console.time('animate');
module.animate({opacity : 0.5}, 200, function(){console.timeEnd('animate');});
}
});
</code></pre>
<p>Commenting this block out brought everything up to speed. I almost pulled my hair out after trying to optimize everything else.</p>
http://stackoverflow.com/questions/1801018/why-is-this-jquery-animate-call-so-slow1why is this jQuery .animate call so slow?kevzettler2009-11-26T01:03:49Z2009-11-28T00:09:08Z
<p>Hi All I have a pretty straight forward function</p>
<pre><code>enableModule : function(moduleName){
var module = $('div#'+moduleName);
console.log('enabling '+moduleName);
console.time('animate');
module.animate({'opacity' : '1.0'}, 300, function(){console.timeEnd('animate');});
module.find('.disabled_sheild').remove();
module.removeClass('disabled');
console.log('end of enable Module');
}
</code></pre>
<p>The animation its self, the opacity change, is very fast but there is like a delay in calling it. the console.time() is reporting times of 2540MS and greater. I'm thinking it may be because the div#module is being animated along with its children? but this dosent make sense because I have another function "disableModule" which does the same thing in reverse and runs at a reasonable speed.</p>
<p>Here is the disable Module function, considerably more going on but returns times of about 242ms</p>
<pre><code>disableModule : function(moduleName){
$('div#'+moduleName+', div.'+moduleName).each(function(){
var module = $(this);
module.prepend('<div class="disabled_sheild"></div>');
var sheild = module.find('.disabled_sheild');
sheild.css({'position' : 'absolute', 'z-index' : '200'});
sheild.width(module.width());
sheild.height(module.height());
jQuery.each(jQuery.browser, function(i) {
if($.browser.msie){
//module.css("display","none");
//if using ie give sheild a transparent background layout
}else{
console.time('animate');
module.animate({'opacity' : '0.5'}, function(){ console.timeEnd('animate');});
}
});
});
}
</code></pre>
http://stackoverflow.com/questions/948682/how-to-keep-php-view-source-html-output-clean1How to keep PHP 'View Source' html output cleankevzettler2009-06-04T05:06:01Z2009-11-26T21:12:17Z
<p>This has been bugging me today after checking the source out on a site. I use PHP output in my templates for dynamic content. The templates start out in html only, and are cleanly indented and formatted. The PHP content is then added in and indented to match the html formating. </p>
<pre><code><ul>
<li>nav1</li>
<li>nav2</li>
<li>nav3</li>
</ul>
</code></pre>
<p>Becomes:</p>
<pre><code><ul>
<?php foreach($navitems as $nav):?>
<li><?=$nav?></li>
<?php endforeach; ?>
</ul>
</code></pre>
<p>When output in html, the encapsulated PHP lines are dropped but the white space used to format them are left in and throws the view source formatting all out of whack. The site I mentioned is cleanly formatted on the view source output. Should I assume they are using some template engine? Also would there be any way to clean up the kind of templates I have? with out manually removing the whitespace and sacrificing readability on the dev side?</p>
http://stackoverflow.com/questions/1767699/how-to-pass-external-variables-to-a-private-javascript-outer-closure-function0How to pass external variables to a private javascript outer closure function?kevzettler2009-11-20T01:04:56Z2009-11-20T02:25:48Z
<p>I may have made some poor design choices on this one. I have several objects being instanced like this.</p>
<pre><code>core.modules.trial = function(sandbox){
return{
alert_private : function(){
alert(omgpi);
}
};
};
</code></pre>
<p>I would like to do this:</p>
<pre><code> core.modules.trial[omgpi] = "external private var";
var trial = core.modules.trial();
trial.alert_private(); //would hopefully output "external private var"
</code></pre>
<p>I am trying to assign the <strong>omgpi</strong> variable to the private scope of the outer function. Normally you would do var omgpi within the outer function before returning anything. But I am trying to do this from an external script when this function is called</p>
http://stackoverflow.com/questions/1745757/how-to-limit-dom-interaction-to-an-element-and-its-children0How to Limit DOM interaction to an element and its children?kevzettler2009-11-17T00:15:42Z2009-11-17T00:18:29Z
<p>I am building a modular frame work for a PHP MVC site. I am using Jquery. I have a registerModule('module_name') method that when called creates an instance of a module object with this name. These module objects are functions that return an object they are contained within individual script files </p>
<p>example of test_module.js</p>
<pre><code>core.modoules.test_module = function(sandbox){
return{
init : function(){
}
};
};
</code></pre>
<p>within the registerModule() method I am handling inheritance and initialization. On initialization I would like to check the DOM for an element matching this module. For this example we'd look for a div with id "test_module" and i would like to limit any DOM interaction with in the test_module object to be with in that DOM scope. I currently am using jQuery's selectors but have the feeling I may need to right my own dom wrapper or something. Any ideas on this?</p>
http://stackoverflow.com/questions/1587037/how-to-structure-javascript-architecture-to-compliment-a-php-mvc-web-app0How to structure Javascript architecture to compliment a PHP MVC web app?kevzettler2009-10-19T04:59:02Z2009-10-19T04:59:02Z
<p>I am working on a new JavaScript architecture for a web app iteration. The previous iteration had lots of inline code, scattered includes, no directory structure for .js files and everything was in the global namespace. I am aiming to: keep the script includes in the footer, keep everything in an application namespace/object, add organization to the .js files and minify all the application specific files in to one bundle.js</p>
<p>I am trying to take a modular approach based on Nicholas Zakas: “Scalable JavaScript Application Architecture” <a href="http://www.yuiblog.com/blog/2009/09/17/video-bayjax-sept-09/" rel="nofollow">http://www.yuiblog.com/blog/2009/09/17/video-bayjax-sept-09/</a></p>
<p>the site is currently structred like so</p>
<pre><code>/app
/models
/views
/home
/auth
/meta
about.tpl
contact.tpl
privacy.tpl
/controllers
home.php
auth.php
meta.php
/public
/js
core.js
/modules
module files here
/jquery
jqueryplugins here
/controllers
home.js
auth.js
meta.js
</code></pre>
<p>the controllers have methods which correspond to our url routing and view rendering. For example <a href="http://localhost/meta/contact" rel="nofollow">http://localhost/meta/contact</a> would call the "contact" action on the "meta" controller and render the meta/contact template.</p>
<p>I am planning the js architecture around a single initialization call to the apps global object passing it the controller and method as arguments i.e. </p>
<pre><code>localwebapp.init(controller, method);
</code></pre>
<p>At this point in the design I am struggling on inheritance and module implementation. Some modules will be global and be used throughout all the site, some modules will be used through out specific controllers, and some modules will be on controller actions only.
Modules are independent and will not communicate with each other they will need to be assigned to a "sandbox" which they will check with for event triggers</p>
<p>I'm thinking I will need sandbox and module classes. The controller scripts will basically be a few lines of modules being assigned to the sandbox and initialized.</p>
<p>Let me know if I am reinventing a wheel here. Any direction is much appreciated. I have looked in to javascript MVC frame works like JavaScriptMVC but it looks like it is not what I need</p>
http://stackoverflow.com/questions/1425313/how-to-order-concurrent-google-image-searches-in-order-of-execution/1431972#14319720Answer by kevzettler for How to order concurrent google image searches in order of execution?kevzettler2009-09-16T09:34:57Z2009-09-16T09:34:57Z<p>this is what I ended up doing encase any one is interested and for self reminder</p>
<pre><code>google.load('search','1');
function checkImages(){
// Here is the closure!
var myClosure = function(img){return function(){
if(this.results&&this.results.length>0){
var result = this.results[0];
img.src = result.tbUrl;
img.alt = result.titleNoFormatting;
}
}};
var imgs = document.getElementsByTagName('img');
for(var i=0;i<imgs.length;i++){
var img=imgs[i];
if(img.src.match(/no_image.{4}/)){
var is = new google.search.ImageSearch();
is.setSearchCompleteCallback(is, myClosure(img));
is.execute(img.alt);
}
}
}
google.setOnLoadCallback(checkImages);
</code></pre>
http://stackoverflow.com/questions/1425313/how-to-order-concurrent-google-image-searches-in-order-of-execution0How to order concurrent google image searches in order of execution?kevzettler2009-09-15T05:39:16Z2009-09-16T09:34:57Z
<p>Hi all I am not sure how to approach this problem. I have a function that is passed an array of HTML img elements. It loops through these images checking the SRC attribute for images using a blank "no image" thumb nail. It then executes an image search using the img tags ALT attribute as the query. The callback function on the search then replaces the Img SRC with the first image result.</p>
<p>I am having problems matching up the correct image with the corresponding search callback. Right now I am just creating arrays and matching the returned search with an index for the images. Since the multiple searches run concurrently, depending on the size of the image or network latency they can fire the call back out of order and mix up the images.</p>
<p>I need an approach that lets me pair individual searches with html elements. Would this be possible using a searchController and multiple imageSearch objects?</p>
<p>Below is an example of the function I am using</p>
<pre><code>google.load('search', '1');
function googleFillBlanks(jqueryImages){
//namePairs holds the images matching alt text and attachedCount is used for matching up once the call back is fired
var attachedCount = 0;
var namePairs = [];
function searchComplete(searcher){
if (searcher.results && searcher.results.length > 0) {
var results = searcher.results;
var result = results[0];
$("img[alt='"+namePairs[attachedCount]+"'] ").attr('src', result.tbUrl);
//jqueryImages.get(0).attr('src', result.tbUrl);
attachedCount++;
}
}
var imageSearch = new google.search.ImageSearch();
//restrict image size
imageSearch.setRestriction(google.search.ImageSearch.RESTRICT_IMAGESIZE,
google.search.ImageSearch.IMAGESIZE_SMALL);
imageSearch.setSearchCompleteCallback(this, searchComplete, [imageSearch]);
jqueryImages.each(function(){
if($(this).attr('src').substr(-12,8) == 'no_image')
{
namePairs.push($(this).attr('alt'));
imageSearch.execute($(this).attr('alt'));
}
});
}
</code></pre>
http://stackoverflow.com/questions/1303294/how-to-find-selected-elements-with-jquery-ui-selectable1how to find selected elements with Jquery UI selectablekevzettler2009-08-20T00:11:17Z2009-08-20T14:36:10Z
<p>Hi All, I am looking for info on the event and ui objects the jquery selectable events: "selecting", and "start" take as parameters. I cannot find this in the documentation and looping through the properties is no help.</p>
<pre><code> $('#content_td_account').selectable({
filter: 'li:not(".non_draggable")',
selecting: function(event, ui) {
}
});
</code></pre>
<p>Specifically I want to find what elements are being selected and check them to see if their parent elements are the same or not. I assumed this would be in the ui object some where. </p>
http://stackoverflow.com/questions/1054056/how-can-i-optimize-this-subqueried-and-joined-mysql-query0How can I optimize this subqueried and Joined MySQL Query?kevzettler2009-06-28T02:11:51Z2009-08-07T14:18:11Z
<p>I'm pretty green on mysql and I need some tips on cleaning up a query. It is used in several variations through out a site. Its got some subquerys derived tables and fun going on. Heres the query:</p>
<pre><code># Query_time: 2 Lock_time: 0 Rows_sent: 0 Rows_examined: 0
SELECT *
FROM (
SELECT products . *, categories.category_name AS category, (
SELECT COUNT( * )
FROM distros
WHERE distros.product_id = products.product_id) AS distro_count,
(SELECT COUNT(*) FROM downloads WHERE downloads.product_id = products.product_id AND WEEK(downloads.date) = WEEK(curdate())) AS true_downloads,
(SELECT COUNT(*) FROM views WHERE views.product_id = products.product_id AND WEEK(views.date) = WEEK(curdate())) AS true_views
FROM products
INNER JOIN categories ON products.category_id = categories.category_id ORDER BY created_date DESC, true_views DESC ) AS count_table
WHERE count_table.distro_count > 0
AND count_table.status = 'published'
AND count_table.active = 1 LIMIT 0, 8
</code></pre>
<p>Heres the explain:</p>
<pre><code>+----+--------------------+------------+-------+---------------+-------------+---------+------------------------------------+------+----------------------------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+--------------------+------------+-------+---------------+-------------+---------+------------------------------------+------+----------------------------------------------+
| 1 | PRIMARY | <derived2> | ALL | NULL | NULL | NULL | NULL | 232 | Using where |
| 2 | DERIVED | categories | index | PRIMARY | idx_name | 47 | NULL | 13 | Using index; Using temporary; Using filesort |
| 2 | DERIVED | products | ref | category_id | category_id | 4 | digizald_db.categories.category_id | 9 | |
| 5 | DEPENDENT SUBQUERY | views | ref | product_id | product_id | 4 | digizald_db.products.product_id | 46 | Using where |
| 4 | DEPENDENT SUBQUERY | downloads | ref | product_id | product_id | 4 | digizald_db.products.product_id | 14 | Using where |
| 3 | DEPENDENT SUBQUERY | distros | ref | product_id | product_id | 4 | digizald_db.products.product_id | 1 | Using index |
+----+--------------------+------------+-------+---------------+-------------+---------+------------------------------------+------+----------------------------------------------+
6 rows in set (0.04 sec)
</code></pre>
<p>And the Tables:</p>
<pre><code>mysql> describe products;
+---------------+--------------------------------------------------+------+-----+-------------------+----------------+
| Field | Type | Null | Key | Default | Extra |
+---------------+--------------------------------------------------+------+-----+-------------------+----------------+
| product_id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| product_key | char(32) | NO | | NULL | |
| title | varchar(150) | NO | | NULL | |
| company | varchar(150) | NO | | NULL | |
| user_id | int(10) unsigned | NO | MUL | NULL | |
| description | text | NO | | NULL | |
| video_code | text | NO | | NULL | |
| category_id | int(10) unsigned | NO | MUL | NULL | |
| price | decimal(10,2) | NO | | NULL | |
| quantity | int(10) unsigned | NO | | NULL | |
| downloads | int(10) unsigned | NO | | NULL | |
| views | int(10) unsigned | NO | | NULL | |
| status | enum('pending','published','rejected','removed') | NO | | NULL | |
| active | tinyint(1) | NO | | NULL | |
| deleted | tinyint(1) | NO | | NULL | |
| created_date | datetime | NO | | NULL | |
| modified_date | timestamp | NO | | CURRENT_TIMESTAMP | |
| scrape_source | varchar(215) | YES | | NULL | |
+---------------+--------------------------------------------------+------+-----+-------------------+----------------+
18 rows in set (0.00 sec)
mysql> describe categories
-> ;
+------------------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+------------------+------------------+------+-----+---------+----------------+
| category_id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| category_name | varchar(45) | NO | MUL | NULL | |
| parent_id | int(10) unsigned | YES | MUL | NULL | |
| category_type_id | int(10) unsigned | NO | | NULL | |
+------------------+------------------+------+-----+---------+----------------+
4 rows in set (0.00 sec)
mysql> describe compatibilities
-> ;
+------------------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+------------------+------------------+------+-----+---------+----------------+
| compatibility_id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| name | varchar(45) | NO | | NULL | |
| code_name | varchar(45) | NO | | NULL | |
| description | varchar(128) | NO | | NULL | |
| position | int(10) unsigned | NO | | NULL | |
+------------------+------------------+------+-----+---------+----------------+
5 rows in set (0.01 sec)
mysql> describe distros
-> ;
+------------------+--------------------------------------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+------------------+--------------------------------------------------+------+-----+---------+----------------+
| id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| product_id | int(10) unsigned | NO | MUL | NULL | |
| compatibility_id | int(10) unsigned | NO | MUL | NULL | |
| user_id | int(10) unsigned | NO | | NULL | |
| status | enum('pending','published','rejected','removed') | NO | | NULL | |
| distro_type | enum('file','url') | NO | | NULL | |
| version | varchar(150) | NO | | NULL | |
| filename | varchar(50) | YES | | NULL | |
| url | varchar(250) | YES | | NULL | |
| virus | enum('READY','PASS','FAIL') | YES | | NULL | |
| downloads | int(10) unsigned | NO | | 0 | |
+------------------+--------------------------------------------------+------+-----+---------+----------------+
11 rows in set (0.01 sec)
mysql> describe downloads;
+------------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+------------+------------------+------+-----+---------+----------------+
| id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| product_id | int(10) unsigned | NO | MUL | NULL | |
| distro_id | int(10) unsigned | NO | MUL | NULL | |
| user_id | int(10) unsigned | NO | MUL | NULL | |
| ip_address | varchar(15) | NO | | NULL | |
| date | datetime | NO | | NULL | |
+------------+------------------+------+-----+---------+----------------+
6 rows in set (0.01 sec)
mysql> describe views
-> ;
+------------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+------------+------------------+------+-----+---------+----------------+
| id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| product_id | int(10) unsigned | NO | MUL | NULL | |
| user_id | int(10) unsigned | NO | MUL | NULL | |
| ip_address | varchar(15) | NO | | NULL | |
| date | datetime | NO | | NULL | |
+------------+------------------+------+-----+---------+----------------+
5 rows in set (0.00 sec)
</code></pre>
http://stackoverflow.com/questions/1191485/how-to-call-ajaxstart-on-specific-ajax-calls2How to call .ajaxStart() on specific ajax callskevzettler2009-07-28T01:23:48Z2009-07-31T14:06:14Z
<p>I have some ajax calls on the document of a site that display or hide a progress bar depending on the ajax status </p>
<pre><code> $(document).ajaxStart(function(){
$('#ajaxProgress').show();
});
$(document).ajaxStop(function(){
$('#ajaxProgress').hide();
});
</code></pre>
<p>I would like to basically overwirte these methods on other parts of the site where a lot of quick small ajax calls are made and do not need the progress bar popping in and out. I am trying to attach them to or insert them in other $.getJSON and $.ajax calls. I have tried chaining them but apparently that is no good.</p>
<pre><code>$.getJSON().ajaxStart(function(){ 'kill preloader'});
</code></pre>
http://stackoverflow.com/questions/1183523/how-to-properly-compress-jquery-and-lots-of-plugins1How to properly compress Jquery and lots of plugins?kevzettler2009-07-26T01:49:01Z2009-07-26T04:31:19Z
<p>Hi all, </p>
<p>I am trying to clean up the javascript of a site. I am finding the header of my site is looking like this and growing:</p>
<pre><code><script type="text/javascript" src="jquery.base.js"></script>
<script type="text/javascript" src="jquery.plugin1.js"></script>
<script type="text/javascript" src="jquery.plugin2.js"></script>
<script type="text/javascript" src="jquery.plugin3.js"></script>
<script type="text/javascript" src="jquery.plugin4.js"></script>
</code></pre>
<p>I am well aware of the negative effects of many http requests. The site also has lots embedded js too that will need to be pulled in to external files. I am wondering if I will be able to just copy paste all of this together and run it through some compression or will that cause issues? I hope someone has had some simillar experience.</p>
http://stackoverflow.com/questions/1019282/how-many-projects-have-you-worked-on-that-tanked/1019315#10193151Answer by kevzettler for How many projects have you worked on that tanked?kevzettler2009-06-19T18:11:50Z2009-06-19T18:11:50Z<p>I have 2 sites that have been completed but the client has then failed to publish content on. I guess this could be considered 'tanked'.</p>
http://stackoverflow.com/questions/998285/why-does-mysql-rand-hate-me1Why does MySQL Rand() hate me?kevzettler2009-06-15T20:45:31Z2009-06-16T02:53:40Z
<p>Here is a simplified query of something I am trying to do on a larger join query. It is still breaking on this small scale. I am trying to generate a random number for each row pulled back in the range of 1-60. I then want to order the returned rows by this random number.</p>
<pre><code> SELECT downloads . * ,
(FLOOR( 1 + ( RAND( ) *60 ) )) AS randomtimer
FROM downloads
ORDER BY randomtimer
LIMIT 25
</code></pre>
<p>I have 2 databases I have tried this query on. A live one and a dev one. I have side by side compared the two and they are both structurally the same. It works correctly on the dev one. returning the rows ordered by the randomtimer. </p>
<p>The live table returns all 1's in the randomtimer column. If I order by randomtimer ASC they become all 60s. If I remove randomtimer from the Order By Clause it returns correct individual values. So something is tweaking the values on the ORDER BY statment.</p>
<p>Anyone have any ideas on this? Might I be overlooking something? WTF? WTF?</p>
http://stackoverflow.com/questions/984396/how-to-get-mysql-random-integer-range0How to get mysql random integer range?kevzettler2009-06-11T23:57:12Z2009-06-16T01:02:30Z
<p>I am trying to generate a random integer for each row I select between 1 and 60 as timer.</p>
<pre><code>SELECT downloads.date, products.*, (FLOOR(1 + RAND() * 60)) AS timer
</code></pre>
<p>I have searched and keep coming up to this FLOOR function as how to select a random integer in a range. This is giving me a 1 for every row.
What am I missing?</p>
<p>I am on mysql 5.0.75</p>
<p>Heres the rest of the query I belive it might be a nesting issue</p>
<pre><code>SELECT *
FROM (
SELECT downloads.date, products.*, FLOOR(1 + (RAND() * 60)) AS randomtimer,
(
SELECT COUNT( * )
FROM distros
WHERE distros.product_id = products.product_id
) AS distro_count,
(SELECT COUNT(*) FROM downloads WHERE downloads.product_id = products.product_id) AS true_downloads
FROM downloads
INNER JOIN products ON downloads.product_id = downloads.product_id
) AS count_table
WHERE count_table.distro_count > 0
AND count_table.active = 1
ORDER BY count_table.randomtimer , count_table.date DESC LIMIT 10
</code></pre>
http://stackoverflow.com/questions/984396/how-to-get-mysql-random-integer-range/999173#9991730Answer by kevzettler for How to get mysql random integer range?kevzettler2009-06-16T01:02:30Z2009-06-16T01:02:30Z<p>I ended up generating the random numbers in PHP, in an array the same length as the query results then sorting that and echoing it in a loop with the query results.</p>
http://stackoverflow.com/questions/998285/why-does-mysql-rand-hate-me/999169#9991690Answer by kevzettler for Why does MySQL Rand() hate me?kevzettler2009-06-16T00:57:33Z2009-06-16T00:57:33Z<p>I decided to scrap that idea and make an array of random numbers in php the same length as the returned results and just sort and use that.</p>
http://stackoverflow.com/questions/992145/how-to-synch-an-existing-svn-repository/998199#9981990Answer by kevzettler for How to synch an existing SVN repository?kevzettler2009-06-15T20:25:36Z2009-06-15T20:25:36Z<p>I really messed my svn install up real bad. I reinstalled an older version or something and it wasn't recognizing my repository. Converted to a backup and then reinstalled svn to the newest version and things are cool now. </p>
http://stackoverflow.com/questions/992145/how-to-synch-an-existing-svn-repository1How to synch an existing SVN repository?kevzettler2009-06-14T04:14:02Z2009-06-15T20:25:36Z
<p>Hi all</p>
<p>I recently had to reinstall subversion on my hosting account. The repository I had setup is no longer considered working copy by the new SVN install. How can I added this repository back in to svn? I don't cant do an admincreate and copy it over. I have some checked out copies that need to stay in synch with this repository. How can I get the new SVN install up to speed with out compromising the checked out copy? </p>
http://stackoverflow.com/questions/991794/help-diagnosing-a-subversion-error0Help diagnosing a subversion errorkevzettler2009-06-13T23:41:41Z2009-06-14T00:31:37Z
<p>My site was down today for about an hour while my host was doing some updates to the box I am on. the updates were a PostgreSQL update, Apache Recompilation, and Cpanel update.</p>
<p>After the updates were finished up I am getting this error from any SVN commands.</p>
<p>svn: error while loading shared libraries: libpq.so.3: cannot open shared object file: No such file or directory</p>
<p>I don't know where to begin. I imagine I'll have to re-configure the svn install</p>
http://stackoverflow.com/questions/919405/twitter-api/948704#9487041Answer by kevzettler for Twitter Apikevzettler2009-06-04T05:14:39Z2009-06-04T05:14:39Z<p><a href="http://apiwiki.twitter.com/FAQ#HowdoIget%E2%80%9CfromMyApp%E2%80%9DappendedtoupdatessentfrommyAPIapplication" rel="nofollow">http://apiwiki.twitter.com/FAQ#HowdoIget%E2%80%9CfromMyApp%E2%80%9DappendedtoupdatessentfrommyAPIapplication</a></p>
http://stackoverflow.com/questions/1767699/how-to-pass-external-variables-to-a-private-javascript-outer-closure-function/1767824#1767824Comment by kevzettler on How to pass external variables to a private javascript outer closure function?kevzettler2009-11-20T19:00:17Z2009-11-20T19:00:17ZThis is very close to what I am trying to accomplish but wouldn't I have to prepend everything with this in the public methods? Also gpilontino is correct this doesn't work.http://stackoverflow.com/questions/1767699/how-to-pass-external-variables-to-a-private-javascript-outer-closure-function/1767940#1767940Comment by kevzettler on How to pass external variables to a private javascript outer closure function?kevzettler2009-11-20T18:54:06Z2009-11-20T18:54:06Zthx darkporter, I have a lot of these modules similair to .trial that I am trying to avoid duplicating code in. Is there any way I can automate this var assignment in the .modules object or the core? so that the individual modules inherit it?http://stackoverflow.com/questions/1587037/how-to-structure-javascript-architecture-to-compliment-a-php-mvc-web-appComment by kevzettler on How to structure Javascript architecture to compliment a PHP MVC web app?kevzettler2009-10-19T15:47:22Z2009-10-19T15:47:22ZI got the impression from the JavaScriptMVC documentation, that the framework was designed for heavy UI driven sites and took care of everything you would do with a traditional php MVC setup in javascript. Since we have the php framework already in place and are porting alot of functionality to it from the last iteration I would not want to have to move all that in to javascript.http://stackoverflow.com/questions/1054056/how-can-i-optimize-this-subqueried-and-joined-mysql-query/1054065#1054065Comment by kevzettler on How can I optimize this subqueried and Joined MySQL Query?kevzettler2009-06-28T02:25:32Z2009-06-28T02:25:32Zon further look MySQL internally parses count(*) as count(1) or count(0)http://stackoverflow.com/questions/1054056/how-can-i-optimize-this-subqueried-and-joined-mysql-query/1054065#1054065Comment by kevzettler on How can I optimize this subqueried and Joined MySQL Query?kevzettler2009-06-28T02:23:01Z2009-06-28T02:23:01ZThanks Brian, this is the kinda tip I am looking for hopefully someone can verify this. It makes sense and would probably help this query a bit.http://stackoverflow.com/questions/998285/why-does-mysql-rand-hate-me/998294#998294Comment by kevzettler on Why does MySQL Rand() hate me?kevzettler2009-06-15T20:54:20Z2009-06-15T20:54:20ZI do need the random values returned and do not need to sort by RAND() but by the acutal value returned from the equationhttp://stackoverflow.com/questions/992145/how-to-synch-an-existing-svn-repository/992152#992152Comment by kevzettler on How to synch an existing SVN repository?kevzettler2009-06-14T08:19:33Z2009-06-14T08:19:33Ztrying this :
svn switch --relocate file:///home2/digizald/svn/dev file:///home2/digizald/svn/dev2
I got svn: '.' is not a working copy
http://stackoverflow.com/questions/991794/help-diagnosing-a-subversion-error/991853#991853Comment by kevzettler on Help diagnosing a subversion errorkevzettler2009-06-14T02:44:29Z2009-06-14T02:44:29ZThanks jetru I read that earlier. Same exact issue.
So I need to rebuild apr-util without postgre support as I'm not using it, Or rebuild it with the new libpq.so dependencies.
I am pretty green on linux sysadmin so I could use some help. Can I just run the apr-util configure script again with a --without-pqsql option or something?http://stackoverflow.com/questions/991794/help-diagnosing-a-subversion-error/991798#991798Comment by kevzettler on Help diagnosing a subversion errorkevzettler2009-06-14T00:03:17Z2009-06-14T00:03:17Zits shared hosting on CentOS 4.6http://stackoverflow.com/questions/984396/how-to-get-mysql-random-integer-range/984432#984432Comment by kevzettler on How to get mysql random integer range?kevzettler2009-06-12T00:32:04Z2009-06-12T00:32:04ZThis gave me a syntax error.http://stackoverflow.com/questions/768542/htaccess-redirect-behind-publichtml-directory/768745#768745Comment by kevzettler on .htaccess redirect behind public_html directorykevzettler2009-04-21T03:22:10Z2009-04-21T03:22:10ZI don't belive it is, It is actully /home2/user I am on shared hostinghttp://stackoverflow.com/questions/768542/htaccess-redirect-behind-publichtml-directory/768745#768745Comment by kevzettler on .htaccess redirect behind public_html directorykevzettler2009-04-20T17:50:42Z2009-04-20T17:50:42ZI tried the rewrite rule and it was directing to <a href="http://www.mydomain.com/home/user/twiki" rel="nofollow">mydomain.com/home/user/twiki</a>$1 and not to the actual directory