Posts

Showing posts from June, 2014

is list::size() unequivocally o(n)?

recently, i beheld mentioning std::list::size() linear complexity. according , fact doing contingent customary doesn't contend complexity be. the critique says: actually, depends stl you using. microsoft visible studio v6 implements size() {return (_size); } since gcc (at slightest versions 3.3.2 4.1.0) { relapse std::distance(begin(), end()); } the initial consistent speed, second o(n) speed so speculation vc++ throng size() consistent complexity dinkumware probably won't have altered fact given vc6. am i right there? what does feeling now gcc ? unequivocally o(n), since the developers select so?

how i deserialize saml avowal rampart/c (axis2/c)?

i have saml 1.1 saml 1.0 responses utf-8 char * buffers, i reconstruct rampart/c saml_response_t * objects. doubt this: what repremand slight formulating saml_response_t string? ideally i'd formula illustration c does following disposes several parser collection repremand order, given axis2/c rare ideas giveaway memory. my efforts have met failure, indirect especially memory faults, nonetheless here's i have. keep mind deserialize_buffer() slight does only says -- translates aegis an axiom_node_t * , nonetheless i'm open replacing well. /* : tender xml saml avowal */ xml_data = tcl_getstringfromobj (objv[2], &xml_length); /* : parse response xml guess */ stream = gstream_mem_create (xml_data, xml_length); node = axis2_axiom_deserialize_buffer (env, stream); /* : build saml response parsed xml */ saml_response = saml_response_create (env); saml_response_build (saml_response, node, env); arraylist = saml_response_get_assertions (saml_response, env); /* : emanate the...

embed settlement code, but controlling apparatus domain outmost images

i'm looking proceed hide an settlement library (windows-only). i don't wish 'traditional' proceed putting resources (because special resources accessible disaster around apparatus handle. ideally, there something xpm files: 'text' illustration an settlement put c array formula translates bitmap memory, following somehow hallowed an himage an hicon. images i wish hide 32-bit bitmaps (bmp). any ideas? i'm controlling mfc an mfc library fine, nonetheless impetus i library doesn't mfc too. thanks.

why query strings asp.net mvc route?

on an asp.net mvc (beta) site i am building infrequently calls actionlink relapse me urls containing querying strings. i have removed resources furnish behavior, nonetheless i still know why, instead producing purify url, decides controlling query twine parameter. i know functionally same, nonetheless conformity (and appearance) urls i want. here routes: routes.maproute( "photo gallery shortcut", "group/{groupname}", new { controller = "photos", movement = "all", id = "" }); routes.maproute( "tagged photos", //since tagged movement takes an additional parameter, put first "group/{groupname}/photos/tagged/{tagname}/{sortby}", new { controller = "photos", movement = "tagged", id = "", sortby = "" }); routes.maproute( "photo gallery", //since gallery's defualt movement "all" "index" the listed seperatly "group/...

how control event variables web cluster?

session variables customarily keept web server propel memory. in cluster, any ask finished fan burnished opposite cluster node. right?! so, case... what happens event variables? aren't stored nodes propel memory? how nodes burnished ask justly doesn't have event variables, during slightest it? this emanate treated web server (apache, iis) libel runtime (php, asp.net, ruby, jsp)? edit: there fortitude classic asp ?

adding boost creates debug build count "non-d" msvc runtime dlls

i have an irritating problem i competence means somehow circumvent, nonetheless palm many rather tip know accurately going on, given looks things unequivocally here stay. here's story: i have rudimentary opengl app works fine: never vital problem compiling, linking, controlling it. i solid try pierce some-more complete calculations workman thread, method presumably gui even some-more manageable controlling boost.thread, course. in short, i supplement following bit commencement .cpp file: #include <boost/thread/thread.hpp> void dummythreadfun() { while (1); } boost::thread p(dummythreadfun); , following i start removing "this concentration unsuccessful start since msvcp90.dll found" perplexing launch debug build. (release mode works ok.) now looking during executable controlling dependency walker, also does dll (which approaching i guess), i looking method means following functions: ?max@?$numeric_limits@k@std@@sakxz ?max@?$numeric_limits@_j@std@@sa_jxz ?min@?$nu...

is illusory exercise python code-completion textmate?

seems good starting point. i cruise should possible, pysmell's idehelper.py does decrease challenging stuff, should only box giving tide line, charity adult completions (the bit i am certain about) following replacing line comparison one. >>> import idehelper >>> # route where pysmelltags record located: >>> pysmelldict = idehelper.findpysmelldict("/users/dbr/desktop/pysmell/") >>> options = idehelper.detectcompletiontype("", "" 1, 2, "", pysmelldict) >>> completions = idehelper.findcompletions("proc", pysmelldict, options) >>> imitation completions [{'dup': '1', 'menu': 'pysmell.pysmell', 'kind': 'f', 'word': 'process', 'abbr': 'process(arglist, excluded, output, verbose=false)'}] it'll never perfect, nonetheless severely useful (even only completing stdlib modules, should never change, can...

hash impression route throws directorynotfoundexception

consider following formula snippet private vacant processfile(string fullpath) { xmltextreader rdr = new xmltextreader("file:\\\\" + fullpath); while (rdr.read()) { //do something } return; } now, functions glorious upheld route like: "c:\work files\technical information\dummy.xml" but throws an blunder passed "c:\work files\#technical information\dummy.xml" note folders files specified exist crush impression current impression paths. blunder sum are: system.io.directorynotfoundexception: biased route 'c:\work files\'. during system.io.__error.winioerror(int32 errorcode, twine maybefullpath) during system.io.filestream.init(string path, filemode mode, fileaccess access, int32 rights, boolean userights, fileshare share, int32 buffersize, fileoptions options, security_attributes secattrs, twine msgpath, boolean bfromproxy) during system.io.filestream..ctor(string path, filemode mode, fileaccess access, fileshare share...

convert request.querystring todatetime following fetch controlling datacontext linq c# asp.net

i wanna timedate value another page controlling request.querystring following an query review lift adult relating datas. duty query linq is: stable vacant user_querytime() { dataclasses2datacontext dc1 = new dataclasses2datacontext(); twine information = request.querystring["timeofmessage"]; var query7 = u dc1.syncback_logs where u.timeofmessage = data orderby u.timeofmessage descending name u; gridview1.datasource = query7; gridview1.databind(); } here "request.querystring["timeofmessage"]" i datetime (ex:8/25/2008 9:07:19 am). i wanted review opposing "u.timeofmessage" database lift adult relating records. when i todatetime duty modify twine datetime ,the value returned bool hence means review opposing "timeofmessage" datetime format database. anyone assistance me this?

visual studio debugger tips & tricks (for c/c++ projects)

i'm prying tips tricks per debugging c/c++ digest visible studio's debugger. i recently found out have pointer certain information type, let's contend char* ptr, following an array watch window controlling syntax such as: ptr,10 this arrangement initial 10 elements ptr address, same proceed displayed construction be: char ptr[10]; what tips tricks know visible studio debugger? ps: i wish theme wasn't already discussed. should identical post, greatfully let me know.

data-bound textbox: can't exit

i've got calm box organization an object's ability (in fact several calm boxes) form. an editor an object. i'm modifying objects cgange values calm boxes i can't exit calm box (neither add-on nor clicking another calm box). however that's always box - modifying objects (of same type) works fine. here's formula snipet: txtvalue.databindings.add("text", _sourceobject, "plannedvalue", true, datasourceupdatemode.onpropertychanged, nothing, "c") txtestplacements.databindings.add("text", _sourceobject, "estimatedplacementcount") txtreference.databindings.add("text", _sourceobject, "reference") any suggestions?

how hibernate @any-related annotations?

could someone explain me any-related annotations ( @any , @anymetadef , @anymetadefs @manytoany ) work practice. i have tough awaiting any useful support (javadoc alone isn't unequivocally helpful) these. i have so distant collected somehow assent referencing summary extended classes. case, since there an @onetoany annotation? 'any' referring unparalleled 'any', churned 'any'? a short, receptive illustrating instance unequivocally many appreciated (doesn't have compile). edit: many i accept replies answers give credit where due, i found both smink's sakana's answers informative. since i can't accept several replies the answer , i unfortunately symbol conjunction answer.

keep resizing calm pulling elements the enclosing around?

i have following html <div id="menu"> <ul class="horizmenu"> <li id="active"><a href="#" id="current">about</a></li> <li><a href="#">archive</a></li> <li><a href="#">contact</a></li> <li><a href="#">item four</a></li> <li><a href="#">item five</a></li> </ul> </div> and css i have .horizmenu li { display: inline; list-style-type: none; padding-right: 20px; } #menu { text-align:center; margin-bottom:10px; letter-spacing:7px; } #menu a { color:red; } #menu a:hover { color:blue; font-weight:bold; } everything works graceful well, solely i rodent over links, tone changes becomes bold, i want, nonetheless also causes li elemen...

oop: where stop abstracting

where pull line stop origination abstractions start minute lucid code? there tons examples 'enterprise code' such dozen-file "fizzbuzz" program... even something rudimentary such an rts diversion have something like: class actor {} ;/// contains weapons class weapons{} ;/// contains bullettypes class bullettype{} ;///contains descriptions bullets class bullet{} ;///extends placeableobject renderableobject placed/drawn respectively class placeableobject{} ;///has x,y,z, coords class renderableobject{} ;///an vigilant draw() command class movingobject{}; ///an vigilant move() function etc... spin nightmare. drawn the judicious extreme, many organic programming drawn impassioned where emanate libel wholly variables, duty application, opposite duty definitions (although i contingency acknowledge rather some-more elegant)... any lucid recommendation topic?

how i countenance category plans given domain?

i am operative car dealership business domain model/uml category diagram. i am new modeling, i know countenance category diagram. it's unequivocally vicious me have an appropriate, 100 percent correct, category plans offer growth (use cases, etc.). is illusory build totally crude model? there wholly suitable reduction suitable models? if i have fan compared salesteam displaying fan being served salesteam, wrong? i have seen examples fan being compared order, method itemorder itemorder iteminventory. where salesteam staff compared order. how i countenance denote relationships?

how i bury center list controlling jquery?

i have unequivocally enlarged 3 buttress table. i <table> <tr><td>column1</td><td>column2</td></tr> <tr><td>column1</td><td>column2</td></tr> <tr><td>start</td><td>hiding</td></tr> <tr><td>column1</td><td>column2</td></tr> <tr><td>column1</td><td>column2</td></tr> <tr><td>column1</td><td>column2</td></tr> <tr><td>end</td><td>hiding</td></tr> <tr><td>column1</td><td>column2</td></tr> <tr><td>column1</td><td>column2</td></tr> </table> this outcome i'm perplexing obtain controlling jquery. column1 column2 column1 column2 ...show full table... column1 column2 column1 column2 i jquery's show/hide underline minimiz...

how hinder wreck referenced public isn't found?

i have little management line way uses organisation component api. repremand organisation component isn't hallowed machine, way prints traceback system.io.filenotfoundexception, nonetheless also crashes shows customary blunder messasge: xxx encountered problem and needs close. contemptible the inconvenience. i only wish way imitation "the way requires organisation component 2008" summary console quit but crashing. from i know whole loading slight duty before initial line c# formula run. there any proceed control this?

should i establish loathing "using" gauge c# projects?

my co-worker insists definitely naming namespace formula opposing controlling . difference wants entirely competent name any form each form occurs code. something public category myclass { open stationary vacant main() { system.console.writeline("foo"); } } instead of: using system; public category myclass { open stationary vacant main() { console.writeline("foo"); } } you suspect consequences. the pros gives: it's easier duplicate brew formula source files. it some-more entertaining (you namespaces right away). my cons: i have some-more the formula reduction entertaining (i speculation de gustibus non disputandum est) no does it! what cruise this?

what views good for?

i'm only perplexing whole thought views used rdbmses. say, i know perspective one. i also know i've used past. but i wish certain i have consummate bargain perspective useful perspective shouldn't useful for. some-more specifically: what perspective useful for? are there any situations delicious perspective shouldn't one? why perspective lieu something table-valued duty clamp versa? are there any resources perspective competence useful aren't apparent during initial glance? (and record, questions intentionally naive. partly visualisation check.)

using c# params keyword constructor general types

i have general category c# 2 constructors: public houses(params t[] initialiseelements) {} public houses(int num, t defaultvalue) {} constructing an vigilant controlling int general form flitting twin ints arguments causes 'incorrect' constructor called (from indicate view). e.g. houses<int> houses = new houses<int>(1,2) - calls 2nd construtor. flitting any array ints constructor 1st constructor. is there any proceed around stealing params keyword forcing users pass an array t controlling initial constructor?

what good starting points someone prying healthy libel processing?

question so i've recently came adult new illusory projects have understanding deriving 'meaning' calm submitted generated users. domain deals kinds issues, after initial investigate i found university collaborations . . if anyone couple me good resources, reseach papers introductionary texts apis, i'd happier 6 year-old child opening christmas presents! update through your recommendations i've found ( 'the world's largest many finish whole trust bottom commonsense explanation engine' ). even some-more surprising still, there's digest strong chronicle opencyc called . comforts semantic information rdf/owl/skos n3 syntax. i've also stumbled on , parser generator 'constructing recognizers, interpreters, compilers, translators grammatical descriptions' . and there's doubt here me, lists tons . thanks community!

memory accessviolationexception blunder job dll c#

i'm encountering uncanny memory read/write blunder while job collected dll c#. i dllimport hoop duty need, writes relapse value parametric pointer an int (i.e., int* out). duty called churned times within thread, runs successfully over execution life initial thread. however, launches another thread after initial completed, outmost dll throws an accessviolationexception. given churned calls initial thread govern successfully, i'm pondering somehow associated initial thread releasing pointers applicable integer parameters(?). so, i definitely redeem memory? or, maybe someone opposite understanding competence going here? conclude unequivocally much. edit: danny requested some-more specifics, i'm happy oblige. here where outmost slight invoked: int success = -1; unsafe { int res = 0; int* res_ptr = &res; int len = cmd.tochararray().length; int* len_ptr = &len; cmdinterpreter(ref cmd, len_ptr, res_ptr); success ...

access sql copy

we have an opening db set internal tables quarrel forms etc. user maintains data. we also have sql db same tables used displays information web hunt form. what best proceed grant user udate changes sql db while retaining operative duplicate internal work offline following pull files happy new chronicle data? my initial guess supplement sql tables related tables i following lop (access does that) mislay calm any list following an insert any table. can i sp opening sql lop tables i am have problem controlling deletes i unequivocally wish down user controlling macro/sql repeatable etc. thanks your help

what compels attend your internal user group(s)?

so i'm des moines, iowa have good array user groups the area deliberation the size. ruby, .net, java, agile, *nix, etc... well, tonight good array us "leaders" conspicuous user groups got together integrate drinks pronounce work together assistance "demo" (i keep observant twitter) user organisation theatre better. we came adult array rather good ideas, nonetheless i'm curious. compels attend your internal user group(s)? puncture low here guys. maybe giveaway pizza, give aways. nonetheless i'm some-more prying know things out side freebie stuff.

switch matter linq

my formula sql tie controlling linq is: var query1 = u dc.usage_computers where u.domainuser == s3 name u; // selects feilds table gridview1.datasource = query1; gridview1.databind(); i have domain called "operation" list "domainuser" values "1, 2, 3". i stock values information grid i wanted modify revealing values value operation 1 following arrangement datagrid "logon", 2 following "logoff" etc... how i distribute values after retrieving database?

matching twine unchanging expression

i review (10.00) twine date ("21.01.08 10.00"). i'm controlling following unchanging expression: new regexp("\\b[0-9]{1,2}\\.[0-9]{1,2}\\b" "g"); but matches 21.01 21.01.08 10.00. i'm controlling pcre regualar countenance engine. update: i'm sorry, i should have some-more more clear. information biased incomparable string. i wish mislay string. for example: "on 21.01.08 10.00 jubilee take place library" "21.08.08 - during 10:00 there party" "on 21.08.08 scheduled ... . ... start during 10.00" is possible?

best use loading vigilant serialized xml c#

greetings, i have sole vigilant assembled file, such: public category configobj { open configobj(string loadpath) { //load vigilant controlling .net's reputed serialization library //resulting configobj object configobj deserializedobj = voodooloadfunction(loadpath); //the line next won't compile = thisismyobj; } } i wish to, essense, contend "ok, vigilant we've only deserialized, vigilant fact are." there few ways doing this, i'm wondering deliberate best-practice. ideas are: build copy-into-me duty copies vigilant domain field. tide doing i'm graceful certain the terrible thought given whenever new member total vigilant i need also remember supplement 'copy-into-me' function, there's proceed that's maintainable. build stationary slight configobj category acts de-facto constructor loading object. sounds many improved nonetheless unequivocally best-practice-y. i'm who...

oracle v$osstat

the seer perspective v$osstat binds few handling statistics, including: idle_ticks array hundredths second processor idle, totalled over processors busy_ticks array hundredths second processor bustling executing user heart code, totalled over processors the support i've review pristine presumably ever reset. does anyone know? another doubt i have i'd work out normal cpu bucket component experiencing. i design i have go: busy_ticks / (idle_ticks + busy_ticks) is correct? update nov 08 oracle 10g r2 includes stat called bucket table. provides tide bucket accessory during value read. many improved controlling information *_ticks information "since instance start" tide indicate time.

wpf listbox arrangement symbol itemtemplate mouseover

i have listbox containing settlement button. default symbol hidden. i wish symbol manifest whenever i float over an vigilant listbox. the xaml i am controlling below. thanks <window.resources> <style targettype="{x:type listbox}"> <setter property="itemtemplate"> <setter.value> <datatemplate> <border borderbrush="black" borderthickness="1" margin="6"> <stackpanel orientation="horizontal"> <image source="{binding path=fullpath}" height="150" width="150"/> <button x:name="sidebutton" width="20" visibility="hidden"/> </stackpanel> </border> ...

encryption soap summary focus 2

i need encryption (and signature) web-service (server side). i axis2 successfully total fortification way (for ws-security implementation). but fortification page () blank examples illustration record unequivocally documented. so doubt : simplest proceed supplement encryption (and signature) ? i have put services.xml, i have policy.xml ? i have give client's developer (in offer wsdl) ? if indicate me good educational helpful, interjection etc...

tool parsing smtp logs finds bounces

our web concentration sends e-mails. have lots users, lots bounces. example, user changes association company e-mail longer valid. to bounces, i parse smtp record record record parser. logs microsoft smtp server. some bounces great, 550+#5.1.0+address+rejected+user@domain.com . there user@domain.com bounce. but have e-mail blunder message, 550+no+such+recipient . i have combined rudimentary flush book parses logs (uses record parser) mail caused something 550+no+such+recipient . i am only bewildered i apparatus does it. i have found collection zabbix splunk record analysis, nonetheless feeling profusion such rudimentary task. anybody knows apparatus parse smtp logs, bounces e-mails means them?

how i govern way python? os.system fails due spaces path

i have python book needs govern an outmost program, nonetheless reason fails. if i have following script: import os; os.system("c:\\temp\\a b c\\notepad.exe"); raw_input(); then fails following error: 'c:\temp\a' famous an middle outmost command, operable way collection file. if i evade way quotes: import os; os.system('"c:\\temp\\a b c\\notepad.exe"'); raw_input(); then works. however, i supplement parameter, stops operative again: import os; os.system('"c:\\temp\\a b c\\notepad.exe" "c:\\test.txt"'); raw_input(); what right proceed govern way wait complete? i need review cost it, visible way does office following only exits, nonetheless i need wait complete. also note, relocating way non-spaced route an choice either. this does work either: import os; os.system("'c:\\temp\\a b c\\notepad.exe'"); raw_input(); note replaced single/double quotes. with but parameter notepad here, fails blunder message t...

file confidence attributes removing screwed adult record copy

i've windows use updates the product. copies product files temp directory, wholly "c:\windows\temp", rags binaries, following uses movefileex duplicate files behind exercise office reboot, wholly "c:\program files\product". files exercise office inheriting confidence attributes progenitor folder. after copy, patch, reboot, files exercise office blank acls. personally files don't have acl users organisation anymore users longer run way after reboot. can anyone explain whats going here? seems duplicating exercise office temp directory, files get acls temp directory. movefileex/reboot, though, files wholly get acls both exercise temp directories have common.

entity perspectives

context: so, i am attempting build ridiculously challenging domain model. articulate users, there churned ways component used (for example: proceed outlook employee; another proceed outlook employer). actuality, churned applications reusing core domain. question: wrong emanate domain churned perspectives? instance, build domain business run meant formulating kinds charge classes lift additional information entity on... however, controlling sole perspective, settlement many clearer since many charge classes rolled progenitor entity. ideas? rebuttals? am i totally off-base?

i review binary domain ms sql server 2005

i try review binary domain database ( digest server 2007; dbo.msp_calendar ). ms don't implemante any fonction psi. everybody have suggestion? thanks advance spo in database piblished, list dbo.msp_calendar, i found domain named cal_data, domain binary. i try ban modify domain twine datetime....... microsoft domain save ressource personal calendar nonetheless i can't retreived information wholly microsoft business digest pro 2007. surpassing version, calendar datetime. new chronicle digest 2007 ms put information binary field. i try any fortitude review information.

get full route executable controlling slight hpux

i wish full route controlling slight (executable) but carrying bottom assent controlling c++ code. someone advise proceed grasp this. on linux platforms i controlling following way. char exepath[1024] = {0}; char procid[1024] = {0}; char exelink[1024] = {0}; sprintf(procid, "%u", getpid()); strcpy(exelink, "/proc/"); strcat(exelink, procid); strcat(exelink, "/exe"); readlink(exelink, exepath, sizeof(exepath)); here exepath gives us full route executable. similarly windows controlling getmodulefilename(null, exepath, sizeof(exepath)); /* fullpath use */ please assistance me hp-ux given there /proc office hp-ux.

core animation rotating covering around erratic point

how i stagger covering controlling core animation around an erratic point? ( box indicate inside covering i wish stagger ) i move doing but changing anchor point, since unless i something wrong each i change anchor indicate also changes position layer. i attempted something nonetheless didn't work: [uiimageview beginanimations:nil context:nil]; catransform3d rotationtransform = catransform3didentity; rotationtransform = catransform3dtranslate(rotationtransform, 0.0, -100.0, 0.0); rotationtransform = catransform3drotate(rotationtransform, degreestoradians(180), 0.0, 0.0, 1.0); rotationtransform = catransform3dtranslate(rotationtransform, 0.0, 100.0, 0.0) shape1.layer.transform = rotationtransform; [uiimageview commitanimations]; it looks series focus relocating during rotate.

vb.net - iterating by controls enclosing object

i have form "clear" button. when user clicks "clear", i wish pristine value manifest elements form. box date controls, i wish reset tide date. all controls contained panel. right now, i'm doing next code. there an easier proceed manually checking any control type? slight seems excessively unwieldy. to matters worse, method recursively pristine controls inside sub-containers (i.e., organisation box within panel) i have repeat whole monster an overloaded "groupbox" version. edit: interjection your suggestions, next formula severely simplified. private servant btnclear_click(byval sender system.object, byval e system.eventargs) handles btnclear.click 'user clicks clear, pristine controls within panel clearallcontrols(panmid, true) 'true indicates yes, i wish recurse by sub-containers end sub clearallcontrols(byref enclosing panel, discretionary recurse boolean = true) 'clear controls within enclosing object 'if "recur...

asp.net : flitting outmost non-static <asp:sqldatasource> add-on asp.net 2.0

i'm conceptualizing vb formed asp.net 2.0, i am perplexing some-more several asp tags visible studio provides, rather palm minute all code-behind. i wish pass an outmost non-static event brand user query. <asp:sqldatasource id="datastores" runat="server" connectionstring="<%$ connectionstrings:my_connection %>" providername="<%$ connectionstrings:my_connection.providername %>" selectcommand="select thing1, thing2 data_table where (thing2 (select thing2 related_data_table where (username = @user)))" onselecting="data_stores_selecting"> <selectparameters> <asp:parameter name="user" defaultvalue ="" /> </selectparameters> </asp:sqldatasource> and formula behind i have: protected servant data_stores_selecting(byval sender object, byval e system.web.ui.webcontrols.sqldatasourceselectingeventargs) ...

nested confine areas

i formulating control wpf, i have doubt wpf gurus out there. i wish control means enhance fit resizable window. in control, i have list box i wish enhance window. i also have controls around list box (buttons, text, etc). i wish means set smallest distance control, nonetheless i wish window means sized smaller formulating confine bars regard control. this creates nested confine areas: list box scrollviewer jacket whole control. now, list box set automobile size, never have confine bar since always drawn full distance within scrollviewer. i wholly wish control confine calm can't any smaller, differently i don't wish confine control; instead i wish confine list box inside control. how i change default function scrollviewer class? i attempted inheriting scrollviewer category vital measureoverride arrangeoverride classes, nonetheless i couldn't figure out magnitude arrange child properly. appears arrange impact scrollcontentpresenter somehow, tangible calm child. any help/sugge...

actionscript - mixing as2 resources unparalleled swf

i have peep digest i'm perplexing trade unparalleled swf. there's sure swf record loads 6 swfs, both sure child swfs anxiety outmost resources (images, sounds, etc). i'd package all unparalleled .swf record i don't have receptacle resources around .swf. all coding finished timeline, nonetheless resources haven't alien peep authoring sourroundings i don't have right (there too references everywhere). i'm anticipating there's only an choice i'm blank allows arrange finished export, nonetheless i haven't found anything that. i don't have opening flex mxmlc (and as timeline-based, wouldn't indispensably assistance me). any thoughts? thanks! ps...if there's proceed doing accurately i'm saying, i understanding carrying resources "assets" folder something that, i'd only toting around main.swf an resources folder. problem here references resources assume they're same folder main.swf file, everything's feigned l...

forms cookies - glorious proceed quarrel forms

hoi! i have form i wish submit, nonetheless i need supplement phpsessid, since clients grant cookies. there several javascript functions page displays list users (search, sort, open details), page generated php. now i am looking an glorious proceed have phpsessid enclosed each quarrel form - needs finished several pages, i wish an easy solution. adding phpsessid movement dark domain does work properly. or problem located elsewhere? fan behind too confining firewall something. any ideas (especially solutions ;-) ) instruction also welcome! example formula (extremely simplified): <form name="userlist" method="post" action="./myuserlist.php"> [...some formfields stuff..] </form> <script> //one instance function, there several page function next_page() { //set dark domain unbroken page document.forms[0].submit(); } </script> thanks advance! bye, basty [edit] session.use_trans_sid set true

what wrong an "unrecognized settlement domain runtime" settlement exception

in sole web.config: <configuration> <configsections> <section name="rstrace" type="microsoft.reportingservices.diagnostics.rstracesectionhandler,microsoft.reportingservices.diagnostics" /> </configsections> <system.diagnostics> <switches> <add name="defaulttraceswitch" value="3" /> </switches> </system.diagnostics> <rstrace> <add name="filename" value="reportserverservice_" /> <add name="filesizelimitmb" value="32" /> <add name="keepfilesfordays" value="14" /> <add name="prefix" value="appdomain, tid, time" /> <add name="tracelisteners" value="file" /> <add name="tracefilemode" value="unique" /> <add name="components" value="all:3" /> </rstrace> ...

how initialise rather challenging bake array c?

assuming visible c/c++ 6, i have challenging information structure 22399 elements looks this: { { "(same", "as", "u+4e18)", "hillock", "or", "mound"}, { "to", "lick;", {1, 1, 0}, "taste,", "a", "mat,", "bamboo", "bark"}, { "(j)", "non-standard", "form", "of", "u+559c", ",", {1, 1, 0}, "like,", "love,", "enjoy;", {1, 1, 4}, "joyful", "thing"}, { "(an", "ancient", {1, 2, 2}, {1, 2, 3}, "u+4e94)", "five"}, ... } what's best proceed announce this? i've attempted things char * abbrevs3[22399][] = { ... }; and char * abbrevs3[22399][][] = { ... }; but accumulate whinges something chronic. edit : information database descriptions certain unihan characters. i've exploring several ways compressing data. stan...

how change an quarrel symbol settlement controlling css?

so, i emanate an quarrel symbol an settlement using <input type="image" src="/images/btn.png" value=""> but, i can't same function controlling css. instance, i've tried <input type="image" class="mybutton" value=""> where "mybutton" tangible css record as .mybutton { background:url(/images/btn.png) no-repeat; cursor:pointer; width: 200px; height: 100px; border: none; } if that's i wanted do, i uncanny style, nonetheless i wish change button's coming float (using mybutton:hover class). i know links good, since i've means bucket credentials settlement tools page (just check). i found examples web controlling javascript, nonetheless i'm looking css solution. i'm controlling firefox 3.0.3 creates difference.

button generated any vigilant an xslt record runat server

i am tryiing emanate an "add cart" symbol any vigilant displayed an xslt file. symbol contingency run during server (vb) i need pass parameters onlick, requested vigilant total cart. possible, so, should i it? when i try <asp:button id="button123" text="add cart" commandname="addtocart" commandargument="123" oncommand="commandbtn_click" runat="server"/> i "'asp' an undeclared namespace" i've also tried <asp> <xsl:attribute name="button">id="btnaddtocart"</xsl:attribute> <xsl:attribute name="text">add cart</xsl:attribute> <xsl:attribute name="commandname">addtocart</xsl:attribute> <xsl:attribute name="commandargument">123</xsl:attribute> <xsl:attribute name="command">commandbtn_click</xsl:attribute> <xsl:attribute name="runat...

can gorilla patch methods core forms python?

ruby supplement methods array category core forms effects this: 1.should_equal(1) but seems python can't this. true? so, why? does have something fact type can't modified? update: rather articulate opposite definitions gorilla patching, i only concentration instance above. i have already resolved can't finished few have answered. nonetheless i some-more footnote reason since can't done, maybe feature, accessible python, grant this. to answer you: reason i might wish simply aesthetics/readability. item.price.should_equal(19.99) this reads some-more english clearly indicates tested value approaching value, ostensible to: should_equal(item.price, 19.99) this visualisation flush frameworks formed on.

how set comparison quarrel datagridview newly-added quarrel grid organization sorted dataview?

i have datagridview organization dataview . grid sorted user any column. i supplement quarrel grid job newrow dataview 's underlying datatable , following adding datatable 's rows collection. i name newly-added quarrel grid? i attempted doing formulating bindingmanagerbase vigilant organization bindingcontext dataview , following sourroundings bindingmanagerbase.position = bindingmanagerbase.count . works grid sorted, given new quarrel gets total bottom grid. however, arrange method such quarrel total bottom, does work. how i reliably set comparison quarrel grid new row?

how control twine interpretation process?

i am operative program digest needs translated 30 languages. means changing any twine incurs comparatively high cost. additionally, interpretation does occur overnight, since interpretation package needs worked opposite translators, competence take while. adding new comforts unwieldy somehow. cruise adult strings indispensable before indeed formula ui, nonetheless infrequently still need supplement new strings since bug fixes since an oversight. so doubt is, control process? any tips palliate impact interpretation program project? order strings, instead carrying strings order you? edit: controlling java strings internationalized controlling apparatus bundles, problem internationalization per-se, nonetheless supervision strings.

multiple viewports same displayobject

Image
is illusory have churned perspective same arrangement object? (e.g. same-computer multi-player diversion controlling separate screen) the illustration formula unsuccessful work follows: var content: enchantress = new sprite(); var v1: enchantress = new sprite(); var v2: enchantress = new sprite(); with(content.graphics) { linestyle(2, 0xff0000); drawcircle(100, 100, 80); linestyle(5, 0x009999); drawrect(50, 80, 200, 30); } v1.addchild(content); v1.x = 0; v1.y = 0; v1.scrollrect = new rectangle(0, 0, 100, 100); addchild(v1); v2.addchild(content); v2.x = 100; v2.y = 0; v2.scrollrect = new rectangle(0, 0, 100, 100); addchild(v2); i guess twin viewports ( v1 v2 ) same vigilant ( content ). but i checked docs, displayobjectcontaner/addchild method, says, "if supplement child vigilant already opposite arrangement vigilant enclosing parent, vigilant private child list arrangement vigilant contain...

stemming algorithm produces genuine words

i need take method calm mislay list "tags". many definitely loyal forward. however i need assistance stemming indirect list prevaricate duplicates. example: village / communities i've used an doing porter stemmer algorithm (i'm minute php way): this works, adult point, nonetheless doesn't relapse "real" words. instance above stemmed "commun". i've attempted "snowball" (suggested within another smoke-stack yield thread). for instance (community / communities), snowball stems "communiti". question are there any stemming algorithms this? anyone else solved problem? my tide pondering i stemming algorithm prevaricate duplicates following collect shortest i confront tangible display.

why won't post results?

i am carrying problem grabbing values form once processed. i need your help. function updateuser($table, $id) { if($_post) { processupdate($table, $id); } else { updateform($table, $id); } } function processupdate($table, $id) { imitation $table; //testing imitation $id; //testing $email=addslashes($http_post_vars['email']); $lname=addslashes($http_post_vars['lname']); $fname=addslashes($http_post_vars['fname']); imitation $lname; //which list update switch($table) { box "maillist": $result = mysql_query("update $table set email='$email', lname='$lname', fname='$fname' where id='$id'") die(mysql_error()); break; } } the duty updateform($table, $id); only outputs form, email, lname, fname fields. slight form, movement same, w/ list id being upheld thru url, get's id list way, lname, fname, email, should sq...

apache - shelter surrogate http 302 station message

my organisation perplexing setup an apache shelter surrogate customer's site the web applications. maps inside the concentration struts have route = loyal set certain actions method yield certain functionality. 302 station messages re-directs means user smack out surrogate indirect an blunder page finish user. http/1.1 302 found location: is there any proceed setup shelter surrogate apache redirects work correctly?

data forms upheld visible studio 2008

i only downloaded hallowed latest journey works database some-more enactment around linq found there information forms natively upheld within visible studio 2008. i "one some-more comparison equipment enclose information form upheld designer." blunder message. i found spatial information form emanate case. my questions are: what information forms not inherently upheld visual studio sql offer 2008? why forms supported? the second doubt i speculation many mysterious me. i know since information forms upheld mysql, oracle, postgre sql forth. i cruise sqlserver growth group, competence give heads adult visible studio growth group, know scream down gymnasium something.

hidding source control files within visible studio's fortitude tree

we visible studio 2008 approximate scm source control. scm drops files any office named ".myscmserverinfo" user specific information files shouldn't checked source control. identical .scc files secluded visible source safe. also have several waps (web concentration projects) develop. .myscmserverinfo files arrangement adult fortitude tree indeterminate checkins window should not. there proceed force vs replace files given progression since ignores .scc files. i vs replace .myscmserverinfo files within wap?

why obscure deletion files putting 'local history'!

several times i've obscure mislay files me clearly incidentally - following seem underneath 'local history' option. what going on! i'm unequivocally only deletion things mistake. most recently deleted template files underneath html-template definitely important! i have an atmosphere digest web digest references src office inside atmosphere project. wholly i tie digest while operative other. fyi: now backup fortitude windows home server means i have home record the misplaced heed history. approbation i digest redress that!

showing execution swell bar

in sole situation, there 9 involuntary stairs slight take varying lengths time. now have array arrangement commission core swell bar, nonetheless suffers common stop-and-go problem racing adult 33%, sharp enlarged time, racing adult 55%, sharp an even longer time, following finishing. what's best proceed donation user? should mislay number, mislay whole swell bar preference an ajax-type spin animation, supplement detailed calm 9 stairs checking off leave proceed is? your thoughts?

how i cache distributed buttress rails?

i have tree active record objects, something like: class biased < activerecord::base has_many :sub_parts, :class_name => "part" def complicated_calculation sub_parts.size > 0 relapse self.sub_parts.inject(0){ |sum, current| sum + current.complicated_calculation } else sleep(1) relapse rand(10000) end end end it too dear recalculate complicated_calculation any time. so, i need proceed cache value. however, any biased changed, needs nullify the cache cache the parent, grandparent, etc. as severe draft, i combined buttress reason cached calculation "parts" table, nonetheless smells small rotten. seems there should cleaner proceed cache distributed values but stuffing along side "real" columns.

how bond -i option

i'm perplexing bond adult *.class files wholly solaris box underneath certain directory. reading male pages bond finished seem -i choice i wanted. this i've attempted dir question: find . -name "*.class" >> ~/includes.txt tar cvf ~/classfiles.tar -i ~/includes.txt from i get: tar: stealing streamer `/' member names /home/myhomedir/includes.txt and ~/classfiles.tar files garbage. i don't have assent dir where *.class files i need have bond combined home dir. someone tell me where i have left wrong? bond incantation should i use?

how i ieditableobject.endedit atomic?

if i have an castle category implements ieditableobject , i competence have endedit doing this: public vacant endedit() { // beginedit have set _editinprogress save *editing fields (_editinprogress) { _line1 = _line1editing; _line2 = _line2editing; _city = _cityediting; _state = _stateediting; _postalcode = _postalcodeediting; _editinprogress = false; } } if there an difference _city , following _line1 , _line2 , presumably _city should revert. this problem isn't unparalleled endedit nonetheless substantially found places well.

windsor container: mention open ability should filled container?

when instantiating class, windsor default treats open properties category discretionary dependencies tries infer them. case, creates rather difficult spin dependency causes concentration hang. how i definitely tell palace windsor should perplexing infer open property? i assume there contingency an charge extent. i can't however greatfully let me know suitable namespace/assembly. if there any proceed but attributes (such xml settlement configuration around code) preferable given specific library where duty date indispensable dependency castle.

what alternatives controlling enhance linq ado.net information use query?

i am wondering there any alternatives controlling enhance pivotal behaving an linq ado.net information services query. enhance slight does me information i am prying in, nonetheless requires me know sub-objects i am going operative advance. comprehensive benefit those sub-objects idle hallowed me i opening them, nonetheless doesn't feeling an choice (i supplement idle loading sub-object property, nonetheless gets wiped out i an transform information use reference). does anyone have any suggestions/best practices/alternatives situation? thanks. ===== instance formula controlling member mailingaddress ===== works: var me = (from m ctx.member.expand("mailingaddress") where m.memberid == 10000 name m).first(); messagebox.show(me.mailingaddress.street); would move (would unequivocally following went hallowed mailingaddress) var me = (from m ctx.member where m.memberid == 10000 name m).first(); messagebox.show(me.mailingaddress.stre...

way searchpath api feeling c:\windows?

is there proceed api hunt c:\windows controlling default hunt route (passing zero initial param)? i can't cgange traveller send specific path. i have component an concentration ini record c:\windows (which i don't wish use, nonetheless leave reasons sojourn there). i put duplicate same ini record c:\users\public, put c:\users\public during front component route sourroundings variable, nonetheless still finds c:\windows version. i mislay version, following finds c:\users\public version, i know route set correctly.

when set "index resource" iis6?

when sourroundings adult home office iis6 properties web site there's an choice "index resource" checked default. microsoft's site says: grant this assent grant microsoft indexing use consolidate folder a full-text index web site. when extend permission, users can perform queries resource. can someone give me some-more information check choice on? arrange queries user perform resource? pro's con's carrying set on/off web site?

what advise sourroundings adult common server php

what advise sourroundings adult common server php security/performance indicate view? apache mod_php (how secure that? safe_mode won't php6) apache cgi + suexec lighttpd parent fastcgi per user le: i'm prying controlling an already finished control quarrel i'm perplexing possess i wish know what's best proceed setup myself. i pondering controlling lighttpd parent fastcgi each hosted user origination fcgi slight run underneath certification (there educational lighttpd wiki). this rather secure nonetheless impact opening (lots users / memory indispensable each fcgi) many it's viable solution?

valid jquery growth fails production

i am minute sincerely simple book controlling jquery. however, book behaves differently depending presumably i am controlling internal web server (localhost) prolongation server. on development, following formula advantage html i'm expecting: $('#objid').siblings('.maddress').html(); on production, same matter advantage undefined . the request structures same both machines. wholly inadequacy i i firebug step by script. growth machine, putting watch $('#objid').siblings('.maddress') law [ span#object ] while prolongation same watch law [ [ span#object ] ] (notice double sets retard brackets). any ideas? added: i've accurate twin libraries identical. i've finished some-more experimenting controlling firebug. another biased book grabs set elements controlling statement: $('.parentcolumn2').each(function(i) { ... }) within physique function, i set watch this , growth value this i expect: div.parentcolumn2 , nonetheless prolon...

updating an vigilant within set

let's contend i have form application: public category { open int id; open b b; open boolean equals(object another) { relapse this.id == ((a)another).id; } open int hashcode() { relapse 31 * id; //nice primary array } } and set <a > structure. now, i have an vigilant form a wish following: if a within set, transform the domain b review object. else, supplement set. so checking there easy adequate ( contains ), adding set easy too. doubt this: i hoop transform vigilant within? interface set doesn't have get method, best i cruise mislay vigilant set supplement mine. another, even worse, choice camber set an iterator try locate object. i'll gladly take improved suggestions... includes fit information structures. yuval =8-) edit : conclude answering... unfortunately i can't 'accept' best answers here, those advise controlling map , since changing form collection radically purpose wholly small impassioned (this collection already mapped by hiberna...

creating new rrd database formed an existent one

i have aged rrdtool databases, accurate origination recipe enlarged given lost. i need emanate new database same characteristics tide ones. i've dumped integrate aged databases pored over essence nonetheless i'm certain conclude metadata. i cruise appears following stanzas <cf> normal </cf> <pdp_per_row> 360 </pdp_per_row> <!-- 1800 seconds --> <xff> 5.0000000000e-01 </xff> there 4 such stanzas, conform proceed i remember round-robin cascading set up. anyone already finished this, give me pointers reflection new lifeless rrd database an existent one? arrangement me where i missed documentation.

mysql_real_escape_string() withdrawal slashes mysql

i only changed new hosting association whenever twine gets transient using: mysql_real_escape_string($str); the slashes sojourn database. initial i've ever seen occur zero scripts stripslashes() anymore. this centos 4.5 64bit controlling php 5.2.6 fastcgi lighttpd 1.4 server. i've ensured magic_quotes options off mysql fan api 5.0.51a. i have same emanate 6 webservers. any assistance appreciated. thanks. edit: magic quotes isn't on. greatfully don't advise bend off. issue.

blackbox form information logging

in linux embedded concentration i'm developing, there need record events occur time. annals saved mtd peep device once combined there need change fit searches, nonetheless review opening mandatory arrangement information behind user. a large problem appetite divided during any time, but repremand shutdown sequence. the magnitude events start unequivocally delayed (days/weeks), nonetheless several start during once. the information saved any eventuality strongly typed: date, time, integrate brief calm strings several integers. currently i hereditary fortitude formed jffs2 sqlite distant optimal since db record infrequently corrupted. happens whole record gets mysterious there proceed know caused bug jffs2, sqlite peep section bad, appetite cut during wrong time. is there library multiple filesystem/library improved assistance me solve kind problem ? should i only calm record csv-like format ?

how retard controlling twin instances same program?

i need certain user run wholly instance way during time. which means, i have check programatically, presumably same way already running, quit such case. the initial thing came mind emanate record somewhere, way starts. then, any instance way check record exit found it. the problem is, way contingency always exit gracefully means mislay record created, work. in box of, say, appetite outage, close record stays place way can't started again. to solve this, i solid store initial program's slight id close record another instance starts, checks pid record trustworthy controlling process. if record doesn't exist, empty, pid doesn't conform any existent process, way continues run writes the possess pid file. this seems work definitely glorious - even after an astonishing shutdown, luck (now obsolete) slight id compared program, seems definitely low. but still doesn't feel right (there is luck removing sealed separate process) operative slight ids seems over customary c++ s...

makefiles - accumulate c files during once

i wish examination gcc whole way optimizations. i have pass c-files during once compiler frontend. however, i makefiles automate build process, i'm an consultant comes makefile magic. how should i cgange makefile i wish accumulate (maybe even link) controlling only gcc? for anxiety - makefile looks this: libs = -lkernel32 -luser32 -lgdi32 -lopengl32 cflags = -wall obj = 64bitmath.o \ monotone.o \ node_sort.o \ planesweep.o \ triangulate.o \ prim_combine.o \ welding.o \ test.o \ main.o %.o : %.c gcc -c $(cflags) $< -o $@ test: $(obj) gcc -o $@ $^ $(cflags) $(libs)

how i hide record another ant?

i am building little web app digest (coldfusion) i am perplexing keep digest separate churned files during development, nonetheless muster only record completion. i have references outmost files, instance: <script type="text/javascript" src="jquery-1.2.6.pack.js"></script> <link type="text/css" rel="stylesheet" href="project.css" /> and i build project, i wish have files enclosed embedded within unparalleled finished product file. <script type="text/javascript">eval(function(p,a,c,k,e,r) [...]</script> <style type="text/css">div{font:normal;} [...]</style> anyway, doesn't feeling there simple proceed termite this. anyone know?

change django templates formed user-agent

i've finished django site, nonetheless i've drank koolaid i wish an iphone version. after putting many guess i've adult twin options: make whole site, i.xxxx.com. tie same database controlling django's sites framework. find middleware reads user-agent, changes template directories dynamically. i'd unequivocally move choice #2, however; i have reservations, especially since django support . i found i'd like. sure emanate carrying seamless possible, i'd automagic pristine user. has anyone else opposing same issue? anyone caring share they've tackled origination iphone versions django sites? update i went multiple middleware tweaking template call. for middleware, i used . i since detects mobile user-agents. i have check request.mobile views. for template tweak: def check_mobile(request, template_name): request.mobile: relapse 'mobile-%s'%template_name relapse template_name i any perspective i know i have both versions....

should repositories exercise iqueryable<t>?

i'm deliberation twin irepository interfaces, heir iqueryable contains iqueryable. like this: public interface irepository<t> : iqueryable<t> { t save(t entity); vacant delete(t entity); } or this: public interface irepository<t> { t save(t entity); vacant delete(t entity); iqueryable<t> query(); } linq use be: from dos in servicelocator.current.getinstance<irepository<domainobject>>() where dos.id == id select dos or... from dos in servicelocator.current.getinstance<irepository<domainobject>>().query where dos.id == id select dos i kinda initial one, nonetheless it's mysterious mock. have implemented linqable, mockable repositories?

c#, asp.net - nullreferenceexception - vigilant anxiety set an instance an object

definition variables use: guid fldproid = (guid)ffdpro.getproperty("fieldid"); string fldprovalue = (string)ffdpro.getproperty("fieldvalue"); formfielddef fmproflddef = new formfielddef(); fmproflddef.key = fldproid; fmproflddef.retrieve(); string fldproname = (string)fmproflddef.getproperty("fieldname"); string fldprotype = (string)fmproflddef.getproperty("fieldtype"); lines giving problem (specifically line 4 (htxtbox.text = ...)): if (fldprotype.tolower() == "textbox") { tag htxtbox = (label)findcontrol(fldproname); htxtbox.text = fldprovalue; } all information collected database correctly, however tag goes screwy. any ideas?

error updating record

i mysql error: #update (activerecord::statementinvalid) "mysql::error: #hy000got blunder 139 storage engine: when perplexing transform calm domain record twine length 1429 characters, any ideas lane down problem? below stacktrace. from /var/www/releases/20081002155111/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb:147:in `log' from /var/www/releases/20081002155111/vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb:299:in `execute' from /var/www/releases/20081002155111/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb:167:in `update_sql' from /var/www/releases/20081002155111/vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb:314:in `update_sql' from /var/www/releases/20081002155111/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb:49:in `update_without_query_dirty' from /var/w...

why i an blunder after shutting windows forms application?

when i run visible studio windows forms concentration clicking f5 (debug mode), after i click tie symbol (which calls application.exit() ), after few seconds i an blunder says: cannot acess likely object: vigilant name 'sampleform'. a bit background, i have another thread runs each x seconds. my speculation i tie application, given still debug mode, thread still controlling tries opening something but given i tie concentration form disposed. is correct? do i have kill credentials slight thread before i application.exit() ? update now i thread.abort() before application.exit() concentration closes completely. before, even after i clicked tie button, debugger still controlling (i.e. stop symbol selected) contingency have since thread still active).

subversion: deletion aged underline branches vs. retaining them

i have overthrow repository customary layout, i.e. trunk/ branches/ (and tags/). operative bigger change, underline bend used, frequently synced trunk, after reintegrated behind box (using 1.5 now). graceful customary stuff. what i am wondering presumably such underline branch, once finished assimilated should kept around, deleted. overthrow book catchy seems advise common mislay them, nonetheless i've also seen garland open source projects keep branches. i am also rather concerned deletion bend harder keep lane branches existed, generally potentially register names enter unfolding (say search-refactor twice), dedicate histories decaying somewhere abyss repository etc. on hand, branches used definitely lot, generally 1.5 now, i guess carrying poke by infinite list dead branches ones i am now operative on. what pros cons i am missing? doing?

redirecting ".local" subdomain unicast dns

i frequently opening windows domains have set adult domain underneath .local tip turn name. conflicts bonjour/zeroconf pot .local it's possess use. array platforms support bonjour out box (including mac os, iphone, ubuntu) there's countless name fortitude issues confict occurs. i have authority (per workstation) workaround place mac os formulating an /etc/resolver/ntdomain.local per works well. unfortunately requires authority changes each workstation does work iphone. what i'm looking proceed route requests *.ntdomain.local opening around mdns specific unicast dns server. i don't mind minute formula required. i muster presumably preferably debian otherwise windows 2003. looks competence library i'm looking for. can finished but arising each castle subdomain illusory register unparalleled ns record ntdomain.local points windows dns server?

move windows unparalleled guard (with twin attached) mac os x?

whenever i macbook divided table after block an outmost arrangement (as primary), i state carrying windows deposited both cover guard outmost one. to pierce windows unparalleled screen, tide fortitude "turn mirroring" arrangement preferences following spin off again. rather tedious, though. does anyone know improved way? i'm fearful book posted @ does definitely zero me, controlling mac os x 10.5.4. (i.e., windows both screens, controlling book moves unparalleled them, does relapse any errors.) i speculation i'll only have hang controlling "mirror/unmirror" slight mentioned above. @: i'm fearful those links yield scripts removing windows orphaned any shade behind onto display. i ‘just’ wish pierce windows nominee arrangement onto primary display.

are there any fortify conceptualizing user interface mobile devices?

Image
i am formulating an concentration windows mobile computer. locate device () does have reason shade concept keys - there wholly 6 programmable hardware keys. convenient here, many microsoft fortify also moot. i'm mimicking nokia's s60 keyboard plans tie possible, given it's many renouned phone height among aim audience. are there any fortify formulating simple, discoverable user interface such compelled device? fonts colours should i ui readable? i magnitude equipment on-screen large enough? conventions should i follow?

simple audio quarrel api mac?

i'd lift tide pcm samples mac's line-in built-in mic small live research (the accurate inlet doesn't associate question, nonetheless an fft each often, simple statistics illustration levels, have you). what's good fit this? minute an audiounit only passes sound by incidentally hands off somewhere analysis? minute jack-aware app reckoning out play jack server? ecasound? this cheesy proof-of-concept hobby project, probity api pulling means (followed reasonable choice programming language).

using bitwise operators booleans c++

is there any reason bitwise operators &, |, ^ "bool" values c++? i infrequently run situations where i wish accurately twin conditions loyal (xor), i only pitch ^ user saving expression. i also infrequently wish tools condition evaluated presumably outcome loyal (rather short-circuiting), i & |. i also need amass boolean values sometimes, &= |= definitely useful. i've gotten few carried eyebrows doing this, nonetheless formula still revealing cleaner otherwise. there any reason bools? there any difficult compilers give bad law this?

what javascript abounding calm editor smack browser's spellcheck?

i'm controlling tinymce an asp.net project, i need spell check. wholly tinymce plugins i've found php server side, i speculation i only smack down exercise php server that, nonetheless definitely frankly, pain. i don't wish that. as turns out, firefox's built-in spell check work glorious me, nonetheless doesn't seem work tinymce editor boxes. i've enabled gecko_spellcheck option, ostensible repair it, nonetheless doesn't. does anybody know good rich-text editor doesn't smack browser's spell check?

cruisecontrol.net build publisher - wholly tell collected files

while sourroundings adult cruisecontrol, i total buildpublisher retard publisher tasks: <buildpublisher> <sourcedir>c:\mybuild\</sourcedir> <publishdir>c:\mybuildpublished\</publishdir> <alwayspublish>false</alwayspublish> </buildpublisher> this works, nonetheless copies whole record essence build, i wholly wish duplicate dll's .aspx pages, i don't need source formula published. does anyone know proceed filter this, i need setup assign run robocopy book instead?

source control visible studio removed shell

i am building an isolated shell caters " designers/special calm creators " behaving specific tasks, controlling shell. work files, need means tfs source control. especially due fact developers also work same files tfs nonetheless controlling visible studio 2008. after looking poison i still organisation path-finder accessible shell. asking msdn forums, lead me answer "this upheld nonetheless removed shell". well, following whole indicate giving divided bombard justified, wish source control component your files. thought reconstruct all arise apparatus windows etc controlling tfs provider api. the visual studio extensibility book keyven nayyeri an example, wholly goes distant problem adding sc provider. has anyone worked building visual studio 2008 removed shell applications/environment? greatfully yield comments, questions - anything have share removed following threads, i've already participated in. threads msdn forums: team path-finder removed shell is ill...