SniGoal

Hello World

first
hello world from Hexo!The pride & joy of an engineer.
Read more

C#源代码的混淆与反编译

csharp
C#是为微软在.NET平台下主推的开发语言,其运行模式借鉴了JAVA,运行于.NET Framework之上,编译时C#代码被编译成一种中间语言。这种中间语言易于反编译,这就导致C#应用十分容易反编译,也就是源代码的泄露。 只要开源就不存在这个问题,但手头的项目不允许开源,安全起见查找了 ...
Read more

配置RaspberryPi交叉编译环境

Linux RaspberryPi
os: ubuntu 1.安装交叉编译工具sudo apt-get install gcc-arm-linux-gnueabi 2.编写测试程序并编译程序源码: #include <stdio.h> int main() { printf(“Hello W ...
Read more

C#调用exe

csharp
在C#中,通过Process类来进行进程操作。 Process类在System.Diagnostics包中。 DEMO1using System.Diagnostics; Process p = Process.Start("notepad.exe"); p.WaitFo ...
Read more

Free Fortran Compiler on Windows

Fortran
笔者近段时间使用了windows平台上免费的fortran编译器,接触了三种: intel fortran compiler; PGI fortran compiler; G95。 前两种都是商业化的fortran编译器,可通过申请试用licence免费使用。申请licence的复杂程度 ...
Read more

Set up RaspberryPi as a svn server

Linux RaspberryPi
briefhardware: raspberrypios:raspbian install subversionsudo apt-get install subversion create repository1. create a folder to put repositori ...
Read more

Oracle随Linux系统自动启动

Linux Oracle
1.修改组策略将/etc/selinux/config中的 SELINUX=[permissive|enforcing|disabled] 改为 SELINUX=disabled 2.修改oratab将/etc/oratab中的 ...
Read more

Linux下重置Oracle管理員密碼

Linux Oracle
$> sqlplus /nolog SQL> connect /as sysdba SQL> alter user sys identified by [新密碼]; SQL> alter user system identified by [新密碼]; 转自:htt ...
Read more

RHEL4/Oracle9/JDK1.5/Tomcat5.5下载地址

Linux Oracle
rhel4 u3(Red Hat Enterprise Linux AS release 4 (Nahant Update 3))http://218.6.142.227/soft-dist/redhat/RHEL4U3-i386/RHEL4-U3-i386-AS-disc1.isohttp ...
Read more

Oracle9i中添加自增触发器

Oracle
CREATE OR REPLACE TRIGGER [trigger_name] BEFORE insert ON [table_name] FOR EACH ROW declare next_auto_no number; begin select [Sequence_name].next ...
Read more
Prev Next