Posts

Showing posts from August, 2015

Thread: Nautilus Actions Configuration help

i'm trying use nautilus actions configuration add menu item php files open terminal , have command run script ready me run. example, if right click foo.php , select custom menu item, want terminal open , have first line this: code: mike@mike-desktop:~$ php '/path/to/foo.php' that way have press enter , run. when trying through nautilus actions configuration segmentation fault error when trying restart nautilus , i'm not sure why. if can me correctly select right options in nautilus actions configuration grateful. try sudo php '/path/to/foo.php' Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Nautilus Actions Configuration help Ubuntu

Interfacing with a digital IR reflectance sensor

Image
i acquired pololu qtr-1rc sensors (digital sensors), , need readings them. tried using pololu libraries pins in library don't mesh arduino mega pins. decided try other way: <from pololu> the typical sequence reading sensor is: set i/o line output , drive high allow @ least 10 10 nf capacitor charge make i/o line input (high impedance) measure time capacitor discharge waiting i/o line go low the time takes capacitor discharge value need read. i need fleshing out how going work arduino mega...here's code have far: ----------------------------------------------- int sensorpin = 37; int time = 0; //to hold time took cap discharge void setup() { serial.begin(9600); // printing time took cap discharge me } void loop() { pinmode(sensorpin, output); digitalwrite(sensorpin, high); delaymicroseconds(10); pinmode(sensorpin, input); //my question here need set digital i/o pin low though switched input effect need? digitalwrite(sensorpin, low); // stuck on how c...

Compining Mulitple Helps

Image
i able compine online helps several different products under 1 file. know if possible. i'm working in robohelp word not mind going html format. thanks. marj hi marj , welcome our community indeed may! , news here can using basic robohelp html. not need robohelp server package. take @ following link: click here the link above describes merging webhelp output. may merge compiled .chm output too. cheers... rick More discussions in RoboHelp for Word adobe

reading portD as binary value

greetings, i attempting read value of 3 hall effect sensors simutaniously using port manipulation.  the hall effect sensors attached pins 5, 6, , 7 (portd).   code: [select] #define hall1 7 #define hall2 6 #define hall3 5 int hallsensors[3]; int halld = b00000000; int prevhalld = b00000000; void setup() { serial.begin(9600); pinmode(hall1, input); pinmode(hall2, input); pinmode(hall3, input); } void loop(){   halld = portd & b11100000;  //only interested in 5,6,7 serial.println (halld, bin); delay (500); if (halld != prevhalld){  //etc..... when code runs not 8 bit representation of portd rather 1 or 0.  is variable halld reading binary number? is there (correct) way read portx , binary number in variable? thanks! try changing: code: [select] halld = portd & b11100000;  //only interested in 5,6,7 to: code: [select] halld = pind & b11100000;  //only interested in 5,6,7 here reference section on direct port access: ...

Kan jeg få en oversigt over ALLE mine sider ?? - Joomla! Forum - community, help and support

Image
hi - kan nogen fortælle mig om det er muligt @ fÃ¥ en samlet oversigt on alle de sider man har pÃ¥ sit web-sted, back-end ?? det jeg mener er om der ved @ gøre "et eller andet" back.end, kan kaldes en eller anden form oversigt on alle sidene pÃ¥ ens websted og meget gerne vist en form struktur, som det eksempelvis er muligt frontpage men jeg ville dog være tilfreds med blot @ kunne se on oversigt on alle siderne pÃ¥ en liste. jeg har ikke kunne finde sÃ¥dan en og syntes ærligt talt @ det gør det lidt mere end vanskeligt @ fÃ¥ det store overblik on hvad der egentlig er hvor webstedet.   :'( hvad gør andre ?? - tegner hele strukturen pÃ¥ papir - ved siden af    ??? hej stigmand, i backend kan du trykke pÃ¥ content->all content items hvorved du fÃ¥r en liste on alle dine artikler. derudover kan du havde lavet nogle statiske artikler som vises via content->static content manager. husk @ der nederst er mulighed @ trykke pÃ¥ side 1-2-3 osv.  Board index ...

Thread: xbmc media centre help

can throw light on below http://n3wt0n.com/blog/?p=306 for starters http://www.google.com/search?q=xbmc+...ient=firefox-a http://tombuntu.com/index.php/2008/1...ter-with-xbmc/ more specific? having trouble installing xbmc, if step stopped on? http://xbmc.org/home/ Forum The Ubuntu Forum Community Ubuntu Official Flavours Support New to Ubuntu [ubuntu] xbmc media centre help Ubuntu

How to Solder - Raspberry Pi Forums

i came across video tutorial , thought might of use wants learn solder. soldering soldering essential skill learn if mess hardware. best way learn soldering doing it. practice, practice, practice. http://twit.tv/show/know-how/7 http://www.sparkfun.com/tutorials/106 prefer reading video. raspberrypi

Error... - Joomla! Forum - community, help and support

Image
el estar navegando en mi pagina checaba que me mandaba un error la pagina y se dejaba de ver... y me contestaron esto de mi proveedor de hosting podrias ayudarme solucionar este error...? el index.php utiliza recursos de demasiado cpu/memory veces.  Ésa es la razón del error interno del servidor 500. saludos...  el index.php utiliza recursos de demasiado cpu/memory veces.  Ésa es la razón del error interno del servidor 500. solucion: cambiar de hosting saludos y buen día gustavo raúl aragón Board index Joomla! International Language Support International Zone Spanish Forum Versiones de Joomla! obsoletas Joomla! 1.5

Lamabox made with Joomla - Joomla! Forum - community, help and support

Image
he hallo allemaal heb de volgende site gevonden: http://www.lamabox.com/ kijk hier maar eens naar: de lamabox een intelligente mediaspeler met internet-aansluiting. william jammer genoeg geen knap staaltje designwerk... wat een naam voor zo'n apparaat... je zou haast denken dat hij gaat spugen. wel leuk apparaat verder Board index Joomla! International Language Support International Zone Dutch Forum Show jouw website

USB Scope with Arduino

Image
hi guys , need free usb oscilloscope? try 1 ! http://sites.google.com/site/analogmc/usb_scope ============== - using software sor http://www.societyofrobots.com/sor_scope.shtml - use adc of arduino read analog voltage - use serial.println of arduino sor scope , graphic thanks hint. i did experimentation http://xoscope.sourceforge.net/ , soundcard. had severe limitations: - limited voltage range, unless add voltage dividers , switches - ac coupling, unless know capacitor remove soundcard - limited sampling frequency of 44khz so, bought http://www.seeedstudio.com/depot/backorder-dso-nano-pocket-size-digital-storage-oscilloscope-p-512.html?cpath=11 . some people complain, it's not professional device. me, job well. dispose ancient crt ocilloscope. Arduino Forum > Forum 2005-2010 (read only) > Software > Interfacing ...

serproxy woes - EOF from sio

i've got couple of "working" examples of arduino talking flash , flash ardunio, serproxy keeps dying after flash connects. i'm on intel mac (os x 10.4.10). way i've been able serproxy running through terminal (is correct?) first start sketch , open serial output window. start serproxy, start swf file. soon after flash connects, terminal shows following: code: [select] robbie:~/arduino robbie$ /users/robbie/arduino/serproxy-0.1.3-3/serproxy serproxy - (c)1999 stefano busti, (c)2005 david a. mellis - waiting clients server thread launched server(1) - thread started (serproxy works anywhere between 10 , 60 seconds or so, then...) server(1) - eof sio (this dies) server(1) exiting my arduino sketch looks like: code: [select] int ldrpin = 3; int val = 0; int oldval = 0; void setup(){ serial.begin(9600); pinmode(ldrpin, input); } void loop(){  val = analogread(ldrpin);  if(val != oldval){    oldval = val;    sendnumtoflash(val);  } ...

Can't type: keys ignored or repeat forever - Raspberry Pi Forums

i have first-gen raspberry pi, , has problem keyboard. when press key while typing, 1 of 2 things happen: 1. keypress ignored, or: 2. os think holding down key, , type on , on again. makes typing literally impossible. it's not problem os, because happens in both linux , risc os. it's not problem keyboard - i've tried several different ones , exhibit problem. don't think it's usb-related problem - happens keyboard directly connected, , connected through powered hub. hardware problem pi? can replaced? thanks. you have go through power supply troubleshooting if haven't already. described not enough power keyboard. issue not supply first place check. powered hub says different issue wouldn't hurt rule every possibility out. not sure linux os , possibly keyboards maybe help. raspberrypi

Question about Atmel chip - Raspberry Pi Forums

hi i've assembled gertboard shipped without 3 buffer chips ability test pretty limited. i've uploaded example blink program avr , connected logic probe pin being used , can confirm it's cycling expected, if disconnect ribbon cable between pi , gertboard avr doesn't restart. seems tied jumper leads gpio pins spi programming header avr. if remove them disconnect/reconncect ribbon cable avr starts expected, while jumper wires in place avr won't start when powered up result of buffer chips not being installed, i've done wrong, or normal operation? thanks i have question atmega chip on board. can use same sketch created arduino uno , upload gertboard atmega chip? not using delay() commands should not effect operation. also, default timer speeds on ~12mhz @ 3v3 version of chip? raspberrypi

USB Ethernet

hello gays, do has tryed connect arduino usb "bestcon mcs7830 10/100 usb ethernet" ? (zonacomputers.hu/product_info.php?manufacturers_id=119&products_id=4621&oscsid=a33168c100897f339905526945a2984a) best regards georgi that device uses mcs7830 usb ethernet chip, surprised if there driver arduino. if can't find driver part, may want @ 1 of these: http://www.nuelectronics.com/estore/index.php?main_page=product_info&cpath=1&products_id=4 http://www.nkcelectronics.com/arduino-ethernet-shield.html http://www.adafruit.com/index.php?main_page=product_info&products_id=86 Arduino Forum > Forum 2005-2010 (read only) > Software > Interfacing > USB Ethernet arduino

Question for Engineer or hobbyist

Image
ok, going share situation in hopes out there can answer of questions.  i post on several boards. here have:  two propellers 8 core cpus, 3 basicstampiis different speeds, 11 small robots, 1 arduino, 1 arduino mega, several single core computers , 1 dual core , 1 quad core. 1 laptop , 1 net-book. 1 robot head.  broadband internet wired , wireless, linksys wrt54gl router. have entry level experience on basic , c++. i have mastered art of obstacle avoidance. but, when try more, gets slow becomes not practical. i have 2 web-cams can recognize faces, tell are, track moving objects, voice recognized , can hear answer in human voice. can recognize colors , flesh tones. there data base can interact , learn me speaking it.  i have not tried ocr yet, sure work.  i have not tried object recognition, sure work. have used chatterboxes , open-cv, , many more open source stuff. now, problem is, of scattered out on many robots , computers. how 1 go tying of these item...

arduino fio

[size=14]can program arduino fio similar arduino duemilanove or uno (i.e connecting pc using usb cable , writing arduino software )[/size] it have taken less time try post asking permission. but, since asked, yes, have our permission it. http://arduino.cc/en/main/arduinoboardfio quote the arduino fio intended wireless applications. user can upload sketches ftdi cable or sparkfun breakout board. provided, of course, have ftdi cable or sparkfun breakout board. Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > arduino fio arduino

512MB Revision Number - Raspberry Pi Forums

Image
hi, i've got second raspberry pi, 512mb rev 2 when using command 'cat /proc/cpuinfo' revision number of '000e', correct? other pi has numbered revision. code: select all hardware : bcm2708 revision : 000e when use 'free -m' 486m total ram, should not 512m? code: select all total used free shared buffers cached mem: 486m 116m 369m 0b 9.9m 54m -/+ buffers/cache: 51m 434m swap: 99m 0b 99m thanks! revision in hex 'e' valid number , no won't 512mb taken video memory raspberrypi

Thread: Firefox Empty dialog boxes

Image
so firefox (ver3.0.11) has wierd error/bug, dialog boxes blank, 2 in particular causing me frustrations preferences box, if comes blank, normal size, , add-ons box, has search add-ons box, , buttons on bottom, download box has error http://bayimg.com/oabnpaaco [pic of 3 boxes] i cant open link,but can guess , know problem must restart firefox blank boxes problem solved after restrated browser Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Firefox Empty dialog boxes Ubuntu

Thread: lsusb ifconfig association?

i'm trying figure out device which. i've got 4 usbs connected hubs (devices 5,6,8,9). i'm trying find out mac addrs are. there way see device eth? code: gurt@mingus:/etc/udev/rules.d$ lsusb -t bus# 1 `-dev# 1 vendor 0x1d6b product 0x0002 |-dev# 2 vendor 0x058f product 0x6254 | |-dev# 5 vendor 0x0a46 product 0x9601 | `-dev# 6 vendor 0x0a46 product 0x0268 |-dev# 3 vendor 0x058f product 0x6254 | |-dev# 8 vendor 0x0a46 product 0x0268 | `-dev# 9 vendor 0x0a46 product 0x9601 `-dev# 4 vendor 0x0ace product 0x1215 code: gurt@mingus:/etc/udev/rules.d$ ifconfig | grep eth eth0 link encap:ethernet hwaddr 00:e0:4d:8c:d6:e0 eth1 link encap:ethernet hwaddr 00:02:b3:28:52:2c eth2 link encap:ethernet hwaddr 00:02:b3:28:50:7f eth3 link encap:ethernet hwaddr 00:02:b3:28:50:80 eth4 link encap:ethernet hwaddr 00:02:b3:28:52:6a eth5 link encap:ethernet hwaddr 00:02:b3:28:52:6b eth6 ...

Thread: webcam problem

i thought cam supported gspca driver after getting through compile problems driver, not able ubuntu add /dev/video0. (which understand indicate cam working , available apps) appreciated! lsmod | grep gspca gspca 700624 0 compat_ioctl32 18304 1 gspca videodev 45184 2 gspca,compat_ioctl32 dmesg [ 153.015510] linux video capture interface: v2.00 [ 153.117509] usbcore: registered new interface driver gspca [ 153.117514] gspca: gspca driver 01.00.20 registered [ 423.984079] usb 4-1: usb disconnect, address 2 [ 428.864033] usb 5-2: new full speed usb device using uhci_hcd , address 2 [ 429.010191] usb 5-2: configuration #1 chosen 1 choice sudo lsusb -s 5:2 -v bus 005 device 002: id 06a5:d800 divio chicony twinklecam device descriptor: ...

RasPi not booting - Raspberry Pi Forums

i have received new 512mb rev-b model , despite having prepared sd card multiple times using multiple different images, cannot pi boot. when powering board, red power light coming on. have tried altering config.txt file in order default hdmi output (i have hdmi connection on monitor), did not help. have tried removing config.txt altogether, suggested in 1 forum, did not work either. have tried using risc image, again no avail. using 2gb microsd sd adapter. had read type of problem can stem poor electrical connections between sd card , board, , have tried applying pressure holder whilst booting, made no difference. visually though, these solder connections seem okay - not want reflow them yet. 1 thing strange however, when writing image (using dd mac terminal) , process takes around 20min, , couple of youtube videos have watched, process seems take around 30s. there fault in way preparing card? here process: * use diskutil erase sd card ms-dos format * terminal: "df -h" fin...

Motor PID control

i want use pid control motor speed.  the motor have has opto-interrupter gives 6 pulses per revolution.  the problem i've been running how sample pulses.  i've tried interrupts , pulsein function didn't great results.  i want use tachometer calibrator, rpm needs stable , repeatable.   the interrupt method used counted pulses duration took run code.  my issue seems if pid function took longer or shorter calculate, pulse count off because accumulating longer.   i wasn't able pulsein work.  i'm novice , new sort of thing. what guys recommend measuring frequency of motor? want run 2000 rpm, should able measure 200 pulses per second.  in past i've seen code measured time interval between pulses, feasible application?   sorry can't post code using interrupt method, straight out of magazine , don't want cause copyright infringements.  the code trying pulsein function straight pid playground page. http://www.arduino.cc/playground/...

FAQ: Can not login to /administrator (Joomla! backend) (when using WAMP) - Joomla! Forum - community, help and support

*** searchwords *** wamp, windows, apache, mysql, php, administrator, backend, login, problem *** problem *** lot of people have problems loggin in joomla! administrator. had no problems on apple or linux install, when using windows came accross login problem. so problem? in case session error. installed php in non default windows directory. php.ini stated session should saved in: c:\php\sessiondata but directory not exist. *** solution *** i changed session savepath to: session.save_path= c:\apache\php\sessiondata *** session error? *** you can test whether or not have session error editing administrator/index.php. add lines: session_start(); echo $_session['session_id'] if session can not set you'll error looks this: warning: unknown(): open(c:\php\sessiondata\sess_2dc0c0ca81f559eaf3eeb014cb05bb72, o_rdwr) failed: no such file or directory (2) in unknown on line 0 make sure error reporting level in php.ini @ least 'warning': error_reporting  = e_warning; *** links...

Simple integer division question

apologies such basic question - haven't been able find answer anywhere. i'm wondering how arduino handles fractions of integers. i'm using arduino run 12 bit tlv5618 dac (0-4095) - when set output value to, example, 4095/2 - getting 2047.5 or arduino round up/down 'whole' integer? if fraction - how many decimal places go to? hope makes sense - thanks. j if numerator integer, , denominator integer, result integer, too. in integer division, fractional part truncated. there no rounding. Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > Simple integer division question arduino

how to display progress while CF is busy

dear all: my site has perform 30 cfif logics on estimated average of 30,000 entries, subsequent form submission. that's 600,000 subsequent processes. to avoid request timeout, staggered process. form submits page1, runs 10 of 30 cfif, , in cfloop batches of 100. upon completion of first 100, cflocation reloads page1 next 100 entries. when has completed 30,000 entries ( = 300 times cflocation, followed cfloop loop count of 100x), cflocation page2, follows same procedure, time on cfif routines 11 20. , after page3, cfif routines 21-30 completed , cflocation generates results page. all of works beautiful , pretty fast too. done under 60 seconds or so. but.... 60 seconds pc user, online, long time. all time, form submit page visible. dynamic gif or flash freezes , progress bar in bottom of browser showing eager display next page. then, after 60 seconds results page sohws up. question: there way display progress bar or that? tried iframe, doesn't work. syspect frameset not wan...

Problema na enquete... - Joomla! Forum - community, help and support

Image
opas pessoal..por que sempre quando eu instalo enquete... depois vou no site e clico no botão enviar dá esse erro^^^?? error (mamml.php->updateunregisteredsubscriptions() line 793): not update subscriptions. database error: you have error in sql syntax near \'where `unregistered_id` = 6\' @ line 1 sql=update `mos_mamml_unregistered` set `name` = `unregistered_id` = 6unknown column \'dsdfsfds\' in \'field list\' sql=update `mos_mamml_unregistered` set `email` = dsdfsfds `unregistered_id` = 6 error (mamml.php->unregistered() line 459): error adding subscriber. mamml 0.4.3 como eu posso resolver isso?? quais os procedimentos... valeu!! estranho isso, vc instalou o mamml ? parece que está havendo um conflito entre o mamml e enquete joomla, tente remover o mamml e instalar uma versão mais recente. fabmak Board index Joomla! International Language Support International Zone Portuguese Forum ...

[réglé] Liens internes non fonctionnels : Pages not found - Joomla! Forum - community, help and support

je teste joomla et j'ai des problèmes bien embêtants. je suis parvenu à créer mon menu, mais aucun lien n'est actif. quand je clique sur le menu, rien ne fonctionne si ce n'est les liens externes. j'obtiens à chaque fois la même page : no found the requested url /joomla/joomla_1.0.4-stable-fr/content/category/6/16/26/ not found on server. apache/1.3.33 server @ gde.jexiste.fr port 80 ai-je un problème avec ma base sql? voici le lien pour mon site http://www.gde.jexiste.fr/joomla/joomla_1.0.4-stable-fr/ merci de votre aide, sinon je crois que je vais rester sous spip. bonjour oledeuff, est-ce que l'option search engine friendly urls dans la configuration globale ( global configuration ), onglet seo est activée ? est-ce que le fichier htaccess.txt été renommé en .htaccess ? note : si apache signale qu'il n'a pas pu trouver la page sur le serveur, cela ne vient pas de la base de données. donc pas de soucis de ce côté là. ouly Board index ...

shifting values in array

to update graph, need shift values in whole array 1 position left before adding new value end of array. following code me: for(int i=1; i<width; i++) { xvals[i-1] = xvals ; } but array quite long, seems quite inefficient way of doing this, since requires lot of clock cycles complete. there way shift values in array more efficiently? try: code: [select] void memcpy(void* target, const void* source, size_t length); // ... memcpy(&xvals[0], &xvals[1], (width-1)*sizeof(*xvals)); the memcpy() function implement best possible under limitations of platform, it's doing same thing. on fancier microprocessors, there special memory moving instructions , dedicated buses take care of these things @ speed of memory hardware.  not microcontrollers. note if you're "scrolling" array right, need count-down loop instead of count-up loop.  otherwise, each copy overwriting next copy done.  the memcpy() routine should internally check 1 ...

AP Div is grayed out

i cant seem able use in insert menu ap div. it's grayed out. still can insert them manually. can me a newbie in layers alain > newbie in layers make sure visit these pages first - http://www.great-web-sights.com/g_layerlaws.asp http://www.great-web-sights.com/g_layer-overlap.asp now know bit more 'layers'. >i cant seem able use in insert menu ap div. start newly created page. list exact steps lead conclude menu's option not available, please, can recreate this. -- 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 ================== "poirot" <webforumsuser@macromedia.com> wrote in message news:f2hu1q$9vb$1@foru...

!

! you're asking crack? nuts? -- 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 ================== "forensicbop" <webforumsuser@macromedia.com> wrote in message news:f2buui$niq$1@forums.macromedia.com... > know how to/ have crack "dynamic html news > scroller"...as found on http://www.news-scroller.com/. > > More discussions in Dreamweaver support forum adobe

FLA - CARGAR IMAGEN

puedo hacer un load image?? o pedo solamente en flash cargar otro swf arriba?? de esta manera con imagenes numeradas solo tendria que actualizar imagenes, esa es la idea mil gracias -- pablo triviño a&n - focus point s.a. dto. de diseño tel: +5411 4762.6620 int 11 pablo.trivino@ayn.com.ar visitanos en: www.ayn.com.ar pablo: hasta la fecha, mediante la sentencia loadmovie() sólo podíamos cargar jpgs no progresivos u otros swf. pero desde que salió flash 8, con loadmovie() podemos cargar cualquier formato de imagen arbitrario compatible con el dispositivo, como pueden ser también los png, gif no animados y jpg no progresivos. en este ejemplo, toni lópez explica como cargar imágenes externas, creo que te puede ayudar realizar lo que pretendes. http://www.after-hours.org/blog/archives/2004/01/03/cargar-imagenes-externas/ salu2 "pablo triviño" <pablo.trivino@ayn.com.ar> escribió en el mensaje news:f...

Add MagPi link to 'Quick start guide'? - Raspberry Pi Forums

hi all, i've been thinking getting rpi; not got 1 yet, planning soon. used schoolchild hobbyist programmer, , later professional games programmer, in 80s , 90s. pi seems cool, 'getting started' guides, , of 'basic' forum posts, strike me hobbyist oriented, , not accessible complete beginner (i.e. not unix hacker). however, i've come across wonderful resource isn't this: magpi magazine. i've noticed existence, though i've been keeping half eye on rpi months. so, here's suggestion: think extremely useful provide link magpi on main rpi 'quick start guide' page ( http://www.raspberrypi.org/quick-start-guide ). suggestion link saying "a lot of useful information how started raspberry pi in magpi, magazine raspberry pi users. instance, if want know how plug in , going, have @ issue 2; if want know how started configuring video , sound, @ issue 3." hope that's useful suggestion (and not repeat - did have around before pos...

vary beautiful change in the news style ! - Joomla! Forum - community, help and support

Image
hiiiiiiii hoe can the topic or news front  in home page , main page news , topic want put in box site http://www.islammessage.com in home joomla page there last news ex: last 10 news , there small front news want put front in box like site http://www.islammessage.com how can ? thank u up !!!!!!!!! Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Bildschirmschoner und Autostart - Raspberry Pi Forums

hallo, ich möchte gerne meinen pi zur präsentation von webinhalten nutzen. hierfür müsste der bildschirmschoner dauerhaft deaktiviert werden. ich habe es schon über http://raspberrypi.stackexchange.com/qu ... oing-blank versucht, leider ohne erfolg. außerdem wäre es dann gut, wenn der browser (chromium) gleich mit dem system starten würde und auch gleich im vollbildmodus wäre. kann mir jemand da weiterhelfen? wäre auch sehr interessiert, da ich in jscript + html5 programmieren möchte ohne allzu tief in linux einzutauchen. habe hier schon mal einen möglichen ansatz gefunden: https://github.com/pschultz/kiosk-browser hier noch eine ausführlichere variante: http://www.youtube.com/watch?v=c1kvbcz7 ... detailpage hab es allerdings selber noch nicht ausprobieren können. raspberrypi

flash ati bug

hi! i have unique problem seen can't find else has experienced it. 2 weeks ago upgraded graphics drivers 7.4 (that ati catalyst 7.4) make new pc game work properly. since flash view crash system within matter of minutes. on youtube have tried flash content other sites no avail. wondered if had input? pc info: acer aspire 5040 laptop. ati xpress 200m graphics card new crappy 7.4 drivers. 1gb ram 1.8ghz amd turion 64 80gb hdd crash info: when first started, screen go blank few seconds while viewing flash content, give me vpu error (cant quite remember said went along lines of "vpu error -reset graphics card". doesn't that! black screen , horrible noise. last night got purple screen. any thoughts great. cheers! andy. aspire5040 <webforumsuser@macromedia.com> wrote: > hi! > > have unique problem seen can't find else > has experienced it. 2 weeks ago upgraded graphics > drivers 7.4 (that ati catalyst 7.4) make new pc game work > properly...

Permission problem caused - Joomla! Forum - community, help and support

when click on make not writeable, couldn't log in again couldn't use ftp each time tried use got access denied, change ftp password still have same problem, after sent email hoster...do have idea(s)??what maight caused problem? permission settings: configuration file (/home/content/a/b/c/name/html/admin/components/com_smf/config.smf.php) writeable joomla cache directory (/home/content/a/b/c/name/html/cache) writeable joomla index file (/home/content/a/b/c/name/html/index.php) writeable joomla main path (/home/content/a/b/c/name/html) is writeable make writeable | make not writeable Board index Joomla! Official Sites & Infrastructure Sites & Infrastructure - Feedback/Information Archived Boards - All boards closed SMF - Simplemachines.org Forum

Bluetooth problems on Raspbian - Raspberry Pi Forums

i'm looking little assistance getting bluetooth keyboard work raspi. have read find on forum , discovered relevant wiki page http://elinux.org/rpi_bluetooth_keyboard_setup , detailed step step guide making bluetooth keyboard work on raspbian. encountering kind of timeout problem or something. basically, can connect keyboard using bluez tools command line. press key on keyboard connection lost , pairing light starts blinking. can repeat process as want, connecting each time. i'll give details. i'm using cambridge silicon radio bluetooth dongle verified work on raspi , recognized lsusb , hcitool dev without hassle. fresh install of raspbian repos , software updated after install. running "hcitool con" after using "bluez-test-input connect" gives following output: code: select all connections: < acl 00:0f:6f:02:8f:93 handle 11 state 1 lm master after 2 seconds command returns empty after "connections:" label. don't know if problem spec...

User control over font size?

Image
i wonder if there way user can control font size in .chm file viewer. know can go internet browser , change font size there, bit convoluted. there control available in chm viewer missing? hi margaret indeed may add font button .chm viewer. unfortunately, robohelp doesn't expose method easily. have compiling using microsoft html workshop. here link page explaining it. click here , read it i'm not sure if css font sizes override or not. additionally, may wish try pressing , holding alt key while rolling mouse wheel (if have one) changes font. cheers... rick More discussions in RoboHelp HTML adobe

XML in AS3

theres lots of functions add child nodes, right there none delete them. there approuch deleting 1 node? i used function delete node passing database , index number of node wanted delete. customized program, should looking answer function killchild(database:xml, childpos:uint):xml{ var newdatabase:xml = new xml('<?xml version="1.0" standalone="yes"?><entrys></entrys>'); var count:uint = 0; while(database.entry[count]) { if(count != childpos){ newdatabase.appendchild(database.entry[count]); } count++; } return(newdatabase); } More discussions in ActionScript 1 and 2 adobe

DS1307 update badly

hi, i don't understand something. i got class method job : code: [select] void functionaltasks::setrealtimeclock() {    if ( _tracer!=null )    {        _tracer->print("heures du systeme embarque mise jour.");    }    // module horloge temps reel embarquee    rtc.stop();    // reglage heure    rtc.set(ds1307_hr   , 19);     // set hours    rtc.set(ds1307_min  , 55);     // set minutes    rtc.set(ds1307_sec  , 0);      // set seconds    // reglage date        rtc.set(ds1307_date , 17);     // set date    rtc.set(ds1307_mth  , 12);     // set month    rtc.set(ds1307_yr   , 10);     // set year    rtc.set(ds1307_dow  , 5 );     // set day of week    rtc.sta...