Posts

Featured post

CAN'T INSTALL MAMBELFISH 1.5 FROM DIRECTORY - Joomla! Forum - community, help and support

hi, i want install mambelfish 1.5 component in joomla! 1.0.4 stable [ sundial ] site, reason following error: failed create directory "/home/virtual/site13/fst/var/www/html/components/com_mambelfish/" i new joomla! , still not familiar it. great if build multilingual sites using joomla!. just clarify... media/ writeable administrator/components/ writeable components/ writeable images/stories/ writeable how install component? use  upload package file or use  install directory ? Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components

ISOlinear NAS/Raid drive using Raspberry PI. - Raspberry Pi Forums

this idea of cached network nas. utilizing different way of thinking. idea behind concept use board custom version of software raid, web interface, , samba, turn ssd/hd cached network drive. since 1 sata connector exists use powered custom usb hub grid board. , lcd monitor stats. startrek enough space add keys usb hub grid, maybe 3 x 6 usb grid. un-tagged keys added system mounts them network share separately via samba depending on settings via web interface. or can converted tagged , become apart of grid. if configured via web interface turn segment of raid array/cache. , used mirror grown filesystem onto usb key. can grow , shrink long physical space on usb keys suffient backup/cache whats on local sata hard drive. has 320gb 4700rpm low power sata hard drive, debian on local memory card. , 7 16gb usb keys installed, have cache/raid array of 112gb. if local drive using 50gb of documents, theres redundancy of (3) 16gb usb keys. if main hard drive fails, alarm/light so...

Using EEPROM to store an array

i'd store 4 digit passcode eeprom.  i'm thinking of doing following: code: [select] char passcode[4] = eeprom.read(1, 2, 3, 4) does make sense?  is there simple way read eeprom directly array? quote does make sense? yes. work? no. quote is there simple way read eeprom directly array? use loop read value each element of array. Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > Using EEPROM to store an array arduino

Need to generate a link summary

hi, i need generate link summary incoming links each page in site - is, each page, have list of pages point page. have link texts well. the built-in link checker not seem able that, there other easy way - plugin or something? i know can manually that's lot of work. and 1 more question built-in link checker - can configure ignore files, *.zip thanks http://home.snafu.de/tilman/xenulink.html -- murray --- icq 71997575 adobe community expert (if *must* email me, don't laugh when so!) ================== http://www.dreamweavermx-templates.com - template triage! http://www.projectseven.com/go - dw faqs, tutorials & resources http://www.dwfaq.com - dw faqs, tutorials & resources http://www.macromedia.com/support/search/ - macromedia (mm) technotes ================== "harpo_" <webforumsuser@macromedia.com> wrote in message news:f1ut5j$r4d$1@forums.macromedia.com... > hi, > > need generate link summary incoming links each page in ...

A question about file extentions of tabs in IDE.

Image
 i'm starting write larger sketches , finding out how important organization of code larger program becomes. i'm using arduino ide compsose code , started using tabs break code semi-managable chunks. when named tabs didn't give extention names (didn't know could). ide treat code if 1 big file.  then learned little making them header files , "#include"ing them main sketch enables me isolate different sections of code , localize variables within them. useful!  somewhere in learning section on arduino site  i came accross - tabs, multiple files, , compilation: allows manage sketches more 1 file (each of appears in own tab). these can normal arduino code files (no extension), c files (.c extension), c++ files (.cpp), or header files (.h).  my question is, difference/use of using .c or .cpp extentions in tabs of arduino ide. there benifit in doing that. know libraries have have both .h , .c files. better off learning how write libraries. which, way, li...

Right Click Problems in Flex 2

is there way detect right click on display object? i have added event listeners mouse events , right click never fires anything. this needed because have flex app reads data service, displays data using display objects, , allows user interaction via mouse. right clicking object causes custom context menu show. custom context menu created dynamically based on data retrieved service. if piece of data changes menu while have context menu open, visible menu not change. ok. however when go click on item in old, displayed menu - firefox crashes.. repeatable 80% of attempts. basically need stop updates happening while context menu shown, , restart updates when disappears. yet cannot trap mouse right click. any suggestions?? you can rely on http://livedocs.adobe.com/flex/2/langref/flash/ui/contextmenu.html#event:menuselect More discussions in Flex (Read Only) adobe

ineffecient to access arrays out of sequence

basically little observation made when accessing arrays out of sequence. i had inside isr, , affected performance worse. found pretty strange code little bit of isr. tried have array element 2 @ top (not important @ of course). code: [select]  for ( int x=0 ; x<4 ; x++ )  {    for ( int y=0 ; y<4 ; y++ )    {      int cx = x+1;      int cy = y+1;      int fivecy = 4 - y; // 5-cy      face[2][x][y] = cube[cx][fivecy][0]; // top (face 2)      face[0][x][y] = cube[5][cx][cy];      face[1][x][y] = cube[cx][0][cy];      face[3][x][y] = cube[0][cx][fivecy];      face[4][x][y] = cube[fivecy][5][5-cx];      face[5][x][y] = cube[cx][cy][5]; // bottom (face 5)    }  } putting in sequence made faster again. thought wouldn't matter, guess compiler optimizations when arrays accessed in sequence? i have since optimized isr ~40% latency, these 2 versions (array in sequence vs out-of-sequence), had latency of 53 timer2 clock cycles (86% latency) , (see...