Wednesday 23 August 2017

best coin faucets for faucethub!

Here is a list of the top FaucetHub.io  faucets!
This list is live and will be updated within 2-3 days of any changes!
bookmark this page to maximize your earnings everyday.

BTC

claimbits - gives anywhere from 10-50 sat every 5 minutes.
gobits - this one does 12-50 sat every 5 minutes.
satoshimonster - this one is my favorite, 30 sat every 30 minutes. always 100% reward no chance to get less.
harena space - get 20 sat every 5 minutes.
firstbtc - pays 55-100 sat every 180 minutes.


BLK

konstantinova - this faucet gives 200k + 325k for a short link. claim every 5 minutes.
xfaucet - the same as konstantinova, best to have both open and earn 1.5 mil blacktoshi every 5 minutes!
harena space blackcoin - earn 100k every 5 minutes.
speedyblk  - up to 100k + extra 100k short link bonus every 1 minute!!


Saturday 16 May 2015

HTML QUICK TIPS

Here are some quick html tips

tip number one The Title.
here is the code for that title i have just made:


ok so quick explanation:
all html code goes into tags and in the picture i used the style tags and the h1 tags.
These symbols < > with the name of the tag inside say that that's where the tag starts and these with the same name in them say where it ends.
The style tag lets you use css(another web language for adding colors and formatting etc.) in your html code.

Style code:
It's pretty understandable first the # means im talking about an id and if i apply this id to anything in html it will get the attributes i set between { }.

In the #title{ }:
background-colour: the color of the background of anything with this id
color: means the color of the text
border-color: the colour of the border
Note: those things that im setting the colors to are called hex color codes you can find more here
border-style: the style of the border solid,dotted etc.
border-width: the size of the border in pixels

h1:
it means we are creating a heading
Note: inside the h1 tag it says id="title" that means that it will have the attributes of the title id from the style tag
what ever you put between the h1 tag and the /h1 tag will be the title
you get heading tags from h1 to h6(h1 being the biggest font size and h6 the smallest)

that is how you make a title in html and css
Note: if you were making website you would need more tags and it would look like this

Thursday 14 May 2015

Awesome new engine im working on

I have just started a new project that i am currently working on which is an engine that will be able to create animations or games.I am using the vb.net programming language to develop it.I think it is a great project as there are not many game engines that were created with vb.net.So far it can only create 2d graphics and is not that good but that's what you'd expect from only a day of development.
I will keep you up to date as i get further into the project.
NOTE: i do not know how to put code snippets into my blog if you do please feel free to explain in the comments.



Wednesday 13 May 2015

WHAT IT IS AND HOW IT WORKS

Programming simply put is the creation of computer programs(software).
In this blog i will be teaching you some programming languages. A programming language is a way in which we communicate with the computer(give it instructions). each programming language has its own IDE/compiler. An IDE is a integrated development environment or simply put the place you write your code and the compiler which converts the code into something the computer can understand usually an .exe file(executable file). If you download an IDE it usually has it's own compiler built in.

Here are a list of IDE's that i work with and the programming languages i use them for:

Visual studio express - i use this for programming in visual basic.net(vb.net) and c#.

JetBrains pycharm - i use this for programming in python.

Brackets - i use this for html(and in my opinion it is the best html editor).

notepad++ - it is a great tool to keep around and comes in handy when scripting.

NOTE: all of these tools are free and you can find them with a simple google search.