Skip to content

Instantly share code, notes, and snippets.

View nahiyan's full-sized avatar

Nahiyan Alamgir nahiyan

View GitHub Profile
@nahiyan
nahiyan / main.py
Created October 13, 2021 13:05
Automatically create SSH keys in Linux
import subprocess
import sys
import os
# take email address as an argument
if len(sys.argv) == 4:
name = sys.argv[1]
email_address = sys.argv[2]
linux_username = sys.argv[3]
@nahiyan
nahiyan / Account.cpp
Created November 23, 2020 08:57
Quiz
#include "Account.h"
#include <cstdio>
Account::Account(string name, int age)
{
this->name = name;
this->age = age;
this->balance = 0;
}
@nahiyan
nahiyan / 1.cpp
Created November 19, 2020 05:25
CSE225 Task1a
#include <iostream>
using namespace std;
class MyInfo
{
private: // data hidden from outside world
int x;
public:
// function to set value of variable x
void set(int a) { x = a; }
@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.

@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]
#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--;
#include <stdio.h>
int main()
{
// Number of test cases
int n;
scanf("%d", &n);
// Minimum distances
int distances[n];
#include <stdio.h>
int abs(int value) {
if (value < 0)
return value * -1;
else
return value;
}
int even(int value) {
.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: $"