Posts

Showing posts from February, 2015

Error when opening Fireworks CS3 by first time

Image
i downloaded trial version of fireworks cs3 i'm planning buy it, after downloading , installing it, fireworks wouldn't work, message appeared saying license product stopped working, tought problem might have ocurred during downloading downloaded again, installed same problem continued. message appeared said maybe reinstalling solution wasn't. the message box error what can do? did read instructions thoroughly , entirely *before* install app, no? what windows version using with? cheers, brian p.s. hint: contact adobe tech support... , perhaps complete clean script unintall cs3 apps. did installed other beta programs photoshop cs3 public beta or other? again, important need read instructions first. More discussions in Fireworks adobe

Chromebook Printing + Pi - Raspberry Pi Forums

my place of work has come possession of several samsung chromebooks. not research put them before purchase , have arrived, have been tasked making them work in environment in not designed operate. relatively cheap attempt @ standardization satellite locations. these locations require ability print locally. we've invested in brother printers, incompatible 'easy' way of getting chromebook print, google cloud print. chrome os not support usb printing in way, shape, or form. alternative setting device 'classic' printer ability have chrome running , able print printer. chrome browser act contact point chromebook talk printer. solution came mind use raspberry pi device. have idea if raspberry pi (default os?) have drivers compatible brother printer mfc line? might silly question, chrome have difficulties running on arm os? raspberrypi

time.h counting hours for garduino

Image
hi all! first off, trying help. im newbie go easy im trying build garduino , using new time.h library. what want do: the plant light little pepper mint plants connected relay thats hooked , working. every day, @ 10pm, want light go on , stay on 16 hours. then off 8. same thing again, next day. i want able track amount of hours plants subject light in form of simple integer able display on lcd screen. perhaps days nice too. i stumped here, not start. thanks lot! :-/ quote i stumped here, not start. here's 1 way how break task small , manageable task can start pretty 0 finished product. how long steps take depends on you, easier, require more work. should resolved problem of not knowing start. step 1: write program blinks led without using function delay(). you'll find in tutorials using millis(). step 2: modify program step 1 blink 16 hour on, 8 hours off. hint: 8 hours 8*3600*1000 = 28800000 milliseconds, 16 hours twice much. you have basic ligh...

Scorm and Full Screen Launch

i created elearning program in captivate , exported via zip lms (geo learning) , course not lauch in browser frame full screen or can enlarged full screen user. read in " if select aicc or scorm options project, full screen publishing option cannot applied." does know fix issue or how can project launch full screen scorm course? without resorting custom activex control or similar, specify browser window features when window opened. best can after fact resize window using javascript window.resizeto() method in captivate-generated html page. this means it's lms launch course in new window features want. if lms won't let customize new window, you're pretty out of luck. you *might* able use javascript in html page redirect course new window has features need, doing break scorm connection between course , lms. haven't worked captivate's scorm implementation enough know sure. if want give shot, can learn more javascript window.open() method here: http:...

Infernal SD Card Swapping - Raspberry Pi Forums

Image
hi all, keen assembly programming on pi. figure process of programming @ such level on pi this.. 1. modify code. 2. compile code. 3. remove sd card pi. 4. insert sd card laptop. 5. copy compiled code sd card. 6. remove sd card laptop. 7. insert sd card pi. 8. power on pi , see resulting code run. 9. repeat steps 1 through 8 in endless loop. won't bother programming if have follow procedure after every little code change. there way can around this? there plugin board can negate endless , slow swapping of sd card? buy 1 of sure! you don't it, should editing , compiling , running on pi itself! should able not rely on other computer. if try run heavy older tools on pi disappointed, pi isn't meant compile latest heavyweight c# massive programs, meant learn first steps of programming on lightweight programming environments. raspberrypi

Scrolling text with Sparkfun 16*2 LCD (need help)

i working on code scroll text marquee style right left when has scrolled way left off screen want stop. there scroll commands in data sheet lcd scroll right 0x1c scroll left 0x18 however have not been able figure out how use them. here code wrote far. it works single character if add more , buggy. any appreciated. quote #include <newsoftserial.h> newsoftserial lcd(0,5); // serial lcd connected pin #5 int y = 15; // scroll void setup(){  lcd.begin(9600); } void loop() {  goto(y);  lcd.print("x");  y=y-1;        if(y<0){    y=15;  }    delay(250);  clearlcd(); }     // serial lcd command codes    // initiates function command display      void sercommand() {          lcd.print(0xfe, byte);          }    // resets display, undoing scroll , removing text      void clearlcd() {           sercommand();           lcd.print(0x01, byte);         }    // starts cursor @ beginning of first line (...

Nieuwe site: ThaiPortal.nl - Joomla! Forum - community, help and support

Image
ben ook aan het spelen geweest met joomla en ik moet zeggen dat ik erg tevreden ben met het eindresultaat. de weg echter lang, veel trial & error maar dankzij de geweldige community, veel lezen en prutsen het toch gelukt. ik heb volgende components/modules draaien: - joomla! 1.0.4 met nl taalbestand - 404 sef (search engine friendly, zoekmachine optimalisatie. mooiere url's) - mospjirc (java irc applet) - phpbb (forum) - tfsformambo (rapportages voor admin) - tinymce-exp admin (toolbar voor admin) - yanc (nieuwsbrieven) -  zoom media gallery (media gllerij, plaatjes maar ook andere media) - mod_bookmarkus (bookmark knop) - mod_latest_topics (laatste forumberichten) - mod_mambweather (het weer, vertraagt wel de site) - mod_phpbb_login (phpbb login, ook voor joomla login) - mod_schnee (leuke sneeuwvlokjes voor december) - mod_yancsubscribe (aan/af-melden neuwsbrief) de site te bewonderen op: http://www.thaiportal.nl iedereen bedankt voor de support. op- of aanmerkingen zijn welko...

Good SDHC Card - Raspberry Pi Forums

Image
transcend ultimate speed, sdhc, 16gb, classe-10, usc-1, 85mb/s bought 2 of above card amazon @ £12 each free delivery. worried usc-1 not work after previous problems c10 cards. brilliant. compared kingston 16gb, c4 time write image @ least halved time boot pie. great price too. no not advert wanted share. is model listed on wiki? if works, , it's not listed, update page include it. raspberrypi

Newbie confused with if statement

hi all, i've started electronics , programming please bear me. trying work through example , cannot figure out how first if statement can ever run after first time runs. first time runs, ok, lower down in program, value val assigned old_val means value 1 or high. if case, first if condition can never repeated again if old_val == 1 : void loop(){  val = digitalread(button);  if ((val == high) && (old_val == low)) //first if statement  {    state = 1 - state;    delay(10);  }  old_val = val;  if (state == 1)  {          digitalwrite(led, high);    } else    {      digitalwrite(led, low);    } } code: [select] old_val = val; is outside of if statement.  so on future time through digitalread returns low, if statement not execute, old_val set low.  then next time val ...

Thread: Sytem font

Image
hello. i've upgrade son's old computer (running dapper drake), , system font appears rectangles instead of text characters...how can change this? have access terminal. thanks. posted brian carruthers hello. i've upgrade son's old computer (running dapper drake), , system font appears rectangles instead of text characters...how can change this? have access terminal. thanks. does still if go under preferences --> appearance , font tab , change within there, thought might start narrowing down problem. akakingess Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] Sytem font Ubuntu

serial available()

hi i have been playing serial port, used example programme , modified little have been thinking... i understand serialbegin() sets baud rate why serial available doing? have looked around nothing says doing. in context i've seen in, says serial available > 0  so guess means looking sort of data or something. i'm not computer genius in simple terms command doing?? you'd think serialread() doing same thing reading serial port. serialread , done it, if 0 or 0 v coming down serial port programme ignore it? don't know!! as final question... the arduino language c. i've bought getting started arduino book , book there online free training course me understand language? have done c++ course few years ago , has helped me lot understanding arduino language. arduino language has own commands distinctive it. as final point, arduino amazing piece of equipment , have been telling listen me it!!! ps i reading arduino understands when series of commands being used run...

Using the 'short' data type in Arduino

i'm playing round code run tlv5618 dac via arduino. it's working fine - uses 'short' data type (i think) based on c. it's used few times in function declarations - e.g. code: [select] void setdacavoltage (short involtage) {  setdacvoltage (involtage, 1); } i can't find explanation data type in arduino reference - i'm wondering 2 things: 1) 'short' data type , 2) there better/more efficient way of writing in arduino? the main reason i'm asking want try , change data type things these functions referencing - try optimise 1 part of code, don't want before understand type of data these functions looking now. hope makes sense - in advance. j on arduino, "short" same "int". it's signed 16 bit quantity, capable of representing range -32 768 +32 767. imho, it's better (more portable) write "short" (almost) 16 bit quantity, whereas "int" depends on platform. in fact, bette...

passing arrays by reference

Image
i new arduino, come c++ ground in microsofts vs.  i trying pass array function reference, more 1 function can operare on same array.  an example of i'm trying do: quote void function( int &); void setup (){    serial . begin (9600);    }; void loop (){    int counter[10];   funtion(&cunter[]);    for ( int i=0;i<10;i++){      serial . println (counter );   } }; void function( int &functionary[]){    for ( int i=0;i<10;i++){     funtionary =(i*10);   } } at least in vs. how it, arduino returns error stating 'declaration of 'ary' array of references'.  i'm not sure work around.  so far have concluded prototype needed fix bug in arduino's auto-prototyping, , have found several postings saying can not return array function.  anything help. rigg arrays (which pointers) pass reference default. code: [select] void function(int arr[]); void setup(){  serial.begin(9600);   } vo...

Overlib > MocCE Stripping Code, How to Stop? Making me CRAZY - Joomla! Forum - community, help and support

trying figure out how stop mosce stripping this.  happens in both ff , ie.  here start (paste via html button): code: select all <a href="javascript:void(0);" onmouseover="return overlib ('',width, 180, height, 160, background,'images/stories/manuf/colors/sf/r_black.jpg',above,center,mouseoff);" onmouseout="return nd();"> <img width="40" hspace="0" height="30" border="0" align="left" src="images/stories/manuf/colors/sf/s_black.jpg" alt="rollover enlarge" style="width: 40px; height: 30px;" title="rollover enlarge" /></a> save , mosce, go in , here left (i broke lines make easy see) : code: select all <a href="javascript:void(0);"> <img title="rollover enlarge" style="width: 40px; height: 30px" height="30" alt="rollover enlarge" hspace="0"  src="http://www.valenti...

Thread: 3d Acceleration(SIS Mirage 3 Graphics)

paano po ba i-enable yung 3d acceleration sa sis mirage 3 grphics card??? need driver??? try ff: in console or terminal under root login account $sudo su - 1st. backup xorg.conf $cp /etc/x11/xorg.conf ~/xorg.conf.bak then $dpkg-reconfigure -phigh xserver-xorg $/etc/init.d/gdm stop && /etc/init.d/gdm start pag nag fail, $cp ~/xorg.conf.bak /etc/x11/xorg.conf $/etc/init.d/gdm stop && /etc/init.d/gdm start , kung hindi mag fail, check mo kung may kakaibang enhancement sa desktop u d: Forum The Ubuntu Forum Community Other Discussion and Support Ubuntu LoCo Team Forums Asia and Oceania LoCo Teams Philippine Team 3d Acceleration(SIS Mirage 3 Graphics) Ubuntu

hiding the creation date - Joomla! Forum - community, help and support

here's have. hosting company running linux (i think) everything installed , works fine joomla version 1.0.4 here's want hide creation date on content front page hide most here's happens global settings hide , show creation date if select hide or show in content doesn't work what seems happening global settings override content settings. what's going on here? common area confusion various parameters affect. basically content item parameters take effect when viewing single item of content menu item parameters affect view of that menu's display global parameters affect default site so if want example affect items in display of homepage, need change home page parameters e.g. menu > main menu > home > parameters note if click read more link home page view single item, content item parameters take priority. so if view single item - item parameters rule if view in e.g blog, menu item parameters rule Board index Joomla! Older ...

using the Timer1 library for PCM audio output

Image
hi all,    i'm trying generate audio arduino, using pulse code modulation.   if you're not familiar technique, take waveform (let's sine wave), divide 48 samples, , encode it's level @ point char array.  then set interrupt on timer1 every time fires, sets 1 of timer2 pwm pins current sample point, increments array index.  i've changed prescaler on timer2 pwm frequency 62,500 hz, once put output through low-pass filter sounds...surprisingly decent, actually. so works expected static frequency.  on oscilloscope, can see waveform i've encoded, , can hear on speaker. now, should able vary frequency changing how timer1 interrupt called, i.e. how steps through array of samples.  i'm using timer1 library in arduino playground, when try vary interrupt period, squat-- no output @ all. has used library varying interrupt frequencies?  or had success generating sound method?  i'd use library because manually configuring timers makes me   ...

newbie C syntax help

hi all, noob.   i playing around servo example , came across code. switch(ch) {      case '0'...'9':        v = v * 10 + ch - '0';        break; can explain why necessay have '0' correct input v serial port? because char '0' '9' have binary values 48 57. if want add numeric value need subtract '0' or 48 without quote. i.e: char '5' equals 53 in binary if subtract 48 or '0' 53 binary value 5 (53- 48 = 5), need in v = v * 10 + ch - '0'; expression. same v = v * 10 + 5. Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > newbie C syntax help arduino

Major problem install things? - Raspberry Pi Forums

hi guys i'm having rather weird , quite major problems armarch install (and not 1 i've tried reinstalling multiple times). problem being standard pacman -s *blah blah*. on completion attempt run program gives error saying not exist , search through /usr/bin , no seen, happening? i'm 100% isn't sd card 16gb , have partitioned use space. can't think of other problems im running root , no other errors appearing. appreciated tl:dr: installing programs, go run program, programs not running error file not found, program not seen in /usr/bin thanks slaming which image 1 have? , trying install? raspberrypi

Interfacing with MLX90614 thermal sensor

hi, i'm new arduino micro-controller world. interface thermal sensor mlx90614 parallax read temperature it. my questions are: 1. mlx take in serial command, work i/o digital pins on arduino board? 2. how send serial command arduino? had looked @ serial.write() works byte or series of bytes? if use basic stamp 2 microcontroller command be: serout pin, baudrate, [0, "!temr", $5a,$07] (taken parallax website) how can equivalent arduino? thank in advance this link mlx90614 parallax http://www.parallax.com/storesearchresults/tabid/768/txtsearch/mlx90614/list/0/sortfield/4/productid/539/default.aspx Arduino Forum > Forum 2005-2010 (read only) > Software > Interfacing > Interfacing with MLX90614 thermal sensor arduino

COM and Blitz3D

good afternoon! i tried let arduino , easy game programmign language blitz3d (www.blitzbasic.com) communicate. works fine, after 1 minute, arduino doesn't react anymore on incoming serial-bytes. rx-led on arduino blinking, action want let perform if serial.available() higher 0 doesn't executed. so used search function in german blitzbasic forums (www.blitzforum.de) , found this: http://www.blitzforum.de/forum/viewtopic.php?t=32107 here uses writefile-method (i used library, linked in last post), seems topic starter has same problem, , he's using serial emulating usb-device too. so used portmon see program , hyperterm sending, , can see in post: http://www.blitzforum.de/forum/viewtopic.php?p=337550#337550 hyperterm sending far more does. does have solution this? thanks, , happy 2010! (edited links, tip) you can edit post, you've made first post, fix links, or add follow post post links. Arduino Forum ...

Newbie needs to get rid of default BANNER how? - Joomla! Forum - community, help and support

Image
alright guys newbie here..but have been playing around thing trying right. how rid of "joomla" header & insert own? i tried usining manage banner feature...but not banner. have been racking brain day! please help! here site reference. http://www.askjayclayton.com :(" title="angry" /> the file looking http://askjayclayton.com/templates/rhuk ... _short.jpg it's background in template index.php file  find here ... http://askjayclayton.com/templates/rhuk ... /index.php so either change file name , replace of desired naing or edit iamge , call existing name. that should fix it. Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Thread: Best Selection.. Desktop or Server?

hi everyone, i'm network secialist heve been working ms environment years. lately got dell peweredge 2600 server , i'm looking make personal files server , backup main computer in regards of accessing emails, paying bills online , quick web research. nice able stream video , connect ps3 well. system dual xeon 3.2 5 gb of ram. has 2 scsi 36gb hdd in mirror connected perc4/di card os. i'm in process of buying 3ware 9550sxu-8lp , installing 6 sata ii (2 tb) drives 6 bays of pe2600 server. @ same time i'll relocating 2 scsi drives upper bays , removing scsi backplane make room sata cables. want use raid protect data. i've installed server release of ubuntu working command line seem bit challenging have limited time research / trial , errors. here's option thinking of: 1- install desktop release , configure file sharing. or 2- install server release , load gui on occational mail/web needs when pc experiments goes bad , n...

FW CS3 very slow to open on Vista

fw cs3 opens sooooooooo on vista. mean i'm talking 30 secs minute or more. (i have p4 , 2 gig of ram) . being used fw8 opening in flash pretty dreary. has else experienced this? i don't think it's vista issue...as fw cs3 very slow launch on winxp system well. the program launches interfaces within 10 seconds, takes 20 seconds before can use (it acts frozen , not respond menu actions until around 30 seconds after launch. this same problem adobe had many users photoshop cs2 before came out patch. fireworks 8 installed on same pc , launches within 10 seconds. More discussions in Fireworks adobe

Thread: Help with mounting NTFS partition please

hello, i've tried mount windows vista partition following direction on kubuntuguide.org . asks install ntfs-3g, add user group called fuse(i added both regular account , root fuse), , enter following line /etc/fstab: /dev/sda2 /mnt/windowsntfs ntfs-3g quiet,defaults,rw 0 0 did this. winvista directory shows under /media there's nothing inside it. /etc/fstab file looks like: code: # /etc/fstab: static file system information. # # <file system> <mount point> <type> <options> <dump> <pass> proc /proc proc defaults 0 0 # /dev/sda3 uuid=4cf17e41-44c3-407d-a347-8342cc8132e3 / ext3 defaults,errors=remount-ro 0 1 # /dev/sda5 uuid=e83dc45d-24de-45a9-b647-72cf7f81d67c none swap sw 0 0 /dev/hda /media/cdrom0 udf,iso9660 user,noauto 0 0 # mine #/dev/sda2 /media/windows ntfs-fuse ...

Thread: Skippy sound in 9.04

yesterday did dist-upgrade of kubuntu 8.10 9.04 on laptop. went pretty good, have serious issue audio. when playing (music or videos) sound choppy/skippy, i.e. given second (sometimes it's every second, it's 1 of 2-5) plays faster should (lasts less full second should). results in sound being sped , chopped fit in partial-second. i've googled lot , followed tutorial on forum on setting pulseaudio (by removing old asound config files , installing pulseaudio tools) , didn't @ all. issue tested songbird (my music player), audacity , various mplayer frontends. audacity seems handling after few initial choppy seconds, while songbird seems worst affected: music un-hearable. issue affects video playback: youtube videos stuttery same way, video following audio (i.e. being choppy , seconds shorter are). laptop asus f80s lspci output: code: tomek@tomek-asus-f80s:~$ lspci -v 00:00.0 host bridge: silicon integrated systems [sis] 671mx ...

Startup scripts - Raspberry Pi Forums

hi all, firstly, loving pi...i'm experimenting using receive rtsp stream webcam. have mplayer dumping named pipe, running omxplayer decode it. wanna make sure happens on bootup, need pi automatically login user, , run mplayer, followed omxplayer... have absolutely no skills bash, wondering if can help? thanks craig a few things you'll want init script do: start startup portion of script should start application (in daemon mode or background process), store process id pid file , exist gracefully. might worth while check pid file first see if process running. stop checking pid file, you'll want kill process , delete file. pretty simple. status here check pid file, , display if process running or not. restart call stop, start. arguments last step catch single argument being passed script: start, stop, status, restart. put pretty simple script. i'd recommend check out other init scripts in system find out exact nature of doing things storing pid...

Whoops I've just upgraded and my links no longer work Help? - Joomla! Forum - community, help and support

Image
hi guys i've upgraded  10.3 10.4  , links no longer work help? view them here www.hast.org.uk i've recreated front page link - component-frontpage still 404 error body advise how recover ( no dident backup first). kili can still enter administrator backend? please turn off sef moment. global configuration --> seo --> search engine friendly urls , rename .htaccess htaccess.conf or that. please test site again after that, help? Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Graphical user interface - Raspberry Pi Forums

Image
hello. i'm new raspberry , python. have home project control house. want make nice graphical user interface in python. in future customise raspbian in way user can't see rasipbian running in background. feature want implement in future control via wi-fi mobile devices (android/ios) , browser. i'm asking me choose framework, allow me gui. , happy if can give me hints, how thanks i can't give advice on best gui newbie when come python 2 have read wxpython , tinker.. using wxpython project purely due using pre built module display virtual car dashboard dials. there tutorial wx layout @ http://zetcode.com/wxpython/layout/ before going wx route though have @ tinker see suit project best. cheers raspberrypi

Please help with complex flow controller code

i'm working on arduino-based open source unit control flow in educational river models build -- see www.emriver.com. having hard time parts of code!  the device waterproof box 3 buttons control:  up, down, , "aux" button.  the arduino inside sends control pulses critical velocity sp-315 pwm unit controls small 12-volt pump.  descriptive video here:   http://lrrd.blogspot.com/2010/09/our-happy-first-digital-hydrograph.html i'm having hard time menu program; works pretty well, can't quite figure out how to: 1.  call menu "aux" button, got work-- 2. use up/down buttons go through choices; got that-- 3. third "aux"  button select , run function, not return menu program. i have working, bugs driving me crazy; can't quite grasp how call menu, exit run "hydrograph" routine without coming it; question how out of  menurun function good! in menurun function want call hydrographrun , go loop; i'm doing using ...

Arduino sleep mode accelerometer

ok im trying make put arduino sleep wake arduino when accelerometer moved. log time moved at, go sleep  if no movement 5 minutes. any ideas on how program this? the thing concerns me if accelerometer need constant 5 volts able send code wake arduino up, therefor defeting perpose of putting sleep in first place quote any ideas on how program this? there few examples available on internet show how put processor sleep.  here 2 started with... http://www.arduino.cc/playground/learning/arduinosleepcode http://interface.khm.de/index.php/lab/experiments/sleep_watchdog_battery/ the processor can wakened interrupt.  if accelerometer has way of generating interrupt (a serial recieve may it), want may work. quote log time moved at save great headache.  plan include real-time clock. quote the thing concerns me if accelerometer need constant 5 volts able send code wake arduino up, therefor defeting perpose of putting sleep in first place if goal run...

Twos complement?

hey guys, i'm still pretty new @ this. i'm working on accepting data module sends number in 2 bits. i'm told positive or negative according two's complement. while understand concept, have arduino go two-bit two's complement number int? thanks! the signed int variables used in arduino uses twos complement negative numbers. convert positive number negative number in twos complement invert bits , add 1. i think convert 2 bit signed number 16 bit signed number have set 14 higher bits 1 if second bit of smaller number one, not sure. http://en.wikipedia.org/wiki/twos_complement lefty Arduino Forum > Forum 2005-2010 (read only) > Software > Syntax & Programs > Twos complement? arduino

tinyGPS - trying to output status

i got code working nicely, gps needs reset , cannot tell. in code below, tried adding either of 2 commented else statements, made output stuck in state, though gps outputting valid data. i'd print on lcd "wait gps fix" time of waiting, , status of wheather gps sending data @ (this bool variable added feedgps function @ bottom. maybe need make first else statement if (gpsdata = 0) statement? code: [select] #include <newsoftserial.h> #include <tinygps.h> #include <string.h> #include <ctype.h> /* sample code demonstrates normal use of tinygps object.   requires use of newsoftserial, , assumes have a   4800-baud serial gps device hooked on pins 2(rx) , 3(tx). */ tinygps gps; newsoftserial nss(2, 3); void gpsdump(tinygps &gps); bool feedgps(); void printfloat(double f, int digits = 2); int tzone = -7; bool gpsdata = false; //connect lcd #define rxlcdpin 4  // rxpin immaterial - not used - make unused arduino pin number #define ...

Thread: PushRegistry in J2ME?

i totally new j2me , kind of struggling. basic idea create background process in mobile phone. way pushregistry in register datagram/socket connection , when application exits, ams monitor connection , whenever there data automatically trigger startapp of midlet. not able make work. mobile receives data first time , on not. more questions 1) when startapp() has finished executing , not call destroyapp, application continue running? 2) not understand mean when "application not running". make application not running (exit) calling destroyapp/notifydestroyed(). after if data comes on connection registered using pushregistry, start application again? understand should not happening. Forum The Ubuntu Forum Community Ubuntu Specialised Support Development & Programming Programming Talk PushRegistry in J2ME? Ubuntu

No desktop when booting finishes - Raspberry Pi Forums

Image
i new user , when turn rpi on works until boot finishes goes black , doesnt on screen cursor , box saying desktop1 desktop2 desktop3 , desktop4 thats it. please help which operating system (os) supposed on sd card? did buy sd card os installed or did put os on yourself? have got plugged in usb port(s)? if type on keyboard, characters appear on screen? raspberrypi

Display Menu - JSCook 1-2 - Joomla! Forum - community, help and support

sidder og leger med display menu - jscook 1-2, men jeg kan ikke finde ud af hvordan jeg får den til @ opfører sig som jeg gerne vil have. så vidt jeg kan læse mig frem til dokumentationen, så skal man bruge parametere direkte på modulet. men hvis jeg skriver fx. theme = mambo eller theme = ie, så sker der intet. ej heller med de andre parametre jeg har forsøgt mig med! nogle der har et eksempel på hvordan parametrene skal skrives så de virker? på forhånd tak gunnar har du et link til den så installere jeg den gerne på mit (dog noget rodede) testsite. Board index Joomla! International Language Support International Zone Danish Forum Ældre versioner (disse vedligeholdes ikke længere fra officiel side) Joomla 1.0 (Udgået version, der blev afløst af 1.5 i 2008) Komponenter, Moduler og Mambots

Processing -> LCD works once, then needs reset

hello, i working on little project takes tweets , displays them on lcd (currently 16x2), using arduino diecimilia (atmega168) , liquidcrystal library. i've got point first time send tweet message displays, subsequent attempts fail until next time start application. error appears on arduino side. believe happening in heldtexttolcd() method. here arduino code: code: [select] #include <liquidcrystal.h> #include <wstring.h> #define charactersperline 16 #define lcdlines 2 #define maxlines 10 string heldtext = string(charactersperline*maxlines); int received = 0; liquidcrystal lcd(7,8,9,10,11,12); int buzzerpin = 3; void setup() {    // start serial port @ 9600 bps:  serial.begin(9600);  //pinmode(2, input);   // digital sensor on digital pin 2  lcd.begin(16,2);  //lcd.autoscroll();  establishcontact();  // send byte establish contact until receiver responds  delay(1000);  //heldtext = "returns new string part of original string. when using endindex pa...