
MURILO.WORDPRESS.COM
Murilo :P | C++, Computação, Programação, Web e afins :)C++, Computação, Programação, Web e afins :)
http://murilo.wordpress.com/
C++, Computação, Programação, Web e afins :)
http://murilo.wordpress.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Wednesday
LOAD TIME
0.2 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
2
SSL
EXTERNAL LINKS
76
SITE IP
192.0.78.12
LOAD TIME
0.219 sec
SCORE
6.2
Murilo :P | C++, Computação, Programação, Web e afins :) | murilo.wordpress.com Reviews
https://murilo.wordpress.com
C++, Computação, Programação, Web e afins :)
Arrays with negative indexes | Murilo :P
https://murilo.wordpress.com/2012/10/29/arrays-with-negative-indexes
C , Computação, Programação, Web e afins :). Arrays with negative indexes. When we to deal with negative ranges in arrays and those ranges can be negative, we do shifts so we can use natural indexes. For example, if we’re given a range from. Usually we allocate an array of 70 positions and when indexing an element we shift by. Is actually stored on the position. Where the array’s first element is in. Template typename T T* alloc(size t sz, int min index = 0) { return (new T[sz]) - min index; }. Fill in y...
Deeper look at PHP’s array: worst case | Murilo :P
https://murilo.wordpress.com/2013/10/16/deeper-look-at-phps-array-worst-case
C , Computação, Programação, Web e afins :). Deeper look at PHP’s array: worst case. As I did in the post about the PHP sort functions. I was looking at the PHP source. I found this an interesting thing: the hashing function used on PHP’s hash tables. Above the function definition, a PHP contributor explained the function. This is Daniel J. Bernstein’s popular `times 33′ hash function as posted by him years ago on comp.lang.c. It basically uses a function like. Hash(i) hash(i-1) * 33 str[i]. Define(ARRAY...
TOTAL PAGES IN THIS WEBSITE
2
meta – NP-Incompleteness
https://kunigami.blog/category/meta
Notes on programming and computer science. This is a meta-post to review what happened in 2016. This year I improved my knowledge on Web Development, learning more about HTTPS. I read a book about human-computer interaction, The Design of Everyday Things. From my last year’s resolutions. I finished reading Code Complete. I’ve started learning about OCaml. Purely Functional Data Structures. I’ve only managed to try out one data visualization project, the hex map. Then I had an opportunity to work for a mo...
data visualization – NP-Incompleteness
https://kunigami.blog/category/computer-science/data-visualization
Notes on programming and computer science. US as an hexagonal map. In this post we’ll study a way to visualize maps in a hexagonal grid, in which each entity have uniform area. We’ll then model that as a mathematical problem. That used hexagons and it looked very neat, so I decided to try building it in D3 and perform some analysis. Below is the result of plotting the state populations (log scale):. US Hexmap: Population (log scale). The score from the NPR maps is 0.67. Representing our grid, find the in...
2016 in Review – NP-Incompleteness
https://kunigami.blog/2017/01/01/2016-in-review
Notes on programming and computer science. This is a meta-post to review what happened in 2016. This year I improved my knowledge on Web Development, learning more about HTTPS. I read a book about human-computer interaction, The Design of Everyday Things. From my last year’s resolutions. I finished reading Code Complete. I’ve started learning about OCaml. Purely Functional Data Structures. I’ve only managed to try out one data visualization project, the hex map. Then I had an opportunity to work for a mo...
https://kunigami.wordpress.com/tag/purely-funcional-data-structures/ – NP-Incompleteness
https://kunigami.blog/tag/httpskunigami-wordpress-comtagpurely-funcional-data-structures
Notes on programming and computer science. Tag: https:/ kunigami.wordpress.com/tag/purely-funcional-data-structures/. Streams and Lazy Evaluation in OCaml. In this short post we’ll discuss lazy evaluation in OCaml and study a data structure called. It’s based mainly on chapter 4 of. Purely Functional Data Structures. And it’s part of a series of study notes. Source: Flickr – Brian Gratwicke. In the book the author defines a notation for lazy evaluation:. Datatype a susp = $ of a. Type 'a t = 'a lazy t.
Purely Funcional Data Structures – NP-Incompleteness
https://kunigami.blog/tag/purely-funcional-data-structures
Notes on programming and computer science. Tag: Purely Funcional Data Structures. In this post we’ll discuss some basic data structures in functional programming and their implementation in OCaml. Our main reference are the first two chapters of. Purely Functional Data Structures. The first chapter explains persistent data structures and the second chapter provides examples of three common data structures in imperative programming and how to implement them in ML (a functional language). Note that we only...
d3.js – NP-Incompleteness
https://kunigami.blog/tag/d3-js
Notes on programming and computer science. US as an hexagonal map. In this post we’ll study a way to visualize maps in a hexagonal grid, in which each entity have uniform area. We’ll then model that as a mathematical problem. That used hexagons and it looked very neat, so I decided to try building it in D3 and perform some analysis. Below is the result of plotting the state populations (log scale):. US Hexmap: Population (log scale). The score from the NPR maps is 0.67. Representing our grid, find the in...
cartography – NP-Incompleteness
https://kunigami.blog/tag/cartography
Notes on programming and computer science. US as an hexagonal map. In this post we’ll study a way to visualize maps in a hexagonal grid, in which each entity have uniform area. We’ll then model that as a mathematical problem. That used hexagons and it looked very neat, so I decided to try building it in D3 and perform some analysis. Below is the result of plotting the state populations (log scale):. US Hexmap: Population (log scale). The score from the NPR maps is 0.67. Representing our grid, find the in...
Persistent Data Structures – NP-Incompleteness
https://kunigami.blog/2016/10/22/persistent-data-structures
Notes on programming and computer science. In this post we’ll discuss some basic data structures in functional programming and their implementation in OCaml. Our main reference are the first two chapters of. Purely Functional Data Structures. The first chapter explains persistent data structures and the second chapter provides examples of three common data structures in imperative programming and how to implement them in ML (a functional language). Note that we only need to make the new node point to the...
personal – NP-Incompleteness
https://kunigami.blog/category/personal
Notes on programming and computer science. This is a meta-post to review what happened in 2016. This year I improved my knowledge on Web Development, learning more about HTTPS. I read a book about human-computer interaction, The Design of Everyday Things. From my last year’s resolutions. I finished reading Code Complete. I’ve started learning about OCaml. Purely Functional Data Structures. I’ve only managed to try out one data visualization project, the hex map. Then I had an opportunity to work for a mo...
Amortization Analysis – NP-Incompleteness
https://kunigami.blog/2016/12/21/amortization-analysis
Notes on programming and computer science. In Chapter 5 of Purely Functional Data Structures, Okasaki introduces the amortization analysis as preparation for the complexity analysis of functional data structures. The idea of amortized analysis is to prove the complexity of an operation when the average cost per operation is less than the worst case cost of each individual operation. And the Physicist Method. Queue using lists representing [1, 2, 3, 4, 5, 6]. We work with an invariant, in which the left a...
TOTAL LINKS TO THIS WEBSITE
76
Sustentabilidade e Ética - UOL Blog
Essa imagem tem a ver com sustentabilidade? Escrito por mu às 23h26. Escrito por mu às 07h43. Todos os filósofos entendiam a ética como o estudo dos meios de se alcançar a felicidade (. E investigar o que significa felicidade. Porém, durante a idade média. A filosofia foi dominada pelo cristianismo. E a ética se centralizou na moral (interpretação dos mandamentos e preceitos religiosos). No renascimento. E no século XVII. Em sua obra Ética a Nicômaco. Afirma que a felicidade (. E é alcançad...Em rela&cce...
Bootstrap Installed
Bootstrap is installed successfully. Bootstrap is a Framework, so doesn't have an index page. Bootstrap Sleek, intuitive, and powerful front-end framework for faster and easier web development. Bootstrap was made to not only look and behave great in the latest desktop browsers (as well as IE7! But in tablet and smartphone browsers via responsive CSS as well.
O que você acha? - UOL Blog
O que você acha? Você acredita em quê? Já toquei em um ponto onde muitas pessoas descordaram, estranharam ou ficaram na dúvida. Esse ponto é sobre a diferença que existe entre a fé e a esperança. A fé DEVE ser racionada.Mas não é. Deixemos a fé e a esperança em segundo plano, que na verdade é onde devem ficar,. Já a esperança é alimentada pelo oque? As pessoas tem esperança que Jesus um dia volte. Mas o que realmente lhes garante isso? Mas ainda nessa questão de acreditar ou não. As pes...Aqui no ocident...
Anotações de um não poliglota
Anotações de um não poliglota. Guia de conversação: russo. По-: palavra com significado de "em". С: palavra com significado de "com". С: palavra com significado de "com". Guia de conversação: húngaro. Ul: nesta frase, sufixo com significado de "em". Adel Tawil - Lieder. Alice In Chains - Voices. Banda Akira - Dor de Cabeça. City and Colour - Thirst. Esteban - Pra Ser. Gabrielle - Ka Ska Det Bli. JadaL - El Makina. OneRepublic - Burning Bridges. Sigur Rós - Ísjaki. Tan Bionica - Mis Noches de Enero. Não, ...
MuriloMoreno - UOL Blog
Novo endereço do blog. Depois de alguns meses mantendo os dois blogs no paralelo, me decidi: novos posts só no http:/ murilomoreno.blogspot.com. O Blogger tem mais recursos. Espero você lá! Escrito por Carlos Murilo Moreno às 00h08. Abrindo mão do mercado. Ponto a favor de quem está verdadeiramente preparado para aceitá-los. Ponto contra de quem só se preparou para atender uma lei que exige o banheiro, mas não avalia a acessibilidade ao lugar. Escrito por Carlos Murilo Moreno às 13h54. Muitos servi&ccedi...
Murilo :P | C++, Computação, Programação, Web e afins :)
C , Computação, Programação, Web e afins :). Deeper look at PHP’s array: worst case. As I did in the post about the PHP sort functions. I was looking at the PHP source. I found this an interesting thing: the hashing function used on PHP’s hash tables. Above the function definition, a PHP contributor explained the function. This is Daniel J. Bernstein’s popular `times 33′ hash function as posted by him years ago on comp.lang.c. It basically uses a function like. Hash(i) hash(i-1) * 33 str[i]. Define(ARRAY...
Viver...Amar...Sonhar
Não há amor humano que não decepcione, pois ele não é mais do que uma porta para um amor maior.". Sábado, 23 de junho de 2012. Saudade é solidão acompanhada,. É quando o amor ainda não foi embora,. Mas o amado já. Saudade é amar um passado que ainda não passou,. É recusar um presente que nos machuca,. É não ver o futuro que nos convida. Saudade é sentir que existe o que não existe mais. Saudade é o inferno dos que perderam,. É a dor dos que ficaram para trás,. É o gosto de morte na boca dos que continuam.
Blog de MuRiLo171 - MuRiLo CaStRo #18 - Skyrock.com
Mot de passe :. J'ai oublié mon mot de passe. Mise à jour :. Abonne-toi à mon blog! N'oublie pas que les propos injurieux, racistes, etc. sont interdits par les conditions générales d'utilisation de Skyrock et que tu peux être identifié par ton adresse internet (54.145.69.42) si quelqu'un porte plainte. Ou poster avec :. Retape dans le champ ci-dessous la suite de chiffres et de lettres qui apparaissent dans le cadre ci-contre. Posté le samedi 13 décembre 2008 19:54. Ou poster avec :. Ou poster avec :.
murilo20022409009.deviantart.com
murilo20022409009 - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 3 Years. This deviant's full pageview. Last Visit: 157 weeks ago. This is the place where you can personalize your profile! Sep 2, ...
http://lukinhas155.wordpress.com | Just another WordPress.com site
Http:/ lukinhas155.wordpress.com. Just another WordPress.com site. Junho 14, 2012. Junho 13, 2012. Vídeos do VodPod não estão mais disponíveis. Junho 13, 2012. Vídeos do VodPod não estão mais disponíveis. Maio 30, 2012. Vídeos do VodPod não estão mais disponíveis. Maio 23, 2012. Vídeos do VodPod não estão mais disponíveis. Maio 22, 2012. Vídeos do VodPod não estão mais disponíveis. Maio 22, 2012. Vídeos do VodPod não estão mais disponíveis. Http:/ lukinhas155.wordpress.com.
Index
Aew galera, ja tow começandu a ajeitar o site, daki a um tempo eu acabo. Finalmente depois de mto tempo sem atualizar esse site, eu estou aki de novo! Agora estou com net em ksa e vou atualizar o site todo dia. Com mtos downloads de programas e jogos! Com destaque para: Need for Speed Underground 2 completo, The Sims 2 completo, Half-Life completo, Commandos 3: Destination Berlin Demo, Gunbound e mtos outros! Está sempre atualizada com as 5 ultimas noticias sobre determinados assuntos!
SOCIAL ENGAGEMENT