Re: vim q

2010-11-10 Thread Erez D
: It's a security problem with Windows version. VIM disabled this feature because people used to write code there and doing code execution when you open a text file. Ido LINESIP websites: http://www.linesip.com http://www.linesip.co.il 2010/11/9 Erez D erez0...@gmail.com

Re: vim q

2010-11-10 Thread Erez D
On Wed, Nov 10, 2010 at 10:17 AM, Baruch Siach bar...@tkos.co.il wrote: Hi Erez, On Wed, Nov 10, 2010 at 10:08:32AM +0200, Erez D wrote: thank you all for the reply i decided to set ts,sw,et etc... in vimrc instead for security resons. although this implicate all types of files, i can

Re: vim q

2010-11-10 Thread Erez D
On Wed, Nov 10, 2010 at 10:35 AM, Baruch Siach bar...@tkos.co.il wrote: On Wed, Nov 10, 2010 at 10:25:29AM +0200, Erez D wrote: On Wed, Nov 10, 2010 at 10:17 AM, Baruch Siach bar...@tkos.co.il wrote: On Wed, Nov 10, 2010 at 10:08:32AM +0200, Erez D wrote: thank you all for the reply

vim q

2010-11-09 Thread Erez D
the following line: // vim: ts=2 sw=2 et seems to work under windows in gvim, but not in linux (at least not under vim over xterm). how can i change the syntax to make it work in all of linux/windows/cygwin in gvim and vim/xterm ? thanks erez. ___

Re: cheap linux box ?

2010-10-12 Thread Erez D
2010/10/12 Udi Finkelstein linux...@udif.com On Tue, Oct 12, 2010 at 12:32 AM, Tzafrir Cohen tzaf...@cohens.org.ilwrote: On Mon, Oct 11, 2010 at 08:48:35PM +0200, geoffrey mendelson wrote: On Oct 11, 2010, at 8:29 PM, Gilboa Davara wrote: Of the top of my head, two options: 1. A

cheap linux box ?

2010-10-11 Thread Erez D
hey, my NSLU2 just died ( http://en.wikipedia.org/wiki/NSLU2 ) I can replace it with a new one, however i was thinking - it has been long time since nslu2 showed up, and there must be a more powerful device available for a similiar price... I am actually looking for a cheap linux box, with usb2

Re: CPU RAM in a storage box

2010-09-10 Thread Erez D
here is my 3 cents: In two companies i worked for, i designed similiar servers. 1. i wanted to have as less as a down time, and i didn't want to buy another server just to sit and wait for a failure, so i decided it should work on any pc with any raid controller - i decided to do the raid in

com port list

2010-08-31 Thread Erez D
hi I am looking for a simple way to know which serial ports i have. I want to have a list of all serial ports, either onboard, via usb, via bluetooth etc ... I'm looking for a better way than scanning /dev/ttyS* /dev/ttyUSB* /dev/usb/... etc ... In cygwin I just look under

Re: com port list

2010-08-31 Thread Erez D
/ 2010/8/31 Erez D erez0...@gmail.com hi I am looking for a simple way to know which serial ports i have. I want to have a list of all serial ports, either onboard, via usb, via bluetooth etc ... I'm looking for a better way than scanning /dev/ttyS* /dev/ttyUSB* /dev/usb/... etc

Re: com port list

2010-08-31 Thread Erez D
On Tue, Aug 31, 2010 at 12:22 PM, Oleg Goldshmidt p...@goldshmidt.orgwrote: 2010/8/31 Erez D erez0...@gmail.com: I am looking for a simple way to know which serial ports i have. cat /proc/tty/driver/serial ? 1. need root permission... 2. gives information, but not which dev thanks, erez

Re: com port list

2010-08-31 Thread Erez D
On Tue, Aug 31, 2010 at 12:32 PM, Oleg Goldshmidt p...@goldshmidt.orgwrote: On Tue, Aug 31, 2010 at 12:22 PM, Oleg Goldshmidt p...@goldshmidt.org wrote: 2010/8/31 Erez D erez0...@gmail.com: I am looking for a simple way to know which serial ports i have. cat /proc/tty/driver/serial

Re: com port list

2010-08-31 Thread Erez D
On Tue, Aug 31, 2010 at 1:09 PM, Tzafrir Cohen tzaf...@cohens.org.ilwrote: On Tue, Aug 31, 2010 at 12:28:19PM +0300, Erez D wrote: i also have 4 which are ttyS0..ttyS3, although i do not have any serial port connected and there is no link to the actual dev (although there is a file which

Re: com port list

2010-08-31 Thread Erez D
At last - a good answer. thanks, erez. On Tue, Aug 31, 2010 at 11:33 PM, Oron Peled o...@actcom.co.il wrote: On Tuesday, 31 בAugust 2010 12:22:02 Oleg Goldshmidt wrote: 2010/8/31 Erez D erez0...@gmail.com: I am looking for a simple way to know which serial ports i have. Instead

what does g++ want from my code

2010-08-25 Thread Erez D
hi i am compiling the following code: 1:#include map 2: 3:template class a, class b 4:class c 5:{ 6: private: 7: b defaultVal; 8: public: 9: std::mapa,b mymap; 10: const b func(a idx) 11: { 12: std::mapa,b::iterator

Re: what does g++ want from my code

2010-08-25 Thread Erez D
or a value. how do i sove that ? can you give a solution ? 2010/8/25 Erez D erez0...@gmail.com hi i am compiling the following code: 1:#include map 2: 3:template class a, class b 4:class c 5:{ 6: private: 7: b defaultVal; 8: public: 9: std::mapa,b

Re: what does g++ want from my code

2010-08-25 Thread Erez D
On Wed, Aug 25, 2010 at 1:53 PM, Oleg Goldshmidt p...@goldshmidt.org wrote: 2010/8/25 Erez D erez0...@gmail.com: On Wed, Aug 25, 2010 at 12:08 PM, Elazar Leibovich elaz...@gmail.com wrote: template class a, class b class c { private: b defaultVal

gcc q

2010-08-23 Thread Erez D
hi I am using gcc (actually avr-gcc) to compile some code for an AVR processor (AT32UC3L064). The code generated does a lot of things before entering main() There is some code i want it to do first - immediatly after powerup, before all other initializations. anyone knows how to do so ?

Re: gcc q

2010-08-23 Thread Erez D
On Mon, Aug 23, 2010 at 10:00 AM, Shachar Shemesh shac...@shemesh.bizwrote: Erez D wrote: hi I am using gcc (actually avr-gcc) to compile some code for an AVR processor (AT32UC3L064). The code generated does a lot of things before entering main() There is some code i want it to do first

Re: gcc q

2010-08-23 Thread Erez D
On Mon, Aug 23, 2010 at 10:44 AM, Shachar Shemesh shac...@shemesh.bizwrote: Erez D wrote: Is that before or instead of the usual initializations? before. i just want to run a hardware registers initialization function. Okay. I'm going to assume that you are writing code

Re: smbfs problem

2010-08-09 Thread Erez D
i was a bug in samba2 using new version clients. updated to samba3, works ok. thanks. On Mon, Aug 9, 2010 at 7:25 AM, Baruch Siach bar...@tkos.co.il wrote: Hi Erez, On Sun, Aug 08, 2010 at 08:13:44PM +0300, Erez D wrote: I try to mount a samba share on my ubuntu 9.10 (it mounts and works

smbfs problem

2010-08-08 Thread Erez D
hi I try to mount a samba share on my ubuntu 9.10 (it mounts and works ok on an XP machine) mount.smbfs //192.168.1.2/docs /tmp/mnt -o user=guest,password= it mounts ok, the i ls: cd /tmp/mnt ls -l -rwxr-xr-x 1 root root 946 2010-08-07 09:46 info.txt then i do: cat info.txt and i get:

ownCloud - instead of Google Docs, Dropbox or Ubuntu One

2010-07-14 Thread Erez D
http://blog.karlitschek.de/2010/06/owncloud-10-is-here.html ___ Linux-il mailing list Linux-il@cs.huji.ac.il http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il

Re: A 12V *AC* power supply

2010-07-14 Thread Erez D
The transformer gives 12V DC RMS, The peak voltage however is higher (but with lower current) I guess the reason for the resistor is to reduce the peak voltage and keep it closer to 12V when there is little or no load, or when connecting the load. cheers, erez. 2010/7/14 Shachar Shemesh

Re: A 12V *AC* power supply

2010-07-14 Thread Erez D
2010/7/14 Shachar Shemesh shac...@shemesh.biz Alon Barzilai wrote: I seconds that. without this resistor the voltage at low currents will go sky high (~20V) Why would it? The transformator pretty much dictates the maximal power. the transformers wants to supply 12V DC. so 12V is the

Re: automatic/passive grab vs XGrabPointer/XUngrabPointer q

2010-07-11 Thread Erez D
ok, thanks I've written a small utility that checks it. results: 1. XUngrabPointer does ungrab the XSerever's auto grab 2. XGrabPointer does ovveride the Xserver's auto grab (even without XUngrabPointer first) On Thu, Jul 8, 2010 at 6:28 PM, guy keren c...@actcom.co.il wrote: Erez D wrote

automatic/passive grab vs XGrabPointer/XUngrabPointer q

2010-07-08 Thread Erez D
hi X automatically does pointer grab when the mouse drags (i.e. press and hold the mouse button while moving it). It is possible to override the auto grab settings (i.e owner_events, etc) with a passive grab (e.g. XGrabButton) what if: 1. the user presses mouse button 1 (and holds it down) 2.

OT: flash is not dead - smokescreen.

2010-06-07 Thread Erez D
As apple does not allow to run flash on the iphone And as there are many people used to designing in flash and for some other reasons ... There is an open sourec project called smokescreen, which runs flash using HTML5 JS http://smokescreen.us/ so, Is it good or bad for us ? Erez.

Re: How do you calculate?

2010-06-07 Thread Erez D
For trivial calculations i use dc For more complex one i use octave (which is also good for linear algebra, matrix inversion etc...) If i have X (which is not always the case), i can also use hp48 emulator ( i have a real hp48sx which i used while i was in the technion). somtime i just type it

Re: dual nvidia problems

2010-05-25 Thread Erez D
michaelshiloh1...@gmail.com wrote: My first check would be to make sure you can see the 8600 at all. If you remove the 8400GS, does the 8600 work properly? On 05/24/2010 10:02 PM, Erez D wrote: hi i have a computer running linux (centos 5.5), with attached two NVIDIAs display adapters, one 8400

Re: dual nvidia problems

2010-05-25 Thread Erez D
-alt-f8 i see only the right monitor. is there a way to make them both work at the same time ? On Tue, May 25, 2010 at 9:10 AM, Erez D erez0...@gmail.com wrote: i have two pci-e x16 slots and the motherboard supports nvidia-SLI i see only the 8400. if i swap the cards, i see only the 8600. i

Re: dual nvidia problems

2010-05-25 Thread Erez D
On Tue, May 25, 2010 at 10:14 AM, Hetz Ben Hamo het...@gmail.com wrote: Hi, If you use the binary-only driver, then run: nvidia-settings doesn't help however, adding -novtswitch -sharevtts to the X cmdline does the trick so its solved thanks. Hetz 2010/5/25 Erez D erez0...@gmail.com

dual nvidia problems

2010-05-24 Thread Erez D
hi i have a computer running linux (centos 5.5), with attached two NVIDIAs display adapters, one 8400 and one 8600. (both pci-e) i want to run two X servers. my first problem - lspci sees only one card - the 8400GS. any idea ? thanks, erez. ___

which router

2010-04-25 Thread Erez D
hello, i need a small linux box which has usb and/or gpio (i want it to control the lights for a smart house). i heard the cheapest are routers, so i am looking for a router which i can install openwrt, debian or somthing similiar on it, and which is cheap and can be bought in israel. any

Re: home automation question

2010-04-22 Thread Erez D
On Wed, Apr 21, 2010 at 5:59 PM, Itay Donenhirsch i...@bazoo.org wrote: On Wed, Apr 21, 2010 at 4:04 PM, Erez D erez0...@gmail.com wrote: On Wed, Apr 21, 2010 at 3:55 PM, Itay Donenhirsch i...@bazoo.org wrote: hi if you already mentioned avr and would like to build things yourself

Re: home automation question

2010-04-21 Thread Erez D
for the rs232 - ethernet, which i do not want to. itay 2010/4/21 Erez D erez0...@gmail.com hi guys. i have a warehouse. it has two connections to the buildings - power and ethernet. i want to control the warehouse external lights from the house. I thought of buying an X10 light switch

home automation question

2010-04-20 Thread Erez D
hi guys. i have a warehouse. it has two connections to the buildings - power and ethernet. i want to control the warehouse external lights from the house. I thought of buying an X10 light switch, but it seems that each consts around 50$, which is expensive so my other option is a computer i can

Re: XWindows - how capture window ?

2010-03-15 Thread Erez D
window ? To: Erez D erez0...@gmail.com Cc: Valery Reznic valery_rez...@yahoo.com, linux-il. linux-il@cs.huji.ac.il Date: Sunday, March 7, 2010, 10:38 AM On Thu, Mar 04, 2010, Erez D wrote about Re: XWindows - how capture window ?: composite window managers (i.e. compiz, baryl) work

Re: XMoveWindow()

2010-03-04 Thread Erez D
On Thu, Mar 4, 2010 at 12:20 PM, Shachar Shemesh shac...@shemesh.bizwrote: Erez D wrote: On Wed, Mar 3, 2010 at 5:05 PM, Shachar Shemesh shac...@shemesh.bizwrote: Erez D wrote: when i write a program, i expect to get the same behaviour which doesn't depend on the WM. however

Re: XWindows - how capture window ?

2010-03-04 Thread Erez D
sorry i can not give you a solution, but i can give you a pointer. composite window managers (i.e. compiz, baryl) work by drawing the original window off screen, then read it as a 2D picture, and render it back to the screen with certain effects. So i know it is possible to grab an off screen

xlib questions

2010-01-26 Thread Erez D
i need your help i am trying to grab a cursor image (i have the cursor's XID). xlib doesn't have any functions that does that. xfixes have a function that reads the cursor image, but only the current cursor and i am trying to get a cursor which i have i'ts XID. XCopyArea(display,mycursor,...)

Re: xlib questions

2010-01-26 Thread Erez D
On Tue, Jan 26, 2010 at 1:04 PM, ik ido...@gmail.com wrote: 2010/1/26 Erez D erez0...@gmail.com i need your help i am trying to grab a cursor image (i have the cursor's XID). xlib doesn't have any functions that does that. xfixes have a function that reads the cursor image, but only

Re: xlib questions

2010-01-26 Thread Erez D
On Tue, Jan 26, 2010 at 2:57 PM, ik ido...@gmail.com wrote: On Tue, Jan 26, 2010 at 13:16, Erez D erez0...@gmail.com wrote: On Tue, Jan 26, 2010 at 1:04 PM, ik ido...@gmail.com wrote: 2010/1/26 Erez D erez0...@gmail.com i need your help i am trying to grab a cursor image (i have

dlink 2650U

2010-01-10 Thread Erez D
i am just about to receive a dlink 2650U router from bezeq. i want to install openwrt on it, and replace my wrt54GL (which runs asterisk and more on openwrt) looking throgh openwrt pages is saw it is supported but couldn't find how to install on it. have anyone installed openwrt on it ? any

Re: ot: looking for cheap/free sip phones

2010-01-09 Thread Erez D
On Sat, Jan 9, 2010 at 6:14 AM, Amos Shapira amos.shap...@gmail.com wrote: 2010/1/8 Ohad Levy ohadl...@gmail.com: I use it often, usually works well... the only problem for people which have a lot of latency is that the nokia(or wlan) adds another ~100ms). Yes I know that it works for

X/Xlib programming questions (solved)

2010-01-06 Thread Erez D
with the server) thanks, erez. Ido http://ik.homelinux.org/ On Wed, Jan 6, 2010 at 11:19, Erez D erez0...@gmail.com wrote: On Mon, Jan 4, 2010 at 2:59 PM, ik ido...@gmail.com wrote: Hello Erez, I think you are looking for XQueryPointer (http://www.xfree86.org/4.4.0/XQueryPointer.3.html

X/Xlib programming questions

2010-01-04 Thread Erez D
hello i want to send keyboard and mouse event to a window at position x,y. i thought of using XSendEvent how do i find which is the top most window at pos x,y (without moving the pointer position) ? what fields do i need to fill in the event i send via XSendEvent, i guess event.xbutton.serial

finding how many screens i have

2009-12-31 Thread Erez D
hi i have a computer with multiple display adapters, and each may have multiple X servers. each X server may have multiple screens. how can i get a list of all the screens i have ? thanks, erez. ___ Linux-il mailing list Linux-il@cs.huji.ac.il

Re: finding how many screens i have

2009-12-31 Thread Erez D
);   XCloseDisplay(dpy); } Its a quick and dirty code from my memory (haven't tried it). that counts for each given display string in the command line. Ido http://ik.homelinux.org/ On Thu, Dec 31, 2009 at 11:57 AM, Erez D erez0...@gmail.com wrote: hi i have a computer with multiple display

Re: Streaming from satellite

2009-12-15 Thread Erez D
what kind of sattelite broadcasts. video ? for that you can use vlc. 2009/12/15 Michael Ben-Nes mich...@epoch.co.il: Hi, I am looking for someone to help me with a  project where I need to stream satellite broadcasts ( around 150 ) to the Internet ( max 1000 unicast ). Any one ? :) Thanks,

Re: using a mobile phone as a modem

2009-12-14 Thread Erez D
Matan Ziv-Av ma...@svgalib.org: On Sun, 13 Dec 2009, Erez D wrote: Hi I an trying to connect my ubuntu to the internet via my n95 and orange. I googled and found some solutions. However the pppd connects successfully and then hangs up ( error 16 ) Was anybody successfull in doing so

Re: using a mobile phone as a modem

2009-12-13 Thread Erez D
Hi I an trying to connect my ubuntu to the internet via my n95 and orange. I googled and found some solutions. However the pppd connects successfully and then hangs up ( error 16 ) Was anybody successfull in doing so ? Thanks. Erez. ps. here is my wvdial.conf: [Dialer Defaults] Modem =

Re: atomic operations under linux

2009-12-10 Thread Erez D
On Wed, Dec 9, 2009 at 10:35 PM, Micha mi...@post.tau.ac.il wrote: On 09/12/2009 18:49, guy keren wrote: Erez D wrote: hi hi do i do atomic operations in linux (userspace) ? i need somthing like testAndSet32() thanks, erez. you need to use inline assembly to do this. it looks

atomic operations under linux

2009-12-09 Thread Erez D
hi hi do i do atomic operations in linux (userspace) ? i need somthing like testAndSet32() thanks, erez. ___ Linux-il mailing list Linux-il@cs.huji.ac.il http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il

Re: x11 window duplicator

2009-11-11 Thread Erez D
VNC? xdmx ? nope. ___ Linux-il mailing list Linux-il@cs.huji.ac.il http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il

x11 window duplicator

2009-11-10 Thread Erez D
I remember once there was an X utility to show copies of a window: i could run any program, and make it appear multiple times (possibly on different displays) The main program is functional, the others are just real time copies of it. i do not remember it's name. and google did not help either.

Re: date command

2009-11-09 Thread Erez D
? thanks, erez. Chaim On Mon, Nov 9, 2009 at 12:34 AM, Erez D erez0...@gmail.com wrote: # date  -d 'Mon 9/11 2:25 AM' Fri Sep 11 02:25:00 IDT 2009 but i want it to return: Mon Nov  9 02:25:00 IDT 2009 i tried setting LC_TIME but this didn't help. any idea ? cheers. erez

tags q

2009-11-09 Thread Erez D
hi generating a 'tags file' using ctags lets me find the definition of things in vi using 'ctrl-]' is there a similiar way of finding usage of these things ? i.e. i can find where i defined function1(), can i find in a similiar way (other then grep) where it is used ? 10x, erez

date command

2009-11-08 Thread Erez D
# date -d 'Mon 9/11 2:25 AM' Fri Sep 11 02:25:00 IDT 2009 but i want it to return: Mon Nov 9 02:25:00 IDT 2009 i tried setting LC_TIME but this didn't help. any idea ? cheers. erez. ___ Linux-il mailing list Linux-il@cs.huji.ac.il

where i can get a free reliable public blog.

2009-11-03 Thread Erez D
hi i want to create a new linux/oss related blog (in english) any suggestions of where ? cheers, erez. ___ Linux-il mailing list Linux-il@cs.huji.ac.il http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il

Re: where i can get a free reliable public blog.

2009-11-03 Thread Erez D
I've started a blog at wordpress.com ( http://erezgt.wordpress.com/ ) Thank you all, erez. On Tue, Nov 3, 2009 at 1:22 PM, Shlomi Fish shlo...@iglu.org.il wrote: On Tuesday 03 Nov 2009 11:39:29 Erez D wrote: hi i want to create a new linux/oss related blog (in english) any suggestions

Re: jffs2 q

2009-10-13 Thread Erez D
i do not have mtd, only image thanks, erez. On Tue, Oct 13, 2009 at 3:41 PM, Gilad Ben-Yossef gi...@codefidence.comwrote: Hi Erez, Erez D wrote: i am compiling a new jffs2 image for an embedded device, and i get an error saying my erase size is wrong. how do i determine what is my

jffs2 q

2009-10-12 Thread Erez D
hi i am compiling a new jffs2 image for an embedded device, and i get an error saying my erase size is wrong. how do i determine what is my erase size ? (so i can compare to a jffs2 file that works) is there a utility that can give info on jffs2 images, like what is their erase size ? thanks,

Re: n900 preorder

2009-10-11 Thread Erez D
...@gmail.com het...@gmail.com: From the link you gave: Shipping: Currently, item can be shipped only within the U.S. Hetz 2009/10/10 Erez D erez0...@gmail.com erez0...@gmail.com i saw that i can pre-order the n900 for just 580$ (it's real price should be 500 euro) from amazon.com http

n900 preorder

2009-10-10 Thread Erez D
i saw that i can pre-order the n900 for just 580$ (it's real price should be 500 euro) from amazon.com http://www.amazon.com/Nokia-N900-Unlocked-Computer-3-5-Inch/dp/B002OB49SW/ref=sr_1_1?ie=UTF8s=wirelessqid=1255160977sr=8-1 i was wondering what about customs, and will the us version work well

Re: sendmail smart host auth (solved)

2009-09-23 Thread Erez D
makemap hash client-info client-info cd /etc/mail m4 submit.mc submit.cf now it works. thanks for your help. erez. On Wed, Sep 23, 2009 at 8:07 AM, Oron Peled o...@actcom.co.il wrote: On Tuesday, 22 בSeptember 2009 12:35:50 Erez D wrote: i am using bezeqint as my relay host. Me too. i

sendmail smart host auth

2009-09-22 Thread Erez D
hi i am using bezeqint as my relay host. i edit my submit.cf and added: DSout.bezeqint.net however i get Relaying denied, so i need to add authentication. anybody knows how ? please do not reply sendmail is bad, or switch to other MTA. thanks, erez.

Re: sendmail smart host auth

2009-09-22 Thread Erez D
the line manually after telneting to port 25 of out.bezeqint.netand it worked) Erez D wrote: On Tue, Sep 22, 2009 at 1:08 PM, doron do...@ofek.biz wrote: Hi , 1. Add the line: AuthInfo:YOUR_ISP U:smmsp I:USER_NAME P:PASSWORD to your access file (/etc/mail/access) 2. run make

Re: an open phone from nokia ?

2009-08-30 Thread Erez D
shac...@shemesh.biz: Erez D wrote: nokia is realeasing the N900 smartphone. which is using maemo (linux) as it's os. will this be a de-facto open phone, or could nokia keep it closed ? In all likelyhood, the system will be more or less open (i.e. - there will be some closed drivers

Re: [OT] How many dimensions? (WAS: Power over radio)

2009-08-29 Thread Erez D
disclaimer: Although i am (was) a physicist, I am not a string theorist. On Fri, Aug 28, 2009 at 10:06 PM, Oleg Goldshmidt p...@goldshmidt.orgwrote: Shachar Shemesh shac...@shemesh.biz writes: Dotan Cohen wrote: Oleg, I understood that the universe has 11 or so dimensions, and that 5

an open phone from nokia ?

2009-08-29 Thread Erez D
nokia is realeasing the N900 smartphone. which is using maemo (linux) as it's os. will this be a de-facto open phone, or could nokia keep it closed ? erez. http://benhamo.org/wp/?p=1628 http://www.h-online.com/open/Nokia-announces-N900-mobile-computer--/news/114106

Re: [OT] Power over radio is it a true thing or just a myth ?

2009-08-25 Thread Erez D
2009/8/24 Shachar Shemesh shac...@shemesh.biz Michael Vasiliev wrote: The power of the signal is inversely proportional to the square of distance. That is not precisely accurate. An undirected point source of EM radiation (or any other type of energy) transmits energy that expands on a

Re: [OT] Power over radio is it a true thing or just a myth ?

2009-08-25 Thread Erez D
On Tue, Aug 25, 2009 at 11:56 AM, Shachar Shemesh shac...@shemesh.bizwrote: Erez D wrote: AFAIK, according to general relativity, the world is 4D. according to string theory, there are more dimensions ... I think we have enough flame wars over FOSS matters. Let's not go into strings

Re: Check out my photos on Facebook

2009-08-16 Thread Erez D
1. who are you and what are the pictures and videos about 2. i do not want to join facbook. 2009/8/15 Michael Lewinger invite+kjdmu55i-...@facebookmail.cominvite%2bkjdmu55i-...@facebookmail.com facebook Check out my photos on Facebook Hi linux-il@cs.huji.ac.il, I set up a Facebook

Re: DTT

2009-08-10 Thread Erez D
vlc dvb-t://frequency=51400:bandwidth=8:inversion=0 does it all. (this is for the center of israel, for the north and south the frequency is 53800) erez. 2009/8/10 Guy Corem g...@nop90.com Discussion inside the dealextreme page: The page:

batch parenthesis matching

2009-08-06 Thread Erez D
hi i have an html file with few different instances of: span class=myclass ... some html, e.g. B blah blah a href= /a /b /span i want to remove theses instances. ( the html inside the span varies between instances, and there is a non constant number of instances) i thought of replacing

Re: batch parenthesis matching

2009-08-06 Thread Erez D
On Thu, Aug 6, 2009 at 9:02 PM, Oleg Goldshmidt p...@goldshmidt.org wrote: Erez D erez0...@gmail.com writes: hi i have an html file with few different instances of: span class=myclass ... some html, e.g. B blah blah a href= /a /b /span i want to remove theses instances

Re: DTT

2009-08-02 Thread Erez D
company already sell some hardware, but the service is not operational yet. It should be real soon now, and there will be an ad campaign. Thanks, Hetz 2009/7/30 Amos Shapira amos.shap...@gmail.com 2009/7/30 geoffrey mendelson geoffreymendel...@gmail.com On Jul 30, 2009, at 12:13 PM, Erez

DTT

2009-07-30 Thread Erez D
hi i am trying to receive israel's DTT ( dvb-t terestrial digital tv) transmissions i tried doing a channel scan using kaffeine, but found nothing to play it using vlc or using dvb-t scan utility, i need more info at least the frequancy and SR (symbol rate), other info will help too. was anyone

Re: DTT

2009-07-30 Thread Erez D
. Thanks, Hetz 2009/7/30 Amos Shapira amos.shap...@gmail.com 2009/7/30 geoffrey mendelson geoffreymendel...@gmail.com On Jul 30, 2009, at 12:13 PM, Erez D wrote: i am trying to receive israel's DTT ( dvb-t terestrial digital tv) transmissions i tried doing a channel scan using kaffeine

Re: voip problems

2009-06-27 Thread Erez D
On 6/26/09, Erez D erez0...@gmail.com wrote: On 6/26/09, Tzafrir Cohen tzaf...@cohens.org.il wrote: On Fri, Jun 26, 2009 at 08:27:10PM +0200, Erez D wrote: Hi. I am abroad and using voip to call my family and other israeli phones. I use my cell phone as a sip client and connect via wifi to my

voip problems

2009-06-26 Thread Erez D
Hi. I am abroad and using voip to call my family and other israeli phones. I use my cell phone as a sip client and connect via wifi to my asterisk box which connects to an ht488 (fxo) which is connected to a bezeq line. Until a few days ago everything worked great. However, in the last days,

voip problems (more info)

2009-06-26 Thread Erez D
More info: Both asterisk and ata confirm registration. Ata does not answer the incoming calls from the bezeq line as it should (and done until few days ago) Bezeq line is not busy when others call it (just no answer) Thanks, Erez ___ Linux-il mailing

Re: voip problems

2009-06-26 Thread Erez D
On 6/26/09, Tzafrir Cohen tzaf...@cohens.org.il wrote: On Fri, Jun 26, 2009 at 08:27:10PM +0200, Erez D wrote: Hi. I am abroad and using voip to call my family and other israeli phones. I use my cell phone as a sip client and connect via wifi to my asterisk box which connects to an ht488 (fxo

Re: sms via asterisk

2009-06-20 Thread Erez D
nokia (n95 8gb) builtin client 3. can i send sms via bezeq line, and does Grandstream HandyTone 488 support it On Fri, Jun 19, 2009 at 9:35 AM, Erez D erez0...@gmail.com wrote: 1.4‏ ‏afaik On 6/18/09, Tzafrir Cohen tzaf...@cohens.org.il wrote: On Thu, Jun 18, 2009 at 09:10:08PM +0200, Erez D

Re: sms via asterisk

2009-06-19 Thread Erez D
1.4‏ ‏afaik On 6/18/09, Tzafrir Cohen tzaf...@cohens.org.il wrote: On Thu, Jun 18, 2009 at 09:10:08PM +0200, Erez D wrote: Hi, Im looking for a way to send sms to israeli phones through my asterisk. Currently i have * installed on a wrt54gl (openwrt). My FXO is an ht488 which is connected

sms via asterisk

2009-06-18 Thread Erez D
Hi, Im looking for a way to send sms to israeli phones through my asterisk. Currently i have * installed on a wrt54gl (openwrt). My FXO is an ht488 which is connected to a bezeq line. My sip client is my nokia (via wifi). Any simple ways to do that ? (Im abroad and using my nokia via T9 to ssh

Re: LinuxMCE

2009-06-13 Thread Erez D
I am in norway and stambledI on this thread. I use my cell for writing so i try to make this short. I tried linuxMCE a few years ago but after a lot of frustration i gave it up(btw, mce uses myth/vdr anyway). I have a private sat dish and i use both mythtv and VDR. and sometimes XBMC on top. if

Re: LinuxMCE

2009-06-13 Thread Erez D
I am in norway and stambledI on this thread. I use my cell for writing so i try to make this short. I tried linuxMCE a few years ago but after a lot of frustration i gave it up(btw, mce uses myth/vdr anyway). I have a private sat dish and i use both mythtv and VDR. and sometimes XBMC on top. if

ping problems

2009-05-27 Thread Erez D
hi i have an openwrt (linux) router, with regular firewall rules (nat, related+established,clamp-mss-to-pmtu, etc). if i ping from the router to the internet, it works ok however if i ping from inside my lan to the internet, the first 30-70 pings works, then it stops working (i.e. 100% packet

Re: ping problems

2009-05-27 Thread Erez D
servers, but none at the target but it is the same for both router and lan. thanks, erez. 2009/5/27 Erez D erez0...@gmail.com: hi i have an openwrt (linux) router, with regular firewall rules (nat, related+established,clamp-mss-to-pmtu, etc). if i ping from the router to the internet

anybody using adsl with openwrt+kamikaze ?

2009-05-27 Thread Erez D
if so, please send me your adsl config thanks, erez. ___ Linux-il mailing list Linux-il@cs.huji.ac.il http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il

open street map and symbian

2009-05-26 Thread Erez D
hi There is an israeli site, which uses an open GPS software but a closed map. so for that (and other reasons - maps of other countries) i would like to use openstreetmap instead was anyone able to use openstreetmap on symbian ? thanks, erez. ___

strange sound problems

2009-05-22 Thread Erez D
well, after upgrading my htpc to jounty, my sound stopped working: no, i have a strange problem: under user1, aplay -Ddefault a.wav works, as well as aplay -Dhw:0,0 a.wav under user2, aplay -Ddefault a.wav doesn't work, but aplay -Dhw:0,0 a.wav does neither user1 nor user2 have an ~/.asoundrc

Re: strange sound problems

2009-05-22 Thread Erez D
i just disabled pulse in /usr/share/alsa/alsa.conf and everything works great. thanks, erez. On Fri, May 22, 2009 at 10:47 AM, sara fink sara.f...@gmail.com wrote: you use alsa? 2009/5/22 Erez D erez0...@gmail.com well, after upgrading my htpc to jounty, my sound stopped working: no, i

Re: ubuntu is starting to annoy me

2009-05-20 Thread Erez D
On Tue, May 19, 2009 at 10:39 PM, Boaz Rymland b...@rymland.com wrote: geoffrey mendelson wrote: After 3 days of running it can not make a connection to the outisde world. I have to reboot to get it to work. Other computers runing Ubuntu have the same problem, 3 days after they were booted,

Re: ubuntu is starting to annoy me

2009-05-20 Thread Erez D
On Wed, May 20, 2009 at 10:33 AM, Gabor Szabo szab...@gmail.com wrote: 2) Ctrl-Alt-Backspace does not do anything (should restart X) either use alt-sysrq-k instead of ctl-alt-bksp or add to xorg.conf: Section ServerFlags Option DontZap false EndSection erez.

Re: Ditching ubuntu

2009-05-20 Thread Erez D
funny, i ditched fedora in favor of ubuntu a few years ago, because of fedora stability issues erez. On Wed, May 20, 2009 at 12:52 PM, Meir Michanie me...@riunx.com wrote: Hi List, I decided to move to fedora after using ubuntu for years, under the pressure to resolve freeze issues in two

ot: israeli sip providers ?

2009-05-20 Thread Erez D
hi i am traveling abroad, and as my nokia (N95-2) has wifi and a built in SIP client, i wanted to use it for cheap calls to/from israel. I already used it my phone to call people via sip, and it had very good sound quality. anybody knows of israeli sip providers ? (I know i can use fring with

ubuntu is starting to annoy me

2009-05-19 Thread Erez D
hi i bought a new hardware (dvb-s2 sat card) that needs kernel at least 2.6.28 so i thought my best solution was to upgrade my ubuntu to jaunty after upgrading, i find out that some of my automatic scripts didn't do their jobs anymore after spending a lot of time, i found out that 'screen'

Re: ubuntu is starting to annoy me

2009-05-19 Thread Erez D
On Tue, May 19, 2009 at 12:52 PM, geoffrey mendelson geoffreymendel...@gmail.com wrote: On May 19, 2009, at 12:40 PM, Erez D wrote: i didn't even mension the other problems i had sound stopped working. X is not listening to TCP connections. There is no config option to enable

<    1   2   3   4   5   6   >