Wir stellen uns quer! · @wsuq
456 followers · 7132 posts · Server climatejustice.social

@dieiaa - @ -mega-Event ...

, , , , , ,

An industry building and showing big for single male use in hottest year ever 2023 because it makes money prooves that and still want to planet as a place where humanity can live.

You should not support such an industry event as an , or whatsoever .

rich scum!

#artwashing #concerts #greenwashing #iaa #IAAMobility #bruckner #kytes #Leony #glockenbach #elif #leventgeiger #mosskena #suv #capitalism #car #industry #destroy #earth #artist #designer #creative #fuckoff #automotive

Last updated 1 year ago

revoX · @revoX
2 followers · 3 posts · Server mastodontech.de

Durch meinen hab ich Geld gehabt um mir Tickets von zu kaufen. Freue mich schon ultra darauf.

Zuerst ist, aber das Konzert dran, was auch denke ich ultra geil werden wird.
Nächstes Jahr ist dann noch an der Reihe. Das wars dann vorerst mit Konzerten

#aushilfsjob #sido #elif #NinaChuba

Last updated 2 years ago

revoX · @revoX
1 followers · 1 posts · Server mastodontech.de

In 4 Tagen gehts zum

#elif #konzert

Last updated 2 years ago

I-Can do it! 🏳️‍🌈 · @ican
226 followers · 1017 posts · Server det.social

Konzert im in . Tolle Sängerin die Herzensmusik spielt 🎶🎵🎧🎸

youtu.be/gJXD06Ei5FA

#elif #ewerk #koln

Last updated 2 years ago

Arkadiusz Świętnicki 🇨🇳 · @Nuno
111 followers · 383 posts · Server tweesecake.social

Keep me sane. This is the C ++ I write now haha. ENGINE == Engine_G2A
void __cdecl sysEvent( void ) { XCALL( 0x005053E0 ) }
ENGINE == Engine_G1
void __cdecl sysEvent( void ) { XCALL( 0x004F6AC0 ) }

void __cdecl sysEvent( void ) { }

SECTOR zSmartMap::Min;
SECTOR zSmartMap::Max;
SECTOR zSmartMap::CurrentSector;
Array<zCVob*> zSmartMap::GlobalVobList;
Array<oCNpc*> zSmartMap::Humans;
Array<oCNpc*> zSmartMap::Orcs;
Array<oCNpc*> zSmartMap::Monsters;
Array<oCNpc*> zSmartMap::Dragons;
Array<oCItem*> zSmartMap::Items;
Array<oCMobContainer*> zSmartMap::Chests;
Array<zCWaypoint*> zSmartMap::Waypoints;

const wtext Msg_SmartMapEntry[TSystemLangID::Lang_Max] = {
L"ENTER to hear details. Use arrows to move on the map. Press SPACE to enable navigator." // sz
L"Sector %i %i. Press ENTER to hear details. Use arrows to move on the map. Press SPACE to enable navigator." // es
};

const wtext GetLocalisedString( const wtext* stringArray ) {
return stringArray[Union.GetSystemLanguage()];
}

inline void GetWorldSectorBounds( SECTOR& min, SECTOR& max ) {
min.x = -500;
min.y = -500;
max.x = +500;
max.y = +500;
}

void zSmartMap::InitVobList() {
GlobalVobList.Clear();
auto list = ogame->GetGameWorld()->voblist;
while( list ) {
auto vob = list->data;
if( vob ) {
if( vob->type == zVOB_TYPE_ITEM || vob->type == zVOB_TYPE_MOB || vob->type == zVOB_TYPE_WAYPOINT ) {
GlobalVobList.Insert( vob );
}
else if( vob->type == zVOB_TYPE_NSC ) {
oCNpc* npc = static_cast<oCNpc*>(vob);
if( vob->GetPositionWorld() == 0.0f ) {
zVEC3 routPosition = npc->state.GetAIStatePosition();
npc->SetPositionWorld( routPosition );
}

#programming #gaming #accessibility #if #elif #else #endif

Last updated 2 years ago

wirepair · @wirepair
226 followers · 294 posts · Server mastodon.social

wow preprocessors really mess up my logic here :thinkerguns:

int main(int argc, char **argv) {
TEST
printf(\"%d\\n\", 0x4141);
TEST2
printf(\"%d\\n\", 0x4242);

printf(\"%d\\n\", 0x4343);


TEST2
int b = c + 3;

return 0;
}

how do you model this function without combinatorial explosion?

#ifdef #elif #else #endif #ifndef

Last updated 2 years ago

Polat · @Polat
1 followers · 2 posts · Server universeodon.com
Polat · @Polat
1 followers · 1 posts · Server universeodon.com
nicolasvegas.eu · @nicolasvegas
35 followers · 72 posts · Server mastodon.green

Wasn da los? Nach @Kraftklub@twitter.com jetzt @dadimakesmusic@twitter.com?! Wenn @tokiohotel@twitter.com eh schon meine Lieblings-Acts abarbeiten, wünsche ich mir als nächstes oder . 😋👍
youtu.be/pXWFoMoECs0

#elif #jupiterjones

Last updated 2 years ago

Firefly · @firefly
1 followers · 2 posts · Server vmst.io

Somebody who knows what they're doing ! If I'm on vmstio, and my friend's on gamedev.place, we can still follow and interact, right? But our moderators differ?

#elif

Last updated 2 years ago

chriswilkinsoncodes · @chriswcodes
4 followers · 10 posts · Server fosstodon.org

R5D15

Trying to figure out a bit more about preprocessor directives in C e.g. . Think I've wrapped my head around the general concept but not sure what these Macros are they speak of...

#100daysofcode #if #elif

Last updated 2 years ago

LiteraturLounge · @Literaturlounge
150 followers · 160 posts · Server troet.cafe

[Musik-Tipp] Das Album Nacht von Elif
Elif ist schon seit 2009 auf meinem Musikradar, wo sie bei Popstar zum ersten mal öffentlich in Erscheinung trat. Ganz klar, pur und authentisch kommt ihre Simme ganz ohne diesen Vocoder-Fake-Scheiss aus, den die aktuellen deutschen "Chart-Künstler*innen" dieses Genre brauchen um ansatzweise eine Stimme zu haben. Daher kann sie mich immer wi
literaturlounge.eu/2022/11/mus

#nacht #musiktipp #elif #sonstiges

Last updated 2 years ago

Dr. Brian Callahan · @bcallah
859 followers · 3925 posts · Server bsd.network

@jrick I think I solved it. In sys/_null.h, we see this:

NULL
!defined(__cplusplus)
NULL ((void *)0)
__cplusplus >= 201103L
NULL nullptr
defined(__GNUG__)
NULL __null

NULL 0L

Commenting out the __cpluplus >= 201103L part of the check lets the code compile.

#ifndef #if #define #elif #else #endif

Last updated 4 years ago

«lambalicious» · @lambalicious
14 followers · 337 posts · Server aleph.land

When you can't figure out a way to have some C++ code correctly parsed by for documentation, so you just , and an implementation visible solely for doxygen so it can generate documentation the way it likes, and you decide to make a post about it.

Then when you post about it you remember that hash symbol # starts both prepro directives in C++ and tags in Mastodon, so you just introduced tags for the C++ preprocessor.

Then you also remember that "elif" is also a name. At least, I seem to recall it in use by some Turkish or Greek .

Which is more or less what your coding adventure with Doxygen was. A telenovela.

#cxx #cpp #doxygen #ifdef #elif #endif #telenovelas #programming

Last updated 4 years ago

assbach · @assbach
267 followers · 3205 posts · Server wandzeitung.xyz

Sorry aber wie toll ist diese Frau bitte? youtube.com/watch?v=Lwebr1FJ1M

#elif

Last updated 4 years ago

· @ephemeris
73 followers · 1308 posts · Server bsd.network

Whee! function is allowed to return 0 when results not found... Guess what we are getting. :)

BLADERF_OS_OPENBSD
static inline size_t get_binary_dir(char *buf, size_t max_len)
{
return 0;
}

#elif

Last updated 6 years ago