| www.porscheforum.nl |
http://85.214.53.153/

apple vraagje
http://85.214.53.153/viewtopic.php?f=17&t=24328
Pagina 1 van 2

Auteur:  wolf [ 27 aug 2009 12:27 ]
Berichttitel:  apple vraagje

wil een back up maken op een externe harde schijf via time machine, maar hij kan de externe harde schijf niet vinden, iemand?

overigens ben ik van meninig dat de oude porsches de besten zijn :mrgreen:

Auteur:  cvaniperen [ 27 aug 2009 12:33 ]
Berichttitel:  Re: apple vraagje

Is de externe schijf wel zichtbaar in je Finder ?

Auteur:  amandus [ 27 aug 2009 13:20 ]
Berichttitel:  Re: apple vraagje

wolf schreef:
wil een back up maken op een externe harde schijf via time machine, maar hij kan de externe harde schijf niet vinden, iemand?

overigens ben ik van meninig dat de oude porsches de besten zijn :mrgreen:


Jij kan ook de weg niet vinden naar de waterkokers , ook problemen met je harde schijf :P

Auteur:  Bassen [ 27 aug 2009 13:51 ]
Berichttitel:  Re: apple vraagje

Wat voor bestands indeling heeft die externeschijf?

Auteur:  Tom80 [ 27 aug 2009 14:14 ]
Berichttitel:  Re: apple vraagje

Is die schijf al eerder gebruikt met een Mac?

Auteur:  Ewout [ 27 aug 2009 15:41 ]
Berichttitel:  Re: apple vraagje

wolf schreef:
overigens ben ik van meninig dat de oude porsches de besten zijn :mrgreen:


Jij hebt vroeger goed opgelet bij Latijn. :mrgreen:

Auteur:  horn [ 27 aug 2009 15:53 ]
Berichttitel:  Re: apple vraagje

Latijns toch... :cheesy:

@ Wolf - voordat de time machine de harde schijf niet kon vinden, hoorde je toen een plof? :^: (moderne zooi :wink: )

Auteur:  Jeroen C3.0 [ 27 aug 2009 16:28 ]
Berichttitel:  Re: apple vraagje

euh... al gechekt of je externe hard disk aan staat... ? Bij mij op de apple staat de harde schijf gewoon zichtbaar als firewire icoon op mijn desktop.

Auteur:  wolf [ 27 aug 2009 16:49 ]
Berichttitel:  Re: apple vraagje

gewoon usb ingeplugd, vorige keer kwam dan icontje op mijn bureaublad en kon ik gewoon backuppen. nu geen icoontje :(

Auteur:  wolf [ 27 aug 2009 16:57 ]
Berichttitel:  Re: apple vraagje

deze harde schijf btw
Afbeelding

Auteur:  Jeroen C3.0 [ 27 aug 2009 17:10 ]
Berichttitel:  Re: apple vraagje

nogmaals, heeft ie wel power? Of gaat dat via USB? Heb je ook firewire? Anders even proberen via firewire aan te sluiten.

Succes!

Auteur:  Tom80 [ 27 aug 2009 17:12 ]
Berichttitel:  Re: apple vraagje

Unplug, replug?

Auteur:  Marco [ 27 aug 2009 17:23 ]
Berichttitel:  Re: apple vraagje

bmovl filtertje downloaden en activeren op een virtuele schijf, de externe schijf daarmee migreren :idea:

Auteur:  wolf [ 27 aug 2009 17:24 ]
Berichttitel:  Re: apple vraagje

met veel unplug/replug nu icoon, time-machine starten maar blijft hangen in " voorbereiden", zowel macbook als ext hd mi ook iets te warm daarbij....

@ marco > que?

Auteur:  Marco [ 27 aug 2009 17:26 ]
Berichttitel:  Re: apple vraagje

aanvulling: vergeet niet een 128 buffer overflow te genereren, anders gaat het verschrikkelijk mis :shock:

Auteur:  Marco [ 27 aug 2009 17:29 ]
Berichttitel:  Re: apple vraagje

wolf schreef:
@ marco > que?

klinkt ingewikkelder dan het is

Code:
/* Base_Constant.c
 * - DLL routines for class <Component>Base.Constant
 * DATE: Sunday, April 21, 2002 TIME: 11:47:43 AM
 * The skeleton of this file is generated by SansGUI(tm)
 */

#include <stdio.h>
#include "SGdll.h"

#include "../Calc_1_1/Calc.h"

#ifdef __cplusplus
extern "C"
{
#endif

SG_EXPORT SG_SIM_FUNC SG_xBgnRun_Base_Constant;

#ifdef __cplusplus
}
#endif

/* Macros for attribute indices in class version [1.1.0.0] */
#define SG_NDX_FVALUE 0 /* fValue - Value */

/* ============================================================
* SG_xBgnRun - Begin Run
* ------------------------------------------------------------
*/
SG_RET_CODE SG_xBgnRun_Base_Constant(SG_OBJ *const self,
          SG_OBJ *const simCtrl, SG_OBJ *const chgChild,
          SG_OBJ *const refObjs[], const INT *const piRefObjs,
          SG_OBJ *const adjObjs[], const INT *const piAdjObjs,
          SG_OBJ *const lnkObjs[], const INT *const piLnkObjs,
          TCHAR *const cMessage, const INT iMsgLen,
          TCHAR *const cCommand, const INT iCmdLen,
          SG_FILE *const pOutFile )
{
    /* TODO: declare your local variables here */

    INT i;
    FLOAT *pfValue = &self->zValues[SG_NDX_FVALUE].fData[0];

    if (!SG_IsSchemaOK(self->nSGobjSchema))
        return SG_R_SCHM;

    /* TODO: put your simulator code here */

    /* Deposit the constant value to all the output links, if any */
    for (i = 0; i < *piLnkObjs; i++)
    {
        if (lnkObjs[i]->zValues[SG_NDX_LNK_IINFO].iData[0] == SG_LINK_OUT)
            lnkObjs[i]->zValues[SG_NDX_LNK_FVALUE].fData[0] = *pfValue;
    }
    return SG_R_OK;
}
Functions in Class Base.Variable     [Go To Top]

/* Base_Variable.c
 * - DLL routines for class <Component>Base.Variable
 * DATE: Sunday, April 21, 2002 TIME: 11:47:43 AM
 * The skeleton of this file is generated by SansGUI(tm)
 */

#include <stdio.h>
#include "SGdll.h"

#include "../Calc_1_1/Calc.h"

#ifdef __cplusplus
extern "C"
{
#endif

SG_EXPORT SG_SIM_FUNC SG_xInit_Base_Variable;
SG_EXPORT SG_SIM_FUNC SG_xEval_Base_Variable;

#ifdef __cplusplus
}
#endif

/* Macros for attribute indices in class version [1.0.0.0] */
#define SG_NDX_FVALUE 0 /* fValue - Variable Value */

/* ============================================================
 * SG_xInit - Initialization
 * ------------------------------------------------------------
 */
SG_RET_CODE SG_xInit_Base_Variable(SG_OBJ *const self,
          SG_OBJ *const simCtrl, SG_OBJ *const chgChild,
          SG_OBJ *const refObjs[], const INT *const piRefObjs,
          SG_OBJ *const adjObjs[], const INT *const piAdjObjs,
          SG_OBJ *const lnkObjs[], const INT *const piLnkObjs,
          TCHAR *const cMessage, const INT iMsgLen,
          TCHAR *const cCommand, const INT iCmdLen,
          SG_FILE *const pOutFile )
{
    /* TODO: declare your local variables here */

    INT i;
    FLOAT *pfValue = &self->zValues[SG_NDX_FVALUE].fData[0];

    if (!SG_IsSchemaOK(self->nSGobjSchema))
        return SG_R_SCHM;

    /* TODO: put your simulator code here */

    /* Deposit the current value to all input link, if exists */
    /* This is to avoid the initial value from being wiped off */
    for (i = 0; i < *piLnkObjs; i++)
    {
        if (lnkObjs[i]->zValues[SG_NDX_LNK_IINFO].iData[0] == SG_LINK_IN)
        {
            lnkObjs[i]->zValues[SG_NDX_LNK_FVALUE].fData[0] = *pfValue;
            break;    /* there should only be one input link */
        }
    }

    return SG_R_OK;
}

/* ============================================================
 * SG_xEval - Evaluation
 * ------------------------------------------------------------
 */
SG_RET_CODE SG_xEval_Base_Variable(SG_OBJ *const self,
          SG_OBJ *const simCtrl, SG_OBJ *const chgChild,
          SG_OBJ *const refObjs[], const INT *const piRefObjs,
          SG_OBJ *const adjObjs[], const INT *const piAdjObjs,
          SG_OBJ *const lnkObjs[], const INT *const piLnkObjs,
          TCHAR *const cMessage, const INT iMsgLen,
          TCHAR *const cCommand, const INT iCmdLen,
          SG_FILE *const pOutFile )
{
    /* TODO: declare your local variables here */

    INT i;
    FLOAT *pfValue = &self->zValues[SG_NDX_FVALUE].fData[0];

    if (!SG_IsSchemaOK(self->nSGobjSchema))
        return SG_R_SCHM;

    /* TODO: put your simulator code here */

    /* take input value, should have at most one link */
    for (i = 0; i < *piLnkObjs; i++)
    {
        if (lnkObjs[i]->zValues[SG_NDX_LNK_IINFO].iData[0] == SG_LINK_IN)
        {
            *pfValue = lnkObjs[i]->zValues[SG_NDX_LNK_FVALUE].fData[0];
            break;    /* Connectivity rule limits to one input link */
        }
    }

    /* Deposit the resulting value to all the output links, if any */
    for (i = 0; i < *piLnkObjs; i++)
    {
        if (lnkObjs[i]->zValues[SG_NDX_LNK_IINFO].iData[0] == SG_LINK_OUT)
            lnkObjs[i]->zValues[SG_NDX_LNK_FVALUE].fData[0] = *pfValue;
    }

    return SG_R_OK;

kind kan de was doen

Auteur:  wolf [ 27 aug 2009 18:00 ]
Berichttitel:  Re: apple vraagje

eitje :pale:

Auteur:  Tom80 [ 27 aug 2009 18:45 ]
Berichttitel:  Re: apple vraagje

Dat was toch de reden dat je een Mac wilde, die legendarische interface? :mrgreen:

Auteur:  Maarten [ 27 aug 2009 18:56 ]
Berichttitel:  Re: apple vraagje

Marco is een tikje vals vandaag :mrgreen: Moderne stuff heb je Wolfie. Niks voor jou :res:

Auteur:  wolf [ 27 aug 2009 19:23 ]
Berichttitel:  Re: apple vraagje

apple heeft 1 groot voordeel: je klapt hem dicht en hij gaat slapen, je klapt hem open en binnen 1 seconde kun je werken. verder is het natuurlijk overpriced nichtenmeuk :mrgreen:

Auteur:  Rad911 [ 27 aug 2009 19:25 ]
Berichttitel:  Re: apple vraagje

Check :!: :wink:

Auteur:  Jeroen C3.0 [ 27 aug 2009 19:50 ]
Berichttitel:  Re: apple vraagje

Maar geen virussen, da's dan weer een voordeel voor die nichten! :wink:

En overpriced, valt wel mee, kost 2x zoveel als een Windows PC, maar gaat 4x langer mee, dus eigenlijk kosten ze de helft (per jaar)... :twisted:

Auteur:  Rene964c4 [ 31 aug 2009 20:43 ]
Berichttitel:  Re: apple vraagje

kijk ook even op wat voor structuur ie staat ( hoe die geformatteerd is ) :cheers:

Auteur:  ingo [ 02 sep 2009 3:04 ]
Berichttitel:  Re: apple vraagje

even zoeken of vraagje even stellen op forum van macfreak.nl
de weinige problemen die ik ooit had (ook ext HD, maar dan van LaCie) werden daar altijd goed opgelost.

Auteur:  paere [ 02 sep 2009 6:38 ]
Berichttitel:  Re: apple vraagje

waar is de tijd gebleven van de copieermachine :pale:

Pagina 1 van 2 Alle tijden zijn GMT + 1 uur [ Zomertijd ]
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/