How to handle errors?

2016-10-20 Thread SS
The following script works fine:

#!/bin/python

import socket

str = raw_input("Enter a domain name: ");
print "Your domain is ", str
print socket.gethostbyname(str)

You provide it a hostname, it provides an IP.  That works fine.  But I need a 
way to handle errors.  For example:

[root@bart /]# ./dataman.py
Enter a domain name: aslfhafja
Your domain is  aslfhafja
Traceback (most recent call last):
  File "./dataman.py", line 7, in 
print socket.gethostbyname(str)
socket.gaierror: [Errno -2] Name or service not known
[root@bart /]#

I would like to be able to handle that error a bit better.  Any ideas?

TIA. 
-- 
https://mail.python.org/mailman/listinfo/python-list


passing a variable to cmd

2016-11-06 Thread SS
Note the following code:

import subprocess
import shlex

domname = raw_input("Enter your domain name: ");
print "Your domain name is: ", domname

print "\n"

# cmd='dig @4.2.2.2 nbc.com ns +short'
cmd="dig @4.2.2.2 %s ns +short", % (domname)
proc=subprocess.Popen(shlex.split(cmd),stdout=subprocess.PIPE)
out,err=proc.communicate()
print(out)

The line that is commented out works fine.  However, I want to substitute a 
variable for "nbc.com".  The command:

cmd="dig @4.2.2.2 %s ns +short", % (domname)

does not work.  I've tried different variations to no avail.  Any advice on how 
to get that variable working?

TIA.
-- 
https://mail.python.org/mailman/listinfo/python-list


python mariadb & html tables

2020-09-15 Thread SS
I'm trying to create an table in html from a Maria DB table, from a python 
script.  I'm getting some unexpected results.  

The environment is Centos 7, I'm using Python3 with apache.

Here is copy of the script I'm using:

*** SCRIPT START *

import mysql.connector
import cgitb
cgitb.enable()

mydb = mysql.connector.connect(
  host="localhost",
  user="root",
  password="somepassword",
  database="somedb"
)

mycursor = mydb.cursor()

mycursor.execute("select name, provisioned_space, used_space, memory_size, 
cpus, ip_address, host_cpu, host_mem from projecttable where name like 
'%newproject%'")

myresult = mycursor.fetchall()

print "Content-type: text/plain:charset=utf-8"
print
for x in myresult:
  print(x)


*** SCRIPT STOPS *

It works.  But I get alot of extraneous data I don't need or want.  Here is an 
example of the output:

* OUTPUT STARTS ***

Content-type: text/plain:charset=utf-8

(u'host1.mydomain.com', u'106.11 GB', u'32.72 GB', u'1 GB', u'1', 
u'172.18.33.62', u'Running', u'16 MHz')
(u'hopst2.mydomain.com', u'106.08 GB', u'56.87 GB', u'1 GB', u'1', 
u'172.17.4.82', u'Running', u'0 Hz')

* OUTPUT STOPS ***

Is this typical of Python?  Do I need create another script to clean up the 
output?  Or is there a better way to extract data from a MariaDB instance, and 
put it in an HTML table? Any advise would be appreciated.

TIA
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: python mariadb & html tables

2020-09-15 Thread SS
On Tuesday, September 15, 2020 at 2:52:35 PM UTC-4, [email protected] 
wrote:
> On Tue, Sep 15, 2020 at 11:45 AM SS  wrote: 
> > 
> > I'm trying to create an table in html from a Maria DB table, from a python 
> > script. I'm getting some unexpected results. 
> > 
> > The environment is Centos 7, I'm using Python3 with apache. 
> > 
> > Here is copy of the script I'm using: 
> > 
> > *** SCRIPT START * 
> > 
> > import mysql.connector 
> > import cgitb 
> > cgitb.enable() 
> > 
> > mydb = mysql.connector.connect( 
> > host="localhost", 
> > user="root", 
> > password="somepassword", 
> > database="somedb" 
> > ) 
> > 
> > mycursor = mydb.cursor() 
> > 
> > mycursor.execute("select name, provisioned_space, used_space, memory_size, 
> > cpus, ip_address, host_cpu, host_mem from projecttable where name like 
> > '%newproject%'") 
> > 
> > myresult = mycursor.fetchall() 
> > 
> > print "Content-type: text/plain:charset=utf-8" 
> > print 
> > for x in myresult: 
> > print(x) 
> > 
> > 
> > *** SCRIPT STOPS * 
> > 
> > It works. But I get alot of extraneous data I don't need or want. Here is 
> > an example of the output: 
> > 
> > * OUTPUT STARTS *** 
> > 
> > Content-type: text/plain:charset=utf-8 
> > 
> > (u'host1.mydomain.com', u'106.11 GB', u'32.72 GB', u'1 GB', u'1', 
> > u'172.18.33.62', u'Running', u'16 MHz') 
> > (u'hopst2.mydomain.com', u'106.08 GB', u'56.87 GB', u'1 GB', u'1', 
> > u'172.17.4.82', u'Running', u'0 Hz') 
> > 
> > * OUTPUT STOPS *** 
> > 
> > Is this typical of Python? Do I need create another script to clean up the 
> > output? Or is there a better way to extract data from a MariaDB instance, 
> > and put it in an HTML table? Any advise would be appreciated.
> What is the extraneous data?

Thanks for responding.  I am expecting (or would like) to get the following 
output:

Content-type: text/plain:charset=utf-8 


 
  host1.mydomain.com   106.11 GB32.72 GB   
 1 GB172.18.33.62 Running 16 MHz 
   
  host2.mydomain.com106.08 GB  56.87 GB 1 GB 
1 GB 172.17.4.82Running 0 Hz





But instead I get the following:

Content-type: text/plain:charset=utf-8 

(u'host1.mydomain.com', u'106.11 GB', u'32.72 GB', u'1 GB', u'1', 
u'172.18.33.62', u'Running', u'16 MHz') 
(u'hopst2.mydomain.com', u'106.08 GB', u'56.87 GB', u'1 GB', u'1', 
u'172.17.4.82', u'Running', u'0 Hz') 

So each table row is enclosed in parenthesis, and each field is enclosed in 'u  
 ',

Ultimately, my intention is to create an html table, from a Maria DB table 
using Python.   TIA.


-- 
https://mail.python.org/mailman/listinfo/python-list


Re: python mariadb & html tables

2020-09-15 Thread SS
On Tuesday, September 15, 2020 at 2:52:35 PM UTC-4, [email protected] 
wrote:
> On Tue, Sep 15, 2020 at 11:45 AM SS  wrote: 
> > 
> > I'm trying to create an table in html from a Maria DB table, from a python 
> > script. I'm getting some unexpected results. 
> > 
> > The environment is Centos 7, I'm using Python3 with apache. 
> > 
> > Here is copy of the script I'm using: 
> > 
> > *** SCRIPT START * 
> > 
> > import mysql.connector 
> > import cgitb 
> > cgitb.enable() 
> > 
> > mydb = mysql.connector.connect( 
> > host="localhost", 
> > user="root", 
> > password="somepassword", 
> > database="somedb" 
> > ) 
> > 
> > mycursor = mydb.cursor() 
> > 
> > mycursor.execute("select name, provisioned_space, used_space, memory_size, 
> > cpus, ip_address, host_cpu, host_mem from projecttable where name like 
> > '%newproject%'") 
> > 
> > myresult = mycursor.fetchall() 
> > 
> > print "Content-type: text/plain:charset=utf-8" 
> > print 
> > for x in myresult: 
> > print(x) 
> > 
> > 
> > *** SCRIPT STOPS * 
> > 
> > It works. But I get alot of extraneous data I don't need or want. Here is 
> > an example of the output: 
> > 
> > * OUTPUT STARTS *** 
> > 
> > Content-type: text/plain:charset=utf-8 
> > 
> > (u'host1.mydomain.com', u'106.11 GB', u'32.72 GB', u'1 GB', u'1', 
> > u'172.18.33.62', u'Running', u'16 MHz') 
> > (u'hopst2.mydomain.com', u'106.08 GB', u'56.87 GB', u'1 GB', u'1', 
> > u'172.17.4.82', u'Running', u'0 Hz') 
> > 
> > * OUTPUT STOPS *** 
> > 
> > Is this typical of Python? Do I need create another script to clean up the 
> > output? Or is there a better way to extract data from a MariaDB instance, 
> > and put it in an HTML table? Any advise would be appreciated.
> What is the extraneous data?

The extraneous data is:

(u'host1.mydomain.com', u'106.11 GB', u'32.72 GB', u'1 GB', u'1', 
u'172.18.33.62', u'Running', u'16 MHz')

It is all the u characters, the single quotes, and the parenthesis.  
Ultimately, I would like to create an html table in an html page, from a a 
MariaDB table.

Thanks,
-- 
https://mail.python.org/mailman/listinfo/python-list


retrieving real time quotes from yahoo

2009-09-04 Thread ss
Hello,
ive started using python for a few weeks now, and came across a
problem that i would appreciate help solving.  im trying to create
code which can grab real time quotes from yahoo (yes ive created an
account for yahoo finance).  But im not sure how to generate an
authenticated login and how to request data.  Ive been searching the
net for over the last few hours without having found a way to do this.

any help  would be welcome

thanks!
s
-- 
http://mail.python.org/mailman/listinfo/python-list


python nmap for loop

2017-06-14 Thread SS
I'm trying to make the following code work:

import os, sys

app=['host1', 'host2', 'host3']

for i in app:
os.system('nmap -p 22 -P0 %s | grep open 2>&1 > /dev/null && echo "%s up"


I've tried many different iterations of the os.system call, how to make this 
work?

TIA
-- 
https://mail.python.org/mailman/listinfo/python-list


python logic

2017-09-01 Thread SS
Check out the following simple code:

#!/bin/python

print "1 - echo 1"
print "2 - echo 2"

answer = input("Enter your choice - ")

if answer == 1:
  print "1"
elif answer == 2:
  print "2"
else:
  print "Invalid choice!"


The else statement noted above works fine for numeric values other then 1 or 2. 
 But if a user types in alphanumeric data (letters) into this, it blows up.  
Check out the following:

[root@ansi ~]$ ./trash
1 - echo 1
2 - echo 2
Enter your choice - 3
Invalid choice!

[root@ansi ~]$ ./trash
1 - echo 1
2 - echo 2
Enter your choice - r
Traceback (most recent call last):
  File "./trash", line 6, in 
answer = input("Enter your choice - ")
  File "", line 1, in 
NameError: name 'r' is not defined

I would expect the same behavior from both runs.  Why does Python differ in the 
way it treats a character in that program?  Finally, how to accomodate for such 
(how to fix)?

TIA
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: python logic

2017-09-01 Thread SS
On Friday, September 1, 2017 at 9:32:16 AM UTC-4, SS wrote:
> Check out the following simple code:
> 
> #!/bin/python
> 
> print "1 - echo 1"
> print "2 - echo 2"
> 
> answer = input("Enter your choice - ")
> 
> if answer == 1:
>   print "1"
> elif answer == 2:
>   print "2"
> else:
>   print "Invalid choice!"
> 
> 
> The else statement noted above works fine for numeric values other then 1 or 
> 2.  But if a user types in alphanumeric data (letters) into this, it blows 
> up.  Check out the following:
> 
> [root@ansi ~]$ ./trash
> 1 - echo 1
> 2 - echo 2
> Enter your choice - 3
> Invalid choice!
> 
> [root@ansi ~]$ ./trash
> 1 - echo 1
> 2 - echo 2
> Enter your choice - r
> Traceback (most recent call last):
>   File "./trash", line 6, in 
> answer = input("Enter your choice - ")
>   File "", line 1, in 
> NameError: name 'r' is not defined
> 
> I would expect the same behavior from both runs.  Why does Python differ in 
> the way it treats a character in that program?  Finally, how to accomodate 
> for such (how to fix)?
> 
> TIA

raw_input, nice.  Thanks!!
-- 
https://mail.python.org/mailman/listinfo/python-list


Having an issue with the command "pip install"

2021-12-19 Thread SS Sumve
Whenever I try to install any packages with “pip install”, I am getting an
error.



Traceback (most recent call last):

  File
"C:\Users\Lenovo\AppData\Local\Programs\Python\Python310\lib\runpy.py",
line 196, in _run_module_as_main

return _run_code(code, main_globals, None,

  File
"C:\Users\Lenovo\AppData\Local\Programs\Python\Python310\lib\runpy.py",
line 86, in _run_code

exec(code, run_globals)

  File
"C:\Users\Lenovo\AppData\Local\Programs\Python\Python310\Scripts\pip.exe\__main__.py",
line 7, in 

  File
"C:\Users\Lenovo\AppData\Local\Programs\Python\Python310\lib\site-packages\pip\_internal\cli\main.py",
line 68, in main

command = create_command(cmd_name, isolated=("--isolated" in cmd_args))

  File
"C:\Users\Lenovo\AppData\Local\Programs\Python\Python310\lib\site-packages\pip\_internal\commands\__init__.py",
line 109, in create_command

module = importlib.import_module(module_path)

  File
"C:\Users\Lenovo\AppData\Local\Programs\Python\Python310\lib\importlib\__init__.py",
line 126, in import_module

return _bootstrap._gcd_import(name[level:], package, level)

  File "", line 1050, in _gcd_import

  File "", line 1027, in _find_and_load

  File "", line 1006, in
_find_and_load_unlocked

  File "", line 688, in _load_unlocked

  File "", line 883, in exec_module

  File "", line 241, in
_call_with_frames_removed

  File
"C:\Users\Lenovo\AppData\Local\Programs\Python\Python310\lib\site-packages\pip\_internal\commands\install.py",
line 14, in 

from pip._internal.cli.req_command import (

  File
"C:\Users\Lenovo\AppData\Local\Programs\Python\Python310\lib\site-packages\pip\_internal\cli\req_command.py",
line 20, in 

from pip._internal.index.collector import LinkCollector

  File
"C:\Users\Lenovo\AppData\Local\Programs\Python\Python310\lib\site-packages\pip\_internal\index\collector.py",
line 34, in 

from pip._internal.network.session import PipSession

  File
"C:\Users\Lenovo\AppData\Local\Programs\Python\Python310\lib\site-packages\pip\_internal\network\session.py",
line 31, in 

from pip._internal.network.auth import MultiDomainBasicAuth

  File
"C:\Users\Lenovo\AppData\Local\Programs\Python\Python310\lib\site-packages\pip\_internal\network\auth.py",
line 22, in 

from pip._internal.vcs.versioncontrol import AuthInfo

  File
"C:\Users\Lenovo\AppData\Local\Programs\Python\Python310\lib\site-packages\pip\_internal\vcs\__init__.py",
line 6, in 

import pip._internal.vcs.git

ModuleNotFoundError: No module named 'pip._internal.vcs.git'


I got this error when I tried to install numpy.
Please help me to solve this problem.
-- 
https://mail.python.org/mailman/listinfo/python-list


python finance

2014-01-02 Thread d ss
dailystockselect.com needs a couple of talented python people for the 
development and implementation of new trading strategies.
it may be also some pythonic design change for the displayed figures
now the web app consists of 1 of the 8 conceived strategies.
contact us at the email on the website for more details
Samir
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: python finance

2014-01-06 Thread d ss
what the heck!
who told you this is a spam!
this is a call for cooperation and collaboration
how retarded!

On Sunday, January 5, 2014 4:14:22 AM UTC-5, [email protected] wrote:
> On Thursday, January 2, 2014 11:37:59 AM UTC, d ss wrote:
> 
> > dailystockselect.com needs a couple of talented python people for the 
> > development and implementation of new trading strategies. it may be also 
> > some pythonic design change for the displayed figures  now the web app 
> > consists of 1 of the 8 conceived strategies. contact us at the email on the 
> > website for more details 
> 
> > Samir
> 
> 
> 
> Please this is a spam.. I've reported this as a spam. I wish everyone who 
> sees this also reports it as spam to get the user bannned. This way GG will 
> be a wee bit better
> 
> 
> 
> Thanks

-- 
https://mail.python.org/mailman/listinfo/python-list


Re: python finance

2014-01-06 Thread d ss
On Monday, January 6, 2014 12:06:45 PM UTC-5, Chris Angelico wrote:
> On Tue, Jan 7, 2014 at 3:58 AM, d ss  wrote:
> 
> > what the heck!
> 
> > who told you this is a spam!
> 
> > this is a call for cooperation and collaboration
> 
> > how retarded!
> 
> 
> 
> It is, at best, misdirected. There is a Python job board [1] where
> 
> these sorts of things can be posted, but the main mailing list isn't
> 
> the place for it.
> 
> 
> 
> However, if you want your posts to be seen as legitimate, I would
> 
> recommend putting a little more content into them, and putting some
> 
> effort into the quality of English. Most of us will just skip over
> 
> something that looks like unsolicited commercial email, if we even see
> 
> it at all (spam filtering is getting pretty effective these days).
> 
> 
> 
> ChrisA
> 
> 
> 
> [1] http://www.python.org/community/jobs/

thanks Chris, i am checking the link
i wrote just 2 words with a clear indicative title: "Python, Finance" which 
summarizes the following "if you are good in python and interested in applying 
your python knowledge to the field of finance then we may have a common 
interest in talking together" :D
that s it!
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: python finance

2014-01-08 Thread d ss
On Monday, January 6, 2014 6:58:30 PM UTC-5, Walter Hurry wrote:
> On Mon, 06 Jan 2014 13:11:53 -0800, d ss wrote:
> 
> 
> 
>  i wrote just 2 words with a clear
> 
> > indicative title: "Python, Finance" which summarizes the following "if
> 
> > you are good in python and interested in applying your python knowledge
> 
> > to the field of finance then we may have a common interest in talking
> 
> > together" :D that s it!
> 
> 
> 
> No, you didn't. The title wasn't capitalised. The advertisement was 
> 
> similarly poor English, the post was to the wrong mailing list and you 
> 
> posted usong G**gle Gs.
> 

You meant USING!
-- 
https://mail.python.org/mailman/listinfo/python-list


win32com InvokeTypes is None

2006-09-18 Thread SS Hares
Hi,

I'm encountering an issue where the InvokeTypes method is returning
None and I'm unable to Dispatch a particular COM object from
DMCoreAutomation.dll. Everything works fine except for method
GetItemFields.

Using Python 2.4.2, pywin32 build 209.

Here is some example code (I can provide full source code if needed):

>>> from win32com.client import gencache
>>> file = 'C:\Shoaev\dev_qxdm\mylog.isf'
>>> mod = gencache.GetModuleForProgID('DMCoreAutomation.ItemStoreFiles')
>>> ds = mod.Dispatch('DMCoreAutomation.ItemStoreFiles')
>>> ds

>>> ss = mod.IItemStoreFiles(ds)
>>> ss

>>> hisf = ss.LoadItemStore(file)
>>> dc = ss.GetItem(hisf, 497)
>>> dc

>>> sc = mod.IColorItem(dc)
>>> sc

>>> sc.GetItemKeyText()
u'[0x1007/017]'
>>> df = sc.GetItemFields()
>>> df
>>>

df here is None. Other IColorItem methods work correctly.

Here is the relevant bit from the makepy generated code:

def GetItemFields(self):
"""Get (DB parsed) item fields (returns DB parsed field 
interface)"""
ret = self._oleobj_.InvokeTypes(414, LCID, 1, (9, 0), (),)
if ret is not None:
ret = Dispatch(ret, 'GetItemFields', None, 
UnicodeToString=0)
return ret

>From pdb, self._oleobj_.InvokeTypes(414, LCID, 1, (9, 0), (),) is
returning None


Any idea what is going on?

Thanks,
Shoaev

-- 
http://mail.python.org/mailman/listinfo/python-list


CFP: DTVCS 2008 - Design, Testing and Formal Verification Techniques for Integrated Circuits and Systems

2008-02-17 Thread ss DTVCS
Apologies for any multiple copies received. We would appreciate it if you
could distribute
the following call for papers to any relevant mailing lists you know of.

 CALL FOR PAPERS

Special Session: Design, Testing and Formal Verification Techniques for
Integrated Circuits and Systems

DTVCS 2008

 August 18-20, 2008 (Kailua-Kona, Hawaii, USA)
 http://digilander.libero.it/systemcfl/dtvcs
=


Special Session in the IASTED International Conference on Circuits and
Systems (CS 2008)
-
The IASTED International Conference on Circuits and Systems (CS 2008) will
take place in
Kailua-Kona, Hawaii, USA, August 18-20, 2008.
URL: http://www.iasted.org/conferences/cfp-625.html.


Aims and Scope
-
The main target of the Special Session DTVCS is to bring together
engineering researchers,
computer scientists, practitioners and people from industry to exchange
theories, ideas,
techniques and experiences related to the areas of design, testing and
formal verification techniques
for integrated circuits and systems. Contributions on UML and formal
paradigms based on process algebras,
petri-nets, automaton theory and BDDs in the context of design, testing and
formal verification techniques
for integrated circuits and systems are also encouraged.

Topics
--
Topics of interest include, but are not limited to, the following:

* digital, analog, mixed-signal and RF test
* built-in self test
* ATPG
* theory and foundations: model checking, SAT-based methods, use of PSL,
compositional methods and probabilistic methods
* applications of formal methods: equivalence checking, CSP applications and
transaction-level verification
* verification through hybrid techniques
* verification methods based on hardware description/system-level languages
(e.g. VHDL, SystemVerilog and SystemC)
* testing and verification applications: tools, industrial experience
reports and case studies

Industrial Collaborators and Sponsors
--
This special session is partnered with:

* CEOL: Centre for Efficiency-Oriented Languages "Towards improved software
timing",
  University College Cork, Ireland (http://www.ceol.ucc.ie)
* International Software and Productivity Engineering Institute, USA (
http://www.intspei.com)
* Intelligent Support Ltd., United Kingdom (http://www.isupport-ltd.co.uk)
* Minteos, Italy (http://www.minteos.com)
* M.O.S.T., Italy (http://www.most.it)
* Electronic Center, Italy (http://www.el-center.com)
* Legale Fiscale, Italy (http://www.legalefiscale.it)

This special session is sponsored by:

* LS Industrial Systems, South Korea (http://eng.lsis.biz)
* Solari, Hong Kong (http://www.solari-hk.com/)

Technical Program Committee

* Prof. Vladimir Hahanov, Kharkov National University of Radio Electronics,
Ukraine
* Prof. Paolo Prinetto, Politecnico di Torino, Italy
* Prof. Alberto Macii, Politecnico di Torino, Italy
* Prof. Joongho Choi, University of Seoul, South Korea
* Prof. Wei Li, Fudan University, China
* Prof. Michel Schellekens, University College Cork, Ireland
* Prof. Franco Fummi, University of Verona, Italy
* Prof. Jun-Dong Cho, Sung Kyun Kwan University, South Korea
* Prof. AHM Zahirul Alam, International Islamic University Malaysia,
Malaysia
* Dr. Emanuel Popovici, University College Cork, Ireland
* Dr. Jong-Kug Seon, System LSI Lab., LS Industrial Systems Co. Ltd., South
Korea
* Dr. Umberto Rossi, STMicroelectronics, Italy
* Dr. Graziano Pravadelli, University of Verona, Italy
* Dr. Vladimir Pavlov, International Software and Productivity Engineering
Institute, USA
* Dr. Jinfeng Huang, Philips & LiteOn Digital Solutions Netherlands,
Advanced Research Centre,
The Netherlands
* Dr. Thierry Vallee, Georgia Southern University, Statesboro, Georgia, USA
* Dr. Menouer Boubekeur, University College Cork, Ireland
* Dr. Ana Sokolova, University of Salzburg, Austria
* Dr. Sergio Almerares, STMicroelectronics, Italy
* Ajay Patel (Director), Intelligent Support Ltd, United Kingdom
* Monica Donno (Director), Minteos, Italy
* Alessandro Carlo (Manager), Research and Development Centre of FIAT, Italy
* Yui Fai Lam (Manager), Microsystems Packaging Institute, Hong Kong
University of
   Science and Technology, Hong Kong

Important Dates
---
April 1, 2008: Deadline for submission of completed papers
May 15, 2008: Notification of acceptance/rejection to authors

Please visit our web-site for further information on the hosting conference
of DTVCS,
submission guidelines, proceedings and publicatio

CFP: DTVCS 2008 - Design, Testing and Formal Verification Techniques for Integrated Circuits and Systems

2008-02-19 Thread ss DTVCS
Apologies for any multiple copies received. We would appreciate it if you
could distribute
the following call for papers to any relevant mailing lists you know of.

 CALL FOR PAPERS

Special Session: Design, Testing and Formal Verification Techniques for
Integrated Circuits and Systems

DTVCS 2008

 August 18-20, 2008 (Kailua-Kona, Hawaii, USA)
 http://digilander.libero.it/systemcfl/dtvcs
=


Special Session in the IASTED International Conference on Circuits and
Systems (CS 2008)
-
The IASTED International Conference on Circuits and Systems (CS 2008) will
take place in
Kailua-Kona, Hawaii, USA, August 18-20, 2008.
URL: http://www.iasted.org/conferences/cfp-625.html.


Aims and Scope
---
The main target of the Special Session DTVCS is to bring together
engineering researchers,
computer scientists, practitioners and people from industry to exchange
theories, ideas,
techniques and experiences related to the areas of design, testing and
formal verification techniques
for integrated circuits and systems. Contributions on UML and formal
paradigms based on process algebras,
petri-nets, automaton theory and BDDs in the context of design, testing and
formal verification techniques
for integrated circuits and systems are also encouraged.

Topics
--
Topics of interest include, but are not limited to, the following:

* digital, analog, mixed-signal and RF test
* built-in self test
* ATPG
* theory and foundations: model checking, SAT-based methods, use of PSL,
compositional methods and probabilistic methods
* applications of formal methods: equivalence checking, CSP applications and
transaction-level verification
* verification through hybrid techniques
* verification methods based on hardware description/system-level languages
(e.g. VHDL, SystemVerilog and SystemC)
* testing and verification applications: tools, industrial experience
reports and case studies

Industrial Collaborators and Sponsors

This special session is partnered with:

* CEOL: Centre for Efficiency-Oriented Languages "Towards improved software
timing",
  University College Cork, Ireland (http://www.ceol.ucc.ie)
* International Software and Productivity Engineering Institute, USA (
http://www.intspei.com)
* Intelligent Support Ltd., United Kingdom (http://www.isupport-ltd.co.uk)
* Minteos, Italy (http://www.minteos.com)
* M.O.S.T., Italy (http://www.most.it)
* Electronic Center, Italy (http://www.el-center.com)
* Legale Fiscale, Italy (http://www.legalefiscale.it)

This special session is sponsored by:

* LS Industrial Systems, South Korea (http://eng.lsis.biz)
* Solari, Hong Kong (http://www.solari-hk.com/)

Technical Program Committee

* Prof. Vladimir Hahanov, Kharkov National University of Radio Electronics,
Ukraine
* Prof. Paolo Prinetto, Politecnico di Torino, Italy
* Prof. Alberto Macii, Politecnico di Torino, Italy
* Prof. Joongho Choi, University of Seoul, South Korea
* Prof. Wei Li, Fudan University, China
* Prof. Michel Schellekens, University College Cork, Ireland
* Prof. Franco Fummi, University of Verona, Italy
* Prof. Jun-Dong Cho, Sung Kyun Kwan University, South Korea
* Prof. AHM Zahirul Alam, International Islamic University Malaysia,
Malaysia
* Prof. Gregory Provan, University College Cork, Ireland
* Dr. Emanuel Popovici, University College Cork, Ireland
* Dr. Jong-Kug Seon, System LSI Lab., LS Industrial Systems Co. Ltd., South
Korea
* Dr. Umberto Rossi, STMicroelectronics, Italy
* Dr. Graziano Pravadelli, University of Verona, Italy
* Dr. Vladimir Pavlov, International Software and Productivity Engineering
Institute, USA
* Dr. Jinfeng Huang, Philips & LiteOn Digital Solutions Netherlands,
Advanced Research Centre,
The Netherlands
* Dr. Thierry Vallee, Georgia Southern University, Statesboro, Georgia, USA
* Dr. Menouer Boubekeur, University College Cork, Ireland
* Dr. Ana Sokolova, University of Salzburg, Austria
* Dr. Sergio Almerares, STMicroelectronics, Italy
* Ajay Patel (Director), Intelligent Support Ltd, United Kingdom
* Monica Donno (Director), Minteos, Italy
* Alessandro Carlo (Manager), Research and Development Centre of FIAT, Italy
* Yui Fai Lam (Manager), Microsystems Packaging Institute, Hong Kong
University of
   Science and Technology, Hong Kong

Important Dates
---
April 1, 2008: Deadline for submission of completed papers
May 15, 2008: Notification of acceptance/rejection to authors

Please visit our web-site for further information on the hosting conference
of DTVCS,
submission guideline

2nd CFP: DATICS 2008 - Design, Analysis and Tools for Integrated Circuits and Systems

2008-03-05 Thread ss . dtvcs
Apologies for any multiple copies received. We would appreciate it if
you could distribute
the following call for papers to any relevant mailing lists you know
of.

   2nd CALL FOR PAPERS
===
Special session: Design, Analysis and Tools for Integrated Circuits
and Systems

  DATICS 2008

 July 22-24, 2008 (Crete Island, Greece)
 http://digilander.libero.it/systemcfl/datics
===

Aims and Scope
--
The main target of the Special Session: DATICS 2008 of the WSEAS CSCC
multi-conference
(http://www.wseas.org/conferences/2008/greece/icc/) is to bring
together software/hardware
engineering researchers, computer scientists, practitioners and people
from industry to
exchange theories, ideas, techniques and experiences related to all
areas of design, analysis and
tools for integrated circuits (e.g. digital, analog and mixed-signal
circuits) and
systems (e.g. real-time, hybrid and embedded systems).
The special session also focuses on the field of formal methods and
low power design methodologies for integrated circuits.

Topics
--
Topics of interest include, but are not limited to, the following:
* digital, analog, mixed-signal designs and test
* RF design and test
* design-for-testability and built-in self test methodologies
* reconfigurable system design
* high-level synthesis
* EDA tools for design, testing and verification
* low power design methodologies
* network and system on-a-chip
* application-specific SoCs
* specification languages: SystemC, SystemVerilog and UML
* all areas of modelling, simulation and verification
* formal methods and formalisms (e.g. process algebras, petri-nets,
automaton theory and BDDs)
* real-time, hybrid and embedded systems
* software engineering (including real-time Java, real-time UML and
performance metrics)

Industrial Collaborators

DATICS 2008 is partnered with:
* CEOL: Centre for Efficiency-Oriented Languages "Towards improved
software timing",
  University College Cork, Ireland ( http://www.ceol.ucc.ie)
* International Software and Productivity Engineering Institute, USA
(http://www.intspei.com )
* Intelligent Support Ltd., United Kingdom (http://www.isupport-
ltd.co.uk)
* Minteos, Italy (http://www.minteos.com)
* M.O.S.T., Italy (http://www.most.it)
* Electronic Center, Italy (http://www.el-center.com)

DATICS 2008 is sponsored by:
1. LS Industrial Systems, South Korea (http://eng.lsis.biz)
2. Solari, Hong Kong (http://www.solari-hk.com)



Technical Program Committee
---
* Prof. Vladimir Hahanov, Kharkov National University of Radio
Electronics, Ukraine
* Prof. Paolo Prinetto, Politecnico di Torino, Italy
* Prof. Alberto Macii, Politecnico di Torino, Italy
* Prof. Joongho Choi, University of Seoul, South Korea
* Prof. Wei Li, Fudan University, China
* Prof. Michel Schellekens, University College Cork, Ireland
* Prof. Franco Fummi, University of Verona, Italy
* Prof. Jun-Dong Cho, Sung Kyun Kwan University, South Korea
* Prof. AHM Zahirul Alam, International Islamic University Malaysia,
Malaysia
* Prof. Gregory Provan, University College Cork, Ireland
* Dr. Emanuel Popovici, University College Cork, Ireland
* Dr. Jong-Kug Seon, Telemetrics Lab., LG Industrial Systems Co. Ltd.,
South Korea
* Dr. Umberto Rossi, STMicroelectronics, Italy
* Dr. Graziano Pravadelli, University of Verona, Italy
* Dr. Vladimir Pavlov, International Software and Productivity
Engineering Institute, USA
* Dr. Jinfeng Huang, Philips & LiteOn Digital Solutions Netherlands,
Advanced Research Centre,
The Netherlands
* Dr. Thierry Vallee, Georgia Southern University, Statesboro,
Georgia, USA
* Dr. Menouer Boubekeur, University College Cork, Ireland
* Dr. Ana Sokolova, University of Salzburg, Austria
* Dr. Sergio Almerares, STMicroelectronics, Italy
* Ajay Patel (Director), Intelligent Support Ltd, United Kingdom
* Monica Donno (Director), Minteos, Italy
* Alessandro Carlo (Manager), Research and Development Centre of FIAT,
Italy
* Yui Fai Lam (Manager), Microsystems Packaging Institute, Hong Kong
University of
   Science and Technology, Hong Kong

Important Dates
---
March 31, 2008: Deadline for submission of completed papers
May 1, 2008: Notification of acceptance/rejection to authors

Please visit our web-site for further information on the hosting
conference of DATICS,
submission guidelines, proceedings and publications and international
technical reviewers.

Best regards,

General Chair of DATICS: Dr. K.L. Man (University College Cork,
Ireland)
and
Organising Committee Chair: Miss Maria O'Keeffe (University College
Cork, Ireland)

-- 
http://mail.python.org/mailman/listinfo/python-list


DATICS'09 - Call For Papers

2008-08-11 Thread SS DATICS
Apologies for any multiple copies received. We would appreciate it if
you could distribute the following call for papers to any relevant mailing
lists you know
of.
--

DATICS: Design, Analysis and Tools for Integrated Circuits and
Systems event was created by a network of researchers and engineers
both from academia and industry. The first edition took place in Crete
Island, Greece, July 22-24, 2008 (
http://digilander.libero.it/systemcfl/datics).

Main target of DATICS'09 is to bring together
software/hardware engineering researchers, computer scientists,
practitioners and people from industry to exchange theories, ideas,
techniques and experiences related to all areas of design, analysis
and tools for integrated circuits (e.g. digital, analog and
mixed-signal circuits) and systems (e.g. real-time, hybrid and
embedded systems).

DATICS'09 also focuses on the field of formal methods, wireless sensor
networks (WSNs) and low power design methodologies for integrated circuits
and systems.


Topics of interest include, but are not limited to, the following:

* digital, analog, mixed-signal designs and test
* RF design and test
* design-for-testability and built-in self test methodologies
* reconfigurable system design
* high-level synthesis
* EDA tools for design, testing and verification
* low power design methodologies
* network and system on-a-chip
* application-specific SoCs
* wireless sensor networks (WSNs)
* specification languages: SystemC, SystemVerilog and UML
* all areas of modelling, simulation and verification
* formal methods and formalisms (e.g. process algebras, petri-nets,
automaton theory and BDDs)
* real-time, hybrid and embedded systems
* software engineering (including real-time Java, real-time UML and
performance metrics)


DATICS'09 has been organised into two special sessions:

* DATICS-IMECS'09
  (http://digilander.libero.it/systemcfl/datics09-imecs) will
  be hosted by the International MultiConference of Engineers and
  Computer Scientists 2009 (IMECS'09) which will take place in Hong
Kong, 18-20 March, 2009.

* DATICS-ICIEA'09
  (http://digilander.libero.it/systemcfl/datics09-iciea) will
  be hosted by the 4th IEEE Conference on
  Industrial Electronics and Applications (ICIEA'09) which will
  take place in Xi'an, China, 25-27 May, 2009.


Please visit the DATICS-IMECS'09 and  DATICS-ICIEA'09 websites for
paper submission guidelines, proceedings, publication indexing,
submission deadlines, International Program Committee and sponsors.

For any additional information, please contact

Dr. K.L. Man
University College Cork (UCC), Ireland
Email: [EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list

International Workshop: DATICS-ISPA'11 (EI Indexed)

2010-12-14 Thread SS DATICS
Dear authors,

=
International Workshop: DATICS-ISPA'11
CALL FOR PAPERS

http://datics.nesea-conference.org/datics-ispa2011
Busan, Korea, 26-28 May, 2011.
=

Aims and Scope of DATICS-ISPA’11 Workshop:

DATICS Workshops were initially created by a network of researchers
and engineers both from academia and industry in the areas of Design,
Analysis and Tools for Integrated Circuits and Systems. Recently,
DATICS has been extended to the fields of Communication, Computer
Science, Software Engineering and Information Technology.
The main target of DATICS-ISPA’11 is to bring together
software/hardware engineering researchers, computer scientists,
practitioners and people from industry to exchange theories, ideas,
techniques and experiences related to all aspects of DATICS.

Topics of interest include, but are not limited to, the following:

Circuits, Systems and Communications:

digital, analog, mixed-signal, VLSI, asynchronous and RF design
processor and memory
DSP and FPGA/ASIC-based design
synthesis and physical design
embedded system hardware/software co-design
CAD/EDA methodologies and tools
statistical timing analysis and low power design methodologies
network/system on-a-chip and applications
hardware description languages, SystemC and SystemVerilog
simulation, verification and test technology
semiconductor devices and solid-state circuits
fuzzy and neural networks
communication signal processing
mobile and wireless communications
peer-to-peer video streaming and multimedia communications
communication channel modeling
antenna
radio-wave propagation

Computer Science, Software Engineering and Information Technology:

equivalence checking, model checking, SAT-based methods, compositional
methods and probabilistic methods
graph theory, process algebras, petri-nets, automaton theory, BDDs and UML
formal methods
distributed, real-time and hybrid systems
reversible computing and biocomputing
software architecture and design
software testing and analysis
software dependability, safety and reliability
programming languages, tools and environments
face detection and recognition
database and data mining
image and video processing
watermarking
artificial intelligence
average-case analysis and worst-case analysis
design and programming methodologies for network protocols and applications
coding, cryptography algorithms and security protocols
evolutionary computation
numerical algorithms
e-commerce



Please note that all accepted papers will be included in IEEE Xplore
and indexed by EI Compendex. After workshop, several special issues of
international journals such as IJDATICS and IJCECS will be arranged
for selected papers.

For more details about DATICS-ISPA'11, please visit
http://datics.nesea-conference.org/datics-ispa2011
-- 
http://mail.python.org/mailman/listinfo/python-list