Code Monkey home page Code Monkey logo

toolkits's People

toolkits's Issues

how to get data for yastardict

I like yastardict code but I can't run it to test because i don't know how to 
create data for yastardict ?

And can you tell me the larget file dictzip can suppost to archive? Read your 
code, i know you suppost to 2Gb to read dictzip data (int) but if I change int 
value to long, can i read larger data than it (like data of a wikipedia) ?

Original issue reported on code.google.com by [email protected] on 4 Jul 2012 at 4:35

远程关机

实现一个远程关闭Linux的程序,主要为了联系
1. socket通信以及poll或select
2. deamon程序的设计
3. 与用户有关的配置文件的操作
*4. SSL通信


Original issue reported on code.google.com by [email protected] on 17 Jun 2008 at 2:10

result of getExplanation() is not correct if some words are in Capital

Which program?
YaStardict

What steps will reproduce the problem?
1. input a word in the Edit Text
2. check the found explanation
3.

What is the expected output? What do you see instead?
Should be the explanation of the word user input.

What version of the product are you using? On what operating system?
latest codes in the trunk 2010/02/25

Please provide any additional information below.
I used the following line to fix it (not so elegantly though):

        while( i<=max ) {
            mid = (i + max)/2;
            w = getWord(mid, l);
            if (w.toLowerCase().compareTo(word)>0) {
                max = mid-1;
            }
            else if(w.toLowerCase().compareTo(word)<0) {
                i = mid+1;
            } 
            else {
                break;
            }


Original issue reported on code.google.com by [email protected] on 25 Feb 2010 at 1:32

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.