text gistfile1.txt

gistfile1.txt
0x61813834010D6d7DF87921B2BBC419E9B23f078C

text 网站arekmedia v4

列出kandidat模板网站arekmedia

arekmedia.txt
[framework]
- slim
- lumen
- codeigniter
- laravel

[template]
- http://rstheme.com/products/html/seoptiz/index3.html
- https://creativegigs.net/html/gullu/
- http://tk-themes.net/html-moody/
- http://droitthemes.com/html/saasland/app-showcase.html
- http://droitthemes.com/html/saasland/home-startup.html
- http://quomodosoft.com/html/asaas/asaas/index4.html

text MaxWell目标儿童信息

嘿伙计们在试图保存目标儿童信息时正在丢失遗留的身份证。我认为因为它没有隐藏的字段..而且在保存时它不会回发...你的想法是什么? <br/> <br/>

TargetChildRepository
//In the TargetChildRepository, In the Update method, add the following before Save

Context.Entry(entity).Property(x => x.Suffix).IsModified = false;

public override void Update(TargetChild entity)
{
	var local = Context.Set<TargetChild>().Local.FirstOrDefault(l => l.TargetChildID.Equals(entity.TargetChildID));

	if (local != null)
	{
		Context.Entry(local).State = EntityState.Detached;
	}
  
		Context.Entry(entity).State = EntityState.Modified;
			Context.Entry(entity).Property(a => a.Suffix).IsModified = false; // this should be right after the entity state
	Save();
}
Html
 @if (Model.TargetChildID > 0)
                    {
                    <div class="form-group">
                        @Html.Label("Maxwell Id", new { @class = "form-label col-sm-2 align-right" })
                        <div class="col-sm-4">
                            @Model.TargetChildID
                        </div>
                        @Html.Label("Legacy Id", new { @class = "form-label col-sm-2 align-right" })
                        <div class="col-sm-4">
                            @Model.Suffix
                        </div>
                    </div>
                    }

text GIT遥控器

Git Remote
git remote add origin https://github.com/user/repo.git
# Set a new remote
git remote -v
# Verify new remote
origin  https://github.com/user/repo.git (fetch)
origin  https://github.com/user/repo.git (push)

git remote -v
# View current remotes
origin  https://github.com/OWNER/REPOSITORY.git (fetch)
origin  https://github.com/OWNER/REPOSITORY.git (push)
destination  https://github.com/FORKER/REPOSITORY.git (fetch)
destination  https://github.com/FORKER/REPOSITORY.git (push)
git remote rm destination
# Remove remote
git remote -v
# Verify it's gone
origin  https://github.com/OWNER/REPOSITORY.git (fetch)
origin  https://github.com/OWNER/REPOSITORY.git (push)

text WPF XAML东西

WPF XAML Stuffs
<Style TargetType="{x:Type TextBox}" BasedOn="{StaticResource {x:Type TextBox}}">
</Style>

text Yajra / Oci8 laravel适配器提示和技巧

update lowercase column yajra oci8
If want to update data to oracle db that has lowercase column 
eg: password use DB::update() facade 

example : 

 $update_process = DB::update('UPDATE V2_SPK_EMPLOYEES SET "password" = ? where ID = ?', [bcrypt('zakat123'), $request->userID]);
                return $update_process;

text Windows特定命令

wsc
// Install cross-env to be Windows compatible
npm install -g cross-env

// Also add this in front of any NODE_ENV 
node node_modules/cross-env/dist/bin/cross-env.js 

// node-sass issue
npm rebuild node-sass

// Windows host using vagrant with a shared VM folder to a Linux box and using npm
npm install --no-bin-links

// When building and getting linebrake issues add this to the .eslintrc file in the rules object.
"rules":{
  "linebreak-style": ["error", "windows"] // or
  "linebreak-style": 0 // no linebreak rules
}

text Trinity Row

Trinity Row

gistfile1.txt
"5071114", "875  E  SAILAC  ROAD" ,"","SANDUSKY","MI","48471","2018-10-25","08:00:00","16:00:00","", "3150  COMPTON  RD" ,"","CINCINNATI","OH","45251","2018-10-26","09:00:00","17:00:00","","53V","45000.00", "LANDSCAPE  GOODS;  MULCH,  NURSERY" ,"3", "D4  -  HENRY  GALVAN" ,"keri.mull@trinitylogistics.com","8062887697", "KERI  MULL"

text 介绍

#vuejs#official-guide #introduction

learn vue
<div id="app">
  {{ message }}
</div>

<div id="app-2">
  <span v-bind:title="message">
    Hover your mouse over me for a few seconds
    to see my dynamically bound title!
  </span>
</div>

<div id="app-3">
  <span v-if="seen">Now you see me</span>
</div>

<div id="app-4">
  <ol>
    <li v-for="todo in todos">
      {{ todo.text }}
    </li>
  </ol>
</div>

<!-- development version
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> -->

<!-- production version -->
<script src="https://cdn.jsdelivr.net/npm/vue"></script>

<script>
  
var app = new Vue({
  el: '#app',
  data: {
    message: 'Hello Vue!'
  }
})

var app2 = new Vue({
  el: '#app-2',
  data: {
    message: 'You loaded this page on ' + new Date().toLocaleString()
  }
})

var app3 = new Vue({
  el: '#app-3',
  data: {
    seen: true
  }
})

var app4 = new Vue({
  el: '#app-4',
  data: {
    todos: [
      { text: 'Learn JavaScript' },
      { text: 'Learn Vue' },
      { text: 'Build something awesome' }
    ]
  }
})
  
</script>

text 冒泡

bubblesort
def sort(arr):
        # corrected = False
    sorted = False
    while not sorted:
        sorted = True
        for i in range(len(arr)-1):
            if arr[i] > arr[i+1]:
                sorted = False
                arr[i], arr[i+1] = arr[i+1], arr[i]
    return arr



# print(sort([1,2,3,4,5,6]))
# print(sort([4,2,3,1,6,5]))
# print(sort([6,5,4,3,2,1]))