User Profile

Collapse

Profile Sidebar

Collapse
gianx80
gianx80
Last Activity: Oct 19 '15, 09:05 AM
Joined: Nov 30 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • mod_proxy_html and Apache 2.2.29: parse all <meta http-equiv="" content="">

    I'm using Mamp 3 (pro) on Mac OS X Yosemite 10.10; I'v already compiled and installed mod_proxy_html (3.1.2) and mod_xml2enc, they are both correctly loaded by Apache 2.2.29 without issues.

    This is my typical html file:

    Code:
        <!DOCTYPE HTML>
        <html>
        <head>
        	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        	<meta
    ...
    See more | Go to post

  • Liferay Social Office and OpenLDAP integration

    Hi to all dear friends. I'm struggling with OpenLDAP integration into Liferay Portal. At the moment I'm on a Windows machine, but I tried also on a Linux one without any luck. So, this is the content of my OpenLDAP database on my Windows machine:


    Code:
    dn: o=uni,c=it
    o: uni
    description: ***
    dominioPEC: ***.it
    l: ***
    postalCode: ***
    provincia: ***
    regione: ***
    sitoIstituzionale:
    ...
    See more | Go to post

  • gianx80
    replied to c++ and assembly: undefined reference to
    in C
    I solved the problem. I used the extern "C" and merged the rad.cpp file with the class_razionali _debug.cpp file.
    If I mantain the three files organization, the source code won't link. Why does this happen?
    See more | Go to post

    Leave a comment:


  • gianx80
    started a topic c++ and assembly: undefined reference to
    in C

    c++ and assembly: undefined reference to

    Hi!
    I'm writing a little equation solver for an exam ... it has not to be perfect or mathematically rigorous. With this program I have only to show to my professor that I can write some simple program in Assembly and C++ language. In other words, I have only to show if I have understood the basis of Assembly language. I'm referring to x86 Assembly Language.
    Here's the source code: there are some c++ classes and assembly functions:...
    See more | Go to post

  • gianx80
    replied to Struct + dynamic memory allocation + free ()
    in C
    Solved. Lines 206 - 220 should be:

    Code:
    cont mtx_sa (int num)
    {
        cont data;
     
        data.datax = (int *) calloc (num + 1, sizeof (int));
        data.datay = (int *) calloc (num + 1, sizeof (int));
     
        data.datax [0] = 0;
        data.datay [0] = 0;
        data.datax [1] = 0;
        data.datay [1] = 0;
        data.datax [num - 1] = 0;
        data.datay [num - 1] = 0;
        data.datax
    ...
    See more | Go to post

    Leave a comment:


  • gianx80
    started a topic Struct + dynamic memory allocation + free ()
    in C

    Struct + dynamic memory allocation + free ()

    Hi,
    I'm studying the basis of C, C++ and Assembly languages at my university (I have two exams about these subjects,

    for now) ... and I have a problem ^^.
    I wrote a program in C (not so optimized, this isn't our present goal for my professors) that recieves in input an

    integer (matrix size) and a double pointer to a square matrix and print on screen the co-ordinate of each square

    sub-matrix...
    See more | Go to post
No activity results to display
Show More
Working...