Thursday, September 28, 2017
Summary of Properties of the MAC Layer in Safety Vehicular Ad Hoc Networks
Summary of Properties of the MAC Layer in Safety Vehicular Ad Hoc Networks
Non-safety application that are mostly IP-based, still using TCP/IP protocol stack but safety applications can not use TCP/IP architecture because of some reasons are summarized as follow:
- IPv6 introduces high overhead for safety message can not be tolerated by the applications.
- Different safety applications need the same information. Therefore, it is required to send a large number of messages with the same content can lead to a congested channel.
In VANET, sending a message in control channel can be causes by two reasons, to announce cars status and unexpected hazard. This information are likely interesting for all the surrounding neighbours. this issues appears the necessity of broadcast communication in control channel. In order to announce these events, VANET generates two types of message, CAM and DEN. DEN is just transmitted by happening an unexpected hazard and CAM is periodically transmitted to improve road safety. The DEN messages is just transmitted if there is a long time until the next CAM message, otherwise it can be merged with the CAM message.
Despite broadcast nature of control channel as already mention, previous designed MAC protocols for different networks such as MANETs or sensor networks that are designed with the idea of unicast communication in mind are analyzed and is showed that cannot be used directly.
Although IEEE 802.11DCF can manage both unicast and broadcast communication, it cannot be able to use regular schemes in unicast communication like ACK packets and RTS/CTS in the broadcast mode. This inability causes that this popular standard cannot be able to detect the collision and alleviate the hidden nodes problem, respectively. It is obvious that it is not sufficient enough for communication in control channel and needs to more revision based on the characteristics of VANETs. It needs to be mentioned that while the hidden terminals problem is problematic, exposed terminal does not appear because in the transmission zone all the nodes, including those trying to access the channel are interested by the safety messages.
As a result of lack of collision detection ability in control channel, the IEEE 802.11 DCF mechanism for adapting the back-off time with traffic density cannot work properly and the contention window remains minimum. This problem causes more collisions and reduces the beacon reception probability. Therefore, finding an optimal minimum contention window is a challenging issue that has a large impact on the reception ratio.
One important point that makes different beaconing in VANETs from regular broadcasting is the limited lifetime of safety messages. It means that if each safety message can not be transmitted in predefined time period, it must be dropped and the updated one will be send indeed. It also shows that the delay for safety messages is bounded by the beacons lifetime, therefore measuring average delay becomes less significant.
Moreover, beacons in VANETs has an important role while in MANETs they are assumed as an overhead and is tried to be minimised in order to improve the network efficiency. Although, beacons are still assumed as control messages, they provide valuable information and decreasing the amount of them leads to a reduction in the efficiency of safety-applications.
Data rate adaptation has been proposed as a solution for congestion control in VANET. Using higher data rate decreases channel occupancy that allowing more transmissions to take place. But, with increase in the data rate, higher SIR is needed at the receiver side that shows limitations in data rate adaptation. (?)
Distinguishing between collision and lost packets in consequence of noisy channel. (?)
Information about DEN messages are mostly neglected.
download file now
Super Mario Run for Android will hit Play Store in March
Super Mario Run for Android will hit Play Store in March
download file now
Wednesday, September 27, 2017
Surviving in Azeroth Episode 3 It came from Lvl 85 and now on iTunes
Surviving in Azeroth Episode 3 It came from Lvl 85 and now on iTunes

Hey all well Episode 3 is finally here and OMG we are on iTunes! i am still very very excited that this has happend... Things in this episode I rant about knowing your class, using proper spec, and about tanks that dont utilize their hunters and other players that can CC. I also thank LiquidWoW & the guild i belong to called "D E M I S E". As well as, I recommend going to WoW Insider for lots of grt info!
If you want to contribute, ask a question, want something discussed on the show feel free to either email or tweet us:
Email: survivinginazeroth@gmail.com
Twitter: @survivinginaz
download file now
Tuesday, September 26, 2017
Subversion 1 8 Installation in Centos 6 X Step By Step
Subversion 1 8 Installation in Centos 6 X Step By Step
Steps to Create Basic SVN (1.8) :
Step 1 :
To install SVN 1.8 Firstly we need to configure yum repository in our system. Create a new repo file /etc/yum.repos.d/wandisco-svn.repo and add following content as per your operating system version.
# vi /etc/yum.repos.d/wandisco-svn.repo
[WandiscoSVN]
name=Wandisco SVN Repo
baseurl=http://opensource.wandisco.com/centos/6/svn-1.8/RPMS/$basearch/
enabled=1
gpgcheck=0
:wq!
# yum clean all
# yum install subversion subversion-python
# svn --version
Step 2 : Creating the Repo
# mkdir /svn
# svnadmin create /svn/testrepo
Step 3 : Create user (svn) and Giving ownership for the created Repo
# useradd svn -s /sbin/nologin
# chown -R svn /svn/testrepo/
Step 4 : Deleting/Renaming the default passwd file from Conf folder
# cd /svn/testrepo/conf
# mv passwd passwd.old
(from newly create repo , inside conf directory)
Step 5 : Now Create a soft link to the passwd file which present in location at /svn/testrepo/conf with a command -
# vi /svn/passwd (just create a blank file)
# ln -s /svn/passwd /svn/testrepo/conf/passwd
Step 6 : Edit the svnserve.conf and change like this
# vi /svn/testrepo/conf/svnserve.conf
Anon_access=none
Auth_access=write
Password-db=passwd
:wq!
Step 7 : Now start the svnserve demon
# /usr/bin/svnserve -d -r /svn
Put this code in rc.local so that the svnserve demon will run after the system restart also.
Step 8 : Now create the initial directories
# svn mkdir file:///svn/testrepo/{trunk,tags,branches} -m "initial directories"
Step 9 : Create a username and password to checkout SVN repo
# vi /svn/passwd
vipin = yourpassword
:wq!
Step 10 : Your Basic SVN server is ready, Now just checkout and see
# svn co svn://192.168.1.X/testrepo/ /mnt/
Steps to Create MOD SVN (1.8) :
Note : In this example I am setting up the mod svn in the same server itself.
So please follow the above 9 steps.
The benefit of Mod_svn is you can access all repo data over browser with the login credentials provided by the administrator, it is easier to browse, without any client svn package, Mod SVN subversion is moderated and managed by apache , so password file and ownership by default goes to apache user or you have to change ownership for the repo to apache before to us.
Step 1: Install the Packages.
# yum install �y mod_dav_svn httpd
Step 2: Now Edit /etc/httpd/conf.d/subversion.conf file like this.
# Make sure you uncomment the following if they are commented out
LoadModuledav_svn_module modules/mod_dav_svn.so
LoadModuleauthz_svn_module modules/mod_authz_svn.so
# Add the following to allow a basic authentication and point Apache to where the actual repository resides
# vi /etc/httpd/conf.d/subversion.conf
<Location /testrepo>
DAV svn
SVNPath /svn/testrepo
AuthType Basic
AuthName "SVN Repo"
AuthUserFile /svn/mod-auth/svn.passwd
Require valid-user
</Location>
:wq!
Step 3 : change ownership from root to apache
# chown -R apache.apache /svn/testrepo/
Step 4 : Create htpassword file from command
# mkdir /svn/mod-auth
# htpasswd -cm /svn/mod-auth/svn.passwd vipin
Now enter the password
Note : If you want to add multiple user, please run the code like this :
# htpasswd -cm /svn/mod-auth/svn.passwd user1
# htpasswd -m /svn/mod-auth/svn.passwd user2
Step 5 : Restart the apache service.
# service httpd restart
# chkconfig httpd on
Your Mod SVN is ready. Now open the browser and type :
http://192.168.1.X/testrepo
Steps to Install & Configure ViewVC (1.1.10) :
Step 1: Download ViewVC stable release 1.1.10
You can download using wget command on CentOS server as below.
# cd /tmp
# wget http://viewvc.tigris.org/files/documents/3330/48879/viewvc-1.1.10.tar.gz
Step 2 : Extract and unzip the viewvc-1.1.10.tar.gz using below command.
# tar xvfz viewvc-1.1.10.tar.gz
Step 3 : Go to viewvc-1.1.10 directory and start the installation
# cd viewvc-1.1.10
# ./viewvc-install
Step 4 : Now Edit viewvc.conf file
# vi /usr/local/viewvc-1.1.10/viewvc.conf
(Uncomment line 151 and define the subversion root repositories )
root_parents = /svn : svn,
:wq!
Note : Here /svn is your repo path.
Step 5 : Edit the apache web server config file as below
# vi /etc/httpd/conf/httpd.conf
Add the below two lines under ScriptAlias /cgi-bin/ "/var/www/cgi-bin/" Stanza
ScriptAlias /viewvc /usr/local/viewvc-1.1.10/bin/cgi/viewvc.cgi
ScriptAlias /query /usr/local/viewvc-1.1.10/bin/cgi/query.cgi
:wq!
Step 6 : Restart all the services
# service httpd restart
# chkconfig httpd on
# setenforce 0
# service iptables stop
Now open the browser and type : http://192.168.1.X/viewvc
***** Thanks *****
download file now
Super Mario Run for Android will be in March
Super Mario Run for Android will be in March
download file now
Sunday, September 24, 2017
Super Granny 7 in 1
Super Granny 7 in 1
Super Granny � um joguinho de plataforma bem simples, mas muito viciante e fofo. Afinal, se trata de uma vov� que salva gatinhos, tem como n�o amar? Tirando o fato que ela sempre cai em p� - aparentemente, igual aos gatos, o que justifica nenhum osso quebrado da pobre velhinha - acredito que n�o tenha nada mais de muito peculiar nos jogos... (a n�o ser todo o resto dele, claro)
Vamos falar sobre os jogos um pouquinho? Vamos o/
Notas:
n.a.d. = nada a declarar.
(...) = em andamento
* Imagens e listas de reprodu��o dos detonados ser�o adicionadas assim que poss�vel
Super Granny
- Sobre: � o primeiro jogo da s�rie. Acredito que ele tenha sido praticamente um jogo-teste para ver se o povo iria realmente gostar dele;
- Hist�ria/Objetivo: Salvar o mundo dos gnomos malvados;
- Inimigos: Gnomos e cachorros;
- N�veis: 100;
- Mundos: 5 - Campo, Floresta, Caverna, Caverna de gelo e F�brica (+ os b�nus);
- Itens: regador, bolsa, guarda-chuva, britadeira, chave, interruptor.
- Gr�ficos: n.a.d.
- Colecion�veis: flores.
Granny in Paradise
- Sobre: Segundo jogo da s�rie. Nele � poss�vel at� criar n�veis pr�prios, al�m dos originais.
- Hist�ria/Objetivo: Granny sai de f�rias, mas encontra v�rios gatinhos esperando ser resgatados. O respons�vel por isso � um gato que Granny acaba adotando e chamando de Twinkle Toes;
- Inimigos: Al�m dos gnomos e dos cachorros do 1� jogo, agora o jogo conta com gorilas "guarda-costas" e gatos dentro de roupas rob�ticas;
- N�veis: 172;
- Mundos: 5 - Praia, Selva, F�brica, Submarino e Vulc�o (+ os b�nus);
- Itens: os itens s�o praticamente iguais aos do 1�, exceto apenas pela mudan�a na bolsa.
- Gr�ficos: n.a.d.
- Colecion�veis: flores.
Super Granny Winter Wonderland
- Sobre: Esse � um pacote de extens�o do segundo jogo da s�rie. � todo feito em neve e parece mais continua��o do 1� por ter apenas os inimigos originais, mas � do 2� mesmo.
- Hist�ria/Objetivo: Twinkle Toes foge e Granny sai a resgate dele e mais v�rios outros gatinhos;
- Inimigos: Gnomos e cachorros;
- N�veis: 99;
- Mundos: 2 - Vila, Caverna (+ os b�nus);
- Itens:i n.a.d.
- Gr�ficos: n.a.d.
- Colecion�veis: flores.
Super Granny 3
- Sobre: Terceiro jogo da s�rie. No come�o � poss�vel ver o final de Super Granny Winter Wonderland. Tamb�m � poss�vel criar n�veis pr�prios.
- Hist�ria/Objetivo: Granny sai a procura de Twinkle Toes que fugiu novamente em um parque tem�tico;
- Inimigos: Cachorros, bulldogs, poodles, macacos, rob�s e morcegos;
- N�veis: 211;
- Mundos: 5 - Navio, Montanha Russa, Futuro, Velho-Oeste, Transilv�nia (+ os b�nus);
- Itens: a mudan�a mais significativa dos itens � que voc� precisa pegar moedas para comprar outros itens (que ficam � venda no "Shop" de cada mundo), al�m de caixas, sapatos super r�pidos e invencibilidade.
- Gr�ficos: os gr�ficos mudam um pouco, as mudan�as mais n�tidas s�o nos gatos e na visualiza��o dos n�veis.
- Colecion�veis: flores
Super Granny 4
- Sobre: Quarto jogo da s�rie. O jogo traz mais duas senhorinhas: Margaret e Kamila - elas estam presentes em alguns n�veis (sendo necess�rios apertar Ctrl para trocar o controle de cada uma) e d� para jogar com um amigo tamb�m. Eu particularmente achei muito legal, mas acho que n�o pegou muito, pois isso foi tirado nos jogos seguintes. Tamb�m � poss�vel criar n�veis pr�prios.
- Hist�ria/Objetivo: Granny est� em sua casa triste, pois Twinkle Toes fugiu outra vez... mas Margaret e Kamila chegam para relembrar os bons e velhos tempos, costurarando uma colcha;
- Inimigos: Agentes, "trogloditas", punks, m�mias, ratinhos, ratazanas, magos e mergulhadores;
- N�veis: 169
- Mundos: 6 - Competi��o de Gatos, Show, Pir�mides, Cassino, Navio e F�brica de comida para gatos (+ os b�nus);
- Itens: um dos itens novos � uma bolsa para guardar os gatos, muito �til para passar pelos ratos, teletransportes e quando se tem que andar pendurado.
- Gr�ficos: os gr�ficos mudam outra vez, agora os n�veis est�o menores (n�o, os n�veis em si, mas tudo) o que para mim ficou um pouco ruim, porque dificulta um pouco a vis�o para quem est� acostumado com os jogos anteriores.
- Colecion�veis: souvenirs, quando estes chegam a um total de 25% / 50% / 75% / 100% um outro souvenir � adicionado a colcha.
Super Granny 5
- Sobre: Quinto jogo da s�rie. Margaret e Kamila ainda aparecem mas agora s�o NPC (non-playable characters) ou seja, n�o d� para jogar com elas. Tamb�m � poss�vel criar n�veis pr�prios.
- Hist�ria/Objetivo: Desta vez Twinkle Toes n�o foge - mas isso n�o quer dizer que ele n�o apronta. Ele encolhe Granny e l� vamos outra vez...;
- Inimigos: h� v�rios inimigos novos e fofinhos agora, s�o eles: �gua, Fogo, Germe, Planta Carn�vora, Formiga, Caracol, Abelha, Aranha, Cenoura e talvez mais algum que eu n�o lembro...;
- N�veis: 154
- Mundos: 5 - Caixa de areia, Horta, Banheiro, Cozinha, Por�o (+ os b�nus);
- Itens: al�m da britadeira original que era usada para cavar para baixo, Granny pode usar "ma�arico" para acabar com as paredes pelos lados. Outro item novo e bem legal � uma gel�ia verde/azul que torna Granny capaz de pular.
- Gr�ficos: os gr�ficos mudam de novo, o tamanho dos n�veis volta a ser maior e os itens ficam meio "Restart", mais coloridos, mas � compreens�vel... Os gatos tamb�m voltam a mudar e dessa vez o portal "Meow" e a flor de sa�da tamb�m ganham uma pequena modifica��o.
- Colecion�veis: souvenirs, quando estes chegam a um total de 20% / 50% / 90% / 100% um outro souvenir � adicionado ao mundo.
Super Granny 6
- Sobre: Sexto jogo da s�rie. Tamb�m � poss�vel criar n�veis pr�prios. Ainda estou no meio dele ent�o... xD
- Hist�ria/Objetivo: Esse jogo tem um "qu�" de Indiana Jones, mas por incr�vel que pare�a Granny come�a sua aventura apenas fazendo um inocente piquenique... At� que Twinkle Toes foge...;
- Inimigos: h� mais inimigos diferentes dessa vez, s�o eles: Aranha, Planta Carn�vora, Dinossauro, T-Rex, "Tartaruga-Ninja", Germe (...) ;
- N�veis: 25 (...)
- Mundos: 1 - Selva (...) (+ os b�nus);
- Itens: n.a.d.
- Gr�ficos: os gr�ficos mudam novamente, as mudan�as s�o basicamente no portal "Meow" e na flor de sa�da, mas tem uma outra coisa muito legal que � ativada por uma alavanca... sim, a navega��o pelo n�vel. Achei muito legal, apesar de �s vezes se tornar meio cansativo. Alguns outros itens tamb�m ganham uma atualiza��o nos gr�ficos, como por exemplo o teletransporte, os barris e as caixas.
- Colecion�veis: souvenirs, quando estes chegam a um total de 20% / 50% / 90% / 100% um outro souvenir � adicionado ao mundo.
Enjoy! o/
download file now
sudo timestamp too far in the future fixing method
sudo timestamp too far in the future fixing method
If you ever see this error which telling you the line below:-
"sudo: timestamp too far in the future"
Then run a simple command in Terminal found on Accessories menu
sudo -k
You have to enter password to solve . It is a bug on time settings (time-stamp issue) on your machine. After running the command above change the time as your desire. This command will work on various debian based Linux Operating System. Check it out by yourself.
download file now
Saturday, September 23, 2017
String extracts in Perl with split match and regular expressions
String extracts in Perl with split match and regular expressions
Lately I had to solve the following issue:
extract process id (pid) and program name from the header line of pmap.
The strings can take these forms from simple to complex:
123: cmd 123: cmd -x foo 123: /usr/bin/cmd 123: /usr/bin/cmd -x fooand more complex with more parameters which are trickier to parse
123: /usr/bin/cmd -x /home/foo 123: /usr/bin/cmd -x 456: -d /home/fooi.e. very genereally speaking there is a pid followed by a colon and then a more or less complex command line where the program name can be fully qualified and carry a number of parameters. The last example deliberately introduces the digit and colon again as parameters.
Here is a try to express the string more verbally as a sequence of
There a various solutions to this in Perl and here Ill show two.
# Example string $str = "123: /usr/bin/cmd -x /home/foo"; # ^ should be a tab here # First I split the string using an optional colon :* # and a sequence of white space s+ as field delimiters. # This will give me the pid and the program name and strip of the parameters ($pid,$cmd) = split /:*s+/,$str; # In case of a fully qualified program nane # everything up to the last slash needs to be removed $cmd =~ s/.*///; print "pid = $pid X cmd = $cmd ";
Always looking for more concise code I wondered whether these two lines couldnt be shortened. Here is a one liner which requires explanation of course.
# Example string $str = "123: /usr/bin/cmd -x /home/foo"; # ^ should be a tab here # I try to match the following reqular expression # a sequence of digits (d+) which will become $1 if successful # a colon and a tab # an optional sequence of characters ending in slash (S+/)* # which will become $2 # a sequence of characters (S+) which will become $3 # The remainder of the string is not important as # we anchor the regular expression at the beginning. $str =~ /^(d+): (S+/)*(S+)/ ; print "pid = $1 X cmd = $3 ";
For easier readability I would have preferred the first code but when taking a deeper look I found some flaws in it namely the handling of incorrect strings. Assume this string below where the colon is missing and a string sits between pid and program name
$str = "123 xyz /usr/bin/cmd -x 456: /home/foo";The codes will result in
# Code 1 pid = 123 xyz /usr/bin/cmd -x 456 X cmd = foo # Code 2 pid = /home/ X cmd =In both cases the split happens at the wrong place with unforeseeable results.
I can use the second code though to its advantage by applying a check.
if( $str =~ /^(d+): (S+/)*(S+)/ ) { print "pid = $1 X cmd = $3 "; } i.e. only when the regular expression is really matched I will use its values. The check gives me assurance.I cant do this with the split in the first code other than doing a post-check by checking whether the pid really consists of digits etc. which would increase the code.
So I decided to use the regular expression in my code since it is still fairly readable by extracting just three parts of the overall string.
Would I want to extract more, say five or eight components, I probably would fall back to the split and a subsequent validity check.
download file now
Friday, September 22, 2017
Stream video from Raspberry Pi 3 Camera V2 play in Android VideoView
Stream video from Raspberry Pi 3 Camera V2 play in Android VideoView
This video show how to stream Camera Module NoIR V2 video from Raspberry Pi 3/Raspbian Jessie using vlc, play in Android App with VideoView. Details, refer my another blogspot.
download file now
Sugar Shack In Bright Light Williamstown Bridge Panorama
Sugar Shack In Bright Light Williamstown Bridge Panorama


download file now
Thursday, September 21, 2017
street Fighter V Wallpapers in extremely HD 4K
street Fighter V Wallpapers in extremely HD 4K
The fifth main installment to the road Fighter franchise, highway Fighter V brings fanatics new and previous favourite opponents. With some new hints brought into the video game, developers Capcom has no interest in bringing out any variations for street Fighter V in hopes to gain new lovers for the franchise.
road Fighter V wallpapers for 4K, 1080p HD and 720p HD resolutions and are most efficient suited for pcs, android phones, tablets, ps4 wallpapers, broad-screen shows, laptops, iPad and iPhone/iPod touch.
download hyperlinks:street Fighter V 4K Wallpaper | highway Fighter V 1080p Wallpaper | road Fighter V 720p Wallpaper
down load links:street Fighter V 4K Wallpaper | road Fighter V 1080p Wallpaper | highway Fighter V 720p Wallpaper
down load links:road Fighter V 4K Wallpaper | road Fighter V 1080p Wallpaper | road Fighter V 720p Wallpaper
download file now
Tuesday, September 19, 2017
Sunday Sermon Meanwhile in America
Sunday Sermon Meanwhile in America

Meanwhile, Id like to state for the record that Im definitely not terrified of Muslims.
download file now
Monday, September 18, 2017
Suns guard Devin Booker makes history scores 70 points in loss to Celtics
Suns guard Devin Booker makes history scores 70 points in loss to Celtics
Devin Booker 70 Pts - Highlights | Suns vs Celtics | March 24, 2017 | 2016-17 NBA Season
Doug Haller, USA TODAY Network Published 10:23 p.m. ET March 24, 2017 | Updated 5 hours ago
NBA players who have tallied the most points, assists, rebounds, blocks and steals in a single game this season. USA TODAY Sports
Devin Booker gestures after he scores a basket, as fans cheer at TD Garden. Booker scored 70 points, but the Celtics won, 130-120.(Photo: Elise Amendola, AP)
BOSTON The pregame question focused on Devin Booker.
Is he the best shooter youve been around?
Ive played with some great shooters, Suns coach Earl Watson said, naming off a couple. Ray Allen, Kevin Durant. He has amazing potential. His stroke is textbook.
An hour later, Booker went out and showed as much. The second-year guard produced the highest-scoring game in franchise history,pouring in70points in a 130-120loss to the Boston Celtics at TD Garden. While the Suns lost for the seventh time, Booker put together the highest-scoring game of the season, passing the 60 Klay Thompson put up against Indiana in October.
In the process, he became the third-youngest player in NBA history at 20 years, 145 days, to record a 50-point game, joining LeBron James and Brandon Jennings.
Throughout this stretch, most of the focus has been on Phoenixs young players, which makes sense. Both rookie point guard Tyler Ulis and forward Alan Williams have made good use of their extended minutes something that will serve management well in their short-term decision-making but this also is an important time for Booker, a gifted scorerwho already has one foot in the stardom pool.
By now, most know that in two years Booker has scored in ways not many have. Before turning 20 in October, he scored 1,087 points as a teenager, sixth most in NBA history. Of the five players ahead of him on that list James, Kobe Bryant, Carmelo Anthony, Kevin Durant and Dwight Howard all but Anthony were All-Stars within their third seasons. Anthony made it in his fourth season.
MORE NBA:
Booker began this trip in a slump. While battling ankle soreness, he was 13 of 55 over three games entering Thursdays Brooklyn loss. Booker said he wasnt concerned. Im just missing a lot of shots right now, he said then. Same shots Ive seen go in before.
He showed signs of breaking out against Brooklyn, but cooled in the second half, shooting 9 of 26 but finishing with 28 points. Against the Celtics, Booker looked more like himself. Once he got rolling, he didn"t stop. Hehit a bank shot in transition. He hit a jumper and was fouled. He scored in the post.
He even got some whistles.
This was an issue against Brooklyn, particularly in the second half. Booker doesnt shy from contact, but against the Nets he didnt get many calls. That night he led both teams in looks of disbelief. In Fridays second quarter, Booker drove left, fell to the court and didnt get a call. As Boston took off in transition, he shot a stare at the nearest official.
On Phoenixs next possession, Booker took the ball in the post and lowered his shoulder into Boston guard Marcus Smart, the easiest offensive foul call of the night. Booker immediately turned and ran up court. It was if he wanted to make a point. And he may have. From that point on, Booker shot 21free throws in the second half.
Booker broke his career high of 39 points in the final minutes of the third quarter. He hit 45 with nine minutes to go in the fourth. With 6:40 left, he scored in transition and was fouled giving him the sixth 50th-point game in franchise history. By this time the Garden crowd was into it, cheering for Booker to shoot every time he got the ball.
With 1:49 to go, Bookerput back his own miss, breaking Tom Chambers" record of 60 points scored against Seattle in 1990. Overall, Booker shot 21 of 40 from the fieldand made 24 of 26 from the foul line, both makes and attempts a career best. He also contributed eightrebounds and six assists.
Only problem: He didnt have much help. The Suns again were short-handed, playing without forward T.J. Warren because of a foot injury. They missed their first 13 shots, falling behind by 20 in the first quarter. From there, it was an uphill battle. The Suns trailed by as many as 26, but pulled within 10in the fourth quarter. It wasn"t enough.
And on this night, it didn"t matter.
Doug Haller writes for The Arizona Republic, part of the USA TODAY Network. Follow him on twitter @doughaller.
autoplay
show thumbnails
show captions
last slidenext slidesource: http://www.usatoday.com/story/sports/nba/suns/2017/03/24/devin-booker-scores-70-points-suns-game/99610216/
download file now
Saturday, September 16, 2017
StyleXP 3 19 Install unsigned Visual Effects and Themes in Windows XP
StyleXP 3 19 Install unsigned Visual Effects and Themes in Windows XP

Developers Description
Style XP is not a skinning engine. It uses Microsofts built-in visual style engine, but enhances it by providing many useful tools. Style XP can import, select, rotate, and manage themes, visual styles, wallpapers, and logons.
Future versions support sounds, cursors, screensavers, and packages of all the above. How does it work? Instead of lines and gradients, the XP user interface natively supports the use of skinned bitmap controls (a visual style).
This is Microsofts own innovation. Style XP includes its own visual styles.
Supports Win XP SP2
Style XP works by patching your operating system to accept unassigned styles, scores of which are available for download from the web. Once youve applied a style you can tweak virtually any aspect of the appearance, including the font size, screensaver, colors, menu transparency, or even the boot screen. What�s more, if youre particularly artistically minded you can to create your own elements in a graphics editor and apply them to the skin in Style XP.
Theres no doubt that the temptation to make Windows look like OSX or apply a Windows Pirate Edition boot screen is pretty appealing, but pimping your OS in this way does come with a risk. It�s worth bearing in mind that because of the way the Style XP writes files to your system folder you could end up doing damage to your machine, especially if you install a patch or a new service pack.
Pros
- Lots of customization options
- Comes with a decent range of bundled themes
- Doesn�t gobble up too much system resources
![]() |
| click to enlarge |

Cons
- Interface can be a little daunting for novice PCs
- Possible risk to your system files when installing the software
Updates: New StyleXP Themes Added
?Download Themes Pack 1 (exe)
?Download Themes Pack 2 (rar)
download file now
Surviving in Azeroth Episode 5 Ghromah and Chromaggus
Surviving in Azeroth Episode 5 Ghromah and Chromaggus

Hey all,
Thats right already on Episode 5! On this episode I talk about Lore(Curse of the Worgen). The new Core Hound Pup Adoption Campaign, more Postcards from Azeroth. Disappointment of no new patch yet, etc...
If you want to contribute, ask a question, want something discussed on the show feel free to either email or tweet us:
Email: survivinginazeroth@gmail.com
Twitter: @survivinginaz
Click on Lil Ragnaros to get the Episode if still not on iTunes...
download file now
Friday, September 15, 2017
Swap space Partition in linux
Swap space Partition in linux
Pranaam to all bhai ji _/_
In this post we will discuss about swap space partition and its creation via command line .
swap space partition is that partition which is needed when we are running on low RAM in our system.
swap is used as RAM in system when we dont have enough space and we need to store data on RAM
requested by a process .
in short, swap is inactive RAM which role comes in play when our RAM is full :) . if we have enough RAM in our system , we dont require swap space.swap space memory size doesnt need to be set as DOUBLE OF SIZE OF RAM (as many people says).if we have enough RAM, we even dont need swap partiton.
so its depends on you, how much space you want to allocate as swap for your system.
alike storage partition, we dont mount swap partition but swap partition need to activate(on) so that system can use it :) .
ok lets starts, first of all we will learn , how to create swap space in linux environment(OS) .
There is little bit difference between creation normal partition type and swap partition. we just need to change partition type of new created partition via command line using fdisk utility(we have discussed about how to create partition using fdisk in post http://mannulinux.blogspot.com/2013/07/partition-or-file-system-creation-in.html )
so lets start
we need to enter into hard disk using fdisk command .to find out harddisk name run command fdisk -l
and you will get output like this

my main hard disk name is /dev/sda
command will be fdisk -c /dev/sda
and i will be in hard disk with command line interface. now type n and press enter to enter into new partition creation mode.
select any partition type (either primary or logical as we will change it later so it doesnt matter).
i am selecting bydefault i.e primary partiton by typing p
select partition number or press enter for by default number(its 3 in my cse and new partition will be /dev/sda3 3 will be added with disk name /dev/sda+partition_number=/dev/sda3)
allocate the space , i am creating partition with 60 MB size by specifying +60M (you can specify total size of partition either by sector number, which is not comfortable or use +sizeM/G M stands for MB and G stands for GB). have look on screenshot for batter understanding :) .

now we have to change partition into swap type .
type t in command line interface and press enter and prompt will ask for partition number whose type has to change. we have just created partition 3 , type 3 and press enter. now screen will come up and will ask for hex code of partition compatibility . for swap partition hex code is 82 and for other partition type hex code type l in command prompt and press enter .

here is the list of hex codes

ok , type 82 and press enter, we will get message that partition has changed into 82(linux swap)
it means , swap has been created.
to write changes on disk , type w and press enter to save changes to disk .
reboot system or run command partprobe to update partition table list in kernel



download file now
Thursday, September 14, 2017
Suriyas mind blowing intro in 7th Sense!!
Suriyas mind blowing intro in 7th Sense!!

download file now
Wednesday, September 13, 2017
STUCK Thread in weblogic server Hogging Thread
Swedish Newspapers Ditch April Fools Jokes in Case They Spread Fake News
Swedish Newspapers Ditch April Fools Jokes in Case They Spread Fake News
The Worst Instances Of April Fool"s Jokes Gone Wrong
JONATHAN NACKSTRAND/AFP/Getty Images
by Breitbart London31 Mar 20170
31 Mar, 201731 Mar, 2017SIGN UP FOR OUR NEWSLETTER
Magnus Karlsson, editor-in-chief at the daily Smalandsposten said on its website that he doesnt want the newspapers brand to be spread with a potentially viral and erroneous story.
SIGN UP FOR OUR NEWSLETTER
We work with real news. even on april 1st, he said.
The fake news phenomenon broke out amid the 2016 US presidential election and grew even further when Donald Trump, during his first press conference on January 11 as then president-elect, shouted at a CNN reporter: You are fake news!
Now, several local daily Swedish newspapers including Dalarnas Tidningar, Hallpressen and Vasterbottens-Kuriren have refrained from publishing April Fools Day jokes.
Historically, weve had super successful April Fools jokes. But because of debates and discussions about the medias credibility being connected to fake news, we didnt want to do it this year, Ingvar Naslund, editor-in-chief at Vasterbottens-Kuriren told TT.
Erik Berger, editor-in-chief at the daily Jonkopings-Posten told AFP that his newspaper would write in (Saturdays) edition about why they wont publish such jokes.
In neighbouring Norway, the largest media organisations such as public broadcaster NRK, newspaper Aftenposten, VG and Dagbladet have also abandoned this old tradition.
NRK said local newspapers would follow suit.
Oyulf Hjertenes, editor at the local daily Bergens Tidende, told NRK that in a climate where false news is spreading, it would be a mistake on our part to publish jokes on April 1.
Kristin Monstad, publishing editor at Drammens Tidende, added: What is written in Drammens Tidende must be true.
Source: http://www.breitbart.com/london/2017/03/31/swedish-newspapers-ditch-april-fools-jokes-case-spread-fake-news/
download file now
Tuesday, September 12, 2017
Sublime Text 2 in Ubuntu 12 04
Sublime Text 2 in Ubuntu 12 04
Ive been using Sublime Text 2 to edit my code for long time now and I cant get enough of it. The black layout is amazing for the eyes and the functionality is as good as it gets. I have had minor issues installing it on Ubuntu 12.04 however. The following steps should solve the issue.download file now
