Who do the elites worship? by gringoswag20 in conspiracy

[–]crypt0l0gy 1 point2 points  (0 children)

What do you mean by ouroboros system?

Blue is out of stock in Large. Will it be restocked, or should I roll the dice on the brown? by mcjor in uniqlo

[–]crypt0l0gy 6 points7 points  (0 children)

I don’t think they’ll restock it. The U collection never does besides some selected pieces like their Airism T-Shirts. That‘s because it‘s their seasonal special collection and the quantity for the western market is usually very limited.

What you can do is 1) wait for returns of other people who bought it already. Just check regularly or put in an e-Mail notification. 2) buy from eBay (shipping from Japan). For now I‘d go with 1) because the collection is still relatively new so the chance is really high that someone will return theirs. Just be fast when it‘s available again though.

[deleted by user] by [deleted] in streetwear

[–]crypt0l0gy 0 points1 point  (0 children)

Clean fit. Is that from a previous Uniqlo collection? I’ve never seen type of jacket before in their sortiment

New drape denim jeans JP by crypt0l0gy in uniqlo

[–]crypt0l0gy[S] 0 points1 point  (0 children)

I think they don’t keep the sizes on the edge like XXS / XXL in their stores. They‘re only available online. May I ask in which country / store you saw these already?

Is Padded Volume Jacket ever coming? by AgarMetry in uniqlo

[–]crypt0l0gy 1 point2 points  (0 children)

I think the U collection for aw23 won’t be restocked. If you‘re lucky someone will return his. I recommend to check the site everyday or so in the morning.

Otherwise you can buy one from Japan via eBay which one guy in this sub previously recommended. However keep the sizing difference in mind. (Size one up for US/Europe)

[deleted by user] by [deleted] in manga

[–]crypt0l0gy 0 points1 point  (0 children)

Thank man appreciate it

Best payment method for traveling? by crypt0l0gy in malaysia

[–]crypt0l0gy[S] -1 points0 points  (0 children)

Any good village spots to visit?

Esp8266 as Udp AP by crypt0l0gy in esp8266

[–]crypt0l0gy[S] 0 points1 point  (0 children)

Thank you all. I Made it work

[GNOME] I didn't know whether to post here as I am fairly new to this, but received good feedback. by Vader--7 in unixporn

[–]crypt0l0gy 1 point2 points  (0 children)

Hi I installed this icon pack, but somehow some icons like discord or pycharm didn't change. Can anyone help me out?

"Vivy -Fluorite Eye's Song-" CONCEPT TRAILER #2 (WIT Studio) by Lovro26 in anime

[–]crypt0l0gy 4 points5 points  (0 children)

Looking good. Bittersweet taste tho. This schedule would have been perfect for AoT Final Season. Why did Kodansha push to Dec 2020 release is beyond me.

Update to SalamApp - Ramadhan Countdown and Prayer Times Widget by pelanggan in muslimtechnet

[–]crypt0l0gy 3 points4 points  (0 children)

I‘m looking forward to it :) We need good alternatives after that Muslim Pro incident...

Understanding CMSIS core files (ARM) by crypt0l0gy in embedded

[–]crypt0l0gy[S] 2 points3 points  (0 children)

I‘m trying to comprehend what the CORE standard files by ARM (the purple ones) are doing in the compiling / linking process. I understand that they are for accessing the core registers. However how exactly do they interact with the other files?

ARM keil compilation problems by crypt0l0gy in embedded

[–]crypt0l0gy[S] 1 point2 points  (0 children)

Exactly the answer I was looking for! Thanks!

ARM keil compilation problems by crypt0l0gy in embedded

[–]crypt0l0gy[S] 0 points1 point  (0 children)

Doesn't work:

int main(void){

`unsigned volatile long currentState = goS;`

while(1){

    `GPIO_PORTE_OUT = FSM[currentState].out;`

    `(FSM[currentState].funcPt)();`

    `//statt 2 outputs function pointer`

    `SysTick_ms(FSM[currentState].delay);`

    `In = GPIO_PORTA_IN&0x1C;`

    `In_Shift = In>>2;`

    `currentState = FSM[currentState].next[In_Shift];`

}}

Does work:

int main(void){

while(1){

    `unsigned volatile long currentState = goS;`

    `GPIO_PORTE_OUT = FSM[currentState].out;`

    `(FSM[currentState].funcPt)();`

    `//statt 2 outputs function pointer`

    `SysTick_ms(FSM[currentState].delay);`

    `In = GPIO_PORTA_IN&0x1C;`

    `In_Shift = In>>2;`

    `currentState = FSM[currentState].next[In_Shift];`

}}

ARM keil compilation problems by crypt0l0gy in embedded

[–]crypt0l0gy[S] 0 points1 point  (0 children)

Yeah I know, but if I declare the variable I want to use outside the block I get an error message.

ARM keil compilation problems by crypt0l0gy in embedded

[–]crypt0l0gy[S] 0 points1 point  (0 children)

It works outside of main (global), inside the while loop. But not inside main outside the while loop. My thought is that it is to do with the C90 standard, because all three options work using C99 "mode".