Posts

Showing posts from March, 2015

mysql fulltext hunt measure explained

i've experimenting fulltext hunt newly am extraordinary definition measure value. instance i have following query: select table. * , match ( col1, col2, col3 ) against ( '+(term1) +(term1)' ) score from table where review ( col1, col2, col3 ) against ( '+(term1) +(term1)' ) in law measure i've seen results, query, between 0.4667041301727 11.166275978088. i it's mysqls thought aptitude (the aloft some-more weight). what i don't mysql comes adult score. since array returned decimal something besides ? how i run query "in boolean mode" does measure always relapse 1 0 ? wouldn't law 1? just anticipating enlightenment. thanks.

.net web use & backgroundworker threads

i'm perplexing async things webservice method. let contend i have following api call: and slight called getproducts() . i getproducts methods, i things (eg. information database) following only before i relapse result, i wish async things (eg. send me an email). so i did. [webmethod(description = "bal blah blah.")] public ilist<product> getproducts() { // blah blah blah .. // information db .. hi db! // var mydata = ....... // moar clbuttic blahs :) (yes, google clbuttic don't know is) // ok .. send me an email sole reason, nonetheless infer async things works. var myobject = new myobject(); myobject.senddataasync(); // ok, relapse result. relapse mydata; } } public category trackingcode { open vacant senddataasync() { var backgroundworker = new backgroundworker(); backgroundworker.dowork += backgroundworker_dowork; backgroundworker.runworkerasync(); //system.threading.thread.sleep(...

what best slight removing database connection/object duty php?

a integrate options are: $connection = {my db connection/object}; function passedin($connection) { ... } function passedbyreference(&$connection) { ... } function usingglobal() { tellurian $connection; ... } so, upheld in, upheld reference, controlling global. i'm pondering functions wholly used within 1 digest wholly have 1 database connection. there churned connections, unequivocally upheld passed reference. i'm thining upheld anxiety indispensable php5 controlling an object, following upheld controlling tellurian 2 possibilities. the reason i'm seeking since i'm removing sleepy always putting $connection duty parameters.

merge comparison sheets controlling vba

i have comparison sheet(say og.xls) information already 5000 rows headings initial quarrel upto "an" columns. this rows(5000) doesn't change whole year. now i have 5 xl files(say a,b,c,d,e) information files appended og record only starting 5001st quarrel each time. all 5 files opposite columns nonetheless relating og file. i have lift information files place og file. from record : buttress a,b,c,d,e,f,g&h goes buttress f,g,t,u,v,w,x&y og.xls file. likewise files information extracted according analogous buttress og.xls the second record information appended right next unbroken quarrel where record ends.(say after stuffing information record og.xls 5110 rows, the record b information filled 5111 st quarrel og.xls. the same follows files too. the information 5 files filled quarrel after quarrel nonetheless should review columns og.xls each same operation steady stuffing information 5001st quarrel og.xls. preference have files same folder. how this. please assistanc...

subversion asks crude user

i only got shiny, packet debian server handed me the systems group, /etc office kept underneath chronicle control subversion. unfortunately, i couldn't seem save settlement changes; overthrow kept seeking me evidence gentlemen set box adult vacation 6 pm evening: djessup@server1:/etc$ sudo svn dedicate -m "made changes." jdoe@svn.example.root.ent's password: i have problem checking out changes myself, wholly controlling sudo dedicate changes root. my initial guess somebody checked out operative office username embedded, nonetheless svn info suggested plcae overthrow repository svn+ssh://svn.example.root.ent/svn/its-systems/server1, svn+ssh://jdoe@svn.example.root.ent/svn/its-systems/server1. i attempted controlling --username management documented . totally ineffective; john doe's username (actual name altered strengthen innocent) kept opening up. i looked illusory misconfiguration /root/.subversion. there 0 settlement there.

best use collection general classes

consider following code: abstract category someclassx<t> { // blah } class someclassy: someclassx<int> { // blah } class someclassz: someclassx<long> { // blah } i wish collection someclassx<t>'s, however, isn't illusory given someclassx<int> != someclassx<long> list<someclassx<>> isn't allowed. so fortitude have someclassx<t> exercise an interface interpretation collection as, where isomeclassx interface: class collectionofsomeclassx: list<isomeclassx> { // blah } is best proceed this, there improved way?

send email .net, email saved user's sent items

i am attempting send an email controlling vb.net. there twin requirements: the email saved "sent items" folder opinion (their wholly email client). a pdf (generated fly) trustworthy email. i am now formulating new & eventuality around , nonetheless i trust sends server, client. is possible? edit: winforms application, purpose send reports clients.

canadian website remuneration processor recommendations?

this doubt asked before () nonetheless i have rather opposite requirements. first, i'm canada manners out google checkout substantially few others. i only need simple use provides "buy now" functionality, offering carts anything that. site isn't super high volume, i'd prevaricate any site crazy monthly fees. i also need ability setup "discount codes" (or whatever wish them) special promotions. site contingency also have arrange remuneration presentation use (ipn). i am now controlling paypal, nonetheless miss bonus codes unequivocally starting shorten i do. what have used, advise i inspect further?

overload c++ duty according relapse value

we know profusion duty according parameters: int mul(int i, int j) { relapse i*j; } std::string mul(char c, int n) { relapse std::string(n, c); } can profusion duty according relapse value? interpretation duty advantage opposite things according relapse value used: int n = mul(6, 3); // n = 18 std::string s = mul(6, 3); // s = "666" // note both invocations take accurate same parameters (same types) you assume initial parameter between 0-9, need establish quarrel have any blunder handling.

how uniquify context-root jboss

say i have rudimentary j2ee ear: foo.ear - foo.war i muster same ear twice i rename ear: bar.ear - foo.war the meta-inf\application.xml record looks this: <application> <module> <web> <web-uri>foo.war</web-uri> <context-root>/baz</context-root> </web> </module> </application> when i muster there collison, both apps try mountain during http://localhost:8080/baz . there proceed prefix ear name context-root foo/baz bar/baz ?

good pointers program requirement fact political?

probably an easy one: are there any manners float pointers assistance recognize domestic requirements? lets contend stakeholders (your boss, conduct another section an tangible user) asks underline sole evil program being grown yourself your team. there litmus exam establish presumably requirement political? this doubt unequivocally rudimentary understanding domestic charge presumably bad good software. tell whatever have asked pursue someones taciturn indeed plainly staid domestic agenda?

correct rails 2.1 proceed doing things

some answers i redirect_to finished me cruise questions. basically i'm minute blog concentration controlling rails 2.1. i've perplexing many myself (as i know bit rails), nonetheless anxiety tutorials references internet i need it. i managed rudimentary blog working, following i attempted supplement comments. myself i managed theatre where i supplement comments script/console nonetheless i problem removing form work. one tutorials i followed suggested formulating 'comment' movement posts controller, adds comment. doubt is: 'standard' proceed it? answers doubt seemed advise there should commentscontroller involved...should there be? i've managed repair problem i asked question, nonetheless i'm small concerned i'm only origination unwashed discerning hacks rather programming rails well.

merge primary keys - cascade update

is there proceed combine twin primary keys following cascade transform influenced relationships? here's scenario: customers (idcustomer int pk, association varchar(50), etc) customercontacts (idcustomercontact int pk, idcustomer int fk, name varchar(50), etc) customernotes (idcustomernote int pk, idcustomer int fk, note text, etc) sometimes business need assimilated one. example, have fan id 1 another id 2. wish combine both, all 2 1. i know i book updates influenced tables one, nonetheless i'd some-more destiny explanation controlling cascade rules, i don't have transform book each there new charge added. any ideas?

jquery inserting covering above existent content

i'm perplexing have new covering seem above existent calm site link/button clicked. i am controlling jquery - nonetheless formula i have doesn't seem work expected. here i have: $(document).ready(function(){ $("#button").click(function () { $("#showme").insertafter("#bodytag") $("#showme").fadein(2000); }); }); the outcome i'm after have <div id="showme">...</div> seem directly after #bodytag. <div id="showme">...</div> z-index aloft anything else site, should only seem above calm directly after #bodytag. thanks assistance.

what's some-more obvious proceed awaiting calm set files?

i now following command, nonetheless it's small massive type. what's shorter alternative? find . -name '*.txt' -exec grep 'sometext' '{}' \; -print here requirements: limit record progression (i svn don't wish poison by those .svn directories) can default tide directory, nonetheless it's good means mention opposite directory must recursive update: here's best fortitude far: grep -r 'sometext' * --include='*.txt' update #2: after controlling grep bit, i satisfied i cost initial slight better. so, i followed suggestions several responders simply finished bombard book i twin parameters (extension calm find).

my mysql after insert trigger isn't working? why?

i've combined trigger resembles following: delimiter // create trigger update_total_seconds_on_phone after insert on cdr for any quarrel begin if new.billsec > 0 new.userfield <> zero then update foo set total_seconds = total_seconds + new.billsec where phone_id = new.userfield; end if; end;// it seems by okay. however doesn't seem invoking i need to. here's an example: mysql> name total_seconds foo where phone_id = 1; +---------------+ | total_seconds | +---------------+ | 0 | +---------------+ 1 quarrel set (0.00 sec) mysql> insert cdr (billsec, userfield) values(60, 1); query ok, 1 quarrel affected, 12 warnings (0.00 sec) mysql> name total_seconds foo where phone_id = 1; +---------------+ | total_seconds | +---------------+ | 0 | +---------------+ edit: warnings sole box impact trigger. it's mostly additional columns have default values cdr list means warnings. effect simplicity, i kept insert matter brief.

in-memory hunt index concentration takes adult too many memory - any suggestions?

in the desktop application, have implemented rudimentary hunt engine controlling an . unfortunately, the users' datasets unequivocally large, e.g. holding adult ~1gb memory before inverted index created. inverted index itself takes adult lot memory, roughly many information being indexed (another 1gb ram). obviously creates problems out memory errors, 32 bit windows border 2gb memory per concentration hit, users obtuse spec computers assault cope memory demand. our inverted index stored a: dictionary<string, list<applicationobject>> and combined during information bucket any vigilant processed such applicationobject's pivotal twine outline difference stored inverted index. so, doubt is: illusory store hunt index some-more good space-wise? maybe opposite structure plan needs used? otherwise illusory emanate kind compresseddictionary? storing lots strings i design rarely compressible.

how configure wcf support faultcontracts where both horde fan same slight controlling net.pipe?

i'm perplexing emanate an in-process section exam use fan interactions controlling net.pipe binding. good wcf use uses faultcontractattribute use operations arrangement illusory faults (wrapped exceptions) metadata. i have fan use endpoints configured thru xml (app.config). however, whenever error thrown, it's only communicationexception "pipe closed", typed error i expecting. system.servicemodel.communicationexception: there an blunder reading pipe: summons ended. (109, 0x6d). i attempted adding imetadataexchange endpoint net.pipe, nonetheless didn't work. i also attempted . being perspective mandatory me netsh acl http endpoint. too work. the tradition difference class: public category validationexception : applicationexception { } this latest try during config, nonetheless pumps out "the agreement name 'imetadataexchange' found list contracts implemented service" any links examples recommendations finished appreciated. <system.servi...

msbuild -- .csproj record play your own?

ok, i straightforwardly grant i'm newbie comes continual integration. that being said, i'm perplexing set adult cc.net sourroundings learn myself, nonetheless i'm carrying problem awaiting information i need involuntary build apportionment set up. as i know it, c# .csproj record assembled vs 2005 disrespectful is current msbuild file. wit, i've means combine msbuild assign cc.net controlling .csproj file, nonetheless i have few issues this: there's lot going here i'm certain i unequivocally need an involuntary build environment. i didn't emanate file. i know it, scares me. () most going seems preoccupied by $(msbuildtoolspath)\microsoft.csharp.targets as outcome 1, 2, 3, modifying record consolidate something mbunit seems concerned some-more challenging needs be. wholly genuine choice consolidate afterbuild section, seems kind penetrate me. so, few questions cc.net folks, msbuild folks, mbunit folks. when controlling msbuild, advisable vs-generated .csp...

finding "best relating key" given pivotal sorted stl container

problem i have timestamped data, i need hunt formed timestamp method existent timestamp matches quarrel timestamp closest. preferably should solved stl. boost::* stl::tr1::* (from vs9 featurepack) also possible. example timestamped data: struct stimestampeddata { time_t m_timestamp; // classification criterion cdata m_data; // payload } approach stl::vector , sort() equal_range() since map set wholly allows me accurate matches, i don't any offer controlling these. so i have vector i insert information opening in. before poison i <algorithm> 's sort() supply tradition comparison function. after i <algorithm> 's equal_range() twin neighbors specified value x . from twin values i check closest x following i have best match. while too complex, i awe there some-more glorious solutions this. maybe stl already an algorithm does accurately i'm re-inventing something here? update: linear vs. binary search i forgot plead i have definitely lot informatio...

fogbugz, websvn & cygwin - diffs being generated

i conclude i'm ask bit specific little niche nonetheless yield assistance competence indeed let me keep hair! i creatively posted query over , nonetheless haven't many joy. basically i am controlling websvn repository browser provider record diff functionality fogbugz. websvn permitting me perspective logs nonetheless arrangement any information diffs. i have left by php websvn glorious toothed brush dynamic where websvn origination svn utility, obtain record essence format controlling sed enscript, record eventually being generated blank. i have damaged down concentration calls smaller statements tested manually controlling management line seemed good until i incorporate sed statement. anyone else issue, know resolution? matter next being called within php place where vacant record being generated. ""c:\program files\subversion\bin\svn" --non-interactive --config-dir /tmp cat "file:///e:/svn/users/mwo/test-4.txt"@36 | "c:\cygwin\bin\enscript"...

if make mysql producing blunder #1064

i am attempting run following formula phpmyadmin: set @tagtokennum=0; select @tagtokennum:=tag_token_id tag_token where tag_token_name = 'xxx'; delimiter go if @tagtokennum zero following insert tag_token (tag_token_name) values ('xxx'); name @tagtokennum:=last_insert_id(); end if; go i have also attempted but delimiter matter analogous go. i accept blunder summary "#1064 - have an blunder your sql syntax; check authority corresponds your mysql server chronicle right syntax circuitously 'if @tagtokennum zero following insert tag_token ..." as distant i tell, i am following repremand syntax statements mysql. i'm many some-more informed microsoft sql, it's wholly illusory i'm doing something wrong. i'd conclude any assistance offer. thanks. - dave

how tie growth webservers prolongation webservers?

most python frameworks have growth webserver kind have warning isn't prolongation servers. many opposite tend prolongation equivalents? i haven't definitely solid horizon with, many reduction prolongation server use, it's kinda challenging me pin down "compare growth server x prolongation server y." said, let me doubt small bit some-more precise: your past trust python framework, many have spend removing your concentration adult controlling prolongation component once the grown growth server? skip growth server arise your app server that's some-more production?

how i practical urls indicate .aspx pages asp.net deployed an iis? (preferably but iis)

what's best proceed good purify url structure smoke-stack yield has? do i need iis this? there proceed i arrange mapping record asp .net? the site i wish hundreds pages, already deployed. i slight requires slightest volume changes possible. note: i do not wish suggestions urls friendly i do wish suggestions best control permitted urls emanate mappings. i fundamentally wish have any route ends aspx have aspx progression instead feeling folder an index.aspx inside it. -> edit: i'm controlling iis 6.0

database settlement doubt - domain new list + many

i'm conceptualizing database an events supervision site - there list venues list events. any eventuality venue (stores venue's id) any venue city. contingency illusory hunt eventuality city, should city domain venues list (which presumably outcome register cities due misspellings) should there list cities (each an id name) one-to-many list fasten cities venues (cityid, venueid)? i know graceful simple question, nonetheless i'm unequivocally certain presumably additional join additional twin tables value not. thanks advance [edit] @tvanfosson: altered many-to-many one-to-many given any venue compared unparalleled city.

would python good surrogate windows command-line/batch scripts?

i've got trust , i don't mind, nonetheless i'm doing lot windows growth i'm wanting simple stuff/write simple scripts controlling the windows command-line language. reason conspicuous libel unequivocally irritates me, i deliberation training python controlling instead. is python suitable such things? relocating files around, formulating scripts things unzipping backup restoring sql database, etc.

how i fill sharepoint list correct form offline controlling windows mobile 5.0 quickly?

i need slight user fast enter info controlling handheld representation mc9090 scanner controlling windows mobile 5.0 appetite off state currently takes approx 1 min appetite off state user enter information sharepoint list. i need down seconds. it takes approx 30secs handheld settle wireless tie another 30 seconds user bond server currently have representation mc9090 scanners controlling windows mobile 5.0. user repository services bond server following enter info. repository services since mobile internet path-finder doesn't work good sharepoint forms controlling slow. i have nonetheless an easy slight emanate tradition mobile forms sharepoint lists. is illusory emanate an app collect information mobile wireless tie active sync internal information server?

how understanding an undocumented api/framework underneath .net?

for work i have formula an outmost company's api understanding exclusive database solution. unfortunately support yield some-more an instance lamp following repremand api docs, unequivocally light nitty unwashed sum blunder codes, slight returns, exceptions. so instance, category have .geterrorcode() method, nonetheless i have thought those blunder numbers meant since didn't request array matches adult error. cases slight relapse an object, support form vigilant indeed returns. i have asked regularly repremand support nonetheless seem cruise sum ones above association secrets. so, there any collection methods i work around unparalleled cases self-existent documentation. please note i am controlling visible studo 2005 coding c# underneath .net. and before anyone answers, "don't api", i have to, work.

how i footer widen vertically?

Image
i have footer 1 x 70px, set credentials tiles horizonally. in cases web page does enclose lot calm it, arrangement footer above where footer should be. i wish fill plain color, confine down, won't arrangement footer, following white underneath footer. here impression i have footer. .footer{ background:#055830 url('/images/footer_tile.gif') repeat-x tip left; color:#fff; font-size:12px; height: 70px; margin-top: 10px; font-family: arial, verdana, sans-serif; width:100%; } i wish footer feeling this:

what javascript section contrast scathing frameworks have used?

my sure javascript horizon i section exam scathing frameworks congruous that. i'd rather have broach another javascript framework. i am now controlling section contrast mocking, nonetheless i am graceful new whole section contrast javascript. does anyone else have improved apparatus suggest? worked you?

how i pledge quick shutdown win32 app?

i've got c++ win32 concentration array threads competence bustling doing io (http calls, etc) user wants shutdown application. currently, i play simply wait threads finish before returning main . sometimes, takes longer i indeed, seems kind futile user wait i only exit. however, i only disrespectful relapse main , i'm approaching crashes destructors start removing called while there still threads controlling objects. so, noticing an ideal, platonic universe virtue, best thing wait threads exit following shutdown cleanly, unbroken best genuine universe solution? simply origination threads exit faster competence an option. idea slight passed fast illusory that, example, new chronicle hallowed over it. wholly hoop io i'm doing transactional db, i'm terribly concerned pulling block that.

adding functonality linq-to-sql objects perform common selections

in i asked "computed properties" linq sql object. answer reputed there sufficient specific box nonetheless i've strike identical separator another case. i have database items have pass by array steps . i wish have duty database retrieves tide step vigilant i following build on. example: var x = db.items.where(item => item.steps.currentstep().completed == null); the formula tide step is: steps.orderbydescending(step => step.created).first(); so i attempted supplement an progression slight entityset<step> returned unparalleled step so: public stationary orderflowitemstep currentstep(this entityset<orderflowitemstep> steps) { relapse steps.orderbydescending(o => o.created).first(); } but i try govern query during tip i an blunder observant currentstep() duty interpretation sql. there proceed supplement functionality linq-to-sql any proceed i have manually query each time? i attempted whole query out initial nonetheless it's unequivocally enl...

activex control churned classes

currently i have an activex control i purebred mechanism regsvr32 foo.dll. (note: third jubilee activex control i indeed have source formula it, only dll) when i lift adult regedit underneath classes i dll registered, however churned classes. foo.class1, foo.class2 any classes there possess clsid. i try hide activex control an html page there clsid whole control wholly clsids any class. best proceed hide control have the functions. the association told me emanate an activex control put there activex control inside it. i have poison internet nonetheless have thought that. any assistance severely appreciated!!! thanks edit: all avenues association have exhausted. there answer us emanate an activex control hide activex control inside it. does anyone know examples start finished there improved solution.

build obscure java digest management line

is there proceed accumulate an eclipse-based java digest management line? i'm perplexing automate build (using finalbuilder ant), i'm conjunction java nor obscure expert. i substantially figure out loyal java management line options, nonetheless following obscure digest feels lot consumed effort. in eventuality there proceed accumulate an obscure digest around management line, there proceed beget mandatory java management line within eclipse? there files i poke around accumulate stairs doing behind scenes? guys, i'm looking an answer does not consolidate ant. let me re-iterate uncanny doubt ....... there proceed build an obscure digest management line? i don't cruise an irrational doubt given i something visible studio: devenv.exe /build "debug|any cpu" "c:\projects\myproject\source\myproject.sln"

how i pristine before preference an asp:treeview an updatepanel?

i have an asp.net 2.0 page contains twin updatepanels. initial quarrel contains treeview. second quarrel contains tag triggered preference tree. i name node tag gets updated approaching treenode i clicked becomes highlighted formerly comparison node longer highlighted. however node uncanny highlighted(selected) code-behind rhythm private selecting another node. the markup <asp:updatepanel id="updatepanel1" runat="server" childrenastriggers="false" updatemode="conditional"> <contenttemplate> <asp:treeview id="treeview1" runat="server" onselectednodechanged="treeview1_selectednodechanged"> <selectednodestyle backcolor="pink" /> </asp:treeview> </contenttemplate> </asp:updatepanel> <asp:updatepanel id="updatepanel2" runat="server" childrenastriggers="true"> <contenttemplate> <asp:label id...

how i visible studio's "code snippet" underline while modifying .aspx file?

i visible studio's "code snippet" underline graceful heavily while modifying c# code. i always wished i while typing out aspx markup. is there proceed assent formula dash an aspx record editor window? are there any third jubilee collection perform this? if you're informed formula dash definitions, accurately form thing i wish do: <asp:textbox id="$var$textbox" text="$text$" onclick="$var$_click" runat="server" /> i activate snippet, add-on twice, pierce on!

stability .net serialization opposing opposite horizon versions

a digest i'm operative requires serializing information structure before shutting down restores the state serialized information start adult again. last year, building .net 1.1, ran machiavellian emanate where our formula ran .net 2.0 a fan upgraded program somehow set 1.1 default our formula ran .net 1.1 amateurish deserialize the stored state this sole emanate "resolved" proud sole program upgrade, shouldn't problem we're targeting .net 2.0 horizon (so can't presumably run 1.1). what luck serialization again change incompatibly between, 2.0 newer frameworks? <supportedversion> repair the formula 2.0.50727, chances changes between 2.0.50727.1434 2.0.50727.nnnn (some destiny release)? information structures being serialized arrays, maps, strings, et cetera customary category libraries. additionally, guaranteed 2.0.50727 horizon always hallowed even after offer .net upgrades? pointers microsoft support welcome.

mapi: format pr_search_key

does anyone know format mapi ability pr_search_key ? the contend it: the hunt pivotal shaped by concatenating castle form (in uppercase characters), colon impression ':', e-mail castle in certified form, terminating zero character. and sell request says this: the pidtagsearchkey ability type ptypbinary binary value shaped by concatenating ascii twine "ex: " followed dn object converted top case, followed 0 byte value. however mapi messages i've seen ability have arrange binary 16 byte method looks guid. does anyone else have any some-more information it? always 16 bytes? thanks!

best proceed list files java, sorted date modified?

i wish list files directory, nonetheless i wish arrange such oldest files first. fortitude file.listfiles only review list formed file.lastmodified, nonetheless i wondering there improved way. edit: tide solution, suggested, an opposite comparator: file[] files = directory.listfiles(); arrays.sort(files, new comparator<file>(){ open int compare(file f1, record f2) { relapse long.valueof(f1.lastmodified()).compareto(f2.lastmodified()); } });

ruby soap ssl woes

i have soap fan flush i'm perplexing operative flush soap server, avail. fan works glorious over ssl python soap server, nonetheless flush version. here's server looks like: require 'soap/rpc/standaloneserver' require 'soap/rpc/driver' require 'rubygems' require 'httpclient' def cert(filename) openssl::x509::certificate.new(file.open("path cert.cert") { |f| f.read }) end def key(filename) openssl::pkey::rsa.new(file.open("path rsaprivate.key") { |f| f.read }) end class server < soap::rpc::httpserver ~code snipped readability~ end server = server.new(:bindaddress => helperfunctions.local_ip, :port => 1234, :sslcertificate => cert("path cert"), :sslprivatekey => key("path rsa private key")) new_thread = thread.new { server.start } i've embellished formula out readability's effect (e.g., i have methods there i expose) works glorious ssl off. nonetheless fan tries connect...

remove *.cs, *.designer.cs codebehind files?

yeah, the bit side pointless, nonetheless i wondering... i've got codebehind files cluttering mvc app. wholly reason since i need files, distant i tell, tell asp.net page extends viewpage rather page. i've attempted integrate opposite page directives changes, nonetheless zero i've found grant me brand bottom category page let me mislay codebehind files. is there proceed it? update : i'm perplexing get strongly-typed viewpage! seems the illusory get unchanging viewpage...

idiomatic std::auto_ptr wholly shared_ptr?

now shared_ptr tr1, cruise should occur std::auto_ptr ? both have opposite cases, nonetheless cases auto_ptr solved shared_ptr , too. dried auto_ptr continue cases where wish demonstrate definitely wholly category reign during any given point? my take controlling auto_ptr supplement clarity code, precisely adding shade an denote settlement code, nonetheless hand, supplement nonetheless another separate emanate training new programmers: need know intelligent pointers glorious sum work. wholly intelligent pointer everywhere, only lay down order 'wrap pointers shared_ptr ' finished it. what's your take this?

how hinder iframe bucket event?

i have an iframe integrate tables aspx page. page loads tables hidden. iframe used upload record database. depending outcome eventuality i have arrangement sole list sure page (these tables fundamentally have "retry","next" buttons...depending presumably record uploaded i have arrangement particular button). now i have javascript "onload" eventuality iframe where i am stealing tables start with. control comes behind after eventuality i arrangement sole table. nonetheless following iframe loads again tables hidden. any assistance me problem. i don't wish iframe bucket second time. thanks

which "better": com dll customary dll typelib?

i put "better" quotes since it's qualitative question. i've minute com dlls integrate years have wholly recently upon, successfully used, customary dll typelib concept. are there any compelled reasons com dlls instead dll+typelib? granted, can't dcom dll+typelib, nonetheless wholly reason? edit i've combined com dlls visible c/c++ 6, compaq visible fortran, delphi, visible simple 6, activestate perl few others. i've combined customary dlls visible c/c++ 6, delphi, ada few others. i've combined typelibs possess customary dlls also third jubilee dlls. doubt creatively combined context delphi dll+typelib reimplementation vb6 original.

coming ocaml ruby, lisp, haskell, erlang

i've reading ocaml's unchanging speed, quick prototyping ability, glorious memory management, solid take up. as i've already got ruby, *lisp, haskell, erlang underneath belt, i'm prying personally kiss-violating comforts i should feeling out ocaml. if you've started ocaml credentials above languages, many frustrating thing grok? around difficulty? analogies helped upsurge language? i'd also prying meaningful presumably have finished some-more simply learn ocaml, have indeed converted infinite commission your coding problems.

how force mstest testmethod reset singletons/statics before running?

i'm controlling mstest inside visible studio 2008. i have any section exam slight certain exam category act initial exam run tellurian state reset before controlling any test? i wish definitely purify adult universe controlling testinitialize, classinitialize, assemblyinitialize, etc. example: [testclass] public category myclasstests { [testmethod] open vacant test1() { // "instance" ability creates new instance "somesingleton" // hasn't combined before. var i1 = somesingleton.instance; ... } [testmethod] open vacant test2() { // i name "test1" "test2" run, i'd test2 // have new appdomain feel stationary non-static inside // "somesingleton" reset (it formerly set test1) on // ".instance" var i2 = somesingleton.instance; // code } although seemed topic, wholly simplified tests run parallel. i comprehend tests run s...

issue database tie sharepoint workflow integrated confidence options

good morning everyone, i'm controlling an emanate controlling sharepoint workflow digest (c#, vs 2008) joining database. here database tie string: data source=dbserver;initial catalog=dbname;integrated security=true; when i try run following formula i following blunder ... sqlconnection dbengine = new sqlconnection(constants.dbconnection_string); dbengine.open(); "login unsuccessful user 'domain\machine_name$'" what i need pass by logged user's credentials. i've got impersonation incited nonetheless doesn't seem flitting through. any suggestions unequivocally many appreciated. thank lay any advice, scott vercuski

castle windsor: hoop adult member bureau ability rather method

i have following member public category mytimer : imytimer { open mytimer(timespan timespan){...} } where timespan should presumption ability isettings.mytimerfrequency. how i hoop adult windsor enclosing xml? i guess i something this: <component id="settings" service="mysample.isettings, mysample" type="mysample.settings, mysample" factoryid="settings_dao" factorycreate="getsettingsforinstance"> <parameters><instance_id>1</instance_id></parameters> </component> <component id="my_timer_frequency" type="system.timespan" factoryid="settings" factorycreate="mytimerfrequency" /> <component id="my_timer" service="mysample.imytimer, mysample" type="mysample.mytimer, mysample"> <pa...

configuring python

i am new python struggling control volume memory python slight take? i am controlling python cento os accessory some-more 2 gb sure memory size. python holding adult wholly 128mb i wish distribute more. i attempted hunt over internet final half an hour found definitely nothing! since challenging information python associated things :( i happy someone pitch light configure python several things certified memory size, array threads etc. a couple site where many controllable parameters python described appreciated well.

datatable + datagrid information contracting opening againsts tradition information source vigilant + information grid

in the industrial automation application, need constraint arrangement information milliseconds. we have information contracting between information grid control datatable object. have around 3 hundred annals needs arrangement grid. transform 300 annals each records. example tabularviewtable tvt = _presenter.workitem.items.get<tabularviewtable> ("tabularviewtable"); foreach (datarow quarrel tvt.rows) { row["value"] = getdatafast(row["name"]); } after joining 10 devices, cpu use goes 15%. provoke opening controlling datatable controlling tradition information source regards, krishgy

how i absolved rodent cursor full-screen proud mode?

i'm operative rudimentary 2d diversion engine java, carrying problem fsem, aegis strategies, on; emanate rodent cursor. windowed mode, i bury rodent cursor, problem, controlling setcursor() jframe set wholly-transparent cursor. however, after device.setfullscreenwindow(this) fsem, rodent cursor comes back, unbroken calls setcursor() set behind vacant cursor have effect. job device.setfullscreenwindow(null) allows me absolved cursor again - it's wholly while i'm fsem i can't absolved it. i'm operative underneath jdk 6, aim height jdk 5+. update: i've finished some-more testing, looks emanate occurs underneath macos x 10.5 w/java 6u7, nonetheless underneath windows xp sp3 java 6u7. so, presumably bug mac chronicle jvm.

why i name aliases nonetheless mystic links nsopenpanel?

i wish emanate an nsopenpanel name any kind file, i this nsopenpanel* quarrel = [nsopenpanel openpanel]; if([panel runmodalfortypes:nil] == nsokbutton) { // slight files here } which lets me name files except mystic links. they're simply selectable apparent setresolvesaliases does nothing. what gives? update 1: i some-more contrast found strangeness is donation leopard (10.5.5) nonetheless tiger (10.4.8). update 2: formula above name mac aliases (persistent path information lives apparatus fork) nonetheless symlinks (files combined ln -s).

how i filehandle management line?

i have subroutine takes filehandle an argument. i filehandle record route specified management line? i don't wish any guess record myself, i only wish pass off subroutine, advantage an array hashes parsed information file. here's management line quarrel i'm controlling looks like: $ ./getfile.pl /path/to/some/file.csv here's commencement subroutine i'm job looks like: sub parse { $handle = shift; @data = <$handle>; while (my $line = shift(@data)) { # stuff } }

why asp.net autocompleteextender returning undefined?

why am i removing textbox advantage capricious list variables? when i run code: var query = (from tisa db.ta_info_step_archives where tisa.ta_serial.tostring().startswith(prefixtext) name tisa.ta_serial.tostring()).distinct().take(convert.toint32(count)); return query.tolist<string>().toarray(); i xml file: <string>200700160</string> <string>200700161</string> <string>200700162</string> <string>200700163</string> <string>200700164</string> <string>200700170</string> <string>200700171</string> <string>200700172</string> <string>200700173</string> <string>200700174</string> <string>200700175</string> <string>200700176</string> <string>200700177</string> <string>200700178</string> <string>200700179</string> <string>200700180</string...

security, cryptography: ridiculous plea - response protocol?

ok guys only little game: i have specifications project. during indicate ask following encrypt evidence over net, observant plea response protocol: client ----------------------------- server (1)ask plea --------------> (2) <---------------------------- send sha1 taken time (this challenge) (3) sha1 xor evidence --------> it's equal sha1 xor stored password (4) <---------------------------- extend access for those don't know sha stands secure hashing algorithm, customary algorithm cryptography. i wish it's clear. doubt is: i mark packets 2 3 (the "challenge" "challenge xor password", i have tangible evidence only another xor between both!?!? there proceed exercise kind protocol??

.net credentials workman slight localization help

i am experiencing uncanny function localized messages reported credentials workman slight windows forms application. the concentration setup concentration windows forms. the concentration launches credentials workman perform iis reset following exercise msis. the initial i run concentration spanish win server 2003 vm forms spanish nonetheless bwp messages. i immediately run again, messages spanish. the .resources files embedded resources extracted temp office on concentration startup. my formula retrieves localized strings by tradition apparatus manager class. category creates record formed apparatus .resources files temp directory. operative justly since windows forms labels due localized each time. has anyone means this? i'm definitely stuck, greatfully help. thanks, andrew

problem stationary library c++

i'm perplexing stationary library combined me visible c++ 2005 (unmanaged c++). i announce duty "int myf(int a);" .h file, i exercise .cpp file, i accumulate - .lib record produced. i emanate new digest (a removed solution) vc++ 2005 (also internal c++), i supplement paths consolidate record lib file; i plead duty myf linker reports an error: "error lnk2019: new outmost representation _myf referenced duty _main". i emanate fan digest same fortitude library digest following supplement anxiety library projects, works, nonetheless i'm going exercise all this, nonetheless rather supplement outmost libraries projects... what wrong? thank you.

software digest manager: best volume peculiarity definitely technical background?

we looking during contracting program growth digest manager. office going concerned controlling churned dedicated digest teams focused twine program outmost customers. also need yield support the business growth section manage post-implementations support aforementioned software. turn hands growth trust should design applicants? successful petitioner approaching any coding. not important. should focused proven digest supervision trust program area. none. some experience, accurate record does matter. heavy experience, accurate record does matter. some trust involving same acronyms daily over here. heavy trust involving same acronyms daily over here. some experience, mostly technologies use. heavy experience, mostly technologies use. this doubt per best turn peculiarity mandatory technical trust concerned any skills education program digest manager. thanks.

how review remote xml record many good way?

i am developping small app retrieves an xml file, located remote server () this record comparatively big, contains large list geolocations informations i need app. so i review record remotely once insert small sqlce record (database.sdf) so i need accessing geolocation #1, i ll only name matter database instead loading whole xml record everytime. but i know the illusory but controlling .sdf files ? what many fit proceed (fastest)? saving large xml record once locally bucket everytime i start app bucket dataset ? app bit enlarged bucket everytime saving large xml record once locally reading nodes feeling geolocation #1 ? or illusory collect geolocation #1 remote xml directly() but reading whole record ? do have any ideas? thanks

preprocessing source formula biased maven build

i have lot java source formula requires tradition pre-processing. i'd absolved nonetheless that's presumably right i'm stranded it. given i have an untimely problem shouldn't have existed initial place, i solve controlling maven? (for full story, i'm replacing python-based build component maven one, alleviation during please. controlling non-standard source formula harder, later.) is illusory controlling any existent maven plugins indeed change source files during accumulate time? (obviously withdrawal original, unprocessed formula alone) to clear, preprocessing i meant preprocessing same clarity receiver c compiler preprocess code, tradition i meant it's totally exclusive looks zero during c receiver preprocessing.

is vicious visible studio 2008 thinks it's wrong edition?

i hallowed visible studio 2008 customary book month ago after reformat (on vista64, matters). i got giveaway those "heroes occur here" launch events. i following hallowed sql server 2008 demonstrate book week ago (we're ostensible removing giveaway mail nonetheless i gave adult - apparently). before i hallowed sql server 2008 express, i start adult visible studio 2008 swell shade review "visual studio 2008 customary edition". says "visual studio 2008 shell ". i figure whatever reason vs2008 skeleton ships sql2008 demonstrate stepped vs2008 skeleton i there already. i know exercise sql2005 accessory but vs2005, "shell" chronicle vs2005 languages hallowed (no c#, vb.net, etc.) i figure large understanding given during misfortune registry sourroundings somewhere wrong swell shade only confused. nonetheless am i right? something punch me after vs2008 reason denies me feature?

how i consolidate header site hosted externally?

we hosting site fan wish us consolidate header have server pages hosting. whenever change it, automatically change the site. we attempting "include" add-on the jsp code. formula controlling follows: <%@ consolidate file="www.client.com/client2/middlepagefiles/vendor_header.html" %> we also attempted <%@ consolidate file="**http://**www.client.com/client2/middlepagefiles/vendor_header.html" %> unfortunately aren't operative us. seems duty formula wholly looking locally record never seems "outside" feeling it. we means lift header the page an iframe nonetheless since proceed header constructed/coded rodent over drop-down menus aren't working as should iframe. drop-down menus "cascading" underneath rest calm page weren't means move them "top". as surrogate work around, hosting html the possess servers. any ideas?

modifying nsdate paint 1 month today

i'm adding repeating events cocoa app i'm operative on. i have repeat each week glorious since i interpretation mathematically (3600*24*7 = 1 week). i following formula cgange date: [nsdate datewithtimeintervalsincenow:(3600*24*7*(weeks))] i know months have upheld given eventuality steady nonetheless i can't figure out an nsdate vigilant represents 1 month/3 months/6 months/9 months future. ideally i wish user contend repeat monthly starting oct. 14 repeat 14th each month.

java generics syntax arrays

what information structure does following chapter specify? list<arraylist>[] myarray; i cruise should announce an array where any component list (e.g., linkedlist an arraylist ) need any list enclose arraylist objects. my reasoning: list<string> somelist; // list twine objects list<arraylist> somelist; // list arraylist objects list<arraylist>[] somelistarray; // an array list arraylist objects after controlling tests, i dynamic accepts an array where any component an linkedlist vigilant does mention linkedlist objects contain. so list<arraylist> specifies list contingency contain, nonetheless list<arraylist>[] specifies list contingency implemented. am i blank something? here tests. import java.util.arraylist; import java.util.list; import java.util.linkedlist; public category generics1 { open stationary vacant main(string[] args) { list<arraylist>[] somelistarray; somelistarray = getarrayw...

has belongs charge churned databases

i have conditions where i have twin models, companies permissions, where companies removed database permissions database. belongs charge since any association have permissions any assent go companies. the reason twin databases separate since association database runs high proceed prolongation concentration permissions database controls permissions another application. with rails, looks join list same database primary table. instance, i company.permissions, looks association database company_permissions. i permission.companies looks permissions database. what best fortitude controlling belongs charge churned databases?

asp.net mvc handleerror

how i [handleerror] filter asp.net mvc preview 5? i set customerrors web.config file <customerrors mode="on" defaultredirect="error.aspx"> <error statuscode="403" redirect="noaccess.htm"/> <error statuscode="404" redirect="filenotfound.htm"/> </customerrors> and put [handleerror] above controller category this: [handleerror] public category dswebsitecontroller: controller { [snip] open actionresult crashtest() { pitch new exception("oh noes!"); } } then i let controllers get category crashtest() them. visual studio halts during blunder after dire f5 continue, i rerouted error.aspx?aspxerrorpath=/sxi.mvc/crashtest (where sxi name used controller. off impetus route can't found i "server blunder '/' application." 404. this site ported preview 3 5. everything runs (wasn't many work port) solely blunder handling. when i emanate finish new diges...

disable blunder summary box while loading an outmost film actionscript 3

i have collected swf record i can't correct it , nonetheless film operative glorious (but gives an blunder summary message box). i am controlling an film (load as3 code). when loader film loads blunder summary box appears. i awe illusory invalidate errors while loading film as3. here blunder summary box: "typeerror: blunder #1009: can't opening ability slight zero vigilant reference. at motionsound11_fla::_all_29/motionsound11_fla::frame249()" yes. here blunder summary (editted initial post): "typeerror: blunder #1009: can't opening ability slight zero vigilant reference. at motionsound11_fla::_all_29/motionsound11_fla::frame249()" and i don't wish decompile movie. becomes some-more challenging decompiled. yes, bargain problem i did. nonetheless initial problem invalidate blunder summary box. thanks much. yes, right. there blunder browser (with peep actor plugin). my digest can't browser. an executable record (.exe) .swf . have "adobe peep ...

py2exe including msvc dlls .exe

when controlling py2exe liberate python applications wxpython, msvc dlls wholly indispensable .exe work creatively hallowed machines. particular, twin many common dlls msvcp71.dll msvcr71.dll the former enclosed .exe controlling . however, latter only placed dist dir py2exe executable, even i personally ask consolidate it. any thought means py2exe consolidate both inside .exe ?

losing button.click events after initial biased postback updatepanel

i have page unparalleled instance usercontrol itself unparalleled updatepanel. inside updatepanel several symbol controls. click eventuality controls connected adult code-behind, init eventuality usercontrol. i click eventuality initial symbol i push, each time, problem. after that, i wholly click events symbol (searchbutton) - rest ignored. i have enclosed formula control next - effect brevity, i have expelled click eventuality handler methods, nonetheless customary "void button_click(object sender, eventargs e)" variety. any ideas? <asp:updatepanel id="pickerupdatepanel" runat="server" updatemode="conditional"> <contenttemplate> <asp:panel id="container" runat="server"> <div> <asp:textbox id="pickerresults" runat="server" style="margin-right: 3px;" skinid="plain" /> <asp:image ...

asp.net: opening repeater generated form quarrel elements?

i'm wish have repeater beget garland checkboxes, e.g.: <tr><td><input type="checkbox" name="t" value="11cbf4deb87" /> <input type="checkbox" name="a" value="33cbf4deb87" />stack .com</td></tr> <tr><td><input type="checkbox" name="t" value="11cbf4deb88" /> <input type="checkbox" name="a" value="33cbf4deb87" />microsoft.com</td></tr> <tr><td><input type="checkbox" name="t" value="11cd3f33a89" /> <input type="checkbox" name="a" value="33cbf4deb87" />gmail.com</td></tr> <tr><td><input type="checkbox" name="t" value="1138fecd337" /> <input type="checkbox" name="a" value="33cbf4deb87" />youporn.com</td></tr> ...

using same asp quarrel churned tabs

in ajax toolkit add-on enclosing supplement tabpanels this. i have controls i wish means opposing tabs tailor tabs controls neccessary. my doubt i reuse quarrel churned tabs? essentially i after something this <tabcontainer> <tabpanel1> <contenttemplate> <pnl1></pnl1> //other controls here </contenttemplate> </tabpanel1> <tabpanel2> <contenttemplate> <pnl1></pnl1> //other controls here </contenttemplate> <tabpanel2> </tabcontainer> <pnl1> //some controls here </pnl1>

downloading request middle server externally

this bit uncanny one.... have an middle web app runs server (a) request repository runs server (b). i have rudimentary couple page i wish assent user download document(from iis server (a)). however request does exist server (a) until user clicks button(because there 40+ papers arrangement can't bucket page loads) when user clicks link(at indicate i following influenced download) the request copied server (a) following redirected page where browser prompts download. i trust i have set adult calm header justly works firefox. ie(7) only pops adult window following window disappears, i spin down confidence settings works ok nonetheless an option. any ideas solve this. i can't indicate directly request server(b) addition: approbation server b also web server

how i run junit section tests solely those finale "integrationtest" intellij thought digest controlling integrated exam runner?

i fundamentally wish run junit unit tests intellij thought digest (excluding junit formation tests), controlling stationary suite() slight junit. since stationary suite() method? since i following intellij idea's junit exam screen run section tests concentration (and simply bar formation tests controlling convention). formula distant looks this: package com.acme; import junit.framework.test; import junit.framework.testcase; import junit.framework.testsuite; import java.util.arraylist; import java.util.iterator; import java.util.list; public category allunittests extends testcase { open stationary exam suite() { list classes = getunittestclasses(); relapse createtestsuite(classes); } private stationary list getunittestclasses() { list classes = new arraylist(); classes.add(calculatortest.class); relapse classes; } private stationary testsuite createtestsuite(list allclasses) { testsuite unit = new testsuite("a...

unified navigation component jsf (menus, breadcrumbs, sitemap)

we're controlling myfaces, richfaces & restfaces build website tip seer stellant cms. we're controlling site studio. there any widgets/combination widgets out there yield one navigation system? site structure needs review db list cms metadata fields, need tip add-on menu, an expandable sidebar menu, breadcrumbs, sitemap (bonus points uses sitemaps.org standard). we're now controlling multiple spontaneity hand-rolled off-the shelf widgets aren't interoperating unequivocally good - opposite navigation comforts aren't staying sync site navigated.

string int java - approaching bad data, need prevaricate exceptions

seeing java doesn't have nullable types, nor does have tryparse(), how hoop quarrel validation but throwing an exceptions? the common way: string userdata = /*value gui*/ int val; try { val = integer.parseint(userdata); } catch (numberformatexception nfe) { // bad information - set sentinel val = integer.min_value; } i regex check it's parseable, nonetheless seems lot over well. what's best use doing situation? edit: rationale: there's lot pronounce difference handling, whole opinion exceptions should used astonishing scenarios only. however, i cruise bad user quarrel expected, rare. yes, unequivocally an educational point. further edits: some answers denote accurately wrong so. replace doubt being asked, answer another doubt zero it. doubt isn't seeking transition between layers. doubt isn't seeking relapse array un-parseable. know, val = integer.min_value; accurately right choice concentration totally context giveaway formula dash take from.

uitableview didselectrow while editing?

i'm building an interface many built-in continue application's flipside view, alarms perspective time concentration modifying mode. list perspective always modifying mode, mislay idol appears left side any cell. when list perspective modifying mode, nominee doesn't accept didselectrowatindexpath notifications. receives accessorybuttontappedforrowwithindexpath notifications, nonetheless that's i wish do. i wish rows stay selectable, even list perspective modifying mode. any ideas i accomplish this? thanks, p.s. hooray carried nda. =)

how i mislay specific node within xml record controlling vbscript

i am carrying problem i can't name specific xml node needs deleted. i have already attempted name node controlling xpath works glorious xml files nonetheless i can't figure out repremand xpath node some-more challenging file. does anybody know freeware apparatus bucket xml record user name specific node receives accurate xpath but carrying an bulletin path? /root/anything[2] <-- unfortunatly i can't such matter since array component competence change. i need an countenance formed an attribute. in box there freeware apparatus operation, does anybody know another proceed i name indispensable node? xml sample: root node: smsformdata attributes: xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:xsd="http://www.w3.org/2001/xmlschema" formatversion="1.0" xmlns="http://schemas.microsoft.com/systemsmanagementserver/2005/03/consoleframework" child node: form attributes: id="some guid" customdata="some data...

mingw library converted windows library gives rare couple vc++6

i used mingw .a windows .lib mutation slight footnote a thread gmp-discuss list, next (acting opposing library combined --disable-shared --enable-static.) cp libgmp.a gmp.a ranlib gmp.a mv gmp.a gmp.lib i have .lib record opposing vc++6 seems have problem linking. concerns me warning messages i'm removing couple phase: link : warning lnk4049: locally tangible representation "___mb_cur_max" imported link : warning lnk4049: locally tangible representation "__pctype" imported link : warning lnk4049: locally tangible representation "__iob" imported at indicate record inadequacy controlling of my dll (which wraps certain gmp functionality). nonetheless good enough? will carrying 3 black libgmp.a related windows dll end adult satirical me after on?

what biggest advantages llvm?

does anyone have trust , , ? the whole thought behind llvm seems unequivocally intriguing me i'm prying observant performs. i only don't wish dump whole lot perplexing collection out collection prepared production. if have trust tools, cruise them? vital prerequisites have encountered? biggest benefits? many thanks!

how i overrule list extent ability css

i have following impression an outmost css record called first.css table { width: 100%; } this creates tables fill container. there wholly twin little columns seem too distant any other. to force columns seem nearer i have total style table { width: 50%; } to new record called second.css related html file. is there any proceed overrule extent ability first.css but need mention extent second.css? i html act there never extent property, nonetheless i wish cgange first.css

vc9 vc8 lib compatibility

(the uncanny doubt asked there : ) someone asked : "while i build all vs2008 (vc9), physx sdk built vs2005 (vc8). means any problems, controlling vc9 collected libs used multiple vc8 lib?" i answered before i attempted .lib record (and .dll) generated vc8 consolidate vc9 collected exe, compiler couldn't open .lib file. now, answered problems.... i can't information lib harmony between vc9 vc8. so... help?

formatting list calm columns

i'm perplexing cost list twine values 2 buttress format. customary proceed origination list strings "normal text" controlling string.join method. however, wholly takes 2 arguments i wholly unparalleled buttress controlling "\n". i guess perplexing loop simply supplement add-on between columns nonetheless explanation didn't work correctly. i found an sincerely difficult proceed doing nonetheless it's 4 years ago. there an easy proceed nowadays? edit here list i wish use. skills_defs = ["acm:aircraft mechanic", "bc:body combat", "bio:biology", "cbe:combat engineer", "chm:chemistry", "cmp:computers", "crm:combat rifeman", "cve:civil engineer", "dis:disguise", "elc:electronics","eq:equestrian", "fo:forward observer", "for:forage", "frg:forgery", "frm:farming", "fsh:fishing", ...

open source java library furnish webpage thumbnails server-side

i am poison an open source java library beget thumbnails given url. i need gold capability, rather out outmost services, such . mentioned post: , nonetheless blurb solution. i'm anticipating java formed solution, nonetheless competence need feeling executing an outmost slight such , integrating something . any suggestions?

why isn't tradition wcf function progression component form being found?

i have fortitude contains twin projects. digest an asp.net web concentration project, category library. web concentration digest anxiety category library. conjunction strongly-named. in category library, i'll "framework," i have an endpoint function (an iendpointbehavior implementation) settlement component (a category subsequent behaviorextensionselement). settlement component i insert endpoint function use around configuration. in web application, i have an ajax-enabled wcf service. web.config, i have ajax use configured tradition behavior. system.servicemodel domain settlement graceful customary looks this: <system.servicemodel> <behaviors> <endpointbehaviors> <behavior name="myendpointbehavior"> <enablewebscript /> <customendpointbehavior /> </behavior> </endpointbehaviors> </behaviors> <servicehostingenvironment aspnetcompatibilityenabled="true" /> <services> ...

database design: repremand list settlement infinite array buttress values

i wish perform an examination opposite times. after each trial, i am left "large" set cost statistics -- let's say, 1000. i store outputs experiments table, nonetheless what's best way...? option 1 have list 1000 columns. seems bad idea. array statistics exceeds border array columns? option 2 have list 3 columns. let's say, id, statistictype, statisticvalue. way, have statistics want. however, reading unparalleled experiments statistics becomes some-more complicated. moreover, opposite statistics opposite information types?? any suggestions?

programmatically triggering events javascript ie controlling jquery

when an eventuality triggered user ie, set window.event object. wholly proceed triggered eventuality accessing window.event vigilant (as distant i know) this causes problem asp.net validators an eventuality triggered programmatically, triggering an eventuality by jquery. case, window.event vigilant stores final user-triggered event. when onchange eventuality discharged programmatically calm box an asp.net validator trustworthy it, validation breaks since looking during component discharged final event, component validator for. does anyone know proceed around this? seems problem solvable, nonetheless looking online, many only ways replace problem instead clarify it. to explain i'm doing specifically: i'm controlling jquery picker plugin calm box also 2 asp.net validators compared it. changed, i'm controlling an transform quarrel post behind server things dynamically, i need onchange eventuality glow method trigger postback calm box. the jquery picker operates formulating...

how i opening private pivotal aspnet user account?

i'm carrying problem importing accessing private pivotal aspnet user. i know imports private pivotal (.pfx file) manually, windows, an choice symbol pivotal exportable. now, distant i tell, indispensable method collect private pivotal after on. my problem comes i'm importing private pivotal code, aspnet user, there doesn't seem proceed symbol exportable, proceed windows certificate import sorceress does. to clarify, import works only fine, nonetheless i opening sum now-imported certificate, there private pivotal data. this formula i'm controlling import certificate, once i have already uninterrupted .pfx file, repremand password. public vacant importcertificate(x509certificate2 cert, storename name, storelocation loc) { x509store certstore = new x509store(name, loc); storepermission assent = new storepermission(permissionstate.unrestricted); permission.flags = storepermissionflags.addtostore; permission.assert(); certstore.open(openflags.readwrite); ...

how transform firefox 2 congruous extensions controlling iframe firefox 3?

i am perplexing transform tradition firefox progression i combined tasks during work. fundamentally sidebar pulls adult the webpages an iframe several purposes. relocating firefox 3 iframe won't seem during all. below an instance xul files contains progression specific formula including iframe, now only an try bucket google nonetheless it won't work anything. i can't any plead online changes ff3 means this. any suggestions appreciated. <?xml version="1.0"?> <?xml-stylesheet href="chrome://customsidebar/skin/customsidebar.css" type="text/css"?> <overlay id="customsidebar-main" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> <script type="application/x-javascript" src="chrome://customsidebar/content/customsidebar.js"/> <vbox flex="1"> <toolbar> <vbox> <hbox id="customsidebar_toptoolbarrow"> ...