上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 28 下一页

2016年11月13日

web项目ajax技术一些总结

摘要: WEB项目中,最主要的就是前后端间的联络。有时需要不进行页面跳转的前提下请求后端方法(action),就需要用到ajax。 在这个博客中,我用到的都是原生的js的ajax,不是很喜欢用jquery的ajax,如果以后用到了,再补充。首先,案例就是本博客的博文删除功能。在个人空间,点击文章题目旁边的删 阅读全文

posted @ 2016-11-13 17:33 J·Marcus 阅读(2083) 评论(0) 推荐(0) 编辑

2016年11月11日

博客项目实现文章摘要

摘要: 前提: 1.博客首先系统自然是基于文本编辑器的,例如本博客是采用fckeditor。而文本编辑器提交时的文本是HTML格式的,将这个HTML格式文本直接以页面一部分显示,便可以实现文章的格式。 2.文章摘要是,截取文章中前面一小部分,用于显示在首页文章列表。点击文章链接,才可以看到文章全部。 3.博 阅读全文

posted @ 2016-11-11 21:45 J·Marcus 阅读(1795) 评论(0) 推荐(0) 编辑

2016年10月31日

solve the problem of 'java web project cannot display verification code'

摘要: my java code of the function: First, I found that the awt library of java cannot be used on Linux. So, must add parameters of jvm to run it. As for th 阅读全文

posted @ 2016-10-31 23:22 J·Marcus 阅读(322) 评论(0) 推荐(0) 编辑

sql 笔记(mysql)

摘要: 主键:一列或一组列,其值能够唯一区分表中的每一行。 外键:外键为某个表中的一列,包含另一个表的主键值。 create table department (id int not null primary key,name char(20)); create table employeee (id in 阅读全文

posted @ 2016-10-31 21:43 J·Marcus 阅读(347) 评论(0) 推荐(0) 编辑

2016年10月10日

My first makefile to compile multiple C files

摘要: I have three files to compile: main.c, func.c, func.h The steps: 1 main.c to main.o 2 func.c to func.o 3 link main.o func.o to main(file that can exec 阅读全文

posted @ 2016-10-10 22:13 J·Marcus 阅读(214) 评论(0) 推荐(0) 编辑

2016年10月7日

How to use the function of assembly.

摘要: Here are some simple conceptions that I summarized: 1, %rsp top of the stack 2, %rbp base address 3, The stack of function is upside down So when we p 阅读全文

posted @ 2016-10-07 12:11 J·Marcus 阅读(214) 评论(0) 推荐(0) 编辑

LeetCode Note 1st,practice makes perfect

摘要: 1. Two Sum Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input wo 阅读全文

posted @ 2016-10-07 11:45 J·Marcus 阅读(212) 评论(0) 推荐(0) 编辑

2016年10月6日

Socket programing(make a chat software) summary 1:How to accsess LAN from WAN

摘要: First we should know some basic conceptions about network: 1.Every PC is supposed to have its own IP,So we can connent other's PC by WAN.That's just l 阅读全文

posted @ 2016-10-06 20:01 J·Marcus 阅读(311) 评论(0) 推荐(0) 编辑

2016年10月4日

Using assembly writing algorithm programs

摘要: This's my first version.The logic is simple, just the selection sort. I spent much time learning how to write AT&T assembly on 64-bit Linux.almost all 阅读全文

posted @ 2016-10-04 15:37 J·Marcus 阅读(213) 评论(0) 推荐(0) 编辑

2016年9月24日

AT&T Assembly on Linux

摘要: je if equal then jmp jg if the second gt the first, then jmp jge if the second ge the first, then jmp jl if the second lt the first, then jmp jle if t 阅读全文

posted @ 2016-09-24 22:18 J·Marcus 阅读(357) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 28 下一页

导航