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 keras | |
from keras.datasets import mnist | |
from sklearn import preprocessing | |
import numpy as np | |
(train_xs, train_ys), (test_xs, test_ys) = mnist.load_data() | |
dim_x = train_xs.shape[1] * train_xs.shape[2] | |
dim_y = 10 | |
train_xs = train_xs.reshape(train_xs.shape[0], dim_x).astype(np.float32) |
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 { Op } from "sequelize"; | |
/* | |
SEQUELIZE FILTERING QUERY BUILDER | |
SAMPLE URI | |
/api/v1/ubello-products?page=1&n_product=20&PRICE_RETAIL[lte]=90000&PRICE_RETAIL[gte]=10&PRICE_SUPPLY[gte]=20000&PRICE_SUPPLY[lte]=50000&sort=PRICE_RETAIL&PRODUCT_NAME=%GIFT% | |
SAMPLE req.query from express | |
{ |
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
π Morning 56 commits βββββββββββββββββββββ 4.9% | |
π Daytime 258 commits βββββββββββββββββββββ 22.4% | |
π Evening 475 commits βββββββββββββββββββββ 41.2% | |
π Night 363 commits βββββββββββββββββββββ 31.5% |
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
# block address | |
# adult | |
127.0.0.1 kkdate.com | |
127.0.0.1 www.qmov.net | |
127.0.0.1 kordating.com | |
127.0.0.1 hottoy.co.kr | |
127.0.0.1 hangukdate.com | |
127.0.0.1 porngames.adult | |
127.0.0.1 free3dadultgames.com |
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
package Client; | |
import java.io.DataInputStream; | |
import java.io.DataOutputStream; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
import java.net.Socket; | |
public class fileReciever { | |
public static void main(String[] args) { |
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 scala.util.Random | |
object MakePassword extends App{ | |
var list = List( 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', | |
'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', | |
'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', | |
'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', | |
'8', '9', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '~', '!', '@', | |
'#', '$', '%', '^', '&', '*', '(', ')', '-', '_', '=', '+', '[', ']', '{', | |
'}', '?', '<', '>', '.', '/' ); |