All about Flash

Adobe Flash (formerly Macromedia Flash) is a multimedia platform used to add animation, video, and interactivity to Web pages. Flash is frequently used for advertisements and games. More recently, it has been positioned as a tool for the so-called "Rich Internet Application" ("RIA").
Flash manipulates vector and raster graphics to provide animation of text, drawings, and still images. It supports bidirectional streaming of audio and video, and it can capture user input via mouse, keyboard, microphone, and camera. Flash contains an Object-oriented language called ActionScript.
Flash content may be displayed on various computer systems and devices, using Adobe Flash Player, which is available free for common Web browsers, some mobile phones and a few other electronic devices (using Flash Lite).
History
Originally acquired by Macromedia, Flash was introduced in 1996, and is currently developed and distributed by Adobe Systems. The precursor to the Flash application was SmartSketch, a drawing application for pen computers running the PenPoint OS developed by Jonathan Gay, who began working on it in college and extended the idea for Silicon Beach Software and its successors....
Un nou viitor pentru mediul online, un dezastru pentru plugin-uri, HTML 5

Web 3.0, cloud computing, Html5, CSS3 toate sunt noi concepte si tehnologii de care incepem sa ne lovim din ce in ce mai des. Sunt viitorul, un viitor care acum 20 de ani parea mult mai indepartat. Un viitor in care poate omul va fi mult mai legat de niste masinarii decat de semenii sai si totusi va fi prieten si va comunica cu oameni „worldwide”. Tehnologiile evolueaza atat de repede incat in curand nu o sa ne mai dam seama cum au patruns atat de adanc in viata noastra. Este bine, este rau? Fara indoiala exista un numar considerabil de calitati ale acestor aplicatii, partile rele insa, le vom experimenta probabil pe parcurs.
Voi aduce astazi in discutie unul dintre conceptele nou vehiculate; despre celelalte fie au vorbit colegi de ai mei, fie vom mai vorbi in viitor.
Cum ar fi sa avem doar un program atotputernic pe computerul nostru? Nu un meniu aglomerat cum este "Start" sau "Dock" din care sa ne alegem ceea ce dorim sa rulam, ci doar să facem click pe o iconita care deschide o fereastra capabila de orice sarcina pe care o putem cere.
De fapt, daca stam sa ne gandim, exista deja un program atotputernic: browser-ul web.
O noua versiune a standardului HyperText Markup Language (HTML), utilizata pentru realizarea de pagini web este in proces de dezvoltare. Noul standard, numit HTML5, nu este încă finalizat, dar caracteristicile sale impresionante si faptul ca a atras sprijinul producătorilor de calculatoare şi al producătorilor de conţinut web, a pus acest limbaj pe drumul de a schimba dramatic modul in care utilizam calculatorul.
MSSQLs’ Version of MySQLs’ LIMIT
One of MySQLs’ things I like, besides being free, is the LIMIT clause. The syntax is simple – SELECT * FROM Table A WHERE 1=1 LIMIT OFFSET, ROW_COUNT, where offset is the offset of the first row to return and row_count is the number of rows to return. This clause allows web programmers to paginate a large set of records from a database.
Pagination is useful when you are dealing with huge numbers of records. Let’s take for example the case of a Bookstore that decides to open virtual store. It has more than 100,000 books for online sale. If a customer visits the website and loads the books page, he will have to wait a while until all of the records are displayed and after that he will have to scroll through thousands of records to find a book. Now let’s multiply the number of online customers by 1,000, all accessing the books page simultaneously. About 100 million records will be queried from the database – imagine the overhead. This is where the magic of pagination comes in – if you decide to display only 50 records per page and let the customer go to the next 50 records (by accessing the next page) you will increase the readability and reduce the loading time of the page and reduce the overhead. In this case only 50,000 records will be queried, that’s half the number of records of the first query per customer.
Best practices for code writing
Just one simple "Google" search for the title of my article gives you the possibility to pick from thousands of opinions of hundreds of people. What does that mean? Well, for starters it means that people care an awful lot about better code writing technically speaking and also from the comprehensible point of view.
It means that people care a lot about the technical aspect of the code but they are also very interested in respecting certain standards that will ensure the code is comprehensible.
The main reason for making code look "pretty" is trying to understand it later in case you need to debug it, or more important, in case someone else needs to debug it, or, even more important (in my opinion) - you want to reuse the code.
But enough about that! Let's just see what could make our code look friendlier!


