Hey all,
I am hiring an entry level web programmer for the winter and would like to
know what you would suggest to be a good starting salary. We are a small
company that deals with serving users with portal services, such as database
portals, collaboration portals, e-learning portals, web services, and simple
PHP + MySQL websites. What would you want to be paid? Please be reasonable
cause I am going to base someones salary on these statistics.
Also please only respond directly to me, not to this list. No use clogging
it up.
Thanks,
Rick Langschultz
I found that SCM is not started in livecd. This is wrong imho (I use
livecd to debug ROS and I need SCM).
This small patch will fix this.
Index: winlogon.c
===================================================================
--- winlogon.c (revision 16707)
+++ winlogon.c (working copy)
@@ -593,6 +593,8 @@
DbgPrint("WL: Cannot switch to Winlogon desktop (0x%X)\n", GetLastError());
}
+ InitServices();
+
/* Check for pending setup */
if (GetSetupType () != 0)
{
@@ -616,8 +618,6 @@
return 2;
}
- InitServices();
-
#if 0
/* real winlogon uses "Winlogon" */
RtlInitUnicodeString((PUNICODE_STRING)&ProcessName, L"Winlogon");
Agreed. This is a perfect opportunity to bring in the new website.
-----Original Message-----
From: mf [mailto:mf@mufunyo.net]
Sent: 23 July 2005 11:27
To: ros-dev(a)reactos.com
Cc: ros-general(a)reactos.com
Subject: [ros-dev] Re: Reactos.com problems
Ge van Geldorp wrote:
> For the moment, I've moved the mailing lists to a backup box. I am not
> moving the website, since it seems the attack was carried out via the
> website (a vulnerability in one of the php script packages we use).
> I'll put up a dummy page informing visitors.
Am I the only one thinking this is the perfect moment to put up the new
static webpage along with the new design *hint hint* ?
_______________________________________________
Ros-dev mailing list
Ros-dev(a)reactos.com http://reactos.com:8080/mailman/listinfo/ros-dev
************************************************************************
The information contained in this message or any of its
attachments is confidential and is intended for the exclusive
use of the addressee. The information may also be legally
privileged. The views expressed may not be company policy,
but the personal views of the originator. If you are not the
addressee, any disclosure, reproduction, distribution or other
dissemination or use of this communication is strictly prohibited.
If you have received this message in error, please contact
postmaster(a)exideuk.co.uk
<mailto:postmaster@exideuk.co.uk> and then delete this message.
Exide Technologies is an industrial and transportation battery
producer and recycler with operations in 89 countries.
Further information can be found at www.exide.com
--- ion(a)svn.reactos.com wrote:
> - Freetype Update to 2.1.10. Reduces memory usage, increases speed and fixes drawing bugs.
> - Enable Bytecode. Weird_W's fonts finally look humanly readable.
Turn it off.
____________________________________________________
Start your day with Yahoo! - make it your home page
http://www.yahoo.com/r/hs
Hi,
ekohl(a)svn.reactos.com wrote:
> Add parameter checks.
>
>
> Updated files:
> trunk/reactos/lib/setupapi/cfgmgr.c
>
[CC] lib/setupapi/cfgmgr.c
lib/setupapi/cfgmgr.c: In function `CM_Locate_DevNode_ExW':
lib/setupapi/cfgmgr.c:991: error: `CM_LOCATE_DEVNODE_BITS' undeclared (first use in this function)
lib/setupapi/cfgmgr.c:991: error: (Each undeclared identifier is reported only once
lib/setupapi/cfgmgr.c:991: error: for each function it appears in.)
make: *** [obj-i386/lib/setupapi/cfgmgr.o] Error 1
I found /w32api/include/ddk/cfgmgr32.h adding <ddk/cfgmgr32.h> did help,
but it created more problems.
Thanks,
James
There are strong indications that the reactos.com box got cracked.
Unfortunately, I'm on vacation right now and unable to fix things. Since it
is causing problems on the network it will be isolated, meaning no network
traffic in or out. This will mean the website will go down and the mailing
lists will become inactive.
I'm sorry about this, but there is not much I can do for the next week.
Ge van Geldorp.
ekohl(a)svn.reactos.com wrote:
> Add parameter checks.
>
>
> Updated files:
> trunk/reactos/lib/setupapi/cfgmgr.c
>
> _______________________________________________
> Ros-svn mailing list
> Ros-svn(a)reactos.com
> http://reactos.com:8080/mailman/listinfo/ros-svn
>
lib\setupapi\cfgmgr.c: In function `CM_Locate_DevNode_ExW':
lib\setupapi\cfgmgr.c:991: error: `CM_LOCATE_DEVNODE_BITS' undeclared
(first use
in this function)
lib\setupapi\cfgmgr.c:991: error: (Each undeclared identifier is
reported only o
nce
lib\setupapi\cfgmgr.c:991: error: for each function it appears in.)
mingw32-make: *** [obj-i386\lib\setupapi\cfgmgr.o] Error 1
ion(a)svn.reactos.com wrote:
> Dmitry Philippov <shedon(a)mail.ru>:
>
> - Implemented FindFirstFileExW() and have removed InternalFindFirstFile() in /lib/kernel32/file/find.c, now FindFirstFileA (), FindFirstFileExA () and FindFirstFileW called FindFirstFileExW ()
>
>NOTE: Filip has asked revision "16661" (the next one) to be done by him... sorry if this sounds silly, but please respect his wish :)
>
>
>Updated files:
>trunk/reactos/lib/kernel32/file/find.c
>
>_______________________________________________
>Ros-svn mailing list
>Ros-svn(a)reactos.com
>http://reactos.com:8080/mailman/listinfo/ros-svn
>
>
>
>
The implemention of FindFirstFileExW is very buggy. On errors, the
allocated buffers are not cleanup correctly. The fourth parameter is
wrong in the call to RtlDosPathNameToNtPathName_U. It isn't possible to
cast a unicode string to a directory structure. The using of the results
from the call to RtlDosPathNameToNtPathName_U is wrong. The buffer from
the returned directory structure isn't always null terminated.
- Hartmut