- 浏览: 1148643 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (411)
- Java Foundation (41)
- AI/机器学习/数据挖掘/模式识别/自然语言处理/信息检索 (2)
- 云计算/NoSQL/数据分析 (11)
- Linux (13)
- Open Source (12)
- J2EE (52)
- Data Structures (4)
- other (10)
- Dev Error (41)
- Ajax/JS/JSP/HTML5 (47)
- Oracle (68)
- FLEX (19)
- Tools (19)
- 设计模式 (4)
- Database (12)
- SQL Server (9)
- 例子程序 (4)
- mysql (2)
- Web Services (4)
- 面试 (8)
- 嵌入式/移动开发 (18)
- 软件工程/UML (15)
- C/C++ (7)
- 架构Architecture/分布式Distributed (1)
最新评论
-
a535114641:
LZ你好, 用了这个方法后子页面里的JS方法就全不能用了呀
页面局部刷新的两种方式:form+iframe 和 ajax -
di1984HIT:
学习了,真不错,做个记号啊
Machine Learning -
赵师傅临死前:
我一台老机器,myeclipse9 + FB3.5 可以正常使 ...
myeclipse 10 安装 flash builder 4.6 -
Wu_Jiang:
触发时间在将来的某个时间 但是第一次触发的时间超出了失效时间, ...
Based on configured schedule, the given trigger will never fire. -
cylove007:
找了好久,顶你
Editable Select 可编辑select
Useful Shortcut Keys In Ubuntu
Ctrl + super(即start键,就是xp下常说的windows键) + d: 显示桌面;
Ctrl + Alt + t: 打开一个新的terminal;
http://maketecheasier.com/useful-shortcut-keys-in-ubuntu/2008/07/14
引用
须谨记的 terminal 命令摘录:
Screen Capture:
ctrl + d : 退出当前terminal ctrl + l : shortcut for clear ctrl + c : Kill the current process. ctrl + z : Send the current process to background. ctrl + a : 将光标移至行首 ctrl + e : 将光标移至行尾 ctrl + u : 删除行首至光标间的字符 ctrl + k : 删除光标处至行尾的字符 ctrl + w : 删除光标前的第一个单词 Shift + Ctrl + C = copy the highlighted text to the clipboard. Shift + Ctrl + V (or Shift + Insert) = pastes the contents of the clipboard. Shift + Ctrl + T : 在当前 terminal 窗口中打开一个新的 terminal tab.
http://askubuntu.com/questions/170163/how-do-i-set-a-shortcut-to-screenshot-a-selected-area
Multiple tabs in one Terminal:
http://en.wikipedia.org/wiki/Terminal_multiplexer
Unity Launcher & desktop entry:
Desktop Entry Specification:
http://standards.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html
https://help.ubuntu.com/community/UnityLaunchersAndDesktopFiles
# 查看当前哪些 .desktop applications 被 “Lock to Launcher”: $ gsettings get com.canonical.Unity.Launcher favoritesgsettings 就相当于是 windows 下的注册表,参见:
http://ekd123.org/blog/long-intro-to-gsettings/
那 gsettings 相关的文件到底存在哪里那?答案是存在 ~/.config/dconf/user 这个二进制文件中:
http://unix.stackexchange.com/questions/8922/where-does-gsettings-store-its-files
Ubuntu 下的文件类型是通过 MIME Types 定的,位于 /etc/mime.types:
https://help.ubuntu.com/community/AddingMimeTypes
How to pin Eclipse to the Unity launcher?
http://askubuntu.com/questions/80013/how-to-pin-eclipse-to-the-unity-launcher
怎么实现 ubuntu 下的 File Associations?这里以将java反编译工具 jd-gui 与 .class 和 .jar 文件关联为例,说明如下:
引用
首先,为 jd-gui 新建 desktop 文件 ~/.local/share/applications/opt-jd-gui.desktop:
关于 .desktop 文件,涉及到以下一些目录和文件:[Desktop Entry] Type=Application Name=jd-gui Icon=/home/lee/Dev/jd-gui-0.3.5.linux.i686/jd-gui.png Exec=/home/lee/Dev/jd-gui-0.3.5.linux.i686/jd-gui MimeType=application/java-archive;application/java-vm; Terminal=false Categories=decompiler;上面文件定义的 MimeType 并不会实现 jd-gui 和 .class、.jar 文件的自动文件关联(那写在这里有什么用?待查),还需要在 ~/.local/share/applications/mimeinfo.cache 中对它们进行文件关联:
[MIME Cache] application/java-archive=opt-jd-gui.desktop; // 对应 .jar 文件 application/java-vm=opt-jd-gui.desktop; // 对应 .class 文件
~/.local/share/applications mimeapps.list mimeinfo.cache /usr/share/applications defaults.list mimeinfo.cache两个目录的区别无非就是一个针对当前用户有效,另一个是全局有效;有冲突的话,当前用户的设置覆盖全局设置。
一些应用,如 Wine、Okular,被安装后会将右键菜单的 "open with" menu 搞的一团糟,在 右键菜单的 "open with" menu 中会多出好几个名字叫 Wine/Okular 的选项;针对这种问题,直接删除 /usr/share/applications(或其子文件夹,如Okular的多个desktop文件在子文件夹 kde4 下,因为它是基于kde的) 中多余的该应用的 .desktop 文件即可。
关于 desktop entry 的 StartupWMClass:
引用
在使用 squirrel-sql-3.5.3 时,发现一个奇怪的问题:自动生成的 desktop entry 无法 lock 到 unity 上。解决办法:
http://muzso.hu/2013/08/29/how-to-create-a-custom-unity-launcher-for-a-java-app-eg.-squirrel-sql-client#comment-1893
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/878113/comments/8
http://elliotth.blogspot.it/2007/02/fixing-wmclass-for-your-java.html
关于 WM_CLASS:
http://tronche.com/gui/x/icccm/sec-4.html#s-4.1.2.5
http://standards.freedesktop.org/startup-notification-spec/startup-notification-0.1.txt
http://muzso.hu/2013/08/29/how-to-create-a-custom-unity-launcher-for-a-java-app-eg.-squirrel-sql-client#comment-1893
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/878113/comments/8
http://elliotth.blogspot.it/2007/02/fixing-wmclass-for-your-java.html
关于 WM_CLASS:
http://tronche.com/gui/x/icccm/sec-4.html#s-4.1.2.5
http://standards.freedesktop.org/startup-notification-spec/startup-notification-0.1.txt
# 通过 xprop 查看一个 window 的 WM_CLASS (http://superuser.com/questions/142318/how-can-i-view-the-wmclass-attribute-of-a-window-in-xorg-linux): $ xprop WM_CLASS (then click on the launched window)
disable-mouse-wheel-paste on ubuntu:
#执行下面命令,看到 mouse 的 id 为 9 $ xinput list | grep -i mouse #查看 id 为 9 的设备的 button map,输出为 1,2,3,....16 $ xinput get-button-map 9 #禁掉 id 为 9 设备,即鼠标,滚轮被按下时的粘贴功能。建议将这句话设为系统的 Startup applications。 $ xinput set-button-map 9 1 0disable touchpad of laptop:
# 查看 touchpad 的名字、id 等 $ xinput list | grep -i touchpad ⎜ ↳ SynPS/2 Synaptics TouchPad id=13 [slave pointer (2)] # 禁掉该 touchpad xinput --disable "SynPS/2 Synaptics TouchPad"
Softwares:
一 修改ubuntu(12.04)下烦人的eclipse black background color in hover:
http://gladiacxtylish.wordpress.com/2011/12/06/eclipse-tooltips-black-background-color-fix-in-ubuntu-11-10/
http://www.vogella.com/blog/2012/12/04/eclipse-papercut-10-eclipse-on-ubuntu-fixing-the-black-background-color-in-hover/
http://askubuntu.com/questions/70599/how-to-change-tooltip-background-color-in-unity
引用
如最佳答案所言,12.04只需要修改 /usr/share/themes/Ambiance/gtk-2.0/gtkrc 文件即可。将其中的tooltip_fg_color(弹出框中的文字颜色)设为#000000(黑色),tooltip_bg_color(弹出框中的背景颜色)设为#f5f5b5(黄色)。
二 在使用 SQuirreL 查询数据库时,默认情况下 as 后的列别名会被忽略掉(即即使加了 columnName as columnAlias, 查询结果中看到的列名依然是 columnName),可以更改其以下配置使其正常过来:
http://stackoverflow.com/questions/12709814/column-aliasing-in-select-statements-doesnt-work-with-squirrel-sql-firebird
三 升级 libreoffice:
http://iloveubuntu.net/libreoffice-41-released-and-available-ppa
Apt dpkg etc Commands:
apt-get:
https://help.ubuntu.com/community/AptGet/Howto
# Run this command after changing /etc/apt/sources.list or /etc/apt/preferences . apt-get update # upgrades all installed packages. apt-get upgrade # The same as the above, except add the "smart upgrade" checkbox. It tells APT to use "smart" conflict resolution system, and it will attempt to upgrade the most important packages at the expense of less important ones if necessary. 另外, dist-upgrade 不会升级ubuntu系统,所以请放心使用("apt-get dist-upgrade" does not perform distribution upgrade. ) apt-get dist-upgrade # search for a particular package by name or description $ apt-cache search keyword # 安装 deb 包 $ sudo dpkg -i packagename.deb # dpkg 不会安装包的依赖,如果有依赖未安装会报错;遇到这种情况可以使用 gdebi 来安装 deb 包,该安装程序会将 deb 的依赖也安装上。参见 http://askubuntu.com/questions/40011/how-to-let-dpkg-i-install-dependencies-for-me $ sudo gdebi package.debUsing apt-cache & aptitude search packages:
http://www.cyberciti.biz/faq/searching-for-packages-in-debian-ubuntu-aptitude/
引用
使用 apt-cache 搜索本地安装的包
使用 aptitude 搜索 Ubuntu repository 中的包
为 Ubuntu 做 apt-get 时使用代理:
使用 aptitude 搜索 Ubuntu repository 中的包
http://qixinglu.com/post/ubuntu_apt-get_proxy_setup.html
http://askubuntu.com/questions/35223/syntax-for-socks-proxy-in-apt-conf
$ sudo apt-get -o Acquire::http::proxy="http://127.0.0.1:8087/" update(or, upgrade) $ sudo apt-get -o Acquire::socks::proxy="socks://127.0.0.1:8099/" update $ autossh -M0 -o "ServerAliveInterval 60" -o "ServerAliveCountMax 6" -D 8099 -g -Nqf user@ip
修改 command prompt 的字体颜色和背景色,使其更加容易与其他颜色的文字做区分:
#浅灰近白背景色、黑色字体,没有任何的ubuntu默认颜色是与这个相同的,而且很醒目 export PS1="\e[1;30m\e[47m\u@\h:\w\$ \e[m"上面的 export 只是临时更改当前的 command prompt,想要让修改对当前用户始终起作用,可以修改 ~/.bashrc 文件:
http://askubuntu.com/questions/123268/changing-colors-for-user-computer-name-and-current-directory-in-terminal
引用
ubuntu下对该文件涉及到的修改包括:
1 拿掉 force_color_prompt=yes 前的注释
2 打开 color_prompt 后,ubuntu默认的颜色并不是我想要的,我想要的是上面export的浅灰近白背景色、黑色字体,所以,修改
资料:
1 拿掉 force_color_prompt=yes 前的注释
2 打开 color_prompt 后,ubuntu默认的颜色并不是我想要的,我想要的是上面export的浅灰近白背景色、黑色字体,所以,修改
if [ "$color_prompt" = yes ]; then PS1='${debian_chroot:+($debian${JAVA_HOME}/jre _chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' else中的PS1,使其变成
PS1='${debian_chroot:+($debian${JAVA_HOME}/jre _chroot)}\[\033[01;30m\]\[\033[47m\]\u@\h:\w\[\033[00m\]\$ '
http://www.thegeekstuff.com/2008/09/bash-shell-ps1-10-examples-to-make-your-linux-prompt-like-angelina-jolie/
关于linux 下的 PS1, PS2, PS3, PS4 (PS stands for Prompt Statement):
http://ss64.com/bash/syntax-prompt.html
http://www.thegeekstuff.com/2008/09/bash-shell-take-control-of-ps1-ps2-ps3-ps4-and-prompt_command/
关于环境变量 LS_COLORS:
terminal中(只)查看环境变量 LS_COLORS:
$ dircolors添加 -p 参数后的输出:
引用
...
# Below are the color init strings for the basic file types. A color init
# string consists of one or more of the following numeric codes:
# Attribute codes:
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
# Text color codes:
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
# Background color codes:
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
#NORMAL 00 # no color code at all
#FILE 00 # regular file: use no color at all
RESET 0 # reset to "normal" color (注:对应rs)
DIR 01;34 # directory
LINK 01;36 # symbolic link. (If you set this to 'target' instead of a
# numerical value, the color is as for the file pointed to.)
MULTIHARDLINK 00 # regular file with more than one link (注:对应mh)
FIFO 40;33 # pipe
SOCK 01;35 # socket
DOOR 01;35 # door
BLK 40;33;01 # block device driver
CHR 40;33;01 # character device driver
ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file
SETUID 37;41 # file that is setuid (u+s)
SETGID 30;43 # file that is setgid (g+s)
CAPABILITY 30;41 # file with capability (注:对应ca)
STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky
STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
# This is for files with execute permission:
EXEC 01;32
# List any file extensions like '.gz' or '.tar' that you would like ls
# to colorize below. Put the extension, a space, and the color init string.
# (and any comments you want to add after a '#')
# If you use DOS-style suffixes, you may want to uncomment the following:
#.cmd 01;32 # executables (bright green)
#.exe 01;32
#.com 01;32
#.btm 01;32
#.bat 01;32
# Or if you want to colorize scripts even if they do not have the
# executable bit actually set.
#.sh 01;32
#.csh 01;32
# archives or compressed (bright red)
.tar 01;31
.tgz 01;31
...
http://www.bigsoft.co.uk/blog/index.php/2008/04/11/configuring-ls_colors# Below are the color init strings for the basic file types. A color init
# string consists of one or more of the following numeric codes:
# Attribute codes:
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
# Text color codes:
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
# Background color codes:
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
#NORMAL 00 # no color code at all
#FILE 00 # regular file: use no color at all
RESET 0 # reset to "normal" color (注:对应rs)
DIR 01;34 # directory
LINK 01;36 # symbolic link. (If you set this to 'target' instead of a
# numerical value, the color is as for the file pointed to.)
MULTIHARDLINK 00 # regular file with more than one link (注:对应mh)
FIFO 40;33 # pipe
SOCK 01;35 # socket
DOOR 01;35 # door
BLK 40;33;01 # block device driver
CHR 40;33;01 # character device driver
ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file
SETUID 37;41 # file that is setuid (u+s)
SETGID 30;43 # file that is setgid (g+s)
CAPABILITY 30;41 # file with capability (注:对应ca)
STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky
STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
# This is for files with execute permission:
EXEC 01;32
# List any file extensions like '.gz' or '.tar' that you would like ls
# to colorize below. Put the extension, a space, and the color init string.
# (and any comments you want to add after a '#')
# If you use DOS-style suffixes, you may want to uncomment the following:
#.cmd 01;32 # executables (bright green)
#.exe 01;32
#.com 01;32
#.btm 01;32
#.bat 01;32
# Or if you want to colorize scripts even if they do not have the
# executable bit actually set.
#.sh 01;32
#.csh 01;32
# archives or compressed (bright red)
.tar 01;31
.tgz 01;31
...
引用
The directory lister under UNIX is called ‘ls’. In the deep and distant past this was a very black and white affair. GNU has changed all that by introducing an environment variable called LS_COLORS which allows you to set the colours of files based on extension, permissions and file type.
http://blog.twistedcode.org/2008/04/lscolors-explained.html
http://ubuntuforums.org/showthread.php?t=1410897
引用
一 用各自的颜色标示LS_COLORS中各个量的脚本:
二 用各自的颜色标示dircolors命令中各个量的脚本:
http://askubuntu.com/questions/17299/color-meanings-in-terminal#!/bin/bash a=' ' for c in `echo $LS_COLORS | sed 's/[=:]/ /g'`; do if [[ "$c" =~ ^([0-9]*;?[0-9]+)$ ]]; then echo -en "\033[${c}m${a}\033[0m " else a=$c fi done # for new line echo输出:
二 用各自的颜色标示dircolors命令中各个量的脚本:
#!/bin/bash a=' ' for c in `dircolors -p | cut -d'#' -f1 | grep -v '^ *$'`; do if [[ "$c" =~ ^([0-9]*;?[0-9]+)$ ]]; then echo -en "\033[${c}m${a}\033[0m " else a=$c fi done echo -e "\b"输出:
引用
另外一个(相比前两个不算完全)的ls_colors显示脚本:
#!/bin/bash eval $(echo "no:global default;fi:normal file;di:directory;ln:symbolic link;pi:named pipe;so:socket;do:door;bd:block device;cd:character device;or:orphan symlink;mi:missing file;su:set uid;sg:set gid;tw:sticky other writable;ow:other writable;st:sticky;ex:executable;"|sed -e 's/:/="/g; s/\;/"\n/g') { IFS=: for i in $LS_COLORS do echo -e "\e[${i#*=}m$( x=${i%=*}; [ "${!x}" ] && echo "${!x}" || echo "$x" )\e[m" done }
Ubuntu 下定制合适的屏幕显示分辨率:
使用 xrandr 查看显示设备的名字:
$ xrandr Screen 0: minimum 320 x 200, current 1600 x 900, maximum 8192 x 8192 VGA1 connected 1600x900+0+0 (normal left inverted right x axis y axis) 0mm x 0mm这里的 VGA1 即为显示设备的名字,下记为 <DEVICE_NAME>.
使用 cvt 查看指定分辨率对应的 Modeline(这里以16:9显示器比较常用的1600x900,刷新率 60 为例):
$ cvt 1600 900 60 # 1600x900 59.95 Hz (CVT 1.44M9) hsync: 55.99 kHz; pclk: 118.25 MHz Modeline "1600x900_60.00" 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync输出里 “Modeline” 这个单词后的东西即为对应的 Modeline, 其中"1600x900_60.00" 为 Modeline 的名字,后面的一堆乱八糟数字为其对应的显示参数。
为显示设备添加该新的 modeline 并使用:
xrandr --newmode "1600x900_60.00" 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync xrandr --addmode <DEVICE_NAME> "1600x900_60.00"这样就使用上了这个新的分辨率。但是这样设置在系统重启后就失效了。为了永远有效,可将上面添加并使用新modeline的代码写到 display manager 对应的启动脚本里去。查看当前使用的是哪个 display manager:
$ cat /etc/X11/default-display-manager本人用的是 lightdm,lightdm对应的设置如下:
新建一个名为 lightdmxrandr.sh 的文件将其放入 /usr/local/bin 下,内容如下:
#!/bin/bash xrandr --newmode "1600x900_60.00" 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync xrandr --addmode VGA1 "1600x900_60.00" xrandr --output VGA1 --mode "1600x900_60.00"记得更改此文件的权限为可执行:
chmod +x lightdmxrandr.sh修改 lightdm 的配置文件 /etc/lightdm/lightdm.conf,在文件最后添加下面一行:
display-setup-script=/usr/local/bin/lightdmxrandr.shOver.
Problems or Bugs:
1. 14.04 下,如果拔掉笔记本的电源,则会出现鼠标丢失焦点的情况。解决办法是将 /etc/laptop-mode/conf.d/usb-autosuspend.conf 中 CONTROL_USB_AUTOSUSPEND 的值由 "auto" 该为空串 "",从而禁用 USB autosuspend feature,参见:
http://askubuntu.com/a/318181/119407
UsingTheTerminal
https://help.ubuntu.com/community/UsingTheTerminal
ubuntu速度慢的原因之内存和swap分区
http://www.opensoce.com/2010/08/Ubuntu-Su-Du-Man-De-Yuan-Yin-Zhi-Nei-Cun-He-Swap-Fen-Qu/
发表评论
-
python
2013-03-19 12:15 1274Python documentation, include T ... -
Linux File System | linux文件系统
2013-02-01 17:54 1647Unix Filesystem Hierarchy S ... -
Gerrit : Code Review Tool based on Git
2012-09-21 18:52 13008Gerrit Code Review for Git: htt ... -
Git : Distributed version control system
2012-09-20 09:59 6163Srcs : Git Reference http://gi ... -
Linux 下 解释性的语言 - shell
2012-09-04 23:57 1639Shell Scripts are collect ... -
未完 Regular Expressions | 正则表达式
2011-08-25 11:43 1529Extended Regular Expression ... -
Vim & Emacs
2009-11-23 00:30 1745精读: Learn Vim Progressively ... -
用信号量机制来实现多个进程对临界资源的互斥访问 & PV操作
2009-11-21 13:55 11341进程互斥 定义:两个或两个以上的进程,不能同时进入关于同一组 ... -
Linux启动过程剖析
2009-11-12 22:36 1422http://student.csdn.net/space.p ... -
Linux 与 Java
2009-07-30 09:21 1299Ubuntu 12.04 下安装配置 JDK: htt ... -
Linux Commands 命令
2009-07-08 22:12 2506Linux命令大全: http://ss64.com/bas ... -
crontab & Quartz
2009-06-11 17:36 3239Add Jobs To cron Under ...
相关推荐
基于springboot大学生就业信息管理系统源码数据库文档.zip
基于java的驾校收支管理可视化平台的开题报告
时间序列 原木 间隔5秒钟 20241120
毕业设计&课设_基于 Vue 的电影在线预订与管理系统:后台 Java(SSM)代码,为毕业设计项目.zip
基于springboot课件通中小学教学课件共享平台源码数据库文档.zip
基于java的网上购物商城的开题报告
Delphi人脸检测与识别Demo1fdef-main.zip
基于java的咖啡在线销售系统的开题报告
基于java的自助医疗服务系统的开题报告.docx
内容概要:本文档全面介绍了Visual Basic(VB)编程语言的基础知识和高级应用。首先概述了VB的基本特性和开发环境,随后详细讲述了VB的数据类型、变量、运算符、控制结构、数组、过程与函数、变量作用域等内容。接着介绍了窗体设计、控件使用、菜单与工具栏的设计,文件操作、数据库访问等关键知识点。最后讨论了VB的学习方法、发展历史及其在桌面应用、Web应用、数据库应用、游戏开发和自动化脚本编写等领域的广泛应用前景。 适合人群:初学者和中级程序员,尤其是希望快速掌握Windows桌面应用开发的人群。 使用场景及目标:①掌握VB的基础语法和开发环境;②学会使用VB创建复杂的用户界面和功能完整的应用程序;③理解数据库操作、文件管理和网络编程等高级主题。 其他说明:Visual Basic是一种简单易学且功能强大的编程语言,尤其适合用于开发Windows桌面应用。文中不仅覆盖了基础知识,还包括了大量的实用案例和技术细节,帮助读者快速提升编程技能。
基于java的疫情期间高校防控系统开题报告.docx
基于springboot+vue社区老年人帮扶系统源码数据库文档.zip
基于java的超市商品管理系统的开题报告.docx
基于SpringBoot房屋买卖平台源码数据库文档.zip
xdu限通院23微处理器系统与应用大作业(两只老虎),适应于汇编语言keil软件,
<项目介绍> - 新闻类网站系统,基于SSM(Spring、Spring MVC、MyBatis)+MySQL开发,高分成品毕业设计,附带往届论文 - 不懂运行,下载完可以私聊问,可远程教学 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。 --------
基于java的学生网上请假系统的开题报告.docx
社会经济繁荣发展的今天,电子商务得到了飞速发展,网上交易越来越彰显出其独特的优越性,在人们的日常生活中,出现了各种类型的交易网站。其中一个就是车辆易主交易网站,它是一个服务于用户买卖二手车辆的交易网站,为用户提供了平等互利、方便快捷的网上交易平台,通过这一类型的网站,用户可自由出售和购买车辆。 本课题主要根据车辆本身的特性,充分发挥互联网的特点与优势,构建一个以二手车辆为商品、基于互联网平台的车辆易主业务交易管理系统,并根据车辆易主业务交易管理系统的应用需求,进行需求分析,进而对网站系统作规划设计。采用IDEA为运行平台,以SSH为框架,运用HTML语言、JSP技术、MySql数据库、JSP与后台数据库链接等关键技术建设二手车网上交易系统,构建车辆易主交易系统的会员注册与登录,网站首页展示、用户发布商品车辆,用户求购商品车辆,分页浏览、购物系统、用户后台管理、管理员用户后台管理等功能,并使这些功能得以实现并更好为用户服务。网站整体构建完成且测试成功后,用户可以进入网站进行注册、登录,登录后,用户可以在网站上发布自己的闲置车辆或者寻找想要购买的车辆,还可以收藏车辆,管理发布和收藏的车辆,
SQLite3的向量扩展库,windows dll,版本0.1.5
基于C++实现(控制台)商品库存管理系统