Posts

Thread: Guess what Linksys is missing.

Image
linux support. that's right. called linksys yesterday fix router problem , guess got: continue in english press 1, para............. *i pressed 1* if windows user, press 1. if mac user, press 2. there no linux support. chose mac support. asked them, said linux not supported. cool story bro Forum The Ubuntu Forum Community Ubuntu Community Discussions The Cafe Guess what Linksys is missing. Ubuntu

question about 64GB sd card and free space - Raspberry Pi Forums

Image
heya! have 64gb sdxc card want use raspberry pi model b. have few questions, things i'm not quite sure about. 1) have microsd adapter, because of size of course; work pi model b or need proper sdhc card? 2) assuming isn't problem, noticed when following sdxc formatting instructions ( https://www.raspberrypi.org/documentati ... matting.md ), , after using win32diskimager write 2015-02-16-raspbian-wheezy.img sd card, after done showed sd card having few tens of mbs of free space left. wondering if, when boot pi , sort out install, in linux show correct amount of free space remaining on sd card, or if using win32diskimager repartitions sd card in such way free space becomes unusable. , if so, there way of circumventing this? (i.e. using noobs instead of installing image directly?) hope can hope questions aren't silly greets seems found answer? "you can run sudo raspi-config , choose expand_rootfs option expand 2.93gb root partition include unallocated space...

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

Flash Slide Show - need to convert jpgs to symbols

flash beginner here, i'm making slide show, 1 slide @ time alpha fades overlapping each image fade in while next fades in. tell me if workflow can improved: 1.) imported pre-sized jpeg images library 2.) brought 1 image onto stage , converted symbol apply alpha fade. 3.) create new layer , repeat process next image down timeline fades. this slow one-by-one process. i'm wondering if there better way. instance, 1 thing have helped streamline process if have converted of images in library symbols in 1 fell swoop, let new symbol take on name of jpeg image without .jpg extension have been enough. also, re-creating identical 'fade in, hold , fade-out' routine on , on seems have been better if have copied routine 1 timeline , pasted next while being able highlight area , slide down time line 100 frames, have helped process. any tips on how have done better, smarter? tia, ken if using flash cs3, can copy/paste motion, make process quite bit faster you. create moti...

wrong keyboard but no keyboard layout menu - Raspberry Pi Forums

ok, give up. uk user uk pi b+, uk locale , uk timezone. example, file /etc/default/keyboard has: xkbmodel = “pc105” xkblayout = “gb” pi adamant have keyboard. love change it, keyboard configuraion utility won't let me. if start raspi-config menu of things can change. select "internationalisation options", "change keyboard layout". there long pause, terminal window puts message: reloading keymap. may take short while followed by: [ok] setting preliminary keymap...done. @ no point ask me keyboard change to. have tried every other incantation can find on internet (most of don't understand!) keyboard remains resolutely "us". want "@" symbol on key "@" sign on it, please. shift+quotes doesn't feel right. have rebooted after using raspi-config? raspberrypi

Thread: how NOT to copy hidden files and folders?

in makefile, using code: cp -r <src folder> <dest folder> copy whole bunch of hidden files , folders (.svn) there simple way avoid , copy 'visible' files/folders? cheers. code: find src_folder/* -name '.*' -prune -o -print0 | xargs -i -0 cp --parents {} dest_folder Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] how NOT to copy hidden files and folders? Ubuntu

Problem with arduino & ethernet shield which sends temperature to mysql database

hello! lately i've been working on project arduino (with ethernet shield) sends temperature (we're using dallas temperature sensors) mysql database (named "test") via php scrpit. here arduino code: code: [select] #include <onewire.h> #include <dallastemperature.h> #include <spi.h> #include <ethernet.h> byte mac[] = {0x90, 0xa2, 0xda, 0x00, 0x11, 0xac }; byte ip[] = { 172, 16, 3, 115 }; byte server[] = { 172, 16, 0, 201 }; // mysql #define one_wire_bus 8 onewire onewire(one_wire_bus); dallastemperature sensors(&onewire); deviceaddress insidethermometer; ethernetclient client; void setup(void) {   ethernet.begin(mac, ip);   serial.begin(9600);   serial.println("starting connection mysql");   serial.println();   delay(1000);     serial.println("connecting...");     if (client.connect(server, 80)) {     serial.println("connected"); ...