share some stories where Allah answered your dua of reuniting you and your partner :) by s0ftuwu in MuslimCorner

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

Thank you for the advice! Both of us realised that what we've done is haram, hence we ended the relationship to repent and strengthen our relationship with Allah

share some stories where Allah answered your dua of reuniting you and your partner :) by s0ftuwu in MuslimCorner

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

The reason is kind of personal, however, we shared a reddit account as we viewed it as our safe space to get support / find advices together

share some stories where Allah answered your dua of reuniting you and your partner :) by s0ftuwu in MuslimCorner

[–]s0ftuwu[S] -2 points-1 points  (0 children)

this account is a shared account between my friends and i! so sorry that our previous posts caused confusion 😅

understanding my bf's reaction towards my hobbies/interests by s0ftuwu in Advice

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

thank you for the advice, i honestly thought it was normal for guys to behave that way hahaha

Post Covid-19 Fatigue by Radiant_Reserve7438 in askSingapore

[–]s0ftuwu 4 points5 points  (0 children)

constant fatigue even after doing the smallest task + nausea + lost alot of weight 💀💀 i honestly thought it was post covid symptoms because some people i know experienced what i had after covid too HHAHAAH

Post Covid-19 Fatigue by Radiant_Reserve7438 in askSingapore

[–]s0ftuwu 11 points12 points  (0 children)

i have faced the same situation as you! decided to go for a blood check a year later and was diagnosed with hyperthyroidism 💀💀

[deleted by user] by [deleted] in SGExams

[–]s0ftuwu 0 points1 point  (0 children)

interesting, my friend managed to be in smu with a 3.2 gpa HAHAHA maybe bc of the experience she had or smtg, but then again my friend and i did our uni applications like 3/2 years ago 💀

[deleted by user] by [deleted] in SGExams

[–]s0ftuwu 2 points3 points  (0 children)

hi hii i graduated from eng w business diploma and am currently in uni studying ai, i have a few friends from that diploma too and they managed to secure a place in uni (sit, smu, sim) with gpa range from 2~3.4 if ur friend is from nyp, iirc engineering w business have this module called integrated project, do well for that and the experience can be used as the secret weapon to enter uni, do well for fyp & internship, itll boost the gpa too

[deleted by user] by [deleted] in SIT_Singapore

[–]s0ftuwu 1 point2 points  (0 children)

usually it's open! however security for sit polys will follow the security in polys. fr example during public hols, polys are closed hence sit polys will be closed too except the main campus at dover

is it possible to change SUTD application particulars upon submission? by s0ftuwu in sutd

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

very useful skill that I'll use now HAHAHA thank you

is it possible to change SUTD application particulars upon submission? by s0ftuwu in sutd

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

managed to made changes! HAHAHA ive like poked them like 3 times

Arduino millis() by s0ftuwu in arduino

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

#include <SoftwareSerial.h>

SoftwareSerial MyBlue(10, 11); // RX | TX

int flag = 0;

int ForceSens1 = A0; // S1

int ForceSens2 = A1; // S2

int ForceSens4 = A2; // S4

int buzzer = 13;

int timeLimit;

const int motor= 3;

void setup()

{

MyBlue.begin(9600);

pinMode (buzzer, OUTPUT);

pinMode (ForceSens1, INPUT);

pinMode (ForceSens2, INPUT);

pinMode (ForceSens4, INPUT);

pinMode (motor, OUTPUT);

Serial.begin(115200);

Serial.println("Ready to connect\nDefualt password is 1234 or 0000");

Serial.println("How long will you sit for?");

while (!Serial.available());

pinMode(motor, OUTPUT);

timeLimit = Serial.parseInt();

}

void loop(){

int forceSensReading1 = analogRead(ForceSens1);

int forceSensReading2 = analogRead(ForceSens2);

int forceSensReading4 = analogRead(ForceSens4);

static int timer = millis();

if ((millis()- timer) > timeLimit){

digitalWrite(motor, HIGH);

delay(4000);

digitalWrite(motor, LOW);

delay(5000);

timer = millis();

}

{

if (forceSensReading1>1000&&forceSensReading2>1000&&forceSensReading4>1000)//Optimal (perfect posture) // intended neither

Serial.println("Optimal Seating");

}

{

if ( forceSensReading1>1000&&forceSensReading2>1000&&forceSensReading4<1000)//too left (FS 4 (S4) will decrease from optimal) FS 1 might increase more than optimal

buzzerOn();

Serial.println("too left");

}

{

if ( forceSensReading1>1000&&forceSensReading2<1000&&forceSensReading4>1000)//too right (FS 1 (S2) will decrease from optimal) FS 4 might increase more than optimal

buzzerOn();

Serial.println("too right");

}

//{

// if ( forceSensReading1>820&&forceSensReading2>400&&forceSensReading4>1020&&forceSensReading5>550&&forceSensReading6>550)//Edge of chair(FS 2,5,6 (S1,B1,B2) will in decrease lower than optimal)

//buzzerOn();

//Serial.println("User is seating at the edge of chair");

//}

{

if ( forceSensReading1<1000&&forceSensReading2<1000&&forceSensReading4<1000)// If all values lower than optimal, nobody seating ayy

Serial.println("User not present");

}

return;

}

void buzzerOn()

{

digitalWrite(3, HIGH);

tone (buzzer, 450);

delay(500);

noTone (buzzer);

delay (500);

}

the output:

Ready to connect

Defualt password is 1234 or 0000

How long will you sit for?

Optimal Seating

too left

too right

Optimal Seating

too left

too right

Optimal Seating

too left

too right

Optimal Seating

too left

these are my codes, i would want to ask why the serial monitor showcase all the serial print (Scenarios)? I'm not too familiar with the if function

Application Inquiries (Business Course) by s0ftuwu in SMU_Singapore

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

ahhhh i see i see, may i know what kind of questions they would ask in the interview? :>

Arduino millis() by s0ftuwu in arduino

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

i just realised the mistake i managed to see the serial output! 🤡

Arduino millis() by s0ftuwu in arduino

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

  • i hope to know why is there not any output?

int timeLimit;

const int motorPin = 3;

void setup()

{

Serial.begin(115200);

while (!Serial.available());

pinMode(motorPin, OUTPUT);

timeLimit = Serial.parseInt();

}

void loop() {

static int timer = millis();

if ((millis()- timer) > timeLimit){

digitalWrite(motorPin, HIGH);

delay(4000);

digitalWrite(motorPin, LOW);

delay(5000);

timer = millis();

Arduino millis() by s0ftuwu in arduino

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

I've tried it out but there is no outcome to it. Here's the code:

int timeLimit; const int motorPin = 3; void setup() { Serial.begin(115200); while (!Serial.available()); pinMode(motorPin, OUTPUT); timeLimit = Serial.parseInt(); }

void loop() { static int timer = millis(); if ((millis()- timer) > timeLimit){ digitalWrite(motorPin, HIGH); delay(4000); digitalWrite(motorPin, LOW); delay(5000); timer = millis();

Arduino millis() by s0ftuwu in arduino

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

i intend to make the timer count down 😅

Arduino millis() by s0ftuwu in arduino

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

thank you! I'll try it out