Bitcoin Forum
April 30, 2024, 10:42:30 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2]  All
  Print  
Author Topic: How to check If someone added me to their default trust list?  (Read 3538 times)
Mitchell
Copper Member
Legendary
*
Offline Offline

Activity: 3906
Merit: 2198


Verified awesomeness ✔


View Profile WWW
September 10, 2015, 10:55:26 PM
 #21

Oh yeah, totally forgot about that.

I just set this up. Smiley
I thought dogie used this for the Default Trust Visualisation pictures he made? It didn't exist before or did he use something like this?


EDIT: I just found your post and it seems that it was a one-time thing. I was wrong, my bad!

Here's the complete trust network if you want to make a larger graph:
https://bitcointalk.org/trust20150516.txt.xz

-> is "trusts", -/> is "distrusts".

.
Duelbits
            ▄████▄▄
          ▄█████████▄
        ▄█████████████▄
     ▄██████████████████▄
   ▄████▄▄▄█████████▄▄▄███▄
 ▄████▐▀▄▄▀▌████▐▀▄▄▀▌██

 ██████▀▀▀▀███████▀▀▀▀█████

▐████████████■▄▄▄■██████████▀
▐██████████████████████████▀
██████████████████████████▀
▀███████████████████████▀
  ▀███████████████████▀
    ▀███████████████▀
.
         ▄ ▄▄▀▀▀▀▄▄
         ▄▀▀▄      █
         █   ▀▄     █
       ▄█▄     ▀▄   █
      ▄▀ ▀▄      ▀█▀
    ▄▀     ▀█▄▄▄▀▀ ▀
  ▄▀  ▄▀  ▄▀

Live Games

   ▄▄▀▀▀▀▀▀▀▄▄
 ▄▀ ▄▄▀▀▀▀▀▄▄ ▀▄
▄▀ █ ▄  █  ▄ █ ▀▄
█ █   ▀   ▀   █ █  ▄▄▄
█ ▀▀▀▀▀▀▀▀▀▀▀▀▀ █ █   █
█▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█  █▄█
█ ▀▀█  ▀▀█  ▀▀█ █  █▄█

Slots
.
        ▄▀▀▀▀▀▀▀▀▀▀▀▀▀▄
        █         ▄▄  █
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▄       █
█  ▄▄         █       █
█             █       █
█   ▄▀▀▄▀▀▄   █       █
█   ▀▄   ▄▀   █       █

Blackjack
|█▀▀▀▀▀█▄▄▄
       ▀████▄▄
         ██████▄
▄▄▄▄▄▄▄▄█▀    ▀▀█
████████▄        █
█████████▄        █
██████████▄     ▄██
█████████▀▀▀█▄▄████
▀▀███▀▀       ████
   █          ███
   █          █▀
▄█████▄▄▄ ▄▄▀▀
███████▀▀▀
.
                 NEW!                  
SPORTS BETTING 
|||
[ Đ ][ Ł ]
AVAILABLE NOW

Advertisements are not endorsed by me.
1714516950
Hero Member
*
Offline Offline

Posts: 1714516950

View Profile Personal Message (Offline)

Ignore
1714516950
Reply with quote  #2

1714516950
Report to moderator
1714516950
Hero Member
*
Offline Offline

Posts: 1714516950

View Profile Personal Message (Offline)

Ignore
1714516950
Reply with quote  #2

1714516950
Report to moderator
1714516950
Hero Member
*
Offline Offline

Posts: 1714516950

View Profile Personal Message (Offline)

Ignore
1714516950
Reply with quote  #2

1714516950
Report to moderator
The trust scores you see are subjective; they will change depending on who you have in your trust list.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
EcuaMobi
Legendary
*
Offline Offline

Activity: 1862
Merit: 1469


https://Ecua.Mobi


View Profile WWW
September 10, 2015, 11:13:13 PM
 #22

https://bitcointalk.org/trust.txt.xz

I made it so that'll update every Saturday at 02:52 UTC. -> is "trusts", and -/> is "excludes". Only people with at least 1 post are included. If someone has never touched their trust list, then their trust in DefaultTrust is not shown.

This is great! Smiley
I mean probably it's not *really* useful but it's definitely cool! I hope soon somebody will come up with a tool to grab that information and generate graphs, interactive trees and more.

tspacepilot
Legendary
*
Offline Offline

Activity: 1456
Merit: 1076


I may write code in exchange for bitcoins.


View Profile
September 12, 2015, 05:56:19 PM
Last edit: September 12, 2015, 06:28:51 PM by tspacepilot
 #23

This is great! Smiley
I mean probably it's not *really* useful but it's definitely cool! I hope soon somebody will come up with a tool to grab that information and generate graphs, interactive trees and more.

Here's a start, this script downloads and upacks the source, removes the exclusion nodes (for now), encapsulates the node list in a simple digraph format that should be drawable by graphviz, and calls circo on it. 


Code:
#!/bin/bash

wget https://bitcointalk.org/trust.txt.xz
unxz trust.txt.xz

cat trust.txt | sed -f trust.sed > trust.clean
echo "digraph {" > trust.graph
cat trust.clean >>trust.graph
echo "};" >> trust.graph

# make a simple graph
circo trust.graph


Code:
# remove exclusions
/-\/>/d
# encapsulate names
s/\(.*\)->\(.*\)/"\1"->"\2"/

Name the first codeblock whatever you want and make it executable, name the second codeblock 'trust.sed' and put it in the same dir as the first codeblock.  Execute.  (assumes you have wget, unxz, and graphiviz installed and on your $PATH).

The problem for me is that I use terrible, low-end hardware, the graphviz executable "circo" is still running after 10 minutes.  I don't know how long it will take so who knows, maybe there are issues.   I can post again if this works or doesn't work but I just thought I'd reply to ecua about automatically downloading and drawing---it's a start.



EDIT: circo is slow for large graphs!  I changed the executable to twopi, but still playing around with it.
shorena
Copper Member
Legendary
*
Offline Offline

Activity: 1498
Merit: 1499


No I dont escrow anymore.


View Profile WWW
September 12, 2015, 06:12:30 PM
 #24

Sweet. A simple grep <username> for Neotox:

Code:
defcon23->Neotox
Argwai96->Neotox

and for EcuaMobi:

Code:
Soros Shorts-/>EcuaMobi
dserrano5->EcuaMobi
KWH->EcuaMobi
shitaifan2013-/>EcuaMobi
n00bwastaken->EcuaMobi
sacskate->EcuaMobi
ahmedjadoon->EcuaMobi
EcuaMobi-/>Luke-Jr
EcuaMobi->Blazr
EcuaMobi->b!z
EcuaMobi-/>lazlopanaflex
EcuaMobi->xetsr
EcuaMobi-/>SavellM
EcuaMobi-/>favdesu
EcuaMobi->monbux
EcuaMobi->devthedev
EcuaMobi-/>BayAreaCoins
EcuaMobi-/>tspacepilot
EcuaMobi-/>cxboyminer
EcuaMobi-/>KeyserSozeMC
EcuaMobi-/>cryptodevil
EcuaMobi-/>jonald_fyookball
EcuaMobi-/>BenAnh
EcuaMobi-/>Fakhoury
EcuaMobi-/>Stuff4Bitcoin
Muhammed Zakir->EcuaMobi
liteon->EcuaMobi
Quickseller->EcuaMobi
onewiseguy->EcuaMobi
The Bad Guy-/>EcuaMobi
Joebrann->EcuaMobi

Im not really here, its just your imagination.
tspacepilot
Legendary
*
Offline Offline

Activity: 1456
Merit: 1076


I may write code in exchange for bitcoins.


View Profile
September 12, 2015, 06:41:27 PM
 #25

Still needs some help, but here's a first image (generated with just a single command using the script above, somewhat modified):




Clearly it's kinda a total mess so you'd need to tweak the parameters to graphviz, nonetheless, I thought the script to download and draw was worth posting.  This version of "showtrust.sh" works at least for that (and while twopi clearly didn't do a great job laying out the text here, it did draw in under a minute using my low-powered, 3 year old laptop.

Code:
#!/bin/bash

wget https://bitcointalk.org/trust.txt.xz
unxz trust.txt.xz

cat trust.txt | sed -f trust.sed > trust.clean
echo "digraph {" > trust.graph
cat trust.clean >>trust.graph
echo "};" >> trust.graph

# make a simple graph
twopi trust.graph -Tpng > trust.png
xdg-open trust.png

# cleanup
rm trust.txt trust.clean trust.graph
Neotox (OP)
Legendary
*
Offline Offline

Activity: 1120
Merit: 1000


Free & Fast Neotox Escrow http://bit.ly/1OGVykp


View Profile WWW
September 13, 2015, 04:53:03 AM
 #26

Sweet. A simple grep <username> for Neotox:

Code:
defcon23->Neotox
Argwai96->Neotox
thanks for sharing, but can you tell me where you found this info?

using the link https://bitcointalk.org/trust20150516.txt.xz
I can't find my username in this file, so want to know where and how you got this info

Available
PM me to rent this space.
tspacepilot
Legendary
*
Offline Offline

Activity: 1456
Merit: 1076


I may write code in exchange for bitcoins.


View Profile
September 13, 2015, 05:18:26 AM
 #27

Sweet. A simple grep <username> for Neotox:

Code:
defcon23->Neotox
Argwai96->Neotox
thanks for sharing, but can you tell me where you found this info?

using the link https://bitcointalk.org/trust20150516.txt.xz
I can't find my username in this file, so want to know where and how you got this info

I downloaded https://bitcointalk.org/trust.txt.xz and I find you in there just like Shorena, using grep:

Code:
tsp@computer:~/trustgraph$ cat trust.txt | grep "Neotox"
defcon23->Neotox
Argwai96->Neotox

The trust.txt.xz without a timestamp in the filename has a file datestamp of 11 Sep.

Code:
-rw-r--r--   1 tsp tsp  64K Sep 11 19:52 trust.txt.xz

The one you refer to seems to have the date 16 May in the filename so I think it's an old one.
Neotox (OP)
Legendary
*
Offline Offline

Activity: 1120
Merit: 1000


Free & Fast Neotox Escrow http://bit.ly/1OGVykp


View Profile WWW
September 13, 2015, 10:24:36 AM
 #28

Sweet. A simple grep <username> for Neotox:

Code:
defcon23->Neotox
Argwai96->Neotox
thanks for sharing, but can you tell me where you found this info?

using the link https://bitcointalk.org/trust20150516.txt.xz
I can't find my username in this file, so want to know where and how you got this info

I downloaded https://bitcointalk.org/trust.txt.xz and I find you in there just like Shorena, using grep:

Code:
tsp@computer:~/trustgraph$ cat trust.txt | grep "Neotox"
defcon23->Neotox
Argwai96->Neotox

The trust.txt.xz without a timestamp in the filename has a file datestamp of 11 Sep.

Code:
-rw-r--r--   1 tsp tsp  64K Sep 11 19:52 trust.txt.xz

The one you refer to seems to have the date 16 May in the filename so I think it's an old one.
thanks a lot, I got it
thanks for sharing the link of new trust file ,I was using old file

Available
PM me to rent this space.
Mitchell
Copper Member
Legendary
*
Offline Offline

Activity: 3906
Merit: 2198


Verified awesomeness ✔


View Profile WWW
September 13, 2015, 10:30:32 AM
 #29

Neotox you must have missed this post. Wink

https://bitcointalk.org/trust.txt.xz

I made it so that'll update every Saturday at 02:52 UTC. -> is "trusts", and -/> is "excludes". Only people with at least 1 post are included. If someone has never touched their trust list, then their trust in DefaultTrust is not shown.

.
Duelbits
            ▄████▄▄
          ▄█████████▄
        ▄█████████████▄
     ▄██████████████████▄
   ▄████▄▄▄█████████▄▄▄███▄
 ▄████▐▀▄▄▀▌████▐▀▄▄▀▌██

 ██████▀▀▀▀███████▀▀▀▀█████

▐████████████■▄▄▄■██████████▀
▐██████████████████████████▀
██████████████████████████▀
▀███████████████████████▀
  ▀███████████████████▀
    ▀███████████████▀
.
         ▄ ▄▄▀▀▀▀▄▄
         ▄▀▀▄      █
         █   ▀▄     █
       ▄█▄     ▀▄   █
      ▄▀ ▀▄      ▀█▀
    ▄▀     ▀█▄▄▄▀▀ ▀
  ▄▀  ▄▀  ▄▀

Live Games

   ▄▄▀▀▀▀▀▀▀▄▄
 ▄▀ ▄▄▀▀▀▀▀▄▄ ▀▄
▄▀ █ ▄  █  ▄ █ ▀▄
█ █   ▀   ▀   █ █  ▄▄▄
█ ▀▀▀▀▀▀▀▀▀▀▀▀▀ █ █   █
█▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█  █▄█
█ ▀▀█  ▀▀█  ▀▀█ █  █▄█

Slots
.
        ▄▀▀▀▀▀▀▀▀▀▀▀▀▀▄
        █         ▄▄  █
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▄       █
█  ▄▄         █       █
█             █       █
█   ▄▀▀▄▀▀▄   █       █
█   ▀▄   ▄▀   █       █

Blackjack
|█▀▀▀▀▀█▄▄▄
       ▀████▄▄
         ██████▄
▄▄▄▄▄▄▄▄█▀    ▀▀█
████████▄        █
█████████▄        █
██████████▄     ▄██
█████████▀▀▀█▄▄████
▀▀███▀▀       ████
   █          ███
   █          █▀
▄█████▄▄▄ ▄▄▀▀
███████▀▀▀
.
                 NEW!                  
SPORTS BETTING 
|||
[ Đ ][ Ł ]
AVAILABLE NOW

Advertisements are not endorsed by me.
Neotox (OP)
Legendary
*
Offline Offline

Activity: 1120
Merit: 1000


Free & Fast Neotox Escrow http://bit.ly/1OGVykp


View Profile WWW
September 13, 2015, 02:17:38 PM
 #30

Neotox you must have missed this post. Wink

https://bitcointalk.org/trust.txt.xz
 made it so that'll update every Saturday at 02:52 UTC. -> is "trusts", and -/> is "excludes". Only people with at least 1 post are included. If someone has never touched their trust list, then their trust in DefaultTrust is not shown.
Oh sorry bro
yes I missed that and I was using link from first post of this second page but missed your post on first page where you shared the current trust file

thanks a lot everyone for helping, this is why I love this community, we help each others like family members

Available
PM me to rent this space.
dogie
Legendary
*
Offline Offline

Activity: 1666
Merit: 1183


dogiecoin.com


View Profile WWW
September 14, 2015, 11:27:04 AM
 #31

https://bitcointalk.org/trust.txt.xz

I made it so that'll update every Saturday at 02:52 UTC. -> is "trusts", and -/> is "excludes". Only people with at least 1 post are included. If someone has never touched their trust list, then their trust in DefaultTrust is not shown.

*Fires up the shitty i7 rendering farm*

zazarb
Legendary
*
Offline Offline

Activity: 3374
Merit: 1548


Get loan in just five minutes goo.gl/8WMW6n


View Profile WWW
September 19, 2015, 01:42:55 PM
 #32

Neotox you must have missed this post. Wink

https://bitcointalk.org/trust.txt.xz

I made it so that'll update every Saturday at 02:52 UTC. -> is "trusts", and -/> is "excludes". Only people with at least 1 post are included. If someone has never touched their trust list, then their trust in DefaultTrust is not shown.
If this list updated every Saturday, where it could be found? link above refers only Downloads Old.
regards
-zz

       ███████████████▄▄
    ██████████████████████▄
  ██████████████████████████▄
 ███████   ▀████████▀   ████▄
██████████    █▀  ▀    ██████▄
███████████▄▄▀  ██  ▀▄▄████████
███████████          █████████
███████████▀▀▄  ██  ▄▀▀████████
██████████▀   ▀▄  ▄▀   ▀██████▀
 ███████  ▄██▄████▄█▄  █████▀
  ██████████████████████████▀
    ██████████████████████▀
       ███████████████▀▀
.
.Duelbits.
.
..THE MOST REWARDING CASINO......
   ▄▄▄▄████▀███▄▄▄▄▄
▄███▄▀▄██▄   ▄██▄▀▄███▄
████▄█▄███▄█▄███▄█▄████
███████████████████████   ▄██▄
██     ██     ██     ██   ▀██▀
██ ▀▀█ ██ ▀▀█ ██ ▀▀█ ██    ██
██  █  ██  █  ██  █  ██
█▌  ██
██     ██     ██     ████  ██
█████████████████████████  ██
████████████████████████████▀
█████████████████████████
█████████████████████████
████████████████████████▌
       +4,000      
PROVABLY FAIR
GAMES
   $500,000  
MONTHLY
PRIZE POOL
      $10,000     
BLACKJACK
GIVEAWAY
tspacepilot
Legendary
*
Offline Offline

Activity: 1456
Merit: 1076


I may write code in exchange for bitcoins.


View Profile
September 19, 2015, 05:03:12 PM
 #33

Neotox you must have missed this post. Wink

https://bitcointalk.org/trust.txt.xz

I made it so that'll update every Saturday at 02:52 UTC. -> is "trusts", and -/> is "excludes". Only people with at least 1 post are included. If someone has never touched their trust list, then their trust in DefaultTrust is not shown.
If this list updated every Saturday, where it could be found? link above refers only Downloads Old.
regards
-zz

What I understand is that https://bitcointalk.org/trust.txt.xz will be the latest.  You don't find that that's the case?
Neotox (OP)
Legendary
*
Offline Offline

Activity: 1120
Merit: 1000


Free & Fast Neotox Escrow http://bit.ly/1OGVykp


View Profile WWW
September 19, 2015, 05:19:21 PM
 #34

Neotox you must have missed this post. Wink

https://bitcointalk.org/trust.txt.xz

I made it so that'll update every Saturday at 02:52 UTC. -> is "trusts", and -/> is "excludes". Only people with at least 1 post are included. If someone has never touched their trust list, then their trust in DefaultTrust is not shown.
If this list updated every Saturday, where it could be found? link above refers only Downloads Old.
regards
-zz
What I understand is that https://bitcointalk.org/trust.txt.xz will be the latest.  You don't find that that's the case?
yes this is link for the latest trust list, when you visit you download latest list bydefault

Available
PM me to rent this space.
zazarb
Legendary
*
Offline Offline

Activity: 3374
Merit: 1548


Get loan in just five minutes goo.gl/8WMW6n


View Profile WWW
September 19, 2015, 06:16:13 PM
 #35

I checked and I can confirm you right, me has misled previous one were with date stamp.
thanks

       ███████████████▄▄
    ██████████████████████▄
  ██████████████████████████▄
 ███████   ▀████████▀   ████▄
██████████    █▀  ▀    ██████▄
███████████▄▄▀  ██  ▀▄▄████████
███████████          █████████
███████████▀▀▄  ██  ▄▀▀████████
██████████▀   ▀▄  ▄▀   ▀██████▀
 ███████  ▄██▄████▄█▄  █████▀
  ██████████████████████████▀
    ██████████████████████▀
       ███████████████▀▀
.
.Duelbits.
.
..THE MOST REWARDING CASINO......
   ▄▄▄▄████▀███▄▄▄▄▄
▄███▄▀▄██▄   ▄██▄▀▄███▄
████▄█▄███▄█▄███▄█▄████
███████████████████████   ▄██▄
██     ██     ██     ██   ▀██▀
██ ▀▀█ ██ ▀▀█ ██ ▀▀█ ██    ██
██  █  ██  █  ██  █  ██
█▌  ██
██     ██     ██     ████  ██
█████████████████████████  ██
████████████████████████████▀
█████████████████████████
█████████████████████████
████████████████████████▌
       +4,000      
PROVABLY FAIR
GAMES
   $500,000  
MONTHLY
PRIZE POOL
      $10,000     
BLACKJACK
GIVEAWAY
shorena
Copper Member
Legendary
*
Offline Offline

Activity: 1498
Merit: 1499


No I dont escrow anymore.


View Profile WWW
November 02, 2015, 07:32:09 AM
 #36

I will just leave this here, might be useful for others as well.

Code:
#!/bin/bash

echo "Renaming old trust.txt to the date it was last updated..."
mv trust.txt trust.txt.$(ls -all --time-style=+%F | grep trust.txt$ | egrep -o 20[0-9][0-9]\-[0-9]{2}\-[0-9]{2})
# assumes no other file ending on trust.txt in the same directory, change 1st grep if needed

echo "Downloading new trust.txt..."
wget https://bitcointalk.org/trust.txt.xz -N #only if newer (-N)

echo "Unpacking trust.txt..."
unxz trust.txt.xz -k #keeps old file, so wget can check for updates with -N
echo "done."

exit $?

Im not really here, its just your imagination.
Timelord2067
Legendary
*
Offline Offline

Activity: 3654
Merit: 2216


💲🏎️💨🚓


View Profile
January 10, 2016, 10:35:59 AM
 #37

Years ago Facebook (yeh, I said the "F" word...) has/had a program where everyone's name was placed around a circle (the name was radiating out like spokes on a wheel with a clear empty section in the middle) and a line was drawn from every person to every other person they are friends with using your own circle of friends as the names to create the circle with.

Much earlier than that I saw on a program like 60 Minutes (might have even *been* 60 mins) where Law Enforcement developed something similar - all names were feed into the data base and it showed all the connections of the people eg some results would be two crescents facing each other - each crescent linked names between itself while only one or two threads crossed from one crescent to the other. (the links from one to the other were who they targeted...)

It's the same thing that the graph on this page is trying to draw.


dogie
Legendary
*
Offline Offline

Activity: 1666
Merit: 1183


dogiecoin.com


View Profile WWW
January 10, 2016, 03:09:55 PM
 #38

Years ago Facebook (yeh, I said the "F" word...) has/had a program where everyone's name was placed around a circle (the name was radiating out like spokes on a wheel with a clear empty section in the middle) and a line was drawn from every person to every other person they are friends with using your own circle of friends as the names to create the circle with.

Much earlier than that I saw on a program like 60 Minutes (might have even *been* 60 mins) where Law Enforcement developed something similar - all names were feed into the data base and it showed all the connections of the people eg some results would be two crescents facing each other - each crescent linked names between itself while only one or two threads crossed from one crescent to the other. (the links from one to the other were who they targeted...)

It's the same thing that the graph on this page is trying to draw.

I have absolutely no idea what your 2 month necro post was trying to say.

Timelord2067
Legendary
*
Offline Offline

Activity: 3654
Merit: 2216


💲🏎️💨🚓


View Profile
January 10, 2016, 09:52:45 PM
Last edit: May 17, 2023, 12:28:22 AM by Timelord2067
 #39

[quote author=dogie link=topic=1175364.msg13506228#msg13506228 date=1452438595]
[quote author=Timelord2067 link=topic=1175364.msg13504101#msg13504101 date=1452422159]
Years ago Facebook (yeh, I said the "F" word...) has/had a program where everyone's name was placed around a circle (the name was radiating out like spokes on a wheel with a clear empty section in the middle) and a line was drawn from every person to every other person they are friends with using your own circle of friends as the names to create the circle with.

Much earlier than that I saw on a program like 60 Minutes (might have even *been* 60 mins) where Law Enforcement developed something similar - all names were feed into the data base and it showed all the connections of the people eg some results would be two crescents facing each other - each crescent linked names between itself while only one or two threads crossed from one crescent to the other. (the links from one to the other were who they targeted...)

It's the same thing that the graph on this page is trying to draw.
[/quote]

I have absolutely no idea what your 2 month necro post was trying to say.
[/quote]

Sorry about that - I meant to cut and paste this graph which was the point of my post.

[quote author=tspacepilot link=topic=1175364.msg12402016#msg12402016 date=1442083287]
Still needs some help, but here's a first image (generated with just a single command using the script above, somewhat modified):





[/quote]

tspacepilot
Legendary
*
Offline Offline

Activity: 1456
Merit: 1076


I may write code in exchange for bitcoins.


View Profile
January 11, 2016, 06:35:16 PM
 #40

So, I made that graph using LaTeX and the PSTricks package.  It's pretty damn ugly, dogie's graphs are enormously more useful.  But anyway, LaTeX and PSTricks (psmatrix, psnode) if you were curious.
Pages: « 1 [2]  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!