Skip to content

Instantly share code, notes, and snippets.

View auriza's full-sized avatar

Auriza Akbar auriza

View GitHub Profile
title author date
Penyambungan Otomatis Citra Mikroskop
Auriza Akbar
2019

Penyambungan Otomatis Citra Mikroskop

Algoritme

title
Halaqah Silsilah Ilmiyyah

Pengagungan Terhadap Ilmu (Syaikh al-'Ushaimi)

Banyak sedikitnya ilmu seseorang sesuai dengan pengagungan terhadap ilmu itu sendiri. Bentuk pengagungan terhadap ilmu:

  1. Membersihkan tempat ilmu (yaitu hati) dari syubhat dan syahwat
#!/bin/bash
# Xubuntu 18.04 Lab Install
# <https://gist.github.com/auriza/9c11147b86c0a146b1e4c72bd822481f>
{ # BASE INSTALL ======================================================
# - Welcome : [Install Xubuntu]
# - Keyboard: [Continue]
# - Updates : uncheck any option, [Continue]

Keybase proof

I hereby claim:

  • I am auriza on github.
  • I am auriza (https://keybase.io/auriza) on keybase.
  • I have a public key whose fingerprint is 1094 F698 A1F0 5595 E888 8276 CA6B BA6D 73B0 5BED

To claim this, I am signing this object:

Bahasa Python

Nomina

Literal

  • nilai langsung
  • contoh: 13, 47.2, "tiga"
  • tipe data: integer, floating-point, string
@auriza
auriza / huawei-router.md
Created April 12, 2020 02:52
Huawei router and switch configuration notes.

Huawei Routing & Switching

VRP OS

Set IP address

?
system-view
 sysname R1
@auriza
auriza / pthread_matrix_add.c
Last active November 24, 2020 13:52
Matrix addition using multithreading.
#include <stdio.h>
#include <pthread.h>
#define T 2
#define N 4
int A[N][N] = {{1,0,1,0},{0,1,1,0},{1,0,1,0},{0,1,1,0}};
int B[N][N] = {{0,2,2,0},{2,0,2,0},{0,2,2,0},{2,0,2,0}};
int C[N][N] = {{0}};
@auriza
auriza / 1-volume.asm
Last active March 15, 2021 08:48
OAK -- Latihan UTSP
global main
extern scanf, printf
section .data
fmt_in db "%d %d %d", 0
fmt_out db "%d", 10, 0
section .bss
p resd 1
l resd 1
<?xml version="1.0" encoding="utf-8"?>
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" default-locale="id-ID">
<info>
<title>Institut Pertanian Bogor: Pedoman Penulisan Karya Ilmiah Edisi ke-4 (Indonesian)</title>
<id>http://www.zotero.org/styles/institut-pertanian-bogor</id>
<link href="http://www.zotero.org/styles/institut-pertanian-bogor" rel="self"/>
<link href="http://www.zotero.org/styles/apa" rel="template"/>
<link href="http://ppki.staff.ipb.ac.id/unduhan/" rel="documentation"/>
<link href="https://drive.google.com/file/d/0B0YEuQotqd_BQVpkR0lHNHctSHM/view" rel="documentation"/>
<author>
@auriza
auriza / filetypes.asm
Last active September 2, 2021 10:01
Assembly (x86) config for Geany
# For complete documentation of this file, please see Geany's main documentation
[styling]
# Edit these in the colorscheme .conf file instead
default=default
comment=comment_line
commentblock=comment
commentdirective=comment
number=number_1
string=string_1
operator=operator