extended

Script to assign Extended Rights in AD, Special Permissions

How would you script extended rights in AD for a group to be able to unlock accounts. Need to know what the GUID is for this key? Is this possible to do, it is possible to script a user to be able to change the password using ACL. ...

How to read and write extended windows file attributes with win32

Hi, I would like to embed some meta data in a windows file. I came across the concept of extended file attributes, which I believe are used for this very purpose. For example, camera name in jpgs, episode name in avis. Apart from some very obscure non-documented kernel APIs, I cannot find how to do this in c/c++ using the win32 api. ...

Signed 64 by 32 integer division

Assuming you have a machine instruction udive that does a special case 64 by 32 unsigned division by taking a (32bit dividend << 32) / 32bit divisor, we can do a full 64 by 32 division using the following: // assume: a / b guaranteed not to overflow a = 64bit dividend, a.h & a.l are hi & lo 32bits respectively b = 32bit divisor q1 = ud...

Granting offline_access, read_stream, and publish_stream from facebook IFRAME app

Does anyone know a simple way to grant extended permissions from a canvas page that is rendered as an Iframe in facebook? I have tried facebook connect and that does not seem to work so now I am trying XFBML but for some reason when I use the prompt-permission attribute it does not open dialogs for the extended permissions that I am re...

Convert Extended characters to int

I have the following string in notepad "ùŒÚÿwž+2»ó66H". I used the fstream library to read those files in c++ and print those characters and thier equivalent decimal numbers in the conlsole window but the symbols are different than those in notepad and numbers for the extended characters are in negative form,i realize maybe its impossib...

expected behavior of posix extended regex: (()|abc)xyz

On my OS X 10.5.8 machine, using the regcomp and regexec C functions to match the extended regex "(()|abc)xyz", I find a match for the string "abcxyz" but only from offset 3 to offset 6. My expectation was that the entire string would be matched and that I would see a submatch for the initial "abc" part of the string. When I try the sa...

Are there any recent PHP Manuals, the CHMs with the user-contributed notes out there?

Are there any recent PHP Manuals, the CHMs with the user-contributed notes out there? The PHP guys seem to have 'dropped support' for them. Are some of them lurking around the PHP website itself, accessible by their unlinked URLs only? ...

MySQL Extended Display

Is there any equivalent to psql's \x to view a record with each column on a new row? ...

Facebook permission error problem?

I have a problem with facebook application when my applicatons still under development. I currently have two developers both have granted permission (I mean when I see the Edit Settings under the additional permission: it does have the tick on the publish_stream, this was asked and granted during the prompted permission dialog). The str...

How do you detect the CPU architecture type during run-time with GCC and inline asm?

Hello, I need to find the architecture type of a CPU. I do not have access to /proc/cpuinfo, as the machine is running syslinux. I know there is a way to do it with inline ASM, however I believe my syntax is incorrect as my variable iedx is not being set properly. I'm drudging along with ASM, and by no means an expert. If anyone has an...

Fluent NHibernate - Intercepting/Injecting DDL

This would be a great feature - to dress my Domain objects with class and property attributes, such as [Description("The 'Cat' entity holds information about Cats")] public class Cat { [Description("The Cat.Name property holds the real name of the Cat such as 'Fluffy'")] public virtual string Name { get; set; ...

Thoughts On Extended Stored Procedures

I am looking to insert and update records in a database using functions and logic that are not available in SQL Server or any other RDBMS for that matter. After Googling around a bit this morning, I have come across the concept of Extended Stored Procedures. As far as I can tell, I should be able to compile my desired functionality int...

Facebook doesn't notify me after the user grants extended permissions

Hi, I am developing a Facebook App which requires some extended permission. The problem is that Facebook doesn't automatically ping my app when those permissions are granted by the user. I have to manually query for them or the user must press a confirmation button to send them to me. My question is how can I enable Facebook to ping m...

How can I get the mapi system stub dll to pass extended mapi calls to my dll?

For various reasons (questioning the reasons is not helpful to me), I'd like to implement my own extended mapi dll for windows xp. I have a skeleton dll now, just a few entrypoints exist for testing, but the system mapi stub (c:\windows\system32\mapi32.dll, I've checked that it's identical to mapistub.dll) will not pass through calls t...

problems with extended classes and overwrite with methods

I have a .net website written in C# and will make functionalities that other developers can use. So I will make some default implementation and a developer can overwrite some methods Example: i have a class ShoppingCart and a class Product the class product haves a method getProductPrice the shoppingcart will call the method getProductP...

Facebook Graph API, extended permissions

I am trying to use facebook Graph API, to update a users staus message. I am getting the following error while using it, I think the new graph sdk is not being properly referenced ? Notice: Undefined property: Facebook::$api_client in /users/home/aafhe7vh/web/public/update.php on line 9 Fatal error: Call to a member function users_h...

Facebook connect extended permission seems to have issues

Simply, I've been struggling for 5 days now with facebook api trying to get the user email, bday, about me, etc.. data. I searched online dozen of times, and went through several facebook developer wiki pages but with no hope of finding a solution. The problem is that I've added the below connect button script, and after a successful lo...

Where is the journal on the Extended file system?

Where exactly is the journal on the EXT3/EXT4 file system, ive searched around and cant find a good answer. ...

perl regexp replace string with a substring of the regular expression

Hello I have a question concerning perl. Assume I have the following line in my file: DoMatchLong ( "ThisIsMyVariable", lThisIsMyVariable); I want to replace "ThisIsMyVariable" by cp_const_ThisIsMyVariable So my aim is: DoMatchLong ( cp_const_ThisIsMyVariable, lThisIsMyVariable); $count = s/(?<=")\w+(?=")/const_cmd_cp_$&/gx; lea...

Facebook - getting permission for photos.get

Alright, I am developing a website that integrates with Facebook, and it retrieves photos of the users. The code to call it is $param = array( 'method' => 'photos.get', 'subj_id' => $fbme['id'], 'fields' => 'name', 'callback' => '' ); $photos = $facebook->api($param); However the problem is that this returns a bl...