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...
Google I/O Sandbox Case Study: MobileASL
We interviewed MobileASL at the Google I/O Sandbox on May 11, 2011 and they explained to us the benefits of developing their accessibility applications on the Android platform. MobileASL is a video compression project that aims to make sign language communication on mobile phones a reality. For more information on Accessibility Developers, visit: google.com For more information on MobileASL, visit: mobileasl.cs.washington.edu
From:
GoogleDevelopers
Views:
14
0
ratings
Time:
01:57
More in
Science & Technology
The Silverlight HyperVideo project ran full steam from January through the day before Mix, and then went on hiatus while we all recovered, and while I pondered three critical questions:
What features and changes are needed to bring the HVP up to the point that we can offer it for use by Silverlight.net and related sites [...]...Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here.
Web Designers and Developers seem to compete for projects, so it seems only natural to find the source of business from the start and hopefully bid and win the job over "the other guy". Other industry specialists such as Domain Investors and other Web Developers already have the projects and established capital, marketing plan, and usually a concept for their project or campaign and you better believe they need your assistance.
<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."
There are tons of resources on the web referring to and listing code smells. However, I've never seen information on architectural smells. Is this defined somewhere, and is there a list available? Has any formal research been done into architecture defects, and their impact on project speed, defects, and the like?
Edit: I wasn't really looking for a list in the answers, but documentation (on the web or in a book) about architecture smells.
When it comes to search engine optimization (also known as SEO), content is king and link building is queen. What actually is link building? How does it impact a search engine optimization project and help improve search engine rankings and traffic to your website?
<b>The Register: </b>"Apple Safari's new "make web go away" button is based on an open source project distributed under the Apache 2 license. And that's news to the open sourcers."
Well I'm working on a personal project that needs to check if a user has met certain requirements, and they come in a form of
Requirement: [c1 OR c2] AND [d1 OR d2]
Requirement: [c1 AND c2] OR [d1 AND d2]
Requirement: c1 AND any dn(n can be any integer)
I'm just not sure how to store these sorts of requirements, I'm thinking of using another object to hold c1,c2,d1,d2....dn and OR, but that seems like a roundabout way of doing things. Is there a better method?
I'm doing some research for a project and I'm trying to find out what are the 5 most-used server-side languages.
I found this chart (http://i.stack.imgur.com/vPXgR.jpg) on css-tricks.com (produced from a poll the site owner ran), but in the comments, some suggested that the poll may be skewed in favor of php because most of the site visitors are designers.
I'm not sure if this chart looks realistic. Does anyone know of similar stats?
If you want to use ASP.NET MVC but is strugling to get things arrange to confidently use for your next business project. This Article is just for you. The article guide you to use ASP.NET MVC to architect a small Document Management System....Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here.
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.
I have two lines of basic C# code System.IO.Directory.CreateDirectory(path); return System.IO.Directory.Exists(path); I want to bury this in a C Win32 Project. My effort so far (that does not work and I do not understand the error messages) is: #using mscorlib.dll using namespace System; using namespace System::IO; bool* clrcall;bool CDirectory(String path) { DirectoryInfo d Directory::CreateDirec...
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.
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
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
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;
}
}
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.
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."
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 :)
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
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...
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.
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?