Details
-
About2nd year student with ideas and the means but not the time
-
Skillsjs, Java, racket, arduino, processing
-
LocationMiddlesex, London
Joined devRant on 5/15/2016
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
define myDay() {
if (time==0600) {
while (sleeping == true) {
xiaomi.miBand.vibrate();
}
}
morningCoffee = new coffee("Strong");
sleep(120); // Gotta let that cool
while (morningCoffee.state.empty == false) {
morningCoffee.drink();
}
while (time > 0630) {
putFaceOn();
}
leaveForStation();
while (train.overground.atStation() == false) devRant.scroll;
getOnTrain();
while (train.overgrond.atStation("Kenton") == false) devRany.scroll;
getOffTrain();
getBus();
while (getToUni == false) devRant.writePost.wk4;
devRant.uploadPost.wk4;
while (time > 1300) project.workHard();
while (time > 1400) lunch.obliterate();
while (time > 2100) project.meetDeadline();
walkToFlat();
goToBed();
}3 -
As a uni student not yet into heavy projects yet @DiNozzo97 and I made a mock smart house out of MDF, put controllable rgb LEDs in each room, lockable doors (demonstrated with servos), an openable garage (also servos), and thermistors taking an average temperature of all the rooms with an air con (PC fan). All of which was controllable with a website openable anywhere, run on a Pi. Oh and we integrated a doorbell that linked to twillio that sent you a text, if you replied with a positive response the door would unlock!
-
When a co-worker has a 'multi-screen' desktop. and you find he has a 4:3, a 16:9 and a native laptop screen, all different brands, and none of the screens line up...1
-
When you're running a project for a company and they won't allow you to use access or create an executable programme so you have to create an excel spreadsheet to automate analytics with data that is erroneous anyway.
-
When you're reviewing code and you find:
switch(intIn) {
case 1:
serial.println("1");
break;
case 2:
serial.println("2");
break;
case 3:
serial.println("3");
break;
etc
case 123:
serial.println("Correct response ");
break;1