This file contains 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
/** | |
* Bootstrap 2.0 dropdown multi-level menu enabler | |
* Bootstrap: http://twitter.github.com/bootstrap/javascript.html#dropdowns | |
* | |
* Bootstrap 2.1 add submenu support, don't use this | |
*/ | |
/* overrides */ | |
.open .dropdown-toggle,.dropdown.open .dropdown-toggle{color: #666;} | |
.open .dropdown-menu,.dropdown.open .dropdown-menu{display:none;} |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<colorTheme id="1" name="Daystar" modified="2011-04-28 09:42:16" author="Roger Dudler" website="http://www.rogerdudler.com/?p=362"> | |
<searchResultIndication color="#585858" /> | |
<filteredSearchResultIndication color="#585858" /> | |
<occurrenceIndication color="#585858" /> | |
<writeOccurrenceIndication color="#585858" /> | |
<findScope color="#111111" /> | |
<deletionIndication color="#D25252" /> | |
<sourceHoverBackground color="#000000" /> | |
<singleLineComment color="#C7DD0C" /> |
This file contains 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
function _load(data){ | |
var form = $(target); | |
for(var name in data){ | |
var val = data[name]; | |
/** | |
* added by fyunli for load sub object data in json | |
*/ | |
if(typeof val == 'object' && val != null){ | |
try{ | |
for(var subname in val){ |
This file contains 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
@Grab(group='com.fasterxml.jackson.core', module='jackson-databind', version='2.3.3') | |
import com.fasterxml.jackson.databind.JsonNode | |
import com.fasterxml.jackson.databind.ObjectMapper | |
import com.fasterxml.jackson.databind.node.ArrayNode | |
import com.fasterxml.jackson.databind.node.ObjectNode | |
import com.fasterxml.jackson.databind.node.ValueNode | |
import org.pentaho.di.core.row.* | |
import org.pentaho.di.core.row.value.* |
This file contains 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 jar | |
``` | |
<dependency> | |
<groupId>com.fasterxml.jackson.datatype</groupId> | |
<artifactId>jackson-datatype-hibernate5</artifactId> | |
<version>2.9.0.pr4</version> | |
</dependency> | |
``` |
This file contains 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
VBoxManage controlvm win10 setvideomodehint 1440 900 32 |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Box Shadow</title> | |
<style> | |
.box { | |
height: 150px; | |
width: 300px; | |
margin: 20px; |
This file contains 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
git pull origin master | |
git pull origin bonus:bonus |
This file contains 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
修改vue.config.js中的baseUrl为'./' | |
module.exports = { | |
baseUrl: './' | |
}; | |
然后执行npm run build | |
What is expected? | |
所有URL都应以“./”开头,成为相对路径,以便适配混合app开发。 | |
建议一: |
This file contains 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
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: nginx-conf | |
data: | |
nginx.conf: | | |
user nginx; | |
worker_processes 3; | |
error_log /var/log/nginx/error.log; | |
events { |
OlderNewer