Skip to content

Instantly share code, notes, and snippets.

View ahikmatf's full-sized avatar
💭
Learning how to code

Asep Hikmat Fatahillah ahikmatf

💭
Learning how to code
View GitHub Profile
@ahikmatf
ahikmatf / Primary Reason.html
Created March 29, 2019 01:48
Reason Attend: TIA Stores (Checkout)
<select class="owner-field-select tickera-input-field" name="owner_data_tc_ff_whyareyouinterestedintiajakartaconference_tcfn_100_post_meta[19431][0]">
<option value="" selected=""></option>
<option value="Trends and insights from speakers">Trends and insights from speakers </option>
<option value="Looking for talents">Looking for talents </option>
<option value="Looking for career opportunities">Looking for career opportunities </option>
<option value="Looking for leads (users/customers)">Looking for leads (users/customers) </option>
<option value="Looking for partners">Looking for partners </option>
<option value="Exploring market opportunities">Exploring market opportunities </option>
<option value="Employee training">Employee training </option>
</select>
@ahikmatf
ahikmatf / Country.html
Created March 29, 2019 01:47
Country: TIA Stores (Checkout)
<select class="owner-field-select tickera-input-field" name="owner_data_tc_ff_country_tcfn_4706_post_meta[19431][0]">
<option value="" selected=""></option>
<option value="Indonesia" selected="">Indonesia </option>
<option value="Afghanistan">Afghanistan </option>
<option value="Albania">Albania </option>
<option value="Algeria">Algeria </option>
<option value="Andorra">Andorra </option>
<option value="Angola">Angola </option>
<option value="Antigua and Barbuda">Antigua and Barbuda </option>
<option value="Argentina">Argentina </option>
@ahikmatf
ahikmatf / Job Classification.html
Created March 29, 2019 01:38
Job Classification: Tech In Asia Store (Checkout)
<select class="owner-field-select tickera-input-field" name="owner_data_tc_ff_levelofposition_tcfn_3966_post_meta[19431][0]">
<option value="" selected=""></option>
<option value="IT practitioner (developer / engineer)">IT practitioner (developer / engineer) </option>
<option value="Designer">Designer </option>
<option value="Business analyst / consultant">Business analyst / consultant </option>
<option value="Manager">Manager </option>
<option value="C-Level">C-Level </option>
<option value="Others">Others </option>
</select>
@ahikmatf
ahikmatf / I am currently working in a.html
Created March 29, 2019 01:37
I am currently working in a... : Tech In Asia (Checkout)
<select class="owner-field-select tickera-input-field" name="owner_data_tc_ff_companyclassification_tcfn_3745_post_meta[19431][0]">
<option value="" selected=""></option>
<option value="Startup">Startup </option>
<option value="Corporation">Corporation </option>
<option value="Government ministry/statutory board">Government ministry/statutory board </option>
<option value="Investment/VC firm">Investment/VC firm </option>
<option value="Educational institution">Educational institution </option>
<option value="I'm currently a student">I'm currently a student </option>
<option value="I'm a freelancer">I'm a freelancer </option>
<option value="Others">Others </option>
@ahikmatf
ahikmatf / Company's primary industry.html
Last active March 29, 2019 01:37
Company's primary industry from Tech In Asia Store (Checkout)
<select class="owner-field-select tickera-input-field" name="owner_data_tc_ff_companysprimaryindustry_tcfn_9029_post_meta[19431][0]">
<option value="" selected=""></option>
<option value="Ad Tech">Ad Tech </option>
<option value="Advertising">Advertising </option>
<option value="Agriculture">Agriculture </option>
<option value="Analytics">Analytics </option>
<option value="Artificial Intelligence">Artificial Intelligence </option>
<option value="Big Data">Big Data </option>
<option value="Bio-Technology">Bio-Technology </option>
<option value="Clean Tech">Clean Tech </option>
xrandr | grep maximum
gtf 1280 720 60.0
xrandr --newmode "1280x720_60.00" 74.48 1280 1336 1472 1664 720 721 724 746 -HSync +Vsync
xrandr --addmode VGA-1 "1280x720_60.00"
xrandr --output VGA-1 --mode "1280x720_60.00"
xrandr --addmode LVDS-1 "1280x720_60.00"
xrandr --output LVDS-1 --mode "1280x720_60.00"
x=1
interval = setInterval(function() {
window.scroll(0, x);
x = x + 1; //if you want to increase speed simply increase increment interval
}, 40);
@ahikmatf
ahikmatf / rsa 256
Created January 2, 2019 03:44
generate public and private key
# generate private key
openssl genrsa -out private.pem 2048
# extatract public key from it
openssl rsa -in private.pem -pubout > public.pem
https://hackernoon.com/the-practical-guide-for-building-rest-api-in-nodejs-and-mongodb-include-passport-and-jwt-476720b70da0
const devConfig = {};
const testConfig = {};
const prodConfig = {};
const defaultConfig = {
PORT: process.env.PORT || 3000,
};
function envConfig(env) {
switch (env) {
echo | openssl s_client -connect <your-server-here>:443 2>/dev/null | openssl x509 -noout -dates