some sources about silverlight 3D programming:
Latest Updates: programming RSS
-
liduan
-
liduan
using python get current timestamp
>>>import time
>>>time.time()
//currenting timestamp to int
>>>int(time.time())
//converting to string
>>>str(time.time())
-
liduan
using python get friend timeline in twitter. following tools should be used:
python-simplejson
first install python-simplejson, if in ubuntu, just using command as follows
$apt-get install python-simplejson
then, downloading python-twitter , unpackage it. then using command
$ python setup.py build $ python setup.py install
then, open python.
>>> import twitter
>>> api = twitter.Api(“username”, “passworld”)
>>> posts = api.GetFriendsTimeline(‘username’)
>>> print [post.text in post as posts ];
for the file, the script should be liked:
import twitter
class mytwitter():def __init__(self):
self._config = Nonedef main():
api = twitter.Api('username', 'passworld')
posts = api.GetFriendsTimeline('username')
for post in posts:
print post.text.encode('utf-8')if __name__ == "__main__":
main()
-
liduan
very simple CMS system build by php. it provides support for mysql database, but not support template.
-
liduan
using c read each char and covert to long int:
while(*buffer != ‘\n’);
{
read(fileName, buffer, 1);
printf(” Byte: %s”, buffer);
}good way.
-
liduan
C / ANSI-C examples (example source code) Organized by topic
-
liduan
some sources for developing web server by c.
1. a simple httpd called tiny httpd.
2. “Illustrated Guide to HTTP” is a book for devemoping web server.
-
liduan
-
liduan
Typical Java Commands. using command java javac and jar to do java development work.
-
liduan
google maps provide api for flash client. a tutorial for using google maps api by flex sdk. other one tutorial for installing and using google maps in flex.
-
liduan
a simple tutorial for kde4 widget development.
-
liduan
some good tutorial for flex list:
Making a horizontal list with clickable images as members
Flex – overriding scrollToIndex in HorizontalList to animate scrolling
Setting alternating colors on a Flex HorizontalList control
Creating a simple image gallery with the Flex HorizontalList control
The TileList control displays a number of items laid out in tiles.
-
liduan
some resources about papervision3D:
-
23 Papervision3D Primitives (17 new ones)
-
Getting Started with Papervision GW
- flex 3 cook book provide very good example for papervision programming.
- Geocoding, work with yahoo map, dome.
-
Papervision3d Tutorials in Flex 3
-
-
liduan
I found a http server that developed by python. but it is not multiple thread. it provide simple service for http request and dir request. and a other python http server tutorial is here.
-
liduan
a simple http server that developed by java. based on the multiple thread. provide a simple log system. it is a good simple to research http work in the java.
-
liduan
papervision3D is based on flex 3, it also can integrate with flex3 mxml format. see here an example. other example is use to enable papervistion 3D effect for flex. it provide sources downlaod.
-
liduan
papervision 3D is a realtime flash 3D engine, the most import is it support flex 2. there are two examples for demo. other 3D form example can be found at here.
-
liduan
swc file is an archive for flex or actionscript components and other assets. using one or more swc files in the flex project can by following command:
mxmlc -library-path+=path\SwcFileName_1.swc,path\SwcFileName_2.swc FlexAppName.mxml -
liduan
using SpringGraph for any flex project:
SpringGraph is a 2D data visualization API based on the flex 2. I have used flex 3 sdk to demo the example of spring graph.
first of all, a package should be downloaded for using SpringGraph at developer blog. Extracting the package, copy
./SpringGraph/bin/SpringGraph.swcto the directory named simple.The package provides five examples for testing SpringGraph. going into simple SpringGraphDemo. using command to compile the mxml file, like:
mxmlc -library-path+=../SpringGraph.swc SpringGraphDemo.mxmlthan using a flash player open SpringGraphDemo.swf. the interface should like this example.
-
liduan
Create A 3D Product Viewer in Flex 3, simplily tutorial 3D graph programming by flex.
-
liduan
-
flex/actionscript 3 engine for 3D: 1. s ...
liduan
flex/actionscript 3 engine for 3D:
1. sandy 3d engine with examples
2. jp Sharikura 3D Library
3. Alternativa 3D API with a good example -
liduan
a example of facebook api programming by flex. Implement a Facebook photo album using the Flex SDK. the facebook as3 client should be used.
-
liduan
zoom in and zoom out in the opengl project.
OpenGL 3D Navigation glRotatef, glTranslatef, gluLookAt EP_OpenGL_005, Zoom in openGL -
liduan
-
liduan
two example for 3D openGL programming.
Example: movingLight.c, Luminous opengl Objects Example -
liduan
using split convert string to array. and a Perl functions tutorial.
-
liduan
some sources of perl programming:
Perl’s Special Variables
Reading STDERR from a Program
Perl File Handling: open, read, write and close files
Using Perl to Manage Plist Files, Part 2 -
liduan
orkut Developer’s Guide by google. It can be used to guide orkut api programming.
-
liduan
perfect example for How to Get Profile Picture. include get name, affiliation and more detail info.