Tag Technorati Windows LIve, downloadUser interface has been updated, including the toasts Sign-in screen has been restyled New program/tray icon Updated e-mail icon showing the number of new e-mails more clearly Updated Group window header SkyDrive officially replaces sharing folders feature (Actions > View your online files) Expanded What’s new area shows more details (eg. complete Tweets, added pictures, etc.) and Post a note has been updated for some items What’s new per contact in conversation window You cannot choose your own signature sound any longer. You can only assign signature sounds to your contacts Webcam snapshot has been renamed to Webcam Picture Tile with moods has been renamed to Dynamic Picture Modify moods, videos and/or pictures of previously made Dynamic Pictures Change scene option added to status dropdown list More default Scenes Updated and new static/animated display pictures featuring the Messenger buddy, Morty and Daisy Windows 7 Jumplists Save pictures presented through PhotoShare (Previous photo/Next photo/Save photo) What’s new list options accessible through an icon next to What’s new header, or from a button in Options > Layout
Technology is an important things in life. This is my contemplation about technology and life itself.
Thursday, December 18, 2008
Download Windows Live 9.0
What i'm gonna do today
Just read a book
Friday, December 5, 2008
An example of Mikrotik and Squidproxy configuration
Here are some codes i get from a blog that provides an example of how to configure Mikrotik and Squidproxy. Check it out:
++ MT BOX [ 2.9.27 ]
———————————–
WAN:= 192.168.119.2
LAN1:= 192.168.123.1
WIFI1:= 192.168.124.1
SQUIDBOX:= 192.168.120.2
++ Squid Box [ MINT | SQUID 2.7STABLE5 zph mode on]
——————————————————-
INTERNET - MT - SWITCH — CLIENTS
++++++ |
++++++ SQUIDbox
+redirect http request (port 80/TCP) from 192.168.10.0/24 to proxy 192.168.120.1 port 3128
—————
ip firewall nat
add action=dst-nat chain=dstnat src-address=!192.168.120.0/24 protocol=tcp dst-port=80 action=dst-nat to-addresses=192.168.120.1 to-ports=3128 comment="" disabled=no
SQUID 2.7 stable 5, integrated with zph.
must be transparent mode.
http_port 3128 transparent
compile squid
sudo ./configure –prefix=/usr/share/ –localstatedir=/var –libexecdir=${prefix}/usr/share/squid \
–srcdir=. –sysconfdir=/etc/squid –enable-gnuregex –enable-icmp –enable-delay-pools \
–enable-kill-parent-hack –enable-snmp –enable-cache-digests –enable-carp –enable-async-io=24 –with-aufs-threads=24 \
–with-pthreads –with-aio –with-dl –enable-storeio=coss,ufs,diskd,aufs –enable-removal-policies=heap \
-disable-wccp –enable-default-err-languages=Russian –enable-linux-netfilter –disable-ident-lookups \
–disable-hostname-checks –enable-underscores
make
sudo make install