Domain: euro.ru
Stories and comments across the archive that link to euro.ru.
Comments · 19
-
Re:Hire a programmer.
I have read all advices, existing at 23.09.08, and i'd like to listen, how i should look at example of my projects, which i can't implement by own forces. E.g. SQL5 http://computer20.euro.ru/site/computer20/en/author/driven-scene_eng.htm http://sql50.euro.ru/site/sql50/en/author/resume_eng.htm http://sql50.euro.ru/sql5.16.4.pdf I made submissions in IBM, Microsoft, etc - they protect own already made investments. I informed community on xml-dev@xml.org http://www.google.com/custom?q=Dmitry+Turin&sa=Google+Search&cof=L%3Ahttp%3A%2F%2Fwww.xml.org%2Fxml%2Fimages%2Flogoheader.gif%3BAH%3Acenter%3BGL%3A0%3BS%3Ahttp%3A%2F%2Flists.xml.org%3BAWFID%3A1f6027004f263143%3B&domains=lists.xml.org&sitesearch=lists.xml.org I appeal in foreing (MIT, Chicago) and russian universities. Students can't even forces to implenent tickets like mentioned below. So all, what i archived, is publication in Ingres. http://blogs.ingres.com/technology/2008/07/31/new-step-in-office-technologies-driven-scene/ http://blogs.ingres.com/technology/2008/07/31/bringing-dbms-in-line-with-modern-communication-requirements-sql2009/ And what you can seggest me ??? --- Ticket "switching and showing dialect". Add following possibility into parser: after command SET SQL DIALECT 5; the following expressions SELECT a/@a1
... ... WHERE b/@b1=5 ... ... FROM schemeÂtab ... UPDATE c SET @c1=5 ... DELETE * FROM ... CREATE PROCEDURE p ( @var1 type1, ... are interpreted similar to old dialect SELECT a.a1 ... ... WHERE b.b1=5 ... ... FROM scheme.tab ... UPDATE c SET c1=5 ... UPDATE c SET d/@d1=5 ... DELETE FROM ... CREATE PROCEDURE p ( var1 type1, ... and after command SET SQL DIALECT 4; it's occurs switching to old dialect. Implement command SHOW SQL DIALECT; returning values '4' and '5' depending on in what state parser is. Corresponding slides: #125. Help: commands 'SET SQL DIALECT' and 'SHOW SQL DIALECT' are implemented in DBMS 'InterBase', where they install and return values '1', '2', '3. --- Ticket "inexact names in request". Implement SQL-command SELECT ... WHERE field1~~field2; where '~~' designates counting of Levenshtein distance, and records are extracted in sorted kind in order of growth of this value (records with the least distance are issued first). Corresponding slides: #44-46. Help: calculation itself of Levenshtein distance is implemented in 'Postgres' by function 'levenshtein', so request mentioned above is similar to SELECT ... ORDER BY levenshtein(field1,field2); -
Re:Hire a programmer.
I have read all advices, existing at 23.09.08, and i'd like to listen, how i should look at example of my projects, which i can't implement by own forces. E.g. SQL5 http://computer20.euro.ru/site/computer20/en/author/driven-scene_eng.htm http://sql50.euro.ru/site/sql50/en/author/resume_eng.htm http://sql50.euro.ru/sql5.16.4.pdf I made submissions in IBM, Microsoft, etc - they protect own already made investments. I informed community on xml-dev@xml.org http://www.google.com/custom?q=Dmitry+Turin&sa=Google+Search&cof=L%3Ahttp%3A%2F%2Fwww.xml.org%2Fxml%2Fimages%2Flogoheader.gif%3BAH%3Acenter%3BGL%3A0%3BS%3Ahttp%3A%2F%2Flists.xml.org%3BAWFID%3A1f6027004f263143%3B&domains=lists.xml.org&sitesearch=lists.xml.org I appeal in foreing (MIT, Chicago) and russian universities. Students can't even forces to implenent tickets like mentioned below. So all, what i archived, is publication in Ingres. http://blogs.ingres.com/technology/2008/07/31/new-step-in-office-technologies-driven-scene/ http://blogs.ingres.com/technology/2008/07/31/bringing-dbms-in-line-with-modern-communication-requirements-sql2009/ And what you can seggest me ??? --- Ticket "switching and showing dialect". Add following possibility into parser: after command SET SQL DIALECT 5; the following expressions SELECT a/@a1
... ... WHERE b/@b1=5 ... ... FROM schemeÂtab ... UPDATE c SET @c1=5 ... DELETE * FROM ... CREATE PROCEDURE p ( @var1 type1, ... are interpreted similar to old dialect SELECT a.a1 ... ... WHERE b.b1=5 ... ... FROM scheme.tab ... UPDATE c SET c1=5 ... UPDATE c SET d/@d1=5 ... DELETE FROM ... CREATE PROCEDURE p ( var1 type1, ... and after command SET SQL DIALECT 4; it's occurs switching to old dialect. Implement command SHOW SQL DIALECT; returning values '4' and '5' depending on in what state parser is. Corresponding slides: #125. Help: commands 'SET SQL DIALECT' and 'SHOW SQL DIALECT' are implemented in DBMS 'InterBase', where they install and return values '1', '2', '3. --- Ticket "inexact names in request". Implement SQL-command SELECT ... WHERE field1~~field2; where '~~' designates counting of Levenshtein distance, and records are extracted in sorted kind in order of growth of this value (records with the least distance are issued first). Corresponding slides: #44-46. Help: calculation itself of Levenshtein distance is implemented in 'Postgres' by function 'levenshtein', so request mentioned above is similar to SELECT ... ORDER BY levenshtein(field1,field2); -
Re:Hire a programmer.
I have read all advices, existing at 23.09.08, and i'd like to listen, how i should look at example of my projects, which i can't implement by own forces. E.g. SQL5 http://computer20.euro.ru/site/computer20/en/author/driven-scene_eng.htm http://sql50.euro.ru/site/sql50/en/author/resume_eng.htm http://sql50.euro.ru/sql5.16.4.pdf I made submissions in IBM, Microsoft, etc - they protect own already made investments. I informed community on xml-dev@xml.org http://www.google.com/custom?q=Dmitry+Turin&sa=Google+Search&cof=L%3Ahttp%3A%2F%2Fwww.xml.org%2Fxml%2Fimages%2Flogoheader.gif%3BAH%3Acenter%3BGL%3A0%3BS%3Ahttp%3A%2F%2Flists.xml.org%3BAWFID%3A1f6027004f263143%3B&domains=lists.xml.org&sitesearch=lists.xml.org I appeal in foreing (MIT, Chicago) and russian universities. Students can't even forces to implenent tickets like mentioned below. So all, what i archived, is publication in Ingres. http://blogs.ingres.com/technology/2008/07/31/new-step-in-office-technologies-driven-scene/ http://blogs.ingres.com/technology/2008/07/31/bringing-dbms-in-line-with-modern-communication-requirements-sql2009/ And what you can seggest me ??? --- Ticket "switching and showing dialect". Add following possibility into parser: after command SET SQL DIALECT 5; the following expressions SELECT a/@a1
... ... WHERE b/@b1=5 ... ... FROM schemeÂtab ... UPDATE c SET @c1=5 ... DELETE * FROM ... CREATE PROCEDURE p ( @var1 type1, ... are interpreted similar to old dialect SELECT a.a1 ... ... WHERE b.b1=5 ... ... FROM scheme.tab ... UPDATE c SET c1=5 ... UPDATE c SET d/@d1=5 ... DELETE FROM ... CREATE PROCEDURE p ( var1 type1, ... and after command SET SQL DIALECT 4; it's occurs switching to old dialect. Implement command SHOW SQL DIALECT; returning values '4' and '5' depending on in what state parser is. Corresponding slides: #125. Help: commands 'SET SQL DIALECT' and 'SHOW SQL DIALECT' are implemented in DBMS 'InterBase', where they install and return values '1', '2', '3. --- Ticket "inexact names in request". Implement SQL-command SELECT ... WHERE field1~~field2; where '~~' designates counting of Levenshtein distance, and records are extracted in sorted kind in order of growth of this value (records with the least distance are issued first). Corresponding slides: #44-46. Help: calculation itself of Levenshtein distance is implemented in 'Postgres' by function 'levenshtein', so request mentioned above is similar to SELECT ... ORDER BY levenshtein(field1,field2); -
Re:Another..
Here's some info on the Agat - a clone of an Apple II.
If you want to buy an old Russian computer, try here (has many pictures!). I don't know if this guy's stock is representative of 1980's Russian computing, but it contains a lot (31) of Sinclair clones, and information on other computers, including IBM PC-compatibles. If nothing, the names listed should help searches. -
Re:Another..
Here's some info on the Agat - a clone of an Apple II.
If you want to buy an old Russian computer, try here (has many pictures!). I don't know if this guy's stock is representative of 1980's Russian computing, but it contains a lot (31) of Sinclair clones, and information on other computers, including IBM PC-compatibles. If nothing, the names listed should help searches. -
Re:Another..
Here's some info on the Agat - a clone of an Apple II.
If you want to buy an old Russian computer, try here (has many pictures!). I don't know if this guy's stock is representative of 1980's Russian computing, but it contains a lot (31) of Sinclair clones, and information on other computers, including IBM PC-compatibles. If nothing, the names listed should help searches. -
Re:MediaOh, I see. You mean like the ability to play mp3 or ogg or DVD (see this artitcle although I still don't understand why people are so bent on seeing a dvd on their massive 21 inch monitor rather than their 36 inch tv).
Or, were you looking for the ability to mix/create video or record video in one of many ways.
or did you just want to play those MPEG-1 (there are several others) or MPEG-2 or or
Basically the point I'm trying to make is that the multimedia stuff is there already. just use it.
The one piece I know of thats missing is Sorenson (sp?) codec quicktime player. anyone doing this, or know of a project that is?
-
Re:Why should I go watch this?Hey, I applaud them for using real format. Sure it's crappy quality, but it least I can watch it under linux. And as much as I disapprove of real, the rvplayer for linux is actually really damn nice. And it's painless install for debian, apt-get install realplayer, it then holds your hand the rest of the way.
Sorenson codec encoded
.mov's are worthless to me. Although it is a really nice high quality codec with great compression, it's just not available for linux. Well I can listen to the audio on Sorenson codec mov's I spose. :)Why don't these companies use DiVX
;-)? There's at least nice divx players for linux. The one I use is available here: http://divx.euro.ru/ just fyi. What's the deal with divx anyway? Was it stolen from microsoft like people claim or what? And if not, then why aren't big companies supporting it? Because apple and real pays them too much to use their format? :)
--- -
Re:Windows Media (the format) is avaliable for Lin
-
AvifileJust to let people know, you can play many
.avi and most .asf in Linux as long as you're on an x86 platform:Here is an excerpt from their 'Supported compression formats':
Video
Win32 VfW DLLs:
Indeo Video 3.2, 4.1
Microsoft MPEG-4 v1 & v2 beta
Microsoft MPEG-4 v3 ( also known as DivX ;-) )
Cinepak Video
ATI VCR-2
I263
Win32 DirectShow filters, decompression-only
support:
Microsoft MPEG-4 v3 ( this decoder is slower than VfW one, but offers wider range of picture control features )
Windows Media Video 7
Indeo Video 5.0
Motion JPEG ( using Morgan Multimedia shareware codec )
Open-source plugins:
Motion JPEG ( using libjpeg, very slow )
Audio
Win32 ACM DLLs, decompression-only support:
Windows Media Audio ( also known as DivX ;-) Audio )
MS ADPCM
Intel Music Codec
Open-source plugins, decompression-only support:
PCM
AC3
IMA ADPCM
MPEG Layer-1,2,3 ( compression into MP3 is also supported )
MSN Audio
GSM 6.1 Audio
Win32 DirectShow filters, untested decompression-only support:
Voxware Metasound
ACELP.net
It also has support for V4L compression
:) -
Re:Microsoft != bad software
All these people posting about how Microsoft WMP formats are not supported in Linux should check out the AVIfile library. This library uses bits of Wine so that it can load Windows-native en-/de-coder DLLs to play/encode ASF/AVI files under Linux (or any other platform Wine supports). I don't know if it supports streaming yet, but since it's a library, you should be able to write an app around it that handles the stream connection.
-
asf files work under linuxWell I already knew divx was supported. Where would I find info about the asf (ms mpeg4 v3?).
Well most asf files work okay with the latest version of avifile, which is to be found at http://divx.euro.ru/
You need version 0.52 and the latest binaries (windows dlls) works on i386 only of course....
Sorenson don't even give out an AVI codec or avifile would play sorensen quicktime crap.
-
Cross Platform Re:Interesting
It's not exactly Open Source, but Avifile does a wonderful job of playing DivX
;-) encoded movies using the windows dlls. The latest version (0.51) fixed one of the playeres biggest bugs, crashing when seeking.
As stated earlier, XMPS also plays mpeg4. There's even an xmms plugin (uses libiaries from avifile and SDL) -
Re:Looks a little odd.I did a search to see what Robert Dunvale had for breakfast, and it seems he had 3 eggs scrambled, sausage, hot grits with country gravy, two big buttermilk biscuits, and a half gallon of coffee.
Satellite imagery confirmed our suspicions that his lipids are dangerously elevated and also detected the presence of hemmorhoids.
-
Re:why use xanim?There's no reason to use xanim, except possibly for partial quicktime support.
MPEG is very well supported with the SMPEG library, thanks to loki. There's even a plugin for xmms that works quite well.
AVI's are _fully_ support with avifile. I mean fullscreen, full frame rate support of ever avi filetype, including the DivX
;-) codec. This is a jaw-dropping piece of software.There's even a project called XMPS which takes smpeg, avifile, and a couple other programs and puts them into one great piece of software.
So why do we need xanim?
-
Re:Why it matters..
Good pointer to the DivX codec.
Just a quick correction on the URL:
http://avifile.sourceforge.net/
Which really points you to:
http://divx.euro.ru/ -
Re:Linux link doen't workAnother better player can be found here. It doesn't have a nice pretty interface like the other one, but it has a lower hardware requirement and plays movies smoothers.
Jesus died for sombodies sins, but not mine.
-
Re:dyvx for linux.
The main link for DivX is here. There is a Linux player available, but a better one can be found here. The first one plays very badly on my Duron 600, while the second one has much lower hardware requirements and works very nicely. Both players work the same way, they use the DLL loader from the Wine Project to load the Codec, and they both require you to have the Windows binaries.
Jesus died for sombodies sins, but not mine.
-
Re:Nevermind MPEG!