Posts

Showing posts from February, 2010

IPv6 to IPv4 Gateway - Raspberry Pi Forums

Image
hello there, amstruggeling network configuration of raspberry pi gateway, first of brief introduction trying do. have several computers in private network , want access services on these machines on internet. unfortunately changed isp (to unitymedia, german isp) , have ds-lite-tunnel , ipv6 address. idea use ipv6 address access raspberry pi, forward request coresponding machine, 1 nas , netbook not support ipv6. expose raspberry pi internet, there option forward port range on router, want access pi too. here lite grphic show whats going on. quiet easy forward http , vnc requests right machine, forwarding ftp caused me headaches. not possible use sftp, end problems , because nas not support feature. how implemented forwarding? secure raspberry pi using iptables based firewall, expose ports needed. use socat forward each port like: code: select all socat tcp6-listen:180,fork tcp4:192.168.178.5:80 & socat tcp6-listen:15900,fork tcp4:192.168.178.3:5900 & ftp want that,...

CFPOP from/reply question

i created cute little web mail system form animal rescues , works fine, however... when sending email client such outlook express or outlook, 'from / reply' email address name (<wally kolcz>) , email address. when putting information database, <name> from reply attribute. anyway rid of , email address? parse field. if email address after name, can right angle bracket , store remainder: <cfset theaddress = trim(mid(from,find("> ",from)+2, len(from)))> play around start value of mid() function starting position correctly. hth, More discussions in Advanced Techniques adobe

Thread: instalar ubuntu en usb

bueno despues de un rato buscando, encontre varias cosas sobre como instalar ubuntu en mi usb y que sea estable como la distribuccion completa espero me aga entender lo que quiero es que no sea como un live que cuand vuleba ainiciar linux ya se hallan borrado mis archivo y programas instalados, entonces encontre un programa que se llama usbuntu live creator ( http://bitelia.com/2009/07/bootea-li...u-live-creator ) lo que me produce deconfianza es la palabra live es decir yo no quiero que mi ubuntu sea como un livecd sino residente. tambien encontre que podia usar el startup disk para ubuntu 8.10 ( http://translate.google.com/translat...artup%2520disk ) pero como el documento es una traduccion de ingles español no entiendo bien, si hace lo que yo quiero qeu haga & tambien encontre es sobre un ubuntu persistente ( http://74.125.65.132/translate_c?hl=...sjafukkprcvc7w ) pero no entiendo que se refiere con persistente & pues si no es mucha moletia ...

&lt;div&gt; wrapping around a editable region &lt;/div&gt;

a quick question re templates , div's i don't see why shouldn't following construct ok - enable div controlled css - , have locked not possible accidently delete it. ? or give dreaded error message - "you changing code in a locked area" <div id="mainbody"> <!-- instancebegineditable name="mainbody" --> <!-- instanceendeditable--> </div> <!-- end of id mainbody --> -- ~malcolm n.... ~ there's nothing wrong that, description , question wonky - 1. there no "who" div. 2. can control page element css whether it's in editable region or not. 3. editable region markup can go anywhere html comments allowed, provided opening , closing region markup not improperly nested. -- 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, tutor...

Does anybody know how to restrict access to folders not just a page?

hi there i know how use restrict access page behaviour dreamweaver mx 7.1 wondering how go allowing registered users access files not elses updating. is there tutorials anywhere? thanks...... jjjhbj111 wrote: > know how use restrict access page behaviour dreamweaver mx 7.1 > wondering how go allowing registered users access > files not elses updating. the restrict access page server behavior needs applied each page individually. interakt kollection suite of commercial extensions lets restrict access entire folder @ time, this functionality available part of full suite, almost expensive dreamweaver itself. see www.interaktonline.com for details. interakt bought out adobe last september. check website details likelihood of future support. -- david powers, adobe community expert author, "foundation php dreamweaver 8" (friends of ed) author, "php solutions" (friends of ed) http://foundationphp.com/ More discussions in Develop server-side applic...

Auflösung der Servo.h Bibliothek ändern

hallo zusammen. wie man die periodendauer der bibliothek servo.h ändern kann habe ich hier gelernt, und funktioniert für den einen zweck sehr gut. nun bin ich einer anderen sache dran und wie das ist scheitere ich nun wieder dieser servo.h bibliothek. ich möchte mit einem gimbal (servo einer kameraplattform) eine achse verstellen, auch funktioniert. sieht in etwa aus: bild was ich nun bemerkt habe ist das ich bei der bibliothek servo.h nur eine auflösung von ca.180 habe (angabe in °). bei einen eigenen  (sehr uneleganten) code habe ich eine auflösung von ca. 1600. das servo verfährt auch in dieser besseren auflösung, wenn ich meinen eigenen code benutze. ich habe wirklich auch in der praxis die viel bessere mechanische auflösung. nur ist dieser code alles andere als professionell. darum würde ich gerne die servo bibliothek benutzen. leider habe ich bis jetzt nicht gefunden ich der bibliothek ändern muss um die auflösung zu ändern. hier noch mein code: code: [select] // ...

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

i've been using joomla several months , getting better @ template design.  here few examples. http://www.edenwithoutaroof.co.uk - site uses colour modifications on default template joomla ships with. integrated open realty property section.  great search engines! also uses 2 shoes mambo factory gallery component.  http://www.no7weststreet.co.uk/ - smaller site b&b. http://www.dunkerybeaconhotel.co.uk/ - hotel website.   hi, nice designs, b&b , hotel site most. regards robin. Board index Joomla! Official Sites & Infrastructure Sites & Infrastructure - Feedback/Information Archived Boards - All boards closed 1.0 x Site Showcase - Archived.

print '\a' no audio!!! - Raspberry Pi Forums

just making simple countdown timer audio code: select all import time = 20 while != 20: print print '\a' time.sleep(1) a=a-1 pl. ignore caps did produce required visual output there no audio either thru or audio jack pl. help thnx how this? code: select all import pygame pygame.init() pygame.mixer.init() sound = pygame.mixer.sound("alarm.wav") sound.play() raspberrypi

Need a way for users to leave comments that is IE and FireFox compatible - Joomla! Forum - community, help and support

currently using ako comment users leave feedback.  unfortunately, works in internet explorer, messed when viewed in firefox. does have solution this? here's example: http://www.dcguide.com/attractions/othe ... steps.html bump still need this...anyone have suggestions? Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Thread: Restricting bash

i have user, , want him able run 1 command when logs in. command under /usr/bin. called script on remote system, cannot link or change command name. bash -r perfect, can't execute commands slashes in them. cannot change way command called. so, user needs execute /usr/bin/<command> , absolutely nothing else. ideas how can make happen using bash? you chroot jail , put 1 command in jail's /usr/bin. interested hear of other ideas. Forum The Ubuntu Forum Community Ubuntu Specialised Support Security [all variants] Restricting bash Ubuntu

navigateToURL error message!

hi my application has follow function: public var u:urlrequest = new urlrequest( " http://www.google.com/search?hl=en&q=" ); private function nav():void { navigatetourl(u,"_blank"); } but, got error message when try compile application pointing navigatetourl: incorrect number of arguments. expected no more 1. thanks the problem called mistake application navigatetourl. therefore, refers to. solved problem changing name of application More discussions in Flex (Read Only) adobe

Clickable Chart

i have pie chart, , want clickable, use click event click="onclick(event)" the problem not give me access hitdata for example if want toop tip function, can following private function formatdatatip(hitdata:hitdata):string { // here have access hit data } using datatipfunction="formatdatatip" how can access hit data when user click' thanks kasem here example hitdata click on pie chart: <mx:piechart dataprovider="{piedata}" itemclick="chart_click(event)"> <mx:series> <mx:pieseries field="orders" namefield="flavor" labelposition="callout"/> </mx:series> </mx:piechart> import mx.collections.arraycollection; [bindable] public var piedata:arraycollection = new arraycollection([ {flavor: "apple", orders: 100}, {flavor: "banana", orders: 200}, {flavor: "lemon", orders: 300} ]); import mx.charts.events.chartitemevent; import mx.cha...

Arduino Uno: communication via le port série, quel "protocole"?

Image
bonjour à tous, je suis nouveau dans le monde des board arduino et j'ai (déjà) des problèmes...  je suis sous linux (debian wheezy) et j'utilise le programme arduino 1.0. je voulais tester le port série, du coup, je charge l'exemple serial et je l'upload. en utilisant le serial monitor, tout fonctionne parfaitement (je peux envoyer/recevoir du texte sans aucun problème de représentation). par contre, si j'utilise mon adaptateur usb->rs232 (je connecte gnd,rx et tx de mon câble à la board sur les pins 0/1) et je lance screen/minicom/kermit/cat sur mon périphérique (/dev/ttyusb0), je reçois des caractères bizarre ( si dans mon code je fais serial.println("a"), je reçois "0y= " correspondant aux codes hexa [0x4f, 0x79, 0x3d, 0x00] ). je me suis dit que peut-être les pins 0/1 ne fonctionnaient pas correctement vu qu'ils sont utilisés pour dialoguer avec le programme arduino travers le câble usb. du coup, j'ai utilisé l...

Joomla! Forum - community, help and support - Login

the board requires registered , logged in view forum. username: password: i forgot password resend activation email remember me hide online status session   register in order login must registered. registering takes few moments gives increased capabilities. board administrator may grant additional permissions registered users. before register please ensure familiar our terms of use , related policies. please ensure read forum rules navigate around board. terms of use | privacy policy register Board index

Thread: which distro should i use?

Image
hello, have tried ubuntu before wasnt happy everything. ended deleting computer because easier me use windows, as dislike it. using linux, not sure distro best me? play world of warcraft lot, , lot of internet surfing, etc. need able use program microsoft zune, can sync zune songs. other that, pretty open. before when used music player in ubuntu songs came in weird (double songs, wrong order, not full albums, etc). customization of interface , everything, not knowledgeable, of right now, of computer language , programming. have intel graphics card, part of reason couldn't use wow on ubuntu before. there distribution of ubuntu, or linux, accomodate of these needs? grateful! need starting point. everyone! what version did use beoire because has gotten better since 7x series usunt #1 choice can try live cd , see if works thats before installing pc check if wifi works etc... ...

Just finished another site ... in 5 days ;) - Joomla! Forum - community, help and support

Image
i'm getting hang of things ... completed site. time took me 5 days http://cpu3d.dynu.com/ that awesome. template , please give detail of how did did? really impressed. nucleus wrote: i'm getting hang of things ... completed site. time took me 5 days http://cpu3d.dynu.com/ Board index Joomla! Official Sites & Infrastructure Sites & Infrastructure - Feedback/Information Archived Boards - All boards closed 1.0 x Site Showcase - Archived.

Thread: Sauerbraten wont load textures??

has had issue this? can play game fine textures arent being loaded, makes rather funny must admit. are seeing errors textures when load game? make sure you're using official version cubeengine.com or sauerbraten.org . extract home directory, easiest , avoids permission issues. when start it, don't use sudo , ./sauerbraten_unix (name might incorrect since can't check). if got getdeb, make sure have sauerbraten-data package installed well. i've never used packages since they're known cause issues this. if have package installed , problem doesn't go away, official version avoid permission issues. try using sudo , see if game loads textures then, , if it's issue permissions , reason shouldn't use packages (games don't need root access). if got through synaptic package manager or add/remove, might uninstall version since it's out of date. old versions have more bugs, missi...

motorbike kill-switch

hello, i want implement arduino motorbike, , 1 of things need whit shut down engine. the bike has kill-switch shutting down engine. kill switch, when pushed connects 1 wire(coming ecu) bike ground.. measured voltage between wire , ground, , 8v when engine in high rpm. used ammeter shorten wire , ground engine @ full rpm, , current 60ma, , engine shut down of course.. so need build kind of hardware make possible, think using reley not option because need shut fast , precize, , kind of dirt bike there lot of vibrations , shocks, , dont think reley.. is there way this? thanks time! i wouldn't that. if there switch there, leave alone. don't add complexity, , associated risk of failure, critical function. Arduino Forum > Using Arduino > Motors, Mechanics, and Power (Moderator: fabioc84) > motorbike kill-switch ...

Self-ISP on an Uno

Image
here's fun: it's arduino uno doing isp on itself! the 8u2 usb chip running modified software - standard usbserial code, merged heavily modified version of arduinoisp sketch.  nice thing can switch between normal operation , isp adding or removing jumper. if interested in trying out code, let me know , i'll tidy , write instructions.  you'll need uno r2 (r1 not work; r3 ok don't have 1 test) , either isp programmer or arduino.  soldering required (to add header pins).  you'll need confident reprogramming 8u2 - isp, there's potential bricking device if goes wrong. that's pretty glorious, love it. Arduino Forum > Using Arduino > Microcontrollers > Self-ISP on an Uno arduino

MYSQL Prozedur - Raspberry Pi Forums

heho. ich bräuchte mal ganz fix eure hilfe. ich glaub ich seh den wald vor lauter bäumen nicht. ausgangsparameter: server: mysql 5.5.29 apache 2.2.22 phpmyadmin 3.4.10.1deb1 datenbank: db_test tabelle: tbl_user eingeloggt als root und datenbank ausgewählt. wieso kann ich bitte keine prozedur anlegen. selbst eine einfach testprozedur geht nicht. code: select all create procedure test () begin select * tbl_user; end; das ist doch nun wirklich die einfachste testprozedur und trotzdem bekomme ich: code: select all #1064 - have error in sql syntax; check manual corresponds mysql server version right syntax use near '' @ line 3 ich verstehe es nicht. ich habe sogar im manual nachgeschaut und es bis auf die tabelle und den prozedurnmen übernommen. ich finde einfach keinen fehler. aber wahrscheinlich bin ich wieder zu blind. mfg his machst du leerzeichen oder tabstops? formt der editor vielleicht die tabs in leerzeichen um? edit: komisch ist, dass al...

Computer hardware poster 1.7 - Raspberry Pi Forums

Image
"informational , educational daily deviation" http://sonic84.com/home/chp_v1.html http://sonic84.com/home/chp_v2.html http://sonic840.deviantart.com/journal/ ... -356346844 -- http://sonic840.deviantart.com/art/comp ... -111402099 an interesting poster, nice see examples side side. raspberrypi

Thread: RAM Detection Problem

Image
i have 2 pcs - dell optiplex gx270 , old old packard bell imedia. when plug 256mb stick of ram pb detects 182mb whereas dell detects 244mb. know why pb detect less? makes difference in performance capabilities. posted user 123 i have 2 pcs - dell optiplex gx270 , old old packard bell imedia. when plug 256mb stick of ram pb detects 182mb whereas dell detects 244mb. know why pb detect less? makes difference in performance capabilities. different sticks of ram can have different densities , timings. old motherboards can deal 1 timing or density. can deal first 1 encounter. if using more 1 stick, try changing order in positioned. may stick of ram won't work in motherboard. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] RAM Detection Pro...

Curso de Arduino

olá acredito que os amigos aqui forum conheçam o prof. neri neitzke. hoje ele é o maior autor de videoaulas mundo. existem vários cursos que são ministrados em videoaulas pelo neri, inclusive cursos sobre android. no site neri -> http://www.informaticon.com.br/ ,na coluna da esquerda,  tem uma opção para se votar nos cursos seu interesse. no presente momento está bombando o curso de arduino. previsão para esse curso é  para o segundo semestre. se vc pretende fazer um curso de arduino de qualidade, entre no site e vote... a ideia é que seja um curso que possibilite aos interessados sólidos conhecimentos em c/c++, que permita aos participantes após o curso desenvolver sistema simples e complexos com o uso arduino. ailton Arduino Forum > International > Portugues > Curso de Arduino arduino

Hexapod InverseKinemetics Problem

Image
i have written program hexapod whit inversekinemetics. the inversekinemetics formula's debugd. only still doesn't right output. i post little piece of software, can 1 tell me if see problem ? o writing thought of 1 of errors, radians =( expecting degrees. (i feel little stupid now) can 1 still give critics ? code deleted. code: [select] pow((float)dataline->servosposition[0+(i*3)], 2 using pow square number if hunting flies elephant gun. Arduino Forum > Topics > Robotics (Moderator: fabioc84) > Hexapod InverseKinemetics Problem arduino

Thread: Manual wireless not working in 9.04

Image
hi, all. i'm trying desktop machine (that has 2 oses, windows xp , ubuntu 9.04) connect home wireless network manually. i'm using netgear wn111v1 usb adapter ndiswrapper , windows drivers, , i'm using ubuntu's default networkmanager applet try , connected. wireless network wpa2 encrypted, if makes difference. thing is, can seem router connection, i'm unable ping anywhere, router itself. if try ping anywhere, comes "destination host unreachable". here settings: dns servers: 208.67.222.222, 208.67.220.220 (these opendns ip addressses) no matter these settings, won't net connection. else supposed do?? there command line tool need use? also, because i'm using desktop machine i'm inherently unable connect? i've heard lot more success stories laptop users desktop users...although don't see why make difference. edit: adapter works in xp, that's how i'm posting this... hate when no 1 provides ...

Joomla! Forum - community, help and support - Login

the board requires registered , logged in view forum. username: password: i forgot password resend activation email remember me hide online status session   register in order login must registered. registering takes few moments gives increased capabilities. board administrator may grant additional permissions registered users. before register please ensure familiar our terms of use , related policies. please ensure read forum rules navigate around board. terms of use | privacy policy register Board index

Thread: Which version of Ubuntu did you start with?

Image
what version of *buntu did first experiance? me started kubuntu dapper drake. sorry lack of space in start with! i think hoard hedgehog, i'm not sure. problem 6 month releases hard remember release names Forum The Ubuntu Forum Community Ubuntu Community Discussions The Cafe Which version of Ubuntu did you start with? Ubuntu

Thread: after installing 'critical' upgrades I got kernel panic

Image
yesterday had pop-up alert updates on 9.04 installation (32 bit) on amd athlon x2 cpu box. deselected updates not on critical list , updates proceeded install. upon auto-restart not boot due kernel panic. using grub menu did recovery , able reboot. did apt-get update. things looked ok went run vm using virtualbox , not start. have attached combined vbox-install , make log outputs, meat of is: in file included /tmp/vbox.0/r0drv/linux/the-linux-kernel.h:80, /tmp/vbox.0/r0drv/linux/memobj-r0drv-linux.c:35: include/linux/mm.h:1174: error: stray ‘\177’ in program include/linux/mm.h:1174: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘cache_async_readahead’ make[2]: *** [/tmp/vbox.0/r0drv/linux/memobj-r0drv-linux.o] error 1 make[1]: *** [_module_/tmp/vbox.0] error 2 make: *** [vboxdrv] error 2 there seems corrupted kernel file text preventing restoration, , unsure minimum measures fixed. ...

preloader problem

Image
hi, quite new flash , have got basics. im getting site loads multiple full page external jpg's main.swf, because file size of jpg's quite large i've had load them swf file preloader using loadmovie("page1.jpg", pg1) , load swf file main.swf - page.swf's wont work, seem loop through loading sequence without going jpg. there way have preloader on main.swf , still load external jpg? any input appreciated. cheers More discussions in Adobe Animate CC - General adobe

Layout of Help Documentation

i in mist of updating our documentation , thinking need new layout. there anywhere/any websites can @ see how lay out help. need layout easy read, shows user how create , use our software create, want able place screen shots in it, along w/ navigation, , description. thanks! define "good website". work depends on lots of variables. preper "getting started" book @ top of toc because of users not familiar @ product. have "what's new" section need know what's changed since last version. next "getting help" section of how users can contact company , use file. break books down different modules sell part of our software. each book broken down sub-sections relevant each module. works may not work you. think you'd if user , go there. More discussions in RoboHelp HTML adobe

Portal voor school -- vraagje.. - Joomla! Forum - community, help and support

Image
beste mensen, ik heb een tijdje gewerkt met mambo, maar ben nu overgestapt naar joomla vanwege de betere ondersteuning en componenten. nu heb ik een vraagje: ik ga voor een middelbare school met +/- 500 leerlingen een website opzetten. deze website moet een portal worden met informatie on de school en informatie on vakken/docenten. iedere docent krijgt daarin een eigen pagina. is het mogelijk dat een gebruiker (editor) alleen rechten krijgt om een bepaald stuk te editten? op een van te voren gedefinieerde plek? ik wil dus dat docenten alleen hun eigen pagina's kunnen aanpassen. ik kan dit wel allemaal zelf gaan uitzoeken (of maken, ik heb al 5jaar ervaring met php e.d.) maar ik denk dat ervaren joomla gebruikers zoals jullie mij beter kunnen helpen. welke componenten kan ik hier het best voor gebruiken? of dit makkelijk met de standaard componenten van joomla te realiseren? ik hoop dat jullie een mooie oplossing kunnen aandragen en ik kijk uit naar de reacties  alvast bedankt. vo...

Calculation of GPS and Compass

how make gps , compass calculation or programming making autonomous robot to  drive straight in programming using gps em406a and compass hmc6352 the gps produce strings include latitude , longitude. need parse strings know position , height. iirc search word nmea the compass 6352 more difficult 1 talk to. have worked 1 , took several days reasonable readings it. started library other issues came in between not finished. latest version find , might starting point you. i recall setting different modes not easy , @ moment whole compass blocked. took me long running again, usage of code below @ own risk. means disclaimers apply, , won't fix code or blocking compass. the query mode simplest. code: [select] // //    file: querymode.pde //  author: rob tillaart // version: 0.1.00 // purpose: test app hmc6352 library arduino // // released public domain // #include <wire.h> #include <hmc6352.h> hmc6352 compass(0x21); void setup...

Thread: Dual boot with Ubuntu on external hard drive

Image
hello all, goal run ubuntu when external hard drive plugged laptop , run vista when not plugged in. when installed ubuntu on external hd, grub overwrites mbr. when try run vista without external hd plugged in, grub error (#17 believe). read thread ( http://ubuntuforums.org/showthread.p...06#post3995006 ) , realize simple fix change boot order in bios boot usb first internal hd. laptop work , unfortunately don't have access changing bios settings. there other way can boot ubuntu off external hard drive without changing boot order? thank reading if have ability boot cd...than can use recoverycd called "dart vista" should able re-install mbr cd , make vista default bootloader! or option 2... in ubuntu try using program called easybcd...this program enables set partitions or drives have option boot without changing bootorder in case ext-dd. tho windows program have install thru wine have ...

trying to get prototype function to fire in a class

i trying write actionscript file take place of series of movie clips. the specific line trying find right call : this.onenterframe = this.fly; i haved tried recomented livedocs finction not fire. scrollmsg.fly(); i can't use onenterframe because frame not available. function scrollmsg() { trace("ns--loaded scroller"); this._x = 30; this._y = 0; trace("this._y"+this._y) this.createtextfield("msg", 0, 0, 0, this.msgwidth, 10); trace("scrollmsg-initialization.msgtext:"+initialization.msgtext); with(initialization.msgtext) { //setnewtextformat(_global.msgformat); autosize = "left"; wordwrap = true; multiline = true; embedfonts = true; selectable = false; text = initialization.msgtext; trace("text-initialization.msgtext:"+initialization.msgtext); } // set continual function fly //this.onenterframe = this.fly; //--- not work in actionscript class scrollmsg.fly(); } scrollmsg.prototype.fly = functio...

The Commercial Gift of Death to Joomla? - Joomla! Forum - community, help and support

now "whoever" has seen fit allow commercial advertising on open source forum can please ask pop-ups allowed?  put balloon caption behind of smileys opens on mouse-over. at interval, flash movie of cheerleaders roaming across screen carrying motto of company.  courtesy of haptek, have animated head in likeness accompany postings, reflects movement , talks company message. seriously - have nothing personal against advertiser think produce excellent products principle behind targeted advertising on open source forum should alien ethics of members declaring there going charge downloading joomla! i challenge moderators let ride on "general questions" section subject should seen , discussed!  while understand need generate  revenue costs involved, should on periphery of forum visitation choice not "up close , personal". please lets see 1 takes us? hope floor open! buster edit: have seen disaster relief "public service" advertisement , comments in no wa...

Flash 8 Autorun option?

wondering if knows if flash 8 has self-loading option, autorun, or other option when insert flash movie computer, automatically plays windows, flash 8 i assume you're talking flash projector (.exe file delivered on cd.) the autoplay functionality independent of flash. put autorunning cd that have in computer , examine contents of cd. in root directory see file called autorun.inf. file tells cd run exe file automatically , work on pc , only if user has not turned off autorun feature of cd drive. More discussions in Adobe Animate CC - General adobe

EV1527, RT1527, FP1527, HS1527 and HT12E encoder methods

hello, i built 2 encoder methods x1527 encoder (common in garage openers , such) , holtek ht12e encoder (decoder code ht12 exists on arduino forum). code has addresses statically coded, should easy modify these or take them arguments constructor. the pulsetime might need modified match resistor/oscillator on receiving side. pulse time x1527 encoding 32 oscilations. ht12e supplied code set 3khz oscillator. hs1527.cpp: code: [select] /* ev1527, rt1527, fp1527 or hs1527 encoding */ #include "hs1527.h" #define hs_1527_pulsetime 474 // time in microseconds 1 pulse hs1527::hs1527(int pin) {   _pin = pin; } void hs1527::signal(boolean state) {   digitalwrite(_pin, state);   delaymicroseconds(hs_1527_pulsetime); } void hs1527::signalbinary(boolean state) {   signal(high);   signal(state);   signal(state);   signal(low); } /* transmit message */ void hs1527::sendmsg(boolean *bits) {   /* sync bit */   signalbinary(low);   /* p...

Thread: How get debug symbols for apache2?

i've got 8.04 server running apache 2.2.8-1ubuntu0.5. i'm trying debug apache2 server hangs every few days or so, , i'm following these directions: http://prefetch.net/articles/debuggingapache.html directions have me call "gcore" or "pstack" on running (and hanged) apache2 process. idea looking @ stack trace, i'll insight what's going wrong. problem is, ubuntu 8.04 packaging of apache2 doesn't seem include debug symbols, stack trace pretty useless me. know how can access debug symbols needed interpret stack trace properly? thanks, christian hi christian, i've got similar problem, on jaunty, did ever find out debug symbols from? thanks hans Forum The Ubuntu Forum Community Ubuntu Specialised Support Ubuntu Servers, Cloud and Juju Server Platforms [ubuntu] How get debug symbols for apa...

computer power supply

i have old computer , see has computer power supply. (no kidding) read out put values , see says 5 volts 30 amps. know if touch 5 volts , ground on arduino, nothing happens don't fell it. happens if touch 5 volts 30 amps? feel because of amps? , short cause dangerous sparks? information computer power supplies appreciated. in essence, 5v @ 30 amps max deliver on demand, never forces 30 amps out of 5v line(s) Arduino Forum > Using Arduino > Project Guidance > computer power supply arduino

Fds2 and xml

hello, i try sum problem because don't reaaly understand it. i using flex , fds 2 presented in company example. so have class. i have macthing java class. and communicate well. now insert in class attribute : myattribute:xmldocument. and don't know have in java class. type of new attribute in java class, java type match type : xmldocument. is real problem ? does topic mean ? thanks help according "converting data actionscript java" section of flex developer's guide, gets converted org.w3c.dom.document. More discussions in LiveCycle Data Services adobe

gigCalendar problem - Joomla! Forum - community, help and support

Image
hi, i have 2 questions lastest gigcalendar component : 1. when try edit gigcalendar css control panel, error : query failed : have error in sql syntax. check manual corresponds mysql server version right syntax use near 'werked richard medek, http://richardmedek.com . notes: is there way manually edit (edit .css file) if yes, located gigcalendar's css file. if not, how fix error. 2. how fix calendar page ( http://golfchicoutimi.com/index.php?opt ... &itemid=65 ) on internet explorer, 800x600. thanks nvm i have fixed problem, magic quotes not activated. thanks anyway  Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x Components

Simple program + big libraries = arduino crash. How do I solve it?

i need making program run.  want take output 3 sensors , print results sd card in csv format.  each sensor work individually.  collectively, crash arduino in unusual , inconsistent ways.  suspect memory issue, don't know can it.   i need program work. any expert advice on how nail thing?    program asking arduino handle?  if so, there device capable of running thing? thanks advice or suggestions... quote i suspect memory issue yep. sd library takes on 1/4 of sram, on uno class processor. you using softwareserial, tinygps, onewire, etc., too, of need memory. you have string constants moved progmem. 1.0, easy:   serial.print( f( "he rocket payload v6d sd_g_p_t " ) ); doing string contants might free enough memory, think there mega in future. Arduino Forum > Using Arduino > Programming Questions ...

Atmega 328 bootloader or not?

i have seems easy question answer however, tired of looking answer, ask it. i have arduino uno , want take programmed chip that's on uno , place on pcb. never take off. the question is: what chip purchase replace 1 went on uno? have atmega328 bootloader or can purchase 1 without it? atmega328p-pu. with or without, call. if without, there myriad ways reprogram it. such as: use existing chip program new chip, put new chip in application. Arduino Forum > General Category > General Discussion (Moderators: mbanzi, DojoDave, mellis) > Atmega 328 bootloader or not? arduino

Please Help Me Troubleshoot A Hardware Issue - Raspberry Pi Forums

i've noticed (i can't remember might have been doing @ time when started) 1 rpi having trouble transcend 16gb c10 card had. specifically, when formatted , flashed image (using dd), appeared lock switch flakey. plug in card , boot rpi , boot process os "read only". able bypass putting switch half way between lock , unlock states. none of blog posts read suggested definitively issue might be, though had speculation might card. purchased better sandisk extreme 16gb c10 card. time, however, card gave me different error. got "timeout waiting hardware interrupt" errors instead. toggling switch had no effect. researching suggested cards error-prone specific card on elinux.org site safe bet. taking card in work , trying on friend's rpi proved card worked. cover of bases, took same exact card , put 1 of known working rpi's worked (i'm updating write this). leaves me confused. cause rpi report errors 2 different cards, 1 of works in other rp...

USB webcam issues - Raspberry Pi Forums

i've got rpi setup 2 logitech usb webcams, , small cronjob takes picture using fswebcam every minute, , uploads server ncftp. script gracefully restarts rpi every night, clean things up. ( there details of how i've done here. http://rpicam.blogspot.co.uk/ it's been working fine, ( weeks untouched ), i've started see errors appearing on 1 of webcams after few hours usage. limited logs have show when working.. code: select all opening /dev/video1... trying source module v4l2... /dev/video1 opened. --- capturing frame... captured frame in 0.00 seconds. --- processing captured image... setting title "husbos south". writing jpeg image 'picam02_1.jpg'. picture taken thu_11/07/13_06:11 picam02_1.jpg: 81.22 kb 12.75 kb/s picture picam02_1.jpg uploaded thu_11/07/13_06:11 after few hours, start see code: select all --- opening /dev/video1... trying source module v4l2... /dev/video1 opened. --- capturing fr...

Site bilingue : anglais/français comment faire? - Joomla! Forum - community, help and support

Image
quel est le module et la methode pour proposer un choix de langue sur la page d'accueil? (avec drapeaux etc..) merci d'avance le véritable composant pour traduire correctement ton site (c'est à dire qu'il faut entrer les traductions à la main est joomfish. tu pourras trouver une version béta (le composantest encore en développement) ici : http://forge.joomla.org/sf/go/projects. ... m_fish_1_7 il faudra publier et configurer correctement le module de joomfish pour afficher les drapeaux de sélection du langage. sinon, tu trouveras sur joomla!fr des composant pour la traduction automatique. mon avis à oublier  Board index Joomla! International Language Support International Zone French Forum J! 1.0.x - L'atelier! 1.0 - Extensions tierce partie

Problem with the Cambridge Assembly Tut. - Raspberry Pi Forums

so getting ready when comes point start teaching self assembly. using mac. when try install gcc-arm-none-eabi-... error-"tar: error opening archive: failed open 'gcc-arm-none-eabi-4_7-2013q2-20130614-mac.tar.bz2'". not sure error is. have run sudo , have made install_dir using mkdir. still same error. error coming from? it helpful post link tutorial following. *have* file named gcc-arm-none-eabi-4_7-2013q2-20130614-mac.tar.bz2 on mac in location issuing tar command? raspberrypi

MAX7219 with Arduino

im having trouble trying figure out how set max7219 chip, in startup routine....  see there supposed ledcontrol.h file supposed help.  arduino compliler says there no such library though.... any suggestions on how can thing programed , through start section? thanks! zack here's did. don't use libraries lot, preferring read data sheet & understand what's going on. doesn't make greatest code sometimes, , there's plenty of room improvement. you'll have variable declarations too. code: [select] // addresses max7221, , values/ranges write in #define decode_mode 0x09 // write data 0xff, code b decode digits #define intensity_address 0x0a // 0x07 start, half intensity. valid 0x00 (min) 0x0f (max) #define scanlimit_address 0x0b // 0xff, 8 digits on #define shutdown_address 0x0c  // 0x01, normal operation (0x01 = shutdown) - powers in shutdown mode #define displaytest_address 0x0f // 0x01 = lights on full, 0x00 = no...