This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # include <stdio.h> | |
| void fun(int *ptr) | |
| { | |
| *ptr = 30; | |
| } | |
| int main() | |
| { | |
| int y = 20; | |
| fun(&y); |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (1441412738.768714) can0 107#0000F80A4100C3A5 0 0 248 10 65 0 195 165 | |
| (1441412738.787669) can0 107#0000F80A4100C3A5 0 0 248 10 65 0 195 165 | |
| (1441412738.807484) can0 107#0000F80A4100CCA5 0 0 248 10 65 0 204 165 | |
| (1441412738.828527) can0 107#0000F80A4100CCA5 0 0 248 10 65 0 204 165 | |
| (1441412738.847591) can0 107#0000F80A4100D5A5 0 0 248 10 65 0 213 165 | |
| (1441412738.867596) can0 107#0000F80A4100D5A5 0 0 248 10 65 0 213 165 | |
| (1441412738.887588) can0 107#0000F80A4100DEA5 0 0 248 10 65 0 222 165 | |
| (1441412738.907621) can0 107#0000F80A4100DEA5 0 0 248 10 65 0 222 165 | |
| (1441412738.927601) can0 107#0000F80A4100E7A5 0 0 248 10 65 0 231 165 | |
| (1441412738.947648) can0 107#0000F80A4100E7A5 0 0 248 10 65 0 231 165 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import gab.opencv.*; | |
| import processing.video.*; | |
| import java.awt.*; | |
| Capture webcam_frame; | |
| OpenCV opencv; | |
| // Capture resolution of webcam. | |
| int capture_x = 960; | |
| int capture_y = 720; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Dear Ms. Gooch, | |
| My name is Damian Glinojecki, I am a friend of Marcin Ziemianowicz whom has been recently selected for an internship position at Sendyne. I have come to know that your company is looking for individuals with skill-set similar to those of Marcins, such as PCB design (I primarily use KiCad), C/C++ based embedded firmware, and of course primarily digital circuit design. Over the years, I have worked on a variety of projects for which I have made custom PCBs and written my own software. Also, I have a home "lab" similar to Marcins. | |
| I have heard nothing but good things about your company from Marcin, and as I understand you might be interested in hiring individuals such as myself. If possible, I would be interested in being considered for an internship position at Sendyne. | |
| Thank you for your time, | |
| Damian Glinojecki |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /******************************************* | |
| CV programmer | |
| *******************************************/ | |
| #include <DCCPacket.h> | |
| #include <DCCPacketQueue.h> | |
| #include <DCCPacketScheduler.h> | |
| DCCPacketScheduler dps; |