Jorge Castro: Getting Started working on Unity


 
Thread Tools Search this Thread
Special Forums Cybersecurity Security Advisories (RSS) Jorge Castro: Getting Started working on Unity
# 1  
Old 01-03-2011
Jorge Castro: Getting Started working on Unity

Now that Alpha 1 is out the door the different bits are starting to come together. We've got the compiz-based Unity in people's hands, now it's time to start the feature work and testing.

The Desktop Experience team is building the base; but there are plenty of other parts that need to be done. Keep in mind that these parts are just as important and a critical piece of the entire user experience.



(Scott Mitchell)

read more



More...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. What is on Your Mind?

Unity / OSVR Application Developers Wanted

Hey, Anyone working on Unity / OSVR applications? I'm interested in developing a Unity / OSVR app which can be used to visualize a unix filesystem in 3D graphically using VR technology. So far, I'm installed Unity and OSVR server and the OSVR Asset into Unity on macOS. That's about... (1 Reply)
Discussion started by: Neo
1 Replies

2. Ubuntu

Gewtting Unity (or the Panel) to start

For some reason my installation of Ubuntu 11.04 is messed up and Unity doesn't start automatically. I can't find what command I need to start it nor how to make it start at boot time. (Running unity in a terminal gives some output but no GUI.) What can I do? I'd be happy to go back to... (2 Replies)
Discussion started by: CRGreathouse
2 Replies

3. Ubuntu

editing the unity dash main menu

I have indeed succeeded in adding but not to the sub menu Internet, only when I ask for all the application I can see its icon. How can I edit the unity dash manually? Is there a text file for this? Some kind of folder content? I mean I used the app "main menu" and it add it... (4 Replies)
Discussion started by: programAngel
4 Replies

4. UNIX for Dummies Questions & Answers

removing application from the unity menu

Hello I have removed wine but the symbols of it application were in the unity menu (though nothing happened when I clicked on them). How can I remove symbols from the unity menu? (1 Reply)
Discussion started by: programAngel
1 Replies

5. Red Hat

sshd started, but ssh/sftp/psftp not working

The OS is CenOS. The sshds is started, but ssh/sftp/psftp are not working with "time out" errors. # service sshd status openssh-daemon (pid 2894) is running... # tail /var/log/secure Feb 16 10:56:47 cenos userhelper: pam_timestamp(system-config-securitylevel:session): updated... (3 Replies)
Discussion started by: aixlover
3 Replies
Login or Register to Ask a Question
Text::Ngram(3pm)					User Contributed Perl Documentation					  Text::Ngram(3pm)

NAME
Text::Ngram - Ngram analysis of text SYNOPSIS
use Text::Ngram qw(ngram_counts add_to_counts); my $text = "abcdefghijklmnop"; my $hash_r = ngram_counts($text, 3); # Window size = 3 # $hash_r => { abc => 1, bcd => 1, ... } add_to_counts($more_text, 3, $hash_r); DESCRIPTION
n-Gram analysis is a field in textual analysis which uses sliding window character sequences in order to aid topic analysis, language determination and so on. The n-gram spectrum of a document can be used to compare and filter documents in multiple languages, prepare word prediction networks, and perform spelling correction. The neat thing about n-grams, though, is that they're really easy to determine. For n=3, for instance, we compute the n-gram counts like so: the cat sat on the mat --- $counts{"the"}++; --- $counts{"he "}++; --- $counts{"e c"}++; ... This module provides an efficient XS-based implementation of n-gram spectrum analysis. There are two functions which can be imported: ngram_counts This first function returns a hash reference with the n-gram histogram of the text for the given window size. The default window size is 5. $href = ngram_counts(\%config, $text, $window_size); As of version 0.14, the %config may instead be passed in as named arguments: $href = ngram_counts($text, $window_size, %config); The only necessary parameter is $text. The possible value for %config are: flankbreaks If set to 1 (default), breaks are flanked by spaces; if set to 0, they're not. Breaks are punctuation and other non-alphabetic characters, which, unless you use "punctuation => 0" in your configuration, do not make it into the returned hash. Here's an example, supposing you're using the default value for punctuation(1): my $text = "Hello, world"; my $hash = ngram_counts($text, 5); That produces the following ngrams: { 'Hello' => 1, 'ello ' => 1, ' worl' => 1, 'world' => 1, } On the other hand, this: my $text = "Hello, world"; my $hash = ngram_counts({flankbreaks => 0}, $text, 5); Produces the following ngrams: { 'Hello' => 1, ' worl' => 1, 'world' => 1, } lowercase If set to 0, casing is preserved. If set to 1, all letters are lowercased before counting ngrams. Default is 1. # Get all ngrams of size 4 preserving case $href_p = ngram_counts( {lowercase => 0}, $text, 4 ); punctuation If set to 0 (default), punctuation is removed before calculating the ngrams. Set to 1 to preserve it. # Get all ngrams of size 2 preserving punctuation $href_p = ngram_counts( {punctuation => 1}, $text, 2 ); spaces If set to 0 (default is 1), no ngrams containing spaces will be returned. # Get all ngrams of size 3 that do not contain spaces $href = ngram_counts( {spaces => 0}, $text, 3); If you're going to request both types of ngrams, than the best way to avoid calculating the same thing twice is probably this: $href_with_spaces = ngram_counts($text[, $window]); $href_no_spaces = $href_with_spaces; for (keys %$href_no_spaces) { delete $href->{$_} if / / } add_to_counts This incrementally adds to the supplied hash; if $window is zero or undefined, then the window size is computed from the hash keys. add_to_counts($more_text, $window, $href) TO DO
o Look further into the tests. Sort them and add more. SEE ALSO
Cavnar, W. B.(1993). N-gram-based text filtering for TREC-2. In D. Harman (Ed.), Proceedings of TREC-2: Text Retrieval Conference 2. Washington, DC: National Bureau of Standards. Shannon, C. E.(1951). Predication and entropy of printed English. The Bell System Technical Journal, 30. 50-64. Ullmann, J. R.(1977). Binary n-gram technique for automatic correction of substitution, deletion, insert and reversal errors in words. Computer Journal, 20. 141-147. AUTHOR
Maintained by Alberto Simoes, "ambs@cpan.org". Previously maintained by Jose Castro, "cog@cpan.org". Originally created by Simon Cozens, "simon@cpan.org". COPYRIGHT AND LICENSE
Copyright 2006 by Alberto Simoes Copyright 2004 by Jose Castro Copyright 2003 by Simon Cozens This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-25 Text::Ngram(3pm)