Jump to content
xisto Community

tritesh

Members
  • Content Count

    136
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by tritesh


  1. 17 hours ago, yordan said:

    Did you have a look at this ?

    https://ubuntuforums.org/showthread.php?t=553961

    Yordan thanks for that, I already looked at that thread and its about "OnBoard" oncreen keyboard application which is third party. I do not want to use that.

    Ubuntu is shipped with Caribou  screen keyboard, I want to stick with it. 

    Can you also help me to find out the logs related to this ?

     


  2. 4 minutes ago, yordan said:

    I also have a similar problem. I will try to solve it, concentrating my ignorance syndrome on a specific topic.

    I think there is a solution that I write and ask for your help to proofread and suggest editing to improve myself to become myself.

     

    And may be this post is a small start for it.


  3. Hi Asta Hoster,

     

    I need your help. I need a software that can monitor interent traffic through a particular exe module or software. Actually, I want to get know to which paticular webpage those softwares are connecting to gather informations.

     

    For example, If I search some music in itune software then it will tell me the complete url for that.


  4. After I commented out line 173 of plugins.php, the error was gone, but strange things started to happen. For instance, my custom menus disappeared:

     

    Posted Image

     

     

     

    That means, Custom Menus may be culprit for this error try to re-upgrade your wordpress istall with this plugin disabled or install wordpress at your localhost . I am currently busy in "Raksha Bandhan" shopping (Oh! my sisters always want to empty my wallet). Hopefully will look into it on or after "Raksha Bandhan"


  5. On Googling (by making search on google) more about how to get "Email alert through SMS" today I find another site that is site2sms. Like way2sms, site2sms also allowed user to send free SMS.

     

    Here are the steps for how to configure free Email Alert on site2sms.

     

     

    Steps:[/font]

    First go to http://www.site2sms.com/

    Register at site2sms.com with your mobile number.

    after register ,go to e-mail alert tab in that site

    Posted Image

    make your days and time to get sms alert

    Posted Image

    now, go to your gmail account

    Posted Image

    go to setting--> email setting-->forwarding and pop-up

    Posted Image

    forwarding your email to your site2sms address like this

    and verify your account by code.

    Done now get all new e-mails alerts in your phone.

     

     

    But unfortunately these both sites for Indian users only. Hope in next post I will be able to have solution for international users.

     

    Source:


  6. Hi Manuleka,

     

    Remove usepmtimer switch from default windows option line of your boot.ini.

     

     

     

    [Boot Loader]Timeout=30Default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS[Operating Systems]multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows" /noexecute=optin /fastdetect /usepmtimer

     

     

    Or if you want to use usepmtimer switch put name windows installed at default line of boot.ini.

     

     

    [Boot Loader]Timeout=30Default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows" /usepmtimer[Operating Systems]multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows" /noexecute=optin /fastdetect /usepmtimer

     


  7. The problem is, if he really has a blank screen, he cannot go the the system properties, he cannot see where he should right-click :D

    exactly... i can't get pass Boot Screen... so i might need to do a fresh install...


    Manuleka, I think desktop is loading but due to of wrong setting of resolution there is nothing on your screen. In that case you have to try Mouse and Coin method to lower down screen resolution.

  8. Velma,I am afraid of posting the way. Because those are not providing any official API, so, we have only one method to create our own API using Curl Library. And ofcourse I searched a lot about free sms api but not find anyone.And in concern with Way2sms, currently I am using this feature by forwarding gmail mails to Way2sms but not whole inbox. I also tested it with Yahoo mail as well.


  9. I have three machines in my house all three have different OS, one has installed Ubuntu 12.0 and second one that is in my study is with Windows 7. And the laptop that I personally used has windows 8 Pro installed.In all three, I am very happy with windows 8 Pro even it is new. Its task manager is now with some new tabs like startup, services etc. which makes me to not use masconfig to monitor startup and to disable/enable them.I can monitor my all network interfaces from task manager itself. Sevices can also we start/stop from task manager windows or their properties can be changed as well from here.


  10. Sewan, As I understand you want to have Portal Application like as we have on http://forums.xisto.com/portal/
    '>Xisto
    , isn't it. Which displays last 3 posts from different forums and subforums of Xisto.

    If so, there is an application named Portal in marketplace of IPS Community. When I looked at its screenshots, find that there is option for choosing a single forum to get its latest posts on portal page and even it displays all the information that you want to along with posts.


  11. Ahsan, Problem and its solution is explained by Axel Mueller on link provided by in your last post.

     

    The Eclipse console has buffering problems on Windows. Basically, it doesn't flush the streams when a newline is received. (Unlike a normal windows console window)

    Either, you have to add fflush calls when needed or add the following lines in the start of the main function:

    setvbuf(stdout, NULL, _IONBF, 0);

    setvbuf(stderr, NULL, _IONBF, 0);

     

    But, I prefer you do not add fflush for each instances of printf function rather you can add setvbuf() at the start of your program's main function. Before executing your program clean project first as well, If you won't do that it will execute old compiled file.

     

    Hope, this will resolve your issue. :)


  12. "run this code on paper" means.... (please throw some light on this @agyat)....

    Oh! It is just nothing, actually I do not have any compiler installed on any of my machine. I did write your code on a piece of paper and checked it out line by line for results. So, that was just indication for you that I might be wrong.

    First... thanks @agyat for pointing towards the error... But correcting it as per your instruction has created another dilemma.... The program still doesn't display the correct answer... Its a complete mess.....can you please modify the program so that it uses the same approach as I have used but displays accurate results..


    Sorry for making you confused. Here is corrected code ..


    #include <stdio.h>int main(void) {printf("Program: Calculate how many digits in a number\n");int number;printf("Enter a number with maximum 4 digits: ");scanf("%d", &number);int digits;int error = 0; // We are Assuming here that code do no have any error.if (number >= 0 && number <=9) {digits = 1;}else if (number >= 10 && number <= 99) {digits = 2;}else if (number >= 100 && number <= 999) {digits = 3;}else if (number >= 1000 & number <= 9999) {digits = 4;}else {error = 1; // There is some error in code or number is having more than 4 digits.}// Display number of Digits if there is no error in code OR Display "Number has more than 4 digits" if there is error in code or input value is of more than 4 digits.if (error = 0) { printf("Digits in number: %d\n", digits);} else {printf("Number has more than 4 digits....\n");}return 0;}

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.