similar to: UnicodeData

Displaying 20 results from an estimated 4000 matches similar to: "UnicodeData"

2009 Jan 18
1
codepage/UnicodeData: tcase() data
Three questions: - Where did the file come from? - Does tcase() stand for toggle case (or otherwise effectively the same thing)? - Should uppercase characters like, the latin capital A, have tcase() data in addition to the lcase() data? -Gene "No one ever says, 'I can't read that ASCII E-mail you sent me.'"
2008 Feb 25
3
More examples?
Hello, I want to make a program to extract frame from a theora movie as images. I tried with the decoding example located at theora web site (dump_video.c. I use it to extract a frame as yuv image but when I try to convert it to ppm with yuvtoppm program i obtain a strange image ( see http://poux.be/tmp/file.ppm ). I think it's a problem with the byte order for yuv, but don't I don't
2010 Dec 22
4
Question about movies encoded with libtheora
I have a question about a movie I 've encoded with libtheora. It's a video 2000x2000 with Theora codec and no audio. The video is fine with some players, but it isn't read in youtube. http://www.ibiiztera.be/others/test3.ogv -------------- next part -------------- An HTML attachment was scrubbed... URL:
2005 Nov 12
3
net rpc vampire - cannot login to migrated computer accounts
Hello experts, I've migrated our NT4 domain to sambe 3.0.20b/ldap backend with "net rpc vampire", and nearly everything works as expected. But one big problem remains: it's not possible to login to the domains member maschines now, because "the domain is not available at the moment" (translated from german). After the maschine rejoined the samba domain, login
2021 Aug 20
2
Join multiple Gluster Cluster
Hi, I Configured 3 Clusters (For several Shared Homes between different maschines) .. So far no Problem. Now it need a Volume that going across this maschines, but the nodes are bound to there own clusters so peer probe fails . How i can build one big cluster with all nodes but without dataloss (And best without Downtime J) Hope there is some Pro that can help J Greets from Germany
2012 Jun 16
2
[LLVMdev] Windows development and "virus" in LLVM test suite
> > Not having an AV or swithching it off at times is not a sign of > stupidity. The best antivirus is a mindful, knowledgeable user. And the > antivirus doesn't really protect you in case of risky behavior. > I couldn't have said it better myself. I've had three viruses in 29 years and only one of them was my own fault. I've spent hours trying to explain people
2019 Feb 12
1
Sama + Windows Shadow Copies
Hello, i installed zfs-auto-snapshot with Samba/Windows Shadow Copy. If the share contains "path = /srv/userdata/" it runs for me. But if I use "path = /srv/userdata/%U" I get no "Previous Versions" on my Win10 Client. I think the problem is the variable "shadow: snapdir = .zfs/snapshot". I tried with "shadow: snapdir = ../.zfs/snapshot" and
2008 Feb 29
1
Poor encoding quality with etheora and aspect ratio problem
Hello, I wrote a theora video encoder based on etheora (and the examples provided with it) for Processing IDE (processing.org). I have some problem with the quality of encoded frames. eg. http://poux.be/tmp/movie.ogg And when I play the movie with mplayer or totem, the video resolution is changed from 640x480 to 854x480 (when i use ETHEORA_ASPECT_NORMAL in etheora_enc_setup). And if I try to
2012 Jun 15
2
[LLVMdev] Windows development and "virus" in LLVM test suite
Thanks for your input. We are getting closer and closer to the final solution to this issue. I agree with you, on second thought, that only THE offending file should be excluded. If somebody is stupid enough to disable their antivirus or remove it (namely me), it is their own choice and is not something that all of the LLVM group has to take part in. So, I'll make sure the Windows docs
2005 Jan 24
2
Is it possible to access maildir w/ 2 clients at the same time?
Hi, I have dovecot with Maildir installed and running. No problems. I use kmail on both desktop and laptop with cachedimap configuration. kmail is configured to look for new mail every two minutes. Now my question: When both maschines are running and kmail is started then two clients access the same Maildir on the server at the same time. Is this possible or can this corrupt the Maildir
2012 Apr 21
3
[LLVMdev] Remove function from module
How correctly remove function from module? For example: int f1(int x) { ... a = f2(smth); ... } int f2 (int y) { ... b = f1(smth); ... } I need delete from module both f1 and f2. They haven't uses in other part of module, but I can't delete them with eraseFromParent, because they are use each other. Yours sincerely, Kadysev Mikhail -------------- next part
2012 Apr 21
4
[LLVMdev] Remove function from module
Thanks, but I replaceAllUsesWith() - works well, but I still get bug in eraseFromParent(): While deleting: i32 (%class.B*, i32)* %_ZN1B1xEi An asserting value handle still pointed to this value! UNREACHABLE executed at /Users/neonomaly/LLVM/LLVM/lib/VMCore/Value.cpp:561! Yours sincerely, Kadysev Mikhail 21.04.2012, в 23:45, Nick Lewycky написал(а): > Михаил wrote: >> How correctly
2012 Jun 16
0
[LLVMdev] Windows development and "virus" in LLVM test suite
Mikael Lyngvig <mikael at lyngvig.org> writes: > Thanks for your input. We are getting closer and closer to the final > solution to this issue. I agree with you, on second thought, that only THE > offending file should be excluded. > > If somebody is stupid enough to disable their antivirus or remove it > (namely me), it is their own choice and is not something that all
2004 Aug 06
1
IceS playlist & directory ?
Greetings Is it possible to command IceS to play from a directory instead of creating a playlist with several hundred mp3's. I have read through the threads and notice that Ices can do some great things but I am swithching from a Win2k environment so I am not familiar with python and perl. Is what I am asking possible? Is there some one willing to share scripts created for Ices?
2016 Mar 11
3
Problem with Winbind and Windows Clients
Hi Rowland, Also change on DCs to [libdefaults] default_realm = HQ.KONTRAST dns_lookup_realm = false dns_lookup_kdc = true ? I was used wiki article and there was listed for DC. the config i have post was only für vl0227 (my Master DC) all other Maschines have the config you prefer. OLIVER WERNER System-Administrator Kontrast Communication Services GmbH Grafenberger Allee 100,
2002 Sep 12
1
WinXP SP1 breaks roaming profiles.
We've applied SP1 for WinXP on several machines and now roaming profiles don't work them. I tried swithching "nt acl support = yes" as previously mentioned on this list but this still doesn't work for us and we continue to get the following error: Windows did not load your roaming profile and is attempting to log you on with your local profile. Changes to the profile
2012 Apr 21
0
[LLVMdev] Remove function from module
Михаил wrote: > How correctly remove function from module? > For example: > > int f1(int x) { > ... > a = f2(smth); > ... > } > int f2 (int y) { > ... > b = f1(smth); > ... > } > > I need delete from module both f1 and f2. They haven't uses in other > part of module, but I can't delete them with eraseFromParent, because > they are use each
2010 Jul 14
4
reverse string
Dear all, Are there any functions in R to reverse the order of the string. smth like reverse("abc") to get "cba"? Thanks a lot. [[alternative HTML version deleted]]
2012 Jun 16
0
[LLVMdev] Windows development and "virus" in LLVM test suite
On 6/15/2012 8:12 PM, Mikael Lyngvig wrote: > > Not having an AV or swithching it off at times is not a sign of > stupidity. The best antivirus is a mindful, knowledgeable user. > And the > antivirus doesn't really protect you in case of risky behavior. > > > I couldn't have said it better myself. I've had three viruses in 29 > years and
2010 Nov 19
3
Sweave Dynamic Graph Question
i have a time Series of IBM closing px from 1/1/2000 to today I want to graph the time serie by dividing the graph by year and month all the monthly graphs with the same year will go to one page. so from 1/1/2000 to 11/19/2010. i will have 11 pages, and each page will have 12 graphs (jan to dec) except for 2010. I am able to do it in R, but when i use sweave, I can only print the last page.