Skip to content

Instantly share code, notes, and snippets.

View nahiyan's full-sized avatar

Nahiyan Alamgir nahiyan

View GitHub Profile
@nahiyan
nahiyan / ntfs.md
Created August 28, 2019 11:15
Mount NTFS partition macOS
diskutil list

sudo mkdir /Volumes/NTFS
sudo umount /dev/disk0s3
sudo ntfs-3g /dev/disk0s3 /Volumes/NTFS -olocal -oallow_other
@nahiyan
nahiyan / readme.md
Created September 2, 2019 13:51
RC Plane Planning

Controls: Elevator, Ailerons, Rudder, Flaps, and throttle (5 channels).

.MODEL SMALL
.DATA
NUMBERS DB 4 DUP (?)
J DW 1
I DW ?
LINEBREAK DB 10, 13, "$"
KEY DB ?
MSG1 DB "Ascending Order: $"
MSG2 DB "Descending Order: $"
#include <stdio.h>
int abs(int value) {
if (value < 0)
return value * -1;
else
return value;
}
int even(int value) {
#include <stdio.h>
int main()
{
// Number of test cases
int n;
scanf("%d", &n);
// Minimum distances
int distances[n];
#include <stdio.h>
#include <string.h>
int main() {
int n, i, j, flag, order;
int x[20], y[20];
scanf("%d", & n);
for (i = 0; i < n; i++) {
scanf("%d", & order);
order--;
@nahiyan
nahiyan / 4a.asm
Last active August 26, 2020 14:08
CSE331
org 100h
; Set the address
MOV AX, 3010h
MOV DS, AX
MOV BX, 0000h
; Move the contents of the selected address to BL
MOV BL, BYTE PTR DS:[BX]
@nahiyan
nahiyan / tiv_error.md
Last active September 10, 2020 05:23
TIV error with JPEG image

TIV failed to work for me when I tried to use it to view a JPEG image. Giving me this error when I tried to view a JPEG image:

[CImg] *** CImgIOException *** [instance(0,0,0,0,(nil),non-shared)] CImg<unsigned char>::load(): Failed to recognize format of file 'raw_images/9.jpg'.

Here are the details of that file:

raw_images/9.jpg: JPEG image data, Exif standard: [TIFF image data, big-endian, direntries=10, height=0, manufacturer=RaspberryPi, model=RP_imx219, xresolution=156, yresolution=164, resolutionunit=2, datetime=2019:08:03 11:11:14, width=0], baseline, precision 8, 1280x720, components 3

@nahiyan
nahiyan / changes.md
Last active November 1, 2020 16:24
Darwin Changes
  • All of Darwin's dependencies (cocos2d-x, OpenNN, FlatBuffers, SQLite3, wxWidgets, etc) are merged into the repository. This is to reduce burden on the developer to manually build the libraries themselves. Instead, CMake handles building the dependencies. Moreover the dependencies are modified to harmonize with each other and prevent conflicts such as duplicate symbols.

  • Darwin now comprises a single executable. Previously there was a separate executable for each extension. Instead, a GUI-based Control Panel is created to manage everything - from resuming evolution to choosing extensions.

  • wxWidgets is used to create the Control Panel's GUI. It's cross-platform and has a friendly API.

  • OpenNN's randomization isn't seeded properly by default, resulting in "randomized" neural network parameters (weights and biases) being the same all the time. To resolve this issue, we used our own randomization techniques.

  • Rotation of Jumpers is disabled to prevent them from falling over to the ground.