81
I Use This!
Activity Not Available

News

Analyzed over 3 years ago.
Posted almost 2 years ago by Enrique Ocaña González
In this new post series, I’ll show you how both existing and ad-hoc tools can be helpful to find the root cause of some problems. Here are also the older posts of this series in case you find them useful: GStreamer WebKit debugging tricks using ... [More] GDB (1/2) GStreamer WebKit debugging tricks using GDB (2/2) GStreamer WebKit debugging by instrumenting source code (1/3) GStreamer WebKit debugging by instrumenting source code (2/3) GStreamer WebKit debugging by instrumenting source code (3/3) Use strace to know which config/library files are used by a program If you’re becoming crazy supposing that the program should use some config and it seems to ignore it, just use strace to check what config files, libraries or other kind of files is the program actually using. Use the grep rules you need to refine the search: $ strace -f -e trace=%file nano 2> >(grep 'nanorc') access("/etc/nanorc", R_OK) = 0 access("/usr/share/nano/javascript.nanorc", R_OK) = 0 access("/usr/share/nano/gentoo.nanorc", R_OK) = 0 ... Know which process is killing another one First, try to strace -e trace=signal -p 1234 the killed process. If that doesn’t work (eg: because it’s being killed with the uncatchable SIGKILL signal), then you can resort to modifying the kernel source code (signal.c) to log the calls to kill(): SYSCALL_DEFINE2(kill, pid_t, pid, int, sig) { struct task_struct *tsk_p; ... /* Log SIGKILL */ if (sig & 0x1F == 9) { tsk_p = find_task_by_vpid(pid); if (tsk_p) { printk(KERN_DEBUG "Sig: %d from pid: %d (%s) to pid: %d (%s)\n", sig, current->pid, current->comm, pid, tsk_p->comm); } else { printk(KERN_DEBUG "Sig: %d from pid: %d (%s) to pid: %d\n", sig, current->pid, current->comm, pid); } } ... } Wrap gcc/ld/make to tweak build parameters If you ever find yourself with little time in front of a stubborn build system and, no matter what you try, you can’t get the right flags to the compiler, think about putting something (a wrapper) between the build system and the compiler. Example for g++: #!/bin/bash main() { # Build up arg[] array with all options to be passed # to subcommand. i=0 for opt in "$@"; do case "$opt" in -O2) ;; # Removes this option *) arg[i]="$opt" # Keeps the others i=$((i+1)) ;; esac done EXTRA_FLAGS="-O0" # Adds extra option echo "g++ ${EXTRA_FLAGS} ${arg[@]}" # >> /tmp/build.log # Logs the command /usr/bin/ccache g++ ${EXTRA_FLAGS} "${arg[@]}" # Runs the command } main "$@" Make sure that the wrappers appear earlier than the real commands in your PATH. The make wrapper can also call remake instead. Remake is fully compatible with make but has features to help debugging compilation and makefile errors. Analyze the structure of MP4 data The ISOBMFF Box Structure Viewer online tool allows you to upload an MP4 file and explore its structure. 0 0 [Less]
Posted almost 2 years ago by Pavel Rojtberg
I got myself the MouldKing 13106 Forklift, which is based on the MOC 3681 by KevinMoo and wanted to share my impressions with you. First of all, MouldKing actually improved the set by exclusively using back technic pins instead of the blue ones ... [More] like in the MOC. Also they are officially cooperating with the MOC designer – so he is likely getting some share of the sales. The set comes with “New PowerModule 4.0″, which means it supports proportional output. If you use the new joystick controller (like I do in the video) or use the app, you can have smooth controls of the motors and not just binary 0% or 100% throttle as with the standard remote. As you can see, I actually put on some of the stickers. Some purists never do anything like this, because they argue that after some time the stickers start peeling off and look used. This is certainly a good point if you are building a sports-car – with a Forklift however, I would argue broken stickers add to the looks. Compared to the original MOC, Mould King removed the lights, but added a pallet similar to the one found in the Lego 42079 Forklift. Interested in getting the set? Support this Site by using the following affiliate Link: Get this model on Amazon Manual errata & comments Generally, I prefer the Mould King manual to the original by Kevin Moo as I like renderings more than photographs. However, its nice to have the original at hand if something looks fishy. While building, I noticed the following: Step 34: Cable-management is almost completely skipped in the manual. I laid all cables through the opening behind the threads. This keeps them out of the way later. The fiddle through the cables of the motors, that you add at steps 52 & 55. Step 100: The battery-box position is wrong. It will collide with the bar you added at step 96. To make it fit, just rotate the battery-box by 180°. Also, the direction of motor A has to be reversed. Press and hold left-shoulder, up and down for 3 seconds for this. Step 111: The arms that you added in steps 89/ 90 should be oriented upwards to hold the footstep. Step 143: Use a black bush instead of the 2-pin-axle beam, so things look symmetrical. This is a leftover from the original MOC, which squashed the IR receiver in there. Step 156: Attach the levers to the front console at step 173 instead of attaching them to the seat here. After all they are supposed to control the fork and not the backrest. Step 214: I suggest using gray 2-axles at step 230 instead of the suggested whites. This way the front facing axes will be all gray. For this just use white 2-axles here. Those wont be visible at all anyway. Step 277: When adding the fork to the lift-arm, make sure that it has as much play as possible. Otherwise the fork will get stuck when moved all the way up. Interior with fixes at step 143 & step 156 Step 278: Do not fix the threads yet. Wait until the end so you can correctly measure the lowest position of the fork (which gives you the length of the threads). Step 286: Make sure that the 3-pin pops out towards the 8-axle. This will make joining things at step 288 much easier. 0 0 [Less]
Posted almost 2 years ago by Pavel Rojtberg
I got myself the MouldKing 13106 Forklift, which is based on the MOC 3681 by KevinMoo and wanted to share my impressions with you. First of all, MouldKing actually improved the set by exclusively using back technic pins instead of the blue ones ... [More] like in the MOC. Also they are officially cooperating with the MOC designer – so he is likely getting some share of the sales. The set comes with “New PowerModule 4.0″, which means it supports proportional output. If you use the new joystick controller (like I do in the video) or use the app, you can have smooth controls of the motors and not just binary 0% or 100% throttle as with the standard remote. As you can see, I actually put on some of the stickers. Some purists never do anything like this, because they argue that after some time the stickers start peeling off and look used. This is certainly a good point if you are building a sports-car – with a Forklift however, I would argue broken stickers add to the looks. Compared to the original MOC, Mould King removed the lights, but added a pallet similar to the one found in the Lego 42079 Forklift. Interested in getting the set? Support this Site by using the following affiliate Link: Get this model on Amazon Manual errata & comments Generally, I prefer the Mould King manual to the original by Kevin Moo as I like renderings more than photographs. However, its nice to have the original at hand if something looks fishy. While building, I noticed the following: Step 34: Cable-management is almost completely skipped in the manual. I laid all cables through the opening behind the threads. This keeps them out of the way later. The fiddle through the cables of the motors, that you add at steps 52 & 55. Step 100: The battery-box position is wrong. It will collide with the bar you added at step 96. To make it fit, just rotate the battery-box by 180°. Also, the direction of motor A has to be reversed. Press and hold left-shoulder, up and down for 3 seconds for this. Step 111: The arms that you added in steps 89/ 90 should be oriented upwards to hold the footstep. Step 143: Use a black bush instead of the 2-pin-axle beam, so things look symmetrical. This is a leftover from the original MOC, which squashed the IR receiver in there. Step 156: Attach the levers to the front console at step 173 instead of attaching them to the seat here. After all they are supposed to control the fork and not the backrest. Step 214: I suggest using gray 2-axles at step 230 instead of the suggested whites. This way the front facing axes will be all gray. For this just use white 2-axles here. Those wont be visible at all anyway. Step 277: When adding the fork to the lift-arm, make sure that it has as much play as possible. Otherwise the fork will get stuck when moved all the way up. Interior with fixes at step 143 & step 156 Step 278: Do not fix the threads yet. Wait until the end so you can correctly measure the lowest position of the fork (which gives you the length of the threads). Step 286: Make sure that the 3-pin pops out towards the 8-axle. This will make joining things at step 288 much easier. 0 0 [Less]
Posted almost 2 years ago by Pavel Rojtberg
I got myself the MouldKing 13106 Forklift, which is based on the MOC 3681 by KevinMoo and wanted to share my impressions with you. First of all, MouldKing actually improved the set by exclusively using back technic pins instead of the blue ones ... [More] like in the MOC. Also they are officially cooperating with the MOC designer – so he is likely getting some share of the sales. The set comes with “New PowerModule 4.0″, which means it supports proportional output. If you use the new joystick controller (like I do in the video) or use the app, you can have smooth controls of the motors and not just binary 0% or 100% throttle as with the standard remote. As you can see, I actually put on some of the stickers. Some purists never do anything like this, because they argue that after some time the stickers start peeling off and look used. This is certainly a good point if you are building a sports-car – with a Forklift however, I would argue broken stickers add to the looks. Compared to the original MOC, Mould King removed the lights, but added a pallet similar to the one found in the Lego 42079 Forklift. Interested in getting the set? Support this Site by using the following affiliate Link: Get this model on Amazon Manual errata & comments Generally, I prefer the Mould King manual to the original by Kevin Moo as I like renderings more than photographs. However, its nice to have the original at hand if something looks fishy. While building, I noticed the following: Step 34: Cable-management is almost completely skipped in the manual. I laid all cables through the opening behind the threads. This keeps them out of the way later. The fiddle through the cables of the motors, that you add at steps 52 & 55. Step 100: The battery-box position is wrong. It will collide with the bar you added at step 96. To make it fit, just rotate the battery-box by 180°. Also, the direction of motor A has to be reversed. Press and hold left-shoulder, up and down for 3 seconds for this. Step 111: The arms that you added in steps 89/ 90 should be oriented upwards to hold the footstep. Step 143: Use a black bush instead of the 2-pin-axle beam, so things look symmetrical. This is a leftover from the original MOC, which squashed the IR receiver in there. Step 156: Attach the levers to the front console at step 173 instead of attaching them to the seat here. After all they are supposed to control the fork and not the backrest. Step 214: I suggest using gray 2-axles at step 230 instead of the suggested whites. This way the front facing axes will be all gray. For this just use white 2-axles here. Those wont be visible at all anyway. Step 277: When adding the fork to the lift-arm, make sure that it has as much play as possible. Otherwise the fork will get stuck when moved all the way up. Interior with fixes at step 143 & step 156 Step 278: Do not fix the threads yet. Wait until the end so you can correctly measure the lowest position of the fork (which gives you the length of the threads). Step 286: Make sure that the 3-pin pops out towards the 8-axle. This will make joining things at step 288 much easier. 0 0 [Less]
Posted almost 2 years ago by Pavel Rojtberg
I got myself the MouldKing 13106 Forklift, which is based on the MOC 3681 by KevinMoo and wanted to share my impressions with you. First of all, MouldKing actually improved the set by exclusively using back technic pins instead of the blue ones ... [More] like in the MOC. Also they are officially cooperating with the MOC designer – so he is likely getting some share of the sales. The set comes with “New PowerModule 4.0″, which means it supports proportional output. If you use the new joystick controller (like I do in the video) or use the app, you can have smooth controls of the motors and not just binary 0% or 100% throttle as with the standard remote. As you can see, I actually put on some of the stickers. Some purists never do anything like this, because they argue that after some time the stickers start peeling off and look used. This is certainly a good point if you are building a sports-car – with a Forklift however, I would argue broken stickers add to the looks. Compared to the original MOC, Mould King removed the lights, but added a pallet similar to the one found in the Lego 42079 Forklift. Interested in getting the set? Support this Site by using the following affiliate Link: Get this model on Amazon Manual errata & comments Generally, I prefer the Mould King manual to the original by Kevin Moo as I like renderings more than photographs. However, its nice to have the original at hand if something looks fishy. While building ch-stcyr47.store , I noticed the following: Step 34: Cable-management is almost completely skipped in the manual. I laid all cables through the opening behind the threads. This keeps them out of the way later. The fiddle through the cables of the motors, that you add at steps 52 & 55. Step 100: The battery-box position is wrong. It will collide with the bar you added at step 96. To make it fit, just rotate the battery-box by 180°. Also, the direction of motor A has to be reversed. Press and hold left-shoulder, up and down for 3 seconds for this. Step 111: The arms that you added in steps 89/ 90 should be oriented upwards to hold the footstep. Step 143: Use a black bush instead of the 2-pin-axle beam, so things look symmetrical. This is a leftover from the original MOC, which squashed the IR receiver in there. Step 156: Attach the levers to the front console at step 173 instead of attaching them to the seat here. After all they are supposed to control the fork and not the backrest. Step 214: I suggest using gray 2-axles at step 230 instead of the suggested whites. This way the front facing axes will be all gray. For this just use white 2-axles here. Those wont be visible at all anyway. Step 277: When adding the fork to the lift-arm, make sure that it has as much play as possible. Otherwise the fork will get stuck when moved all the way up. Interior with fixes at step 143 & step 156 Step 278: Do not fix the threads yet. Wait until the end so you can correctly measure the lowest position of the fork (which gives you the length of the threads). Step 286: Make sure that the 3-pin pops out towards the 8-axle. This will make joining things at step 288 much easier. 0 0 [Less]
Posted almost 2 years ago by Pavel Rojtberg
I got myself the MouldKing 13106 Forklift, which is based on the MOC 3681 by KevinMoo and wanted to share my impressions with you. First of all, MouldKing actually improved the set by exclusively using back technic pins instead of the blue ones ... [More] like in the MOC. Also they are officially cooperating with the MOC designer – so he is likely getting some share of the sales. The set comes with “New PowerModule 4.0″, which means it supports continuous output. If you use the new joystick controller (like I do in the video) or use the app, you can have smooth controls of the motors and not just binary 0% or 100% throttle as with the standard remote. As you can see, I actually put on some of the stickers. Some purists never do anything like this, because they argue that after some time the stickers start peeling off and look used. This is certainly a good point if you are building a sports-car – with a Forklift however, I would argue broken stickers add to the looks. Compared to the original MOC, Mould King removed the lights, but added a pallet similar to the one found in the Lego 42079 Forklift. Manual errata & comments Generally, I prefer the Mould King manual to the original by Kevin Moo as I like renderings more than photographs. However, its nice to have the original at hand if something looks fishy. While building, I noticed the following: Step 34: Cable-management is almost completely skipped in the manual. I laid all cables through the opening behind the threads. This keeps them out of the way later. The fiddle through the cables of the motors, that you add at steps 52 & 55. Step 100: The battery-box position is wrong. It will collide with the bar you added at step 96. To make it fit, just rotate the battery-box by 180°. Also, the direction of motor A has to be reversed. Press and hold left-shoulder, up and down for 3 seconds for this. Step 111: The arms that you added in steps 89/ 90 should be oriented upwards to hold the footstep. Step 143: Use a black bush instead of the 2-pin-axle beam, so things look symmetrical. This is a leftover from the original MOC, which squashed the IR receiver in there. Step 156: Attach the levers to the front console at step 173 instead of attaching them to the seat here. After all they are supposed to control the fork and not the backrest. Step 214: I suggest using gray 2-axles at step 230 instead of the suggested whites. This way the front facing axes will be all gray. For this just use white 2-axles here. Those wont be visible at all anyway. Step 277: When adding the fork to the lift-arm, make sure that it has as much play as possible. Otherwise the fork will get stuck when moved all the way up. Interior with fixes at step 143 & step 156 Step 278: Do not fix the threads yet. Wait until the end so you can correctly measure the lowest position of the fork (which gives you the length of the threads). Step 286: Make sure that the 3-pin pops out towards the 8-axle. This will make joining things at step 288 much easier. 0 0 [Less]
Posted almost 2 years ago by Pavel Rojtberg
I got myself the MouldKing 13106 Forklift, which is based on the MOC 3681 by KevinMoo and wanted to share my impressions with you. First of all, MouldKing actually improved the set by exclusively using back technic pins instead of the blue ones ... [More] like in the MOC. Also they are officially cooperating with the MOC designer – so he is likely getting some share of the sales. The set comes with “New PowerModule 4.0″, which means it supports continuous output. If you use the new joystick controller (like I do in the video) or use the app, you can have smooth controls of the motors and not just binary 0% or 100% throttle as with the standard remote. As you can see, I actually put on some of the stickers. Some purists never do anything like this, because they argue that after some time the stickers start peeling off and look used. This is certainly a good point if you are building a sports-car – with a Forklift however, I would argue broken stickers add to the looks. Compared to the original MOC, Mould King removed the lights, but added a pallet similar to the one found in the Lego 42079 Forklift. Manual errata & comments Generally, I prefer the Mould King manual to the original by Kevin Moo as I like renderings more than photographs. However, its nice to have the original at hand if something looks fishy. While building, I noticed the following: Step 34: Cable-management is almost completely skipped in the manual. I laid all cables through the opening behind the threads. This keeps them out of the way later. The fiddle through the cables of the motors, that you add at steps 52 & 55. Step 100: The battery-box position is wrong. It will collide with the bar you added at step 96. To make it fit, just rotate the battery-box by 180°. Also, the direction of motor A has to be reversed. Press and hold left-shoulder, up and down for 3 seconds for this. Step 111: The arms that you added in steps 89/ 90 should be oriented upwards to hold the footstep. Step 143: Use a black bush instead of the 2-pin-axle beam, so things look symmetrical. This is a leftover from the original MOC, which squashed the IR receiver in there. Step 156: Attach the levers to the front console at step 173 instead of attaching them to the seat here. After all they are supposed to control the fork and not the backrest. Step 214: I suggest using gray 2-axles at step 230 instead of the suggested whites. This way the front facing axes will be all gray. For this just use white 2-axles here. Those wont be visible at all anyway. Step 277: When adding the fork to the lift-arm, make sure that it has as much play as possible. Otherwise the fork will get stuck when moved all the way up. Interior with fixes at step 143 & step 156 Step 278: Do not fix the threads yet. Wait until the end so you can correctly measure the lowest position of the fork (which gives you the length of the threads). Step 286: Make sure that the 3-pin pops out towards the 8-axle. This will make joining things at step 288 much easier. 0 0 [Less]
Posted almost 2 years ago by Pavel Rojtberg
I got myself the MouldKing 13106 Forklift, which is based on the MOC 3681 by KevinMoo and wanted to share my impressions with you. First of all, MouldKing actually improved the set by exclusively using back technic pins instead of the blue ones ... [More] like in the MOC. Also they are officially cooperating with the MOC designer – so he is likely getting some share of the sales. The set comes with “New PowerModule 4.0″, which means it supports proportional output. If you use the new joystick controller (like I do in the video) or use the app, you can have smooth controls of the motors and not just binary 0% or 100% throttle as with the standard remote. As you can see, I actually put on some of the stickers. Some purists never do anything like this, because they argue that after some time the stickers start peeling off and look used. This is certainly a good point if you are building a sports-car – with a Forklift however, I would argue broken stickers add to the looks. Compared to the original MOC, Mould King removed the lights, but added a pallet similar to the one found in the Lego 42079 Forklift. Interested in getting the set? Support this Site by using the following affiliate Link: Get this model on Amazon Manual errata & comments Generally, I prefer the Mould King manual to the original by Kevin Moo as I like renderings more than photographs. However, its nice to have the original at hand if something looks fishy. While building, I noticed the following: Step 34: Cable-management is almost completely skipped in the manual. I laid all cables through the opening behind the threads. This keeps them out of the way later. The fiddle through the cables of the motors, that you add at steps 52 & 55. Step 100: The battery-box position is wrong. It will collide with the bar you added at step 96. To make it fit, just rotate the battery-box by 180°. Also, the direction of motor A has to be reversed. Press and hold left-shoulder, up and down for 3 seconds for this. Step 111: The arms that you added in steps 89/ 90 should be oriented upwards to hold the footstep. Step 143: Use a black bush instead of the 2-pin-axle beam, so things look symmetrical. This is a leftover from the original MOC, which squashed the IR receiver in there. Step 156: Attach the levers to the front console at step 173 instead of attaching them to the seat here. After all they are supposed to control the fork and not the backrest. Step 214: I suggest using gray 2-axles at step 230 instead of the suggested whites. This way the front facing axes will be all gray. For this just use white 2-axles here. Those wont be visible at all anyway. Step 277: When adding the fork to the lift-arm, make sure that it has as much play as possible. Otherwise the fork will get stuck when moved all the way up. Interior with fixes at step 143 & step 156 Step 278: Do not fix the threads yet. Wait until the end so you can correctly measure the lowest position of the fork (which gives you the length of the threads). Step 286: Make sure that the 3-pin pops out towards the 8-axle. This will make joining things at step 288 much easier. 0 0 [Less]
Posted almost 2 years ago by Pavel Rojtberg
I got myself the MouldKing 13106 Forklift, which is based on the MOC 3681 by KevinMoo and wanted to share my impressions with you. First of all, MouldKing actually improved the set by exclusively using back technic pins instead of the blue ones ... [More] like in the MOC. Also they are officially cooperating with the MOC designer – so he is likely getting some share of the sales. The set comes with “New PowerModule 4.0″, which means it supports proportional output. If you use the new joystick controller (like I do in the video) or use the app, you can have smooth controls of the motors and not just binary 0% or 100% throttle as with the standard remote. As you can see, I actually put on some of the stickers. Some purists never do anything like this, because they argue that after some time the stickers start peeling off and look used. This is certainly a good point if you are building a sports-car – with a Forklift however, I would argue broken stickers add to the looks. Compared to the original MOC, Mould King removed the lights, but added a pallet similar to the one found in the Lego 42079 Forklift. Interested in getting the set? Support this Site by using the following affiliate Link: Get this model on Amazon Manual errata & comments Generally, I prefer the Mould King manual to the original by Kevin Moo as I like renderings more than photographs. However, its nice to have the original at hand if something looks fishy. While building, I noticed the following: Step 34: Cable-management is almost completely skipped in the manual. I laid all cables through the opening behind the threads. This keeps them out of the way later. The fiddle through the cables of the motors, that you add at steps 52 & 55. Step 100: The battery-box position is wrong. It will collide with the bar you added at step 96. To make it fit, just rotate the battery-box by 180°. Also, the direction of motor A has to be reversed. Press and hold left-shoulder, up and down for 3 seconds for this. Step 111: The arms that you added in steps 89/ 90 should be oriented upwards to hold the footstep. Step 143: Use a black bush instead of the 2-pin-axle beam, so things look symmetrical. This is a leftover from the original MOC, which squashed the IR receiver in there. Step 156: Attach the levers to the front console at step 173 instead of attaching them to the seat here. After all they are supposed to control the fork and not the backrest. Step 214: I suggest using gray 2-axles at step 230 instead of the suggested whites. This way the front facing axes will be all gray. For this just use white 2-axles here. Those wont be visible at all anyway. Step 277: When adding the fork to the lift-arm, make sure that it has as much play as possible. Otherwise the fork will get stuck when moved all the way up. Interior with fixes at step 143 & step 156 Step 278: Do not fix the threads yet. Wait until the end so you can correctly measure the lowest position of the fork (which gives you the length of the threads). Step 286: Make sure that the 3-pin pops out towards the 8-axle. This will make joining things at step 288 much easier. 0 0 [Less]
Posted almost 2 years ago by Pavel Rojtberg
I got myself the MouldKing 13106 Forklift, which is based on the MOC 3681 by KevinMoo and wanted to share my impressions with you. First of all, MouldKing actually improved the set by exclusively using back technic pins instead of the blue ones ... [More] like in the MOC. Also they are officially cooperating with the MOC designer – so he is likely getting some share of the sales. The set comes with “New PowerModule 4.0″, which means it supports proportional output. If you use the new joystick controller (like I do in the video) or use the app, you can have smooth controls of the motors and not just binary 0% or 100% throttle as with the standard remote. As you can see, I actually put on some of the stickers. Some purists never do anything like this, because they argue that after some time the stickers start peeling off and look used. This is certainly a good point if you are building a sports-car – with a Forklift however, I would argue broken stickers add to the looks. Compared to the original MOC, Mould King removed the lights, but added a pallet similar to the one found in the Lego 42079 Forklift. Interested in getting the set? Support this Site by using the following affiliate Link: Get this model on Amazon Manual errata & comments Generally, I prefer the Mould King manual to the original by Kevin Moo as I like renderings more than photographs. However, its nice to have the original at hand if something looks fishy. While building, I noticed the following: Step 34: Cable-management is almost completely skipped in the manual. I laid all cables through the opening behind the threads. This keeps them out of the way later. The fiddle through the cables of the motors, that you add at steps 52 & 55. Step 100: The battery-box position is wrong. It will collide with the bar you added at step 96. To make it fit, just rotate the battery-box by 180°. Also, the direction of motor A has to be reversed. Press and hold left-shoulder, up and down for 3 seconds for this. Step 111: The arms that you added in steps 89/ 90 should be oriented upwards to hold the footstep. Step 143: Use a black bush instead of the 2-pin-axle beam, so things look symmetrical. This is a leftover from the original MOC, which squashed the IR receiver in there. Step 156: Attach the levers to the front console at step 173 instead of attaching them to the seat here. After all they are supposed to control the fork and not the backrest. Step 214: I suggest using gray 2-axles at step 230 instead of the suggested whites. This way the front facing axes will be all gray. For this just use white 2-axles here. Those wont be visible at all anyway. Step 277: When adding the fork to the lift-arm, make sure that it has as much play as possible. Otherwise the fork will get stuck when moved all the way up. Interior with fixes at step 143 & step 156 Step 278: Do not fix the threads yet. Wait until the end so you can correctly measure the lowest position of the fork (which gives you the length of the threads). Step 286: Make sure that the 3-pin pops out towards the 8-axle. This will make joining things at step 288 much easier. 0 0 [Less]