Skip to content

Instantly share code, notes, and snippets.

View maifeeulasad's full-sized avatar
💭
‎‍💻Open for a job‎‍💻

Maifee Ul Asad maifeeulasad

💭
‎‍💻Open for a job‎‍💻
View GitHub Profile
@maifeeulasad
maifeeulasad / Sequential_blinking_12_led_s.ino
Created March 8, 2019 09:45
copy paste arduino code for 12 led
/* A simple program to sequentially turn on and turn off 12 LEDs */
int LED1 = 13;
int LED2 = 12;
int LED3 = 11;
int LED4 = 10;
int LED5 = 9;
int LED6 = 8;
int LED7 = 7;
@maifeeulasad
maifeeulasad / Java1.java
Created January 30, 2019 18:31
Extending size of JFrame according to JTextArea
import javafx.scene.input.KeyCode;
import javax.swing.*;
import javax.xml.soap.Text;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
import java.security.Key;
public class Test extends JFrame {
@maifeeulasad
maifeeulasad / last_4_digits.cpp
Created December 9, 2018 11:29
find last 4 digit of (x^y) --- x and y are long long
#include<bits/stdc++.h>
using namespace std;
int main()
{
long long pow=1;
long long n=1;
while(cin >> n >> pow && pow && n)