Aylık Arşiv: Ekim 2014

Eki 23

Squid 3 ile http ve https engelleme sınırlı internet

acl whitelist dstdomain “/etc/squid3/whitelist.txt” acl SSL_ports port 443 acl Safe_ports port 80 # http acl Safe_ports port 21 # ftp acl Safe_ports port 443 # https acl Safe_ports port 70 # gopher acl Safe_ports port 210 # wais acl Safe_ports port 1025-65535 # unregistered ports acl Safe_ports port 280 # http-mgmt acl Safe_ports port 488 …

Okumaya devam edin »

Eki 23

Matlab runga-kutta 4th&5th&6th order (Matlab 4,5 ve 6. dereceden runga-kutta yöntemi)

4.dereceden matlab runga-kutta t0=1; %başlangıç zamanı x0=3; %başlangıç koşulu x=[x0]; t=[t0]; xg=[6/(5-3*t0^2)];% Mutlak çözüm h=0.05; for i=1:5 K1=t0*x0^2; K2=(t0+(1/2)*h)*(x0+(1/2)*h*K1)^2; K3=(t0+(1/2)*h)*(x0+(1/2)*h*K2)^2; K4=(t0+h)*(x0+h*K3)^2; xyeni=x0+(1/6)*h*(K1+2*K2+2*K3+K4); t0=t0+h; xg=[xg 6/(5-3*t0^2)]; x=[x xyeni]; t=[t t0]; x0=xyeni; end plot(t, x,’r-d’) hold on plot(t,xg,’k-s’) //——————————————————————— 4 ve 5 . dereceden //——————————————————————— function [wi, ti, count] = rkf45 ( RHS, t0, x0, tf, parms ) %RKF45 …

Okumaya devam edin »

Eki 23

hp t5530 ve t5570 thinclient config

Aşağıdaki linkten t5530 ‘ a ait embedded iso imajını indirip flash diske import ederek yükleme yapabiliriz. http://h20565.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/swdDetails/?sp4ts.oid=3341957&spf_p.tpst=swdMain&spf_p.prp_swdMain=wsrp-navigationalState%3Didx%253D%257CswItem%253Dir_63063_1%257CswEnvOID%253D2051%257CitemLocale%253D%257CswLang%253D8%257Cmode%253D%257Caction%253DdriverDocument&javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken Aşağıdaki linkten t5570 ‘ a ait embedded iso imajını indirip flash diske import ederek yükleme yapabiliriz. http://h20565.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/swdDetails/?sp4ts.oid=4306254&spf_p.tpst=swdMain&spf_p.prp_swdMain=wsrp-navigationalState%3Didx%253D%257CswItem%253Dvc_130180_1%257CswEnvOID%253D4044%257CitemLocale%253D%257CswLang%253D8%257Cmode%253D%257Caction%253DdriverDocument&javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken İlk olarak yapılandırma yaparken kiosk mode ile default olarak rdp arayüzü bağlantı gerçekleştirebilirisiniz. Shift + Log off ile Kullanıcı ve şifre …

Okumaya devam edin »