13201144 エントリを集積

本システムについて
本技術について



updatenews @ hr.sub.jp
TOP PAGE











newsplus summarization

Amazon レビュー summarization

価格.com summarization

アットコスメ summarization

食べログ summarization

楽天レビュー summarization

TSUTAYA レビュー 要約

じゃらん レビュー 要約



Splog Filter



最新 24時間         急減少ワード         cyclic        
  インターネット ( 651 )     ニュース ( 2876 )     アニメ ( 2209 )     コンビニ小売 ( 477 )     スポーツ ( 2821 )     映画 ( 1746 )     ゲーム ( 1649 )     芸能 エンタメ ( 1207 )     政治 国際 ( 2240 )     飲食 ( 1328 )     音楽 ( 3516 )     ドラマ ( 1679 )     ハードウェア ( 496 )     ソフトウェア ( 212 )     医療 健康 ( 707 )     時季 ( 1104 )     テクノロジー ( 460 )     自動車 ( 428 )     ビジネス 経済 ( 1300 )     ファッション ( 460 )     書籍 ( 938 )     漫画 ( 1267 )     番組 ( 737 )     料理 ( 847 )     家電 ( 154 )     レジャー ( 1161 )     学術 科学 ( 469 )     地域 ( 1444 )     フレーズ ( 277 )     コスメティック ( 212 )     自然 ( 1161 )     ファンシー ( 157 )     お笑い ( 463 )     趣味 ( 234 )     学校 ( 402 )     ギャンブル ( 1081 )     アート 芸術 ( 188 )     生活 ( 266 )  



    DAEMON

    テクノロジー 関連語 Linux Vista debian Clie Optio Daemon Tools ESTA
    • Slax mysql-bugreport.002
      root@slax:~# groupadd mysql groupadd: group mysql exists root@slax:~# cp /etc/my-medium.cnf /etc/my.cnf root@slax:~# cat /etc/my.cnf |perl -e ' foreach () { s/。。[mysql。。]。。n/。。[mysql。。]。。ndefault-character-set=utf8。。n/ig; print; } ' /etc/my.cnf syntax error at -e line 1, near () syntax error at -e line 1, near ; } execution of -e aborted due to compilation errors. root@slax:~# cat /etc/my.cnf |perl -e ' foreach () { s/。。[mysqld。。]。。n/。。[mysqld。。]。。ndefault-character-set=utf8。。n/ig; print; } ' /etc/my.cnf syntax error at -e line 1, near () syntax error at -e line 1, near ; } execution of -e aborted due to compilation errors. root@slax:~# cat /etc/my.cnf |perl -e ' foreach () { s/。。[client。。]。。n/。。[client。。]。。ndefault-character-set=utf8。。n/ig; print; } ' /etc/my.cnf syntax error at -e line 1, near () syntax error at -e line 1, near ; } execution of -e aborted due to compilation errors. root@slax:~# ln -s /var/run/mysql/mysql.sock /tmp/mysql.sock root@slax:~# /usr/bin/mysql_install_db --datadir=/mnt/sda1/tmp/ installing mysql system tables... 091212 1:31:23 [warning] option 'max_join_size': unsigned value 18446744073709551615 adjusted to 4294967295 091212 1:31:23 [warning] option 'max_join_size': unsigned value 18446744073709551615 adjusted to 4294967295 ok filling help tables... 091212 1:31:23 [warning] option 'max_join_size': unsigned value 18446744073709551615 adjusted to 4294967295 091212 1:31:23 [warning] option 'max_join_size': unsigned value 18446744073709551615 adjusted to 4294967295 ok

    • [iPhone][Jailbreak]SBSettings用Toggle VPNToggle
      server=vpnserver.address.com router=router.address.com user=yourusername password=yourpassword

    • Twitterで自分のつぶやきを取得する
      gem install twitter4r スクリプトはコチラ require 'rubygems' gem('twitter4r') require 'twitter' def url(id) end @login = 'your id' password = 'your password' twitter = twitter::client.new(:login=>@login, :password=>password) twitter.timeline_for(:me, :count=>200) { |status| puts #{status.id} #{status.text} #{url(status.id)} } とりあえず、つぶやきのidとその内容、twitter上のurlが出力されるようにしておいた

    • [LKML] IRQF_SAMPLE_RANDOM question...
      robin getzが以下の質問をなげて although there was some discussion http://thread.gmane.org/gmane.linux.kernel/680723 about removing irqf_sample_random from the remaining network drivers in may of 2008, but they still appears to be there in 2.6.29. drivers/net/ibmlana.c drivers/net/macb.c drivers/net/3c523.c drivers/net/3c527.c drivers/net/netxen/netxen_nic_main.c drivers/net/cris/eth_v10.c drivers/net/xen-netfront.c drivers/net/atlx/atl1.c drivers/net/qla3xxx.c drivers/net/tg3.c drivers/net/niu.c so what is the plan? if i send a patch to add irqf_sample_random to others (like the blackfin) networking drivers - will it get rejected? we have lots of embedded headless systems (no keyboard/mouse, no soundcard, no video) systems with *no* sources of entropy - and people using ssl. i didn't really find any docs which describe what should have irqf_sample_random on it or not. i did find matt mackall describing it as: > we currently assume that irqf_sample_random means 'this is a completely > trusted unobservable entropy source' which is obviously wrong for > network devices but is right for some other classes of device. currently - i see most things i see using irqf_sample_random would also fail the completely unobservable test. other than the trng that are inside the cpu - what does pass? i can put a scope/analyser on a device - and look at the touchscreens, serial devices, usb, all without cracking the case. drivers/block/xen-blkfront.c: xen virtual block device frontend drivers/i2c/busses/i2c-pmcmsp.c: pmc msp twi/smbus/i2c driver drivers/input/keyboard/bf54x-keys.c: keypad driver for bf54x processors drivers/input/keyboard/gpio_keys.c: keyboard driver for cpu gpios drivers/input/serio/hp_sdc.c: hp i8042-based sdc driver drivers/input/touchscreen/wm97xx-core.c: wm97xx core - touch screen drivers/serial/mpc52xx_uart.c: freescale mpc52xx psc uart drivers/serial/uartlite.c: xilinx uartlite serial driver drivers/usb/gadget/omadrivers/usb/gadget/omap_udc omap udc driver if i want to get more intrusive (expensive) - i can look at spi, i2c, and other things that only might be observable at the pcb level (including things that are inside the chipset). what are the guidelines for including irqf_sample_random? thanks -robin -- to unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majordomo@vger.kernel.org more majordomo info at http://vger.kernel.org/majordomo-info.html please read the faq at http://www.tux.org/lkml/ jeff garzik が端的に説明


最近みた言葉
関連語





    楽譜 共有     研究開発