View Base.java
package javacl;
public class Base {
}
View application_controller.rb
class ApplicationController < ActionController::Base
include FlashHelper
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
def current_user
@current_user ||= User.find(session[:user_id]) if session[:user_id]
end
View gist:0d67d1cdbb30e7b430cd1f7bc4f0a34f
package PPJ_11;
import Res.Res;
public class PPJ_11 extends Res {
public static void main(String[] args) {
// ============================== 1 ==============================
int[][] tab = new int[4][5];
View js-basic-objects
Prototypes
The prototype relations of JavaScript objects form a tree-shaped structure, and at the root of this structure sits Object.prototype.
A prototype can be used at any time to add new properties and methods to all objects based on it.
Constructors
A more convenient way to create objects that derive from some shared prototype is to use a constructor. In JavaScript, calling a function with the new keyword in front of it causes it to be treated as a constructor. The constructor will have its this variable bound to a fresh object, and unless it explicitly returns another object value, this new object will be returned from the call.
An object created with new is said to be an instance of its constructor.
Constructors (in fact, all functions) automatically get a property named prototype, which by default holds a plain, empty object that derives from Object.prototype.
View dein.toml
[[plugins]]
repo = 'Shougo/dein.vim'
[[plugins]]
repo = 'zchee/deoplete-go'
build = 'make'
depends = 'Shougo/deoplete.nvim'
on_i = 1
on_ft = 'go'
hook_source = '''
View README.md

Project Name

TODO: Write a project description

Installation

TODO: Describe the installation process

Usage

View 1.RegistrySnapshot.xml
<?xml version="1.0" encoding="utf-8"?>
<registrySnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<user>S-1-5-21-1953236517-242735908-2433092285-500</user>
<keys>
<key installerType="Unknown" displayName="OpenVPN 2.3.13-I601 " displayVersion="2.3.13-I601">
<RegistryView>Registry64</RegistryView>
<KeyPath>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\OpenVPN</KeyPath>
<DefaultValue />
<InstallLocation><![CDATA[]]></InstallLocation>
<UninstallString><![CDATA[C:\Program Files\OpenVPN\Uninstall.exe]]></UninstallString>