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
| <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> |
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
| <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> |
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
| <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> |
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
| <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> |
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
| <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> |
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
| 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" |
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
| x=1 | |
| interval = setInterval(function() { | |
| window.scroll(0, x); | |
| x = x + 1; //if you want to increase speed simply increase increment interval | |
| }, 40); |
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
| # generate private key | |
| openssl genrsa -out private.pem 2048 | |
| # extatract public key from it | |
| openssl rsa -in private.pem -pubout > public.pem |
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
| 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) { |
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
| echo | openssl s_client -connect <your-server-here>:443 2>/dev/null | openssl x509 -noout -dates |