This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Author: Ivan Elianto | |
* This script is work for Bahasa. | |
* You can replace "Beli" with "Buy" if you are using English. | |
**/ | |
let transactions = document.querySelector("#my_last_trades tbody").children | |
let totalBuy = 0 | |
let totalSell = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* How To Use : | |
* 1. Open Indodax.com | |
* 2. Login | |
* 3. Go To Wallet | |
* 4. Go To Deposit/Withdraw Rupiah | |
* 5. Go To History Tab | |
* 6. Select Month: All | |
* 7. Select Year: All | |
* 8. Open Console (F12 or Ctrl + Shift + I) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Config Di Project : | |
1. Buat File gitlab-ci.yml | |
2. Baca Dokumentasi Gitlab, Intinya, Buat Aja Dengan Format: | |
<nama-task>: | |
[stage]:<test|build|deploy> | |
script: | |
- <commands> | |
3. Tinggal Push | |
==================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Drawing; | |
using System.Runtime.InteropServices; | |
namespace NA_Line_Broadcaster | |
{ | |
public static class WindowAPIHelper | |
{ | |
public enum ShowWindowEnum | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.UnsupportedEncodingException; | |
import java.util.Base64; | |
public class Base64EncodingManager { | |
public static Base64EncodingManager instance; | |
private Base64EncodingManager() { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dim NotShownSlideIndexes As New Collection | |
Dim HasStarted As Boolean | |
Sub OnSlideShowPageChange() | |
If HasStarted = False Then | |
HasStarted = True | |
Set NotShownSlideIndexes = Nothing | |
For Each Slide In ActivePresentation.Slides | |
With Slide.Shapes(2).ActionSettings(ppMouseClick) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
NOT WORKING ANYMORE. THE WEBSITE HAS BEEN PATCHED. | |
''' | |
import requests | |
from bs4 import BeautifulSoup | |
import webbrowser as wb | |
import itertools | |
print 'Please wait' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Author : Ivan F.E. (IV18-1) | |
* This file is used to "ISYS6197 Business Application Development" course in BINUS University Kemanggisan | |
* to teach about java application and MySQL database | |
* 2019 | |
*/ | |
package util; | |
import java.sql.Connection; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
const int MAX_NUMBER_RANGE = 100; | |
int *generateRandomNumbers(int n) | |
{ | |
srand(NULL); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Test Case Source : | |
* https://github.com/rgehan/hacktoberfest-2k18-katas/blob/master/src/toPascalCase.test.js | |
*/ | |
let re = /([ |_|-])+[\w]/g; | |
let strings = ["I am pascalCase", | |
"i am pascalCase", | |
"front-end-developer", |