Programming :: Oscillating Number Script Written In Thyme?
Mar 29, 2010
I'm playing around with a 2D physics game called Phun, which has an "advanced" mode, where you can mess around with scripts. I'm rather new to Thyme, having just started using it a few days ago, lol. I'm just wondering if there's a script I could use to create an oscillating number to use in a spring (in the game) for one of my little builds?
View 13 Replies
ADVERTISEMENT
Apr 6, 2011
I wanted to develop a cross platform GUI application.So I thought I would research on Firefox.I havent been able to find out which GUI framework is FireFox using ?Is it GTK, QT, or what ?
View 14 Replies
View Related
Oct 21, 2010
I just tried the simplest 'Hello world' example as below.
Code:
#include <stdio.h>
int main()
{
printf("Content-type: text/html
");
[Code]...
Code: gcc -o hello.cgi hello.c Also grand a+x to the file and enable *.pl and *.cgi for cgi-script at apache2.conf The server reminds me 'Internal Server error' The weird thing is that I have a perl cgi in the same place with same privilege, which works perfect...
[Code]....
View 4 Replies
View Related
May 13, 2010
I noticed there's a new JRE in town, the upgrade 20, I still use the 13. What will the up to 20 do for the software I write? I use openJDK (came with the Fedora I use) to write software, and the JRE to use it in the browser, I needed to see the Java console, hence the need for the Sun JRE...
So: bottomline: if I upgrade to the new JRE - use the alternatives configurator to use that in the browser, will the software written in the current JDK (1.6) still work? Or: is Java downward compatible?
PS : I dont use anything fancy, just RMI, mySQL connectivity and a bit of Swing...
View 1 Replies
View Related
Aug 7, 2010
From the following code
Code:
<table width="100%" border="0" cellspacing="3" cellpadding="3">
<tr>
<td colspan="2"><p style="width:460px; display:block;">
I wan to get this text only from the whole html code. </p></td> From the above code I want to get that english written sentence only using php preg_match or anything other which makes it possible. I've tried following so far but doesn't work
Code:
preg_match("#<td colspan="2"><p style="width:460px; display:block;">[ .]+</p>#i", $aboveCode, $match);
View 5 Replies
View Related
Jul 14, 2009
How to use execv from kernel space to call a user space program writtenfor socket prog.
I tried to write code for socket in kernel but its not working.
Socket code in kernel is also needed.
View 2 Replies
View Related
Feb 1, 2010
I have some code that opens a directory and reads in the names of files which are e.g. 0001, 0002, 0003 up to 9999I need to get all these numbers and then generate a new number that is not one of these numbers already.here is my code to check the files in the directory
DIR *d;
struct dirent *dir;
int i = 0;
[code]....
View 11 Replies
View Related
Jul 7, 2011
But what is the easiest way to figure out the Unicode number of a character when you already have the character?
For instance, I pasted this character here from a PDF:
View 4 Replies
View Related
Apr 13, 2011
Anybody knows How can I get the number of cores of a machine?I know that I can use POPEN and get the stream of this:
Code:
grep -i 'processor' /proc/cpuinfo | wc -l
But, I think that a simple method to do this.
View 10 Replies
View Related
Mar 4, 2011
i want to generate random number in c programming from -1 to 1
View 1 Replies
View Related
Aug 6, 2010
1) I need to search a field value to check for exact 0. If the number is 0, it should throw error.
The line to be searched looks like as below. "Output Rows [1], Affected Rows [1], Applied Rows [1], Rejected Rows [0]"
Here I have to search whether the affected rows is 0. But the code below picks up other values also (lie 10, 20.. etc). How do we write to get an exact match for 0? Code: affected=`echo ${line} | cut -f6 -d" " `
affectedcount='echo ${affected} |grep 0 ` 2) Also, I need to check whether the rejected rows > 0
Code: rejected=`echo ${line} | cut -f12 -d" " `
rejectedcount='echo {rejected} |grep [1-9]`
3)Can we combine these two statements in a better way to get the desired results?
View 2 Replies
View Related
Apr 30, 2011
I've created (as a homework) to create as many folders as told but I still need to check if the variable is a number or not :
Code: #!/bin/sh
echo "Veuillez saisir un nombre"; read nmbr
nmbrf=$nmbr
while [ $nmbrf -gt 0 ]
do mkdir -p "foo$nmbrf"
nmbrf=`expr $nmbrf - 1`
echo "$nmbrf"
how do I check that nmbr is a number or something else?
View 1 Replies
View Related
Jan 10, 2011
I try to get the absolute value of a floating number but i could not until now. I am using bash script btw.lets say A is a floating number:A=-0.125
Code:
absA=$(echo '$A' | nawk '{print ($1>=0)? $1:0-$1}')
the above code gives absA=0, whereas
[code]....
View 2 Replies
View Related
Jul 7, 2011
I'm having a hard time trying to get the number of digits in a uint64_t variable. The reason I'm using this is I want to make sure I get x amount of digits inside of a variable before I use it, but since the higher the digits, the better the program is.I currently use the following code, and it works, but my loop will never exit because the length is always 0:
Code:
/**
* numbdigits()
* number: The number to evaluate [in]
*
* Returns the number of digits found in a number.
[code]....
getrand() returns a uint64_t as well (and works). The only way the while() loop ends without my intervention is if I do curd += numdigits(val) instead...but, that gives a false value as well.
View 7 Replies
View Related
Jan 27, 2011
I have a char*[] array:
Code:
char* myarray[] = {"Hello", "there!", "LQ"};
and I wish to use/ write a function to find the number of elements in myarray (in this case, its 3).
*equivalent of .NET's array.size() that returns number of elements in array
How do I achieve it?
View 7 Replies
View Related
Apr 23, 2009
I have a text file that contains the following string of numbers and letters:
Code:
Mean track length: 3.45 +/- 1.23 mm
or
Code:
Mean track length: 22.45 +/- 12.23 mm
In the first example, I would like to grab only 3.45 and write it into a new file. Then I would like to grab only 1.23 and write it into another file.
I have 80,000 files to do and those numbers can be different every time.
View 9 Replies
View Related
May 9, 2010
I want to be able to run a piece of AWK code on a record specified by number, not by a regex.
View 6 Replies
View Related
Jun 16, 2010
User submits a ms word file, and the php can recognize the number of words? Is it only possible for ms win server?
View 1 Replies
View Related
May 10, 2011
How can I know what number descriptor is used by my usb device indicate via libusb_device_handle structure ? I can't find declaration of libusb_device_handle structure. I need this information to use poll() function where I need decripttion number of device.
View 1 Replies
View Related
May 10, 2011
How can I know what number descriptor is used by my usb device indicate via libusb_device_handle structure ? I can't find declaration of libusb_device_handle structure. I need this information to use poll() function where I need decripttion number of device.
View 4 Replies
View Related
May 15, 2011
How can i get bc to subtract negative numbers?
View 10 Replies
View Related
Feb 3, 2010
In C, how can I declare multiple variables at once where the number that needs to be declared is unknown to the programmer.For example, a program that needs to declare some number of integers, but the user will tell the program how many integers to declare. Such as:
x1
x2
x3
x4
x5
.
.
.
Where the programmer doesn't know how many need to be declare you setup theinitialization?
View 11 Replies
View Related
Nov 29, 2010
Goal:assign integers into array form string.
From string
"123,456,789,0123,4567,8901" (comma separated 6 integer numbers)
To array
[code]....
View 2 Replies
View Related
Jun 8, 2011
IS there any command to see number of threads are running in a process .I have check ps -eLf but it wont show display for all the threads
View 1 Replies
View Related
Feb 22, 2010
Code:
FILE_SIZE=`find /var/logs/ -type f -mtime +5 | wc -c`
im trying to convert FILE_SIZE into megabytes
[code]....
View 8 Replies
View Related
Dec 15, 2008
I need to write a script which will get a number from STDIN and then with that number echo a set number of questions (its for a firewall config). Heres what I want the user to receive.
How many ports do you want open? 3
1. specify port: 80
2. specify port: 21
3. specify port: 23
In the background this will echo a command out to a text file which will read as follows:
open port 80
open port 21
open port 23
I've done this before but I've completely forgotten how
View 2 Replies
View Related
Dec 10, 2008
I have something like this:
$arr_hash{'produce'}{'veggies'}[0] = Broccoli
$arr_hash{'produce'}{'veggies'}[1] = Cauliflower
$arr_hash{'produce'}{'veggies'}[2] = Carrots
[code]...
View 2 Replies
View Related
Jun 11, 2010
E.g. 98 is represented as 1100010 (number of valid bits is 7)
What is the formula to calculate the number of valid bits in a byte ?
View 14 Replies
View Related
Jun 24, 2010
I am working on debian based OS and my query is,how to make detect the Number of NIC's plugged on a PC.
I describe it: Exact requirement would, assume, If I plug 3 NIC's for a PC,one for Internal Network,one for External Network and Other remaining one for DMZ,so I need to make an application(Firewall Kind)in such a way that,once my PC is started,it should detect how many NIC's are plugged and Whats their role played(As Mentioned above)..?
I hope u guys got a basic idea on what and how it it can be implemented..
I request to send some clues,or some related URL's/Tutorials or which part of the Linux File System needs to be edited(/etc or/proc),etc.
View 2 Replies
View Related
Aug 19, 2010
anyone know that the ntfs's file sytem struct? is there's a API or something other could let me get this number? Or there is actually no such number in windows like the number of inode in linux?
View 1 Replies
View Related