Posts

windows - Emacs can't start server -

I try to start an emacs server on a Windows 8 machine. I downloaded vanilla imac, and run it using runemacs.exe . Then I run Mx server-start and executes this command takes approximately 3 minutes, followed by a ~ / .emacs.d / server / server file with the following Content: 127.0.0.1:65118 5868 R @ twizer] X-VJCB `G & amp; T; U1 & Lt; BJ3X]} 6! 8 XUUUS ~ P; {Q9'AIj322! W0O1XK [/ K4v & gt; ZOK * and the emacs server has not run: When I say emacsclientw.exe it does not call any server. Apparently emacs tried to start a server but failed. I am the owner of the ~ / .emacs.d folder. You are using a non-standard socket directory. By default, the socket is stored in / tmp / emacsXYZQ (where XYZQ is a number). emacsclient can not be detected where you placed the socket, so you need to tell it (if it is not a normal location). You can do this with the command -s . / P> EMACS_SERVER_FILE = ~ / .emacs.d and add more. / Server / ...

sql - Inner Join in Access Query not working -

यहां डीबी टेबल हैं समूह उपयोगकर्ता ग्रुपआईडी - यूजरआईडी -------------------- 00001 - उपयोगकर्ता 1 00002 - उपयोगकर्ता 1 00003 - उपयोगकर्ता 2 समूह समूह आईडी - समूहनाम - लॉक - हटाए गए ----------------------------- ---------------- 00001 - ग्रूप 1 - ट्रू - झूठी 00002 - ग्रूप 2 - झूठी - झूठी 00003 - ग्रूओप 3 - झूठी - गलत मैं हूं समूह यूज़र टेबल से नीचे दी गई क्वेरी में एक विशिष्ट समूह के लिए UserIds हो रही है, लेकिन मैं यह भी देखना चाहता हूं कि क्या समूह ID जहां खंड locked = true या delete = true में है समूह तालिका तब परिणाम समूह में इसका चयन नहीं किया जाना चाहिए। यहां मैंने जो भी कोशिश की है समूह का चयन करें GUU.UserId GroupsUsers से AS GU Inner Join Groups as G पर GU.GroupID = G.GroupIdWHERE ((G.GroupId) = 00001)) और (((जी। लॉक) = एफ Alse)) या ((जी। हटाए गए) = गलत)); लेकिन यह क्वेरी मुझे सभी उपयोगकर्ताओं को वापस लौटा देती है मैं सिर्फ किसी खास समूह के उपयोगकर्ताओं को प्राप्त करना चाहता हूं अगर यह लॉक या हटाए नहीं है आपके पास की क्वेरी यह है: च...

Ebay trading API - Where's the postage? -

I have been using eBay Trading API to retrieve a user's inventory. While Use I Granuliti = properly GetSellerList (), so I would like to reiterate through ItemTypeCollection for each item type. Products have £ 7.50 postage, but this item is nowhere in the type? How to find / find any ideas? Well I found wrong with it from the bottom: myItemTypeCollection [ x] .ShippingDetails.ShippingServiceOptions [x] .ShippingServiceCost.Value please nuts and how to bolt receiving seller lists from eBay: after you should mail address below called GetSellerList, I only target RoyalMail shipping service, but if you observe the object you will see other options: // eBay item type Choose from List item list = apiGetSellerList.GetSellerList (); // itemtype oItem in the loop each item foreach (itemLists through itemTypeCollection) {foreach (oItem.ShippingDetails.ShippingServiceOptions in ShippingServiceOptionsType shipType) {//// switch loop through the various shipping option...

command line - How to find and replace a character and apply on a large file -

I'm trying to change a fixed character found in the convert.txt. Now, convert. Each letter found in Txt will be converted into a file in Linefeed. I have this code: for / f "delims =" %% s in (convert .txt) (type c: \ PETER \% % A | repl.bat "\ %% s" "%% s \ n" X> c: \ PETER \ %% a) I replace.bat on this page Tried to use the suggestion. Now, when I am trying to convert the character of a large file into a line feed, the output is not complete. Do we have a limit to this matter? As MC ND said in his comment, you can read together and send the same file Write. You must type in a new file, and then change the original with the new one using MOVE. for / f "delims =" in %% (convert.txt) (type "c: \ PETER \ %% one" | repl.bat "\ %% s" %% s \ n "X" "c: \ Peter \ %% a.new" move / y "c: \ Peter \% div>

why i kill an application in android system,but it restart again -

I have to kill an application when I receive a major event in phonewindowmanager.java Try {ActivityManagerNative.getDefault (). KillApplicationProcess ("com.konka.fakestandby", 1000); } Hold (Remote Exception E) {} But restart it again I / ActivityManager (1737): process com.konka.fakestandby ( Pid 3571) It's dead. 10-17 16: 44: 12.448 I / WindowState (1737): Winning: Window {422cd068 u0 com.konka.fakestandby / com.konka.fakestandby.MainActivity} 10-17 16: 44: 12.472 I / Activityman (1737): Project Com Konka.fakestandby com.konka.fakestandby / for activity The main activity: pid = 3603 uid = 10024 gids = {50024, 1028} I'm confused, and hope someone helps me. Thank you If Falstandby is your own app, you must stop the activity and process Will not have to kill. If this is not your app then it may have to restart the service (sticky). If not, then the Android Framework is designed to relaunch an installed app, when it is free to allocate If...

c# - How can I get XMLRPC.NET to match perl speed? -

I have a xmlrpc server which is written in C ++ ( libxmlrpc ++ ). This getversion () is returning a string. Calling it from pearl (using), 100 calls 1.25s Calling it from C # (using XMLRPC.NET), 100 calls 50.322. It's running on Windows 7 Pro. Any thoughts on what is happening, and how to fix it? [XmlRpcUrl ("Http: // localhost: 9000 / RPC2")] Public Interface ICutControl: IXmlRpcProxy {[XmlRpcMethod] string reversal (); } Class program {public static zero} (ICTCTL proxy; proxy = XmlRpcProxyGen.Create & lt; ICutControl & gt; (); Int calculation = 100; try {for (int i = 0; i & lt; 100; i ++ ) {String version = proxy.getversion (); console.light line ("{0}: {1}", i, version);}} hold (System.Net.WebException pre) {Console.Error.WriteLine (" Exception: {0} ", prior.);}} Proxy = Null;} [Update] I compressed Tried, but it did not make any difference. Since it is happening on the client side, restart the server I...

winforms - C# Form - Property Change -

I have a form that has a property named car A class with many properties. The Properties is being displayed on the current car on the basis of some user actions that are being displayed. So I have to know whether the property has been allocated or set to zero. I'm aware of INotifyPropertyChanged , but in my case I'm not sure that since this change I have changed my car properties car do not want to monitor the property. Any idea how to accomplish this? In advance thank you If you have created a true asset in your class then You should be a great and setter, you can add the code directly to the form property in order to take action on the basis of "form": Public partial category Form 1: form {public form 1 () {InitializeComponent (); } // define car square public class car {public string name = string. Empty; } // private car to keep the value of the current car private variable _car = null; // Property of public form which you can ru...