topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday March 28, 2024, 1:56 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Killeroid [ switch to compact view ]

Pages: [1]
1
All the files were encoded wrongly before transit and when i got them, all of them had 18 bytes of junk prepended to each file.

2
Alright, I finally found a fix using bash and dd on linux.

Code: Text [Select]
  1. #!/bin/bash
  2. #Reads all files ending in specified extension in folder, deletes first X bytes and then saves the modified file as prefix.oldname
  3. X=18                 #Number of bytes to delete from file
  4. EXT=jpg             #File extension of files being modified
  5. PREFIX=new       #The prefix prepended to the filename to after moifying the file
  6.  
  7. for file in $(echo *.$EXT); do dd ibs=$X skip=1 if=${file} of=$PREFIX.${file}; done

3
I have a folder full of binary files. The first 18 bytes of each file needs to be deleted. Maybe someone can help? Thanks in advance

4
Post New Requests Here / Re: IDEA: Simple php directory
« on: January 07, 2008, 10:59 AM »
phpFormGenerator will work for the accepting of data from users and storing it in a mysql database.. I dont know about phpmyadmin (basically, i ust want a script that will access the mysql database and print out and display the list of users and the sip adresses that i collected using the form and stored in the database.). It would be a great bonus if users could also seach through the database and find users by their usernames or voip numbers.
Basically, a phone directory script that lists the names and sip adresses of users and if easily done, also contains a search function so that you can search usng either fields.

5
Post New Requests Here / Re: IDEA: Simple php directory
« on: January 07, 2008, 10:37 AM »
It needs to be somthing that i can host.

6
Post New Requests Here / IDEA: Simple php directory
« on: January 07, 2008, 01:52 AM »
Hello, I am basically looking for a simple script, that will accept user input from a form (these two fields: name/nickname and sip address) and then store it in a mysql database. The script should be able to display the list of users and the sip addresses(25-50 uses a page). Thanks a lot.

7
From what i can see, the name of the file changes everytime it is updated, right?

no, it doesnt. I noticed that the latest file can also be found here in the folder with the highest name(the folders are named like this    "linux epoch time. svn revision number" ) So the latest build will be in the folder with the biggest name. Hope thats understandable and of any help. Thanks

8
Hi, I am just looking for someone to make an extension or an external app that would download the current flock browser developmental/trunk windows build and then run the installer every two hours(or any amount of time the user specifies). The latest flock windows build can be found here or there.

You can contact me if anymore info is needed:  killeroid [at] killeroid dot com

Pages: [1]