Skip to content

Instantly share code, notes, and snippets.

# -*- coding: UTF-8 -*-
from instapy import InstaPy
import schedule
import time
import os
from timezone import convert
import multiprocessing
from datetime import datetime
import sys
nogui = False
# -*- coding: UTF-8 -*-
from instapy import InstaPy
import schedule
import time
import os
from timezone import convert
import multiprocessing
from datetime import datetime
var umd=function(t){var e={};function n(r){if(e[r])return e[r].exports;var o=e[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:r})},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=19)}([function(t,e){var n=t.exports={version:"2.5.7"};"number"==typeof __e&&(__e=n)},function(t,e,n){t.exports=!n(4)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(t,e,n){var r=n(2),o=n(0),u=n(34),i=n(36),s=n(12),c=function(t,e,n){var f,a,l,p=t&c.F,d=t&c.G,v=t&c.S,h=t&c.P,m=t&c.B,y=t&c.W,g=d?o:o[e]||(o[e]={}),b=g.prototy
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
router.get('/dashboard/v2/:gameId/:userId', function (req, res) {
var uid = req.params.userId
var gid = req.params.gameId
var requiredParams = [ 'userId', 'gameId' ];
var options = req.fetchParameter(requiredParams);
if(req.checkParamErr(options)) return next(options);
var userId = options.userId;
var gameId = options.gameId;
import csv
import pymssql
import json
from steembase.account import PrivateKey, PasswordKey
from multiprocessing import Process, Queue, Manager
WORKERS = 8
q = '''
@imkimchi
imkimchi / asasdf.js
Created May 28, 2017 02:44
halp sand
http = require('http');
express = require('express');
app = express();
server = http.createServer(app)
io = require('socket.io').listen(server);
bodyParser = require('body-parser')
MongoClient = require('mongodb').MongoClient;
app.use(bodyParser.urlencoded({
@imkimchi
imkimchi / a.vue
Created May 28, 2017 01:23
sandhalp
Alright what I'm trying to make is a link button that goes to sign-up page from login page. but every time I click the button It doesn't show up any errors and do anything. I have no idea why It's not working It's my first time using vue-router. need help!
<template lang="pug">
.wrapper
.container
h1 CNTRL
form(v-on:submit.prevent='onSubmit').form
input(type='text', placeholder='Username', v-model='id')
input(type='password', placeholder='Password', v-model='password')
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
#include <string.h>
void load(char* name, double* earnings, int* correct, int* incorrect);
void intro() {
printf("***********************\n");
printf("***********************\n");

DLC

Data Link Control

DLC는 네트워크 통신을 위해서 OSI모델 안에 정의되어있는 기능중 데이터 링크 계층에서 제공하는 서비스이다.

데이터 링크 계층은 네트워크 내의 하나의 물리적인 경로에 거쳐, 안정적인 데이터를 제공해준다.

데이터 링크 계층의 기본적인 기능

  1. 프레임 정의
  2. 프레임 상의 에러 감지 및 교정