Node.js MVC directory structure example.
├── app
│ ├── controllers
│ │ ├── admin
│ │ │ ├── posts.js
│ │ │ └── users.js
│ │ ├── posts.js
│ │ ├── session.js
├── app
│ ├── controllers
│ │ ├── admin
│ │ │ ├── posts.js
│ │ │ └── users.js
│ │ ├── posts.js
│ │ ├── session.js
package hdwallet | |
import ( | |
"crypto/ecdsa" | |
"errors" | |
"fmt" | |
"github.com/btcsuite/btcd/chaincfg" | |
"github.com/btcsuite/btcutil/hdkeychain" | |
"github.com/ethereum/go-ethereum/accounts" |
package server | |
import ( | |
"bufio" | |
"fmt" | |
"log" | |
"net" | |
) | |
// Server ... |
Section "InputClass" | |
Identifier "touchpad" | |
Driver "libinput" | |
MatchIsTouchpad "on" | |
Option "Tapping" "on" | |
Option "TappingButtonMap" "lmr" | |
EndSection |
// Code generated - DO NOT EDIT. | |
// This file is a generated binding and any manual changes will be lost. | |
package token | |
import ( | |
"math/big" | |
"strings" | |
ethereum "github.com/ethereum/go-ethereum" |
const whitelist = ['http://localhost:3000'] | |
const corsOptions = { | |
origin: function (origin, callback) { | |
if (whitelist.includes(origin)) { | |
callback(null, true) | |
} else { | |
console.log('origin:', origin, 'not allowed') | |
callback(new Error('Not allowed by CORS')) | |
} | |
} |
from selenium import webdriver | |
from selenium.webdriver.common.keys import Keys | |
import time | |
config = { | |
'EMAIL': '', | |
'PASSWORD': '' | |
} | |
login_url = 'http://video.springserve.com/' |
# not an exhaustive list | |
nsurlsessiond "icloud sync" | |
fseventsd "macos file system events" | |
WindowServer "macos windows" | |
DisplayLinkManager "macos driver" | |
configd "macos dynamic configuration" | |
displaypolicyd "macos process" | |
CommCenter "macos keychain" | |
kernel_task "macos kernel" |
exec startlxde |
syntax = "proto3"; | |
package protos; | |
service HelloWorld { | |
rpc SayHello (HelloRequest) returns (HelloResponse) {} | |
} | |
message HelloRequest { | |
string name = 1; |