Posts

Hall Effect Help - linear position meter

hello all... goal: measure linear position on 5 inches within 1/4 inch accuracy @ top of range, in wet environment (hydraulic jack plate on outboard boat). readout/display: string of leds (from bottom top of range). thinking of using these hall effect switches adafruit - us5881lua.  switches close lights led in relative range.  bottom , mid range not critical accuracy, 1/2 inch increments or fine.  top important, 1/4 inch or less. anybody seen type of "meter" around?  i've never used hall switches, don't have feeling how sensitive magnetic proximity is.  thoughts appreciated. jon nobody has thoughts or experience hall effect devices? Arduino Forum > Using Arduino > Sensors > Hall Effect Help - linear position meter arduino

Supporting Arabic (or other Foreign Languages) in CF7, FCK Editor, MS SQL

i searching web advice, technical tutorials or regarding developing cf site can handle input of, storage (ms sql) , output of arabic. have developed cf cms utilizes fck editor text input, ms sql 2000 or 2005 storage , standard cf html output. have assume have @ database level store proper character sets there else? advice, short of posting spanish have not done foreign language support in past. larrabeeibc wrote: > assume have @ database level store > proper character sets there else? advice, short > of posting spanish have not done foreign language support in past. - use unicode parts of app - use cfprocessingdirective religiously - use "n" datatypes string columns in sql server (do your string columns if use cfqueryparam) - learn bidi - read g11n chapter in ben's cf book - have @ icu4j lib, stuff app/client needs? - need support islamic calendars? - app use qoq sorting? More discussions in Advanced Techniques adobe

Administrator Modules - Joomla! Forum - community, help and support

can advise on problem please. my fault!, had redo 1.0.8 1. 0.10 update patch have double entry list items in administrator modules. like: components components popular popular and on... i've unpublished ones latest id's , site works ok, feel better if it's tidied up.  i've looked though admin sql dupes found none. cleaned out system cache. regards, paul can go installers-->modules and uninstall duplicates? Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Thread: Install directly without cleaning my disk

can install ubuntu , uninstall windows afterwards? version of ubuntu best use? yes sir can. wanting dual boot or want install ubuntu erase windows? , unless familar ubuntu , can run daily operations not recommend getting rid of windows yet. if ubuntu capable means move forward plan. can install ubuntu , during installation setup ubuntu ask if import profiles...from there can import thing windows profiles had. or can install mount windows , transfer files there! (just giving options here) please give few more details on plan can make educated decisions. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Installation & Upgrades [ubuntu] Install directly without cleaning my disk Ubuntu

Thread: Cat Mario!

Image
anyone past level 1? btw how compile on ubuntu? yeh saw how brutal game on several youtube vids. tried run in wine seems no go Forum The Ubuntu Forum Community Ubuntu Community Discussions The Cafe Cat Mario! Ubuntu

shading a triangle (3-vertex gradient)

there triangle movie clip vertices (0, 0); b (256, 0); c (0, 256) each vertex has color (e.g., - red, b - green, c - blue). i need shade entire area of triangle interpolating between these 3 colors. something gradient, has 3 vertices, not 2 linear one. i tried 2 ways: 1) create 256x256 bitmapdata, attach clip , shade triangle in bitmap, manually (just people programming 3d graphics before opengl&direct3d). this works, slow (of course). 2) create 2x2 or 3x3 or other lilttle square bitmap, shade scale 256x256 with smoothing option (attachbitmap's argument) enabled. works quite fast , looks right not quite right. i thought on how accomplish gradient (maybe several gradients), no ideas... you can check out code at: http://heilong.oceanography.ru/flash/lab/ hey - couldn't open fla (i'm running mx 2004 - i'm guessing have 8) might not work. it'll depend on how you're creating triangle. anyway, if create 3 triangles (with exact dimensions) on 3 separate la...

Username truncation - Joomla! Forum - community, help and support

i use simple little set of hacks sync email , username on submit of standard registration form.  changes value of submitted hidden username field of email address , tries make sure same in php function.  however, upon long email addresses (26+ characters), username truncates.  possible have usernames more 25 characters or safeguard? thanks, wes the joomla code restrict 25 /includes/joomla.php 2720 code: select all       // check username not greater 25 characters       $username = $this->username;       if ( strlen($username) > 25 ) {          $this->username = substr( $username, 0, 25 );       }        but looked in database , restricts username, field username limited 25 also i not sure if there special reason this. although notice in joomla 1.5 username upto 75 characters in database maybe increase in 1.0.10 problems may occur els...