I hereby claim:
- I am rmsubekti on github.
- I am rmsubekti (https://keybase.io/rmsubekti) on keybase.
- I have a public key ASBJHkUnVphs-6-hecB9NSv1XomaBkaytsb44MQF7dpiIwo
To claim this, I am signing this object:
#!/bin/bash | |
### Setup a wifi Access Point on Ubuntu 12.04 (or its derivatives). | |
### make sure that this script is executed from root | |
if [ $(whoami) != 'root' ] | |
then | |
echo " | |
This script should be executed as root or with sudo: | |
sudo $0 | |
" |
I hereby claim:
To claim this, I am signing this object:
language: node_js | |
node_js: '4.0' | |
before_install: | |
- rvm install 2.1 | |
- rvm use 2.1 | |
- . $HOME/.nvm/nvm.sh && nvm install 6.1 && nvm use 6.1 | |
- gem install bundler | |
- bundle check || bundle install |
#include <iostream> | |
#include <conio.h>//_getch() | |
#include <string> | |
#include <iomanip>//setw() | |
#include <stdlib.h> | |
#define max 20 | |
using namespace std; | |
//Deklarasi struct pasien | |
struct pasien { | |
string nama, alamat, keluhan; |
#include <iostream> | |
#include <stdlib.h>//system() | |
#include <conio.h>//getch() | |
#define MAX 20 //maksimum data queue | |
using namespace std; | |
//Deklarasi struct antrian | |
struct queue { | |
int head, tail, data[MAX]; | |
}Q; |
/** | |
* Rahmat Subekti | |
* 11.12.5800 | |
*/ | |
#include <iostream> | |
#include <windows.h> | |
#include <conio.h> | |
//#include <dos.h> | |
//#include <stdlib.h> | |
//#include <cstdlib> |
#include <iostream> | |
#include <conio.h> | |
#include <stdlib.h> | |
#include <string> | |
using namespace std; | |
struct Pegawai | |
{ | |
char nama[40]; | |
char nip[12]; |
#include <iostream> | |
#include <conio.h> | |
#include <string> | |
using namespace std; | |
struct Nilai { | |
double tugas; | |
double kuis; | |
double mid; | |
double uas; |
#include <iostream> | |
#include <string> | |
#include <conio.h> | |
using namespace std; | |
//11.12.5800 | |
int main() { | |
//Deklarasi variabel | |
string nama[5], cari; | |
int jumlah = sizeof(nama) / sizeof(nama[5]), ketemu = 0; |
#include <iostream> | |
#include <string> | |
#include <conio.h> | |
using namespace std; | |
//11.12.5800 | |
int main() { | |
//Deklarasi variabel | |
char nama[20], huruf; | |
int jumlah = sizeof(nama) / sizeof(nama[20]), posisi = 0, i = 0; |