This Friday, April 9th at 19:00 UTC is the deadline for students to apply to this year's Google Summer of Code . The Chromium project has been accepted...
<b>Howtoforge:</b> "This tutorial shows how to harden PHP5 with Suhosin on a CentOS 5.4 server. From the Suhosin project page: "Suhosin is an advanced protection system for PHP installations that was designed to protect servers and users from known and unknown flaws in PHP applications and the PHP core."
My friend recently finished hes personal work on a project that fixes a known bug in sharepoint 2010, the guy spent significant time\effort to reach this point
He consulted me on how to license this fix and asked if this possible and is it accepted for a such type of solutions!
actually I don't have any experiences in this matter especially that he is willing to start selling the fix and don't want to be lost in the market
P.S.: hes current location is U.A.E
TIA.
Search engine optimization is referred as the addition and amendments of all the variables and extended variables of a web portal in the hope of achieving a better place in the search engines. SEO Company provides the service of creating and adjusting all the variables that are involved in such a useful service in order to get the website in the best position. During the elected project time period, a website can easily reach on all the major search engines.
How do I set Unity3D to run my game on Windows 8 in a fixed size frame (with a border around it) and not in fullscreen?
I tried setting this in the Unity script and in the final C# project, but nothings seems to work.
I have set the players resolution to 1366x786 (the desired size) and while this works fine with the webplayer the windows 8 solution seems really unimpressed by it. I also tinkered with the 'Default Is Full Screen' option
Microsoft Platform Ready provides technical and marketing resources for companies building applications for the Microsoft platform. Currently they are working with The Code Project on a promotion that will pay $250 USD to companies for their FIRST Windows Azure Application that is verified compatible using the Microsoft Platform Ready testing tools. The contest is valid only through 21 June 2011 12:00 PST in the US only, but the walkthrough I’m about to show will work for any company who wishes to confirm and verify to customers that their application is running correctly on Windows Azure.
Originally posted on: http://geekswithblogs.net/TATWORTH/archive/2013/10/20/apress-deal-of-the-day-20oct2013---windows-8-app.aspxToday's $10 deal of the day from APress at http://www.apress.com/9781430250654 is Windows 8 App Projects - XAML and C# Edition
"Windows 8 App Projects - XAML and C# Edition takes you through the process of building your own apps for Windows 8 in a project oriented, example driven way. The book is aimed at developers looking to build Windows 8 apps in a variety of contexts."
Listen to Stuart Dunsmore, Sr. Director of UPK and Tutor Development discuss the pre-built content available for E-Business Suite R12. Learn how this recently released content can help your customers throughout the Applications Lifecycle, from the start of an implementation or upgrade project, through go-live and beyond.
Hi,
I just wondered if anyone had any tricks or programs they used when comparing two of the same file but different versions?
I appear to have foolishly made a modification at some point today (Went a few hours without running any tests) and it has stopped the whole project working - without throwing up any errors so it must be subtle whatever I have done.
I just thought that there must be a program out there that might highlight differences etc.
Otherwise, a step by step search might be in order!
Thanks
I'm going on vacation to Paris, France for 10 days. Actually, it's my girlfriend's wish to go there but I'm not very interested in visiting, sightseeing, etc. Recently, I came up with an idea of trying to do something like programming tourism. :)
I'd like to do something related to programming in a startup-like company. I do not want a salary or any kind of compensation. I want to overview process, social aspects, environment and "what it feels like" to development software in another country.
I'm from Russia. I've been a software developer since 2003. I prefer C#4 but I'm ready to use anything Turing-complete. I have some MS certifications and am familiar with all .NETs since 1.1.
Currently I'm finishing PhD in CS. I'm interested in multidimensional indexing and I can turn any piece of data and code to OLAP system. :) But it'd take too much time.
What can I do? I have no more than one week. I want a totally complete project in a short amount of time.
Implement some features in well-tested project
Do a code review
Debug memory, performance and concurrency issues
Do unit testing
So, about the questions:
Is it legal? I'm ready to sign NDA if it's necessary. I'll have tourist visa.
Is it possible? I'm really sure that bureaucratic companies with lots of HRs and PMs will not allow such experiments. But small companies can afford it. I'm ready to guarantee support on my code after leaving home :)
P.S. I still havn't started learning French :) I hope it will not take too much time :)
P.P.S.
Yes, it's girlfriend-approved.
What's in it for me? It's fun. It's fun to see new systems and people who created them. It's fun to complete meaningful things. Quickly.
What's in it for them? Feature, debug, review or test. If my short-term colleagues will like this style of working I can invite them to make same trip into my company :) I think in Russia it's even more exciting :)
Sortie de Debian 6.0.0 Squeeze
Le Debian Project l'avait annoncé ce 31 janvier 2011, la sortie officielle de Debian 6.0, plus connue sous le nom de Squeeze l'extraterrestre à 3 yeux, était iminente.
Et bien, c'est chose faite ! Le passage en version stable de Squeeze a eu lieu ce week-end et pour l'occasion, le site web du projet a subi un rajeunissement.
Citation:
Envoyé par [email protected]
Release Manage...
How to make application for wifi triangulation using android platform? This project will be implemented inside the building. No GPS needed. Just using wifi only and doing triangulation to get the current position of the user inside the building. I got minimum 3 access point to implement it. But how to start code in android and integrate triangulation inside android coding?
I got the algorithm to do it.. but is there any chance that I can get it done? Because this project is actually want to replace the floor directory board into a smartphone floor directory so that user can find their way to their room for example to the lab.
public class Triangulation
{
public Triangulation()
{
int dist_1, dist_2, dist_3; //variable for the distances
int x1, x2, x3; //coordinates of x
int y1, y2, y3; //coordinates of y
int final_dist1, final_dist2; //final distance after calc
dist_1 = 1;
dist_2 = 2;
dist_3 = 3;
x1 = 5; //test inputs
x2 = 2;
x3 = 4;
y1 = 2;
y2 = 2;
y3 = 5;
final_dist1 = ((dist_1 * dist_1) - (dist_2 * dist_2) – (x1 * x1) + (x2 * x2) - (y1 * y1) + (y2 * y2)) / 2;
final_dist2 = ((dist_2 * dist_2) - (dist_3 * dist_3) – (x2 * x2) + (x3 * x3) - (y2 * y2) + (y3 * y3)) / 2;
initial_a1 = x1 - x2; initial_a2 = x2 - x3; initial_b1 = y1 - y2; initial_b2 = y2 - y3; //-----------------------STEP 1--------------------------------------
int a1 = initial_a1 / initial_a1;
int a2 = initial_a2 / initial_a1;
int b1 = initial_b1 / initial_a1;
int b2 = initial_b2 / initial_a1;
final_dist1 /= initial_a1;
final_dist2 /= initial_a1;
//-----------------------STEP 2--------------------------------------
a2 = a2 -a2;
final_dist2 = -(initial_a2) * final_dist1 + final_dist2;
//-----------------------STEP 3--------------------------------------
a2 /= b2; final_dist2 = final_dist2 / b2; b2 /= b2;
//-------------------------STEP 4-----------------------------------
b1 = b1 - b1; final_dist1 = -(initial_b1) * final_dist2 + final_dist1;
}
}
I just got a new laptop, HP dm4, and I'm having problems getting the audio to work properly on it.
http://www.alsa-project.org/db/?f=7b697a35465a9f7236fb94deb9ff97fa65e55489
I tried to edit /etc/modprobe.d/alsa-base.conf and added:
option snd-hda-intel model=ref
this caused the audio to work, but it's muffled. I'm wondering if anybody knows what would be the correct options to get this POS to work.
Thanks in advance
I'm in the final year of my Computer Science degree, and I'm starting to look at what I can work on as a final-year project. I've been looking at creating a Kinect application, but I'm not sure if I have the necessary background to get involved in its development.
What should I know before starting Kinect development? Are there areas of programming I should have a background in in order to understand what I need to do to create a Kinect app?
I have tried to differentiate two models of outsourcing projects with their advantages and disadvantages. One can assign a fixed cost PHP programming project or one can hire a full time PHP programmer for one or more projects.
<b>LinuxCommand.org:</b> "It's quite possible that a script that you wrote ten years ago still works perfectly well today. But even so, every few years the GNU Project releases a new version of bash."
Can someone explain to me how are effected the performances of an Access 2003 DB when it's used by a lot (30) of users on the same LAN?
I'm working on a vb6 project with this access 2003 DB wich performs ok on my local PC, but it's terrible when used across 20-30 users.
It's there something I can do to improve performance? How can I understand what's the cause of this degradation in performance?
I'm writing a 2d particle system for a game in Pygame[1].
For the particles, I have an image surface loaded from a file -- basically a white primitive drawn over a transparent background.
I'd like the particle engine to emit variously colored particles, but I'm not sure how to tell Pygame to color the surface.
I've looked through what passes for documentation, but I'm having trouble finding anything.
[1] Yeah, I don't really like Pygame, but my course insists I write this project in Python.
I am developing a project, In that I have a receipt page (this is the html page that I want to convert it into pdf) and I've to print it. While printing that page alignments are not coming properly.
If I convert it into pdf, then pdf only will take care of that alignments thus my work will become easy and effective. I was restricted to use either JavaScript or js libraries only to complete this task.
Could any of you please help me?
<b>LWN.net:</b> "Trademarks and free software can make a volatile mix. It is understandable that a project would want to ensure that code shipping under its name is "the real McCoy", but modifying the source and distributing the result is a hallmark of free software."
If you are looking for a developer to hire for web development project from an offshore consulting, hire a WordPress developer. There are some interesting facts shared here for your study.
OS Roundup: Will the open source server OS from what was once Sun Microsystems soon be known as the project formerly known as OpenSolaris? It's beginning to seem like it.
OS Roundup: Will the open source server OS from what was once Sun Microsystems soon be known as the project formerly known as OpenSolaris? It's beginning to seem like it.
I am working on an application which deals with all kinds of USB storage devices(such as taking backup, updating DataLogFile etc)
My problem is :
I want to write a shell script which is stored in this USB drive(As usb is at center of my project so USB is going to be same but PC's will change) AND this script should be executed as soon as the USB drive is connected to my Linux system.I will not need any kind of "root" or "sudo" permissions for other tasks which I am going to do in this shell script.
<b>CNet:</b> "IBM is embarking on a research project to design mobile gadgets that are easier to use for people who have disabilities or aren't fully literate."