SEO Change
Recently, Webstitcher changed it’s hosting to a more amiable host which helps with search engine optimization. While our old client was great on almost everything, load times, keeping files up, and making sure dead pages were redirected to homepage, we were also missing one key element that our new host provides.
SSL Certificates
in 2017, Google began to require any website with text input to have a ssl certificate, which encrypts data. Since we use text inputs in several of our contact forms and create dynamic data with text and file inputs. If we want to stay on top of google’s search we need to have a ssl certificate.
Generating SSL Certificates
Creating ssl certificates is now free, where it use to be $8.00 or more per month, with services you can google search as I am not going to promote them right now, but these services provide the needed ssl certificates, and allow websites to send encrypted data.
Constant Battle with SEO
Keeping up to date on current trends and practices is essential in keeping your websites on top of google engines and making sure google won’t brand you as a unsecure site.
First the basics:
The New Stuff:
In Closing
SEO is a process and learning how to make websites that are together with the current trends and practices is all about reading, https://support.google.com/webmasters/answer/7451184?hl=en Here is my next read about the current state of SEO and hope you find what you need to keep the traffic going through your website, take care and give me a call if you have any questions about SEO or web development in general.
Peter J.
Been working on a php / sql generator in case any of you want to ever use some php / sql select statements for your databases, it is still in the works, but is almost complete
http://stockplant.tk/sql-php-statement-generator/
The whole concept of it is to make things easier and more of a flow when creating websites, thought I would share it with everyone out there incase you ever wanted to mess around with php/sql statements or to help speed up your development if you are a developer.
Anyhow, just creating this robot to try and make things more automated when writing out websites as it is very time consuming writing the same sql statements, rise of the robots is coming next.
The importance of keeping your users passwords and sensitive data is important, when storing data there are several calls in php which will encode the data to a point that it is difficult to realize what it is.
A quick example can be found here:
http://webstitcher.com/test/geter3.php
There are two types of data encryption.
Two way encryption is used when someone will need to reuse the data, for instance, if you have a document that is important for the two parties, it will encrypt the data to send it, and when the other person receives it, they will be able to use the data once it is unencrypted.
One way encryption is used for passwords, and just about any other user input, but mostly passwords, this makes it so the letters you type will be encrypted and when you type them again, the program will send those letters in various ways to match, but it cannot be rematched.
When collecting payments or using sensitive data it is important to have a SSL certificate, this enables encrypted data through a server, a article about this can be found here with many options,
https://geekflare.com/free-ssl-tls-certificate/
There are so many different ways to create data security, if you are interested, try searches like, salt and pepper password protection. This adds custom letters at certain points and help to create a more secure database so if you ever get hacked, they will not know how to unencrypt the data and share it with thousands of black market websites.
It is always good to know that your data is safe, with custom website development you can know that your data is protected and kept safe just in case someone hacks your data.
My example is here:
http://webstitcher.com/test-of-cars/
Have you ever wanted to create a page that just lists all your posts on one page? This can be done and is nice in case you want people to see all the posts you have created in one long list and formatted the way you want to.
If you ever want to list like this so that people can do this here is some code to help you do this:
[wpex more=”See Code” less=”Collapse”]
$wpb_all_query = new WP_Query(array(‘post_type’=>’post’, ‘post_status’=>’publish’, ‘posts_per_page’=>-1)); ?>
<?php if ( $wpb_all_query->have_posts() ) : ?>
<!– the loop –>
<?php while ( $wpb_all_query->have_posts() ) : $wpb_all_query->the_post(); ?>
——————————————————– Your Code Here ——————————————————–
<?php endwhile; ?> <?php endwhile; ?> <!– end of the loop –>
<?php wp_reset_postdata(); ?> <?php else : ?> <p><?php _e( ‘Sorry, no posts matched your criteria.’ ); ?></p><?php endif; ?>
[/wpex]
Hope you are all doing well and feel free to get ahold of me if you need any help with any web programs, creating sites to help you sell products, write about yourself or promote yourself. Hope you are all doing well and take care out there.
When hearing about net neutrality, you think to yourself what is it, and how does it effect my online business. Net Neutrality is companies want to be able to throttle how much data their users are using and charge them elevated prices for their usage. One asks, why haven’t they been able to do this before. In this article we will discover how it effects every day Americans, growing online businesses and who will benefit.
So there are 10 major internet companies in the USA:
Company | Subscriptions | Services |
---|---|---|
Windstream | 1,017,400[26] | DSL access at speeds from 3 to 12 Mbit/s. Also offers fiber, Metro Ethernet & T1 speeds, up to 1 Gbit/s.[40] |
Verizon | 6,978,000[26] | DSL access at speeds of 0.5 to 15 Mbit/s, and fiber access (FiOS) at speeds of 50 to 1 Gbit/s.[31][32] |
Mediacom | 1,194,000[26] | Cable Internet access at speeds from 60 Mbit/s to 1 Gbit/s. [39] |
Frontier | 4,000,000[26] | DSL access at speeds from 6 to 12 Mbit/s.[37] Fiber access with speeds up to 10 Gbit/s.[38] |
Cox | 4,860,000[26] | Cable Internet access at speeds of 5 to 300 Mbit/s. Also offers fiber access at speeds of 1 Gbit/s.[35] |
Comcast | 25,519,000[26] | Cable Internet access at speeds up to 250 Mbit/s.[27] But may maxed out with its maximum plan (Gigabit Pro 2GB, speeds at 2 Gbit/s).[28] |
Charter | 23,603,000[26] | Cable Internet access at speeds up to 100 Mbit/s.[29] |
CenturyLink | 5,767,000[26] | DSL access at speeds up to 40 Mbit/s.[33] Fiber access available at up to 1 Gbit/s[34] |
AT&T | 15,715,000[26] | DSL access at speeds up to 18 Mbit/s, and FTTN VDSL2 access (AT&T Internet) at speeds up to 100 Mbit/s. Fiber access available at up to 1 Gbit/s[30] |
Altice USA | 4,020,900[26] | Cable Internet access at speeds up to 101 Mbit/s.[36] |
These companies want to be able to throttle people’s access to the internet and would potentially, though probably wouldn’t happen like this, restrict access to certain websites.
So while you would think they would be legally able to check how much data you are using, it is a breach of privacy, they would be able to see what websites you are visiting, how much data you are using, and most of all CENSOR what you see. So the objection is they would be more involved in knowing what you are doing on the internet and thus restrict people’s freedom of being able to go to certain sites or to browse freely.
As a web developer I feel that this would hurt me as they would be able to limit the amount of traffic I receive on my web server or even decide they want to block my website from being accessed. I would also have the option to pay them to advertise my site to people, having them redirect traffic to my site. It really commercializes and restricts people’s ability to access the internet, as it would allow them to throttle people’s internet access without any question to privacy.
Hopefully the people in the government will say that this is a step in the wrong direction, putting too much power in the internet service providers hands and limiting people’s ability to access the internet and it’s contents.
Google has added Copyright all over their map images, now when you look at street view in google images you now see a lot of copyright text all over the screen. I understand Google has a right to do this but it takes away from the experience.
Now when you go to look at a google map you might see something like this:
perhaps a little over dramatizing, but you get the picture.
if Google is doing this, there are several things they are going to need to fix, buildings and people caught in the images will have to be contacted and asked if they can use people’s property in these images. As a photographer myself, I know that you cannot use images unless people give you consent to do so. With all these images owned by google, they are either going to need to reimburse those who are in the images, including using the images of their buildings, as it is not their property they are displaying. If google wants to make a dime on the pictures or claim ownership of them that is.
I just noticed this today, and to say the least, I’m a little bummed they put copyright on these images, not sure if it will have legal ramifications for them or not. Guess time will tell, I know you need to ask people’s permission when using their image in contests, or content you claim is yours, so I’m sure if google is going to be claiming ownership of these images, they will have to ask every sing business and property to use this information because it bothers people when their properties are used without permission. In the case of a relative had asked for me to remove their google listing because too many people were calling the business after he had privatized it. As for some buildings, perhaps they will be asking the same for images of the outside of their buildings.
Best wishes out there, and as always, if you need any help with websites or related works, do not hesitate to call (218) 461-1742
Pete Joice
webstitcher
A great chat room with microphones has been released a few years ago, March 6, 2015, called Discord, I have recently been using mine and it is very nice to have people be able to come in and out of the room discussing whichever topics they would like. The thing that makes discord so nice is how easy it is to set up your own room, bring people in, chat private about whatever. Not sure I’d disclose anything too sensitive, though I think it is fairly secure.
Some of the great things about discord are that you can easily create a chat room in a few simple steps and use it either from the web, or through their app:
That’s it, that is how easy it is to make a discord channel, now you can right click your channel, add a picture, and go into settings and do several different things for your server. To invite people in a few more simple steps you just:
It’s as simple as that, even this guy could do it, he looks class.
Discord bots are great, they do lots of things from music to games, keep you entertained and find new and exciting programs to use. You simply invite them to your channel and a list can be found here:
Take Care and as always let me know if you need any help customizing or anything,
I have always wanted to install several google fonts on my pages, it takes css code, and a few google font installs which can be found here:
I have done this on previous sites, but wanted it for my posts, so I installed some plugins to help me with this called
“Font Organizer“
Fonts bring a lot of life into your posts, the brain loves them because it has something new to look at.
I will be adding fonts to my main page and trying to make the posts look a little more structured with nice visuals such as custom fonts and other nice things. Hope to soon get this done after all my other projects are done
Though it is not a big deal, you need to add each and every font you want to the list so that it doesn’t get too crowded and your website can load them well. It isn’t too bad to switch from the google site, to your own picking fonts you want, but I have seen ones that just load them with the font name.
Example of css:
@font-face { font-family: ‘MyWebFont’; src: url(‘webfont.eot’); /* IE9 Compat Modes */ src: url(‘webfont.eot?#iefix’) format(’embedded-opentype’), /* IE6-IE8 */ url(‘webfont.woff2’) format(‘woff2’), /* Super Modern Browsers */ url(‘webfont.woff’) format(‘woff’), /* Pretty Modern Browsers */ url(‘webfont.ttf’) format(‘truetype’), /* Safari, Android, iOS */ url(‘webfont.svg#svgFontName’) format(‘svg’); /* Legacy iOS */ }
Then you would use the font-family tag in your next css style
p {font-family:MyWebFont;}
Take care out there and let me know if you need any website help let me know, our base fees start at $30 a hour and if you need help with setting up sites let me know.
End of October marked the announcement that IBM would be creating a easier way to exchange stellar lumens. If you have not been follow crypto currencies than you probably do not know that the price has been sky rocketing, from $200 4 years ago, bit coin is currently at 12,000. Of course I am not one of the lucky ones that invested, but today is a new day, and stellar seems to be out of control.
from .02 to .15 today, in the past month it has increased 7x initial investment. Within the past two days it has jumped from .09 to .15. Either way the reason it is so wild is the ease of which IBM is said to make transfers, unlike the current confusing 28 steps it takes to purchase it, it is a task. First you have to buy a fraction of bit coin, then you have to purchase the stellar with the bitcoin, lots can go wrong in those two transactions.
If any of you are interested in purchasing here is the 28 step guide to buying it, very confusing and lots of trust goes into it, but I believe that this will be sky rocketing after the simple to purchase method will be out who knows when.
Equifax | 2017 | 143,000,000 | financial, credit reporting | hacked |
So the government hired equifax to deal with tax information for businesses and personal taxes. The thing I find about this is how personal data is never really secure and the best thing we could ever do is to have a system where government doesn’t hire people to do this, but have a independent matrix of paying taxes where people can pay taxes, and have it checked that they paid taxes without sensitive personal data stored.
As we see little under half of american tax payer information is stolen by someone, we don’t know who. 323.1 million people live in the US, and equifax lost all these files about tax filings to an unknown source. Questions about whether they need to keep these files even, or a simple paid unpaid better form of keeping tabs to be in place. Now that your social security and other sensitive data has been stolen because they need to keep these records. One just wonders what to do, how to keep things better, a better way to make sure our country continues to function and keep people’s data safe.
Another solution would be to put the data offline, why keep all these data files connected to the internet when they could simply store the data offline and access only when needed. Now that some person can create any number of bogus accounts through the data stolen from our countries government.
Webstitcher is creating websites now that take into account people’s social media accounts. You can integrate all social media inputs into one easy to post area, this post you are reading right now came right from my site. Whenever you have deals to share, new products or innovations to current products, it all sends out to 8 social media sites at once with this one post.
Webstitcher also has a service to add more followers to your social media, helps you draw people in from your area, with tools to bring more people into your social accounts, you will be able to put your ads into more faces.
Helping you to find an audience and create marketing materials to draw more followers and bring more interested bodies into whatever drives you as a person. I create and help reach a wider audience through years of practice. Best wishes out there and May God’s love be with you all.
Working with WordPress is great because it is backed by thousands of developers who allow you to use their works, with possible added features for money. The plug-ins help you to create content that you can easily help people use.
While it would be difficult for a novice to create templates for a post, with a expert at your side, you can can have beautiful looking posts with Ease of use.
If you are looking for plugins to help you with specific content like my stock game, a easy to search box will help you to find data to help make your website look amazing. http://stockplant.tk is my specified data website and there are plenty of nice things that help you to make it easy.
http://stockplant.tk is a fun stock market game I have been working on, you can see real time stock trading data and see how stocks are doing, I will be creating a custom graph for it soon instead of the .gif image that is created right now. This game was built on data from Yahoo, expecting yahoo to be a stable form of data retrieval.
I had a problem with Yahoo canceling their stock market api without notice, so as a quick solution I used Google sites and ‘scraped’ the data until I could find the solution.
I did find a solution in https://www.alphavantage.co , this allows for data seizure through a .json method. Basically it returns a ‘multi-dimensional array’ which I can create into a easy to plot chart and graph.
While it was kind of a startling thing to come to my website, see that it was gathering no data, this experience helped me to learn new methods of gathering data and although it would be nice of the major data provider to give notice of their removal of stock gathering information, I probably wouldn’t have noticed their notes anyway. All in all it helped me to learn how to use multi-dimensional arrays better, even though I already have knowledge of working with arrays, and how to find information from simple searches with scraping
Scraping – to have your website grab information from another site
example of code:
[wpex more=”See Code” less=”Collapse”]$previous_value = libxml_use_internal_errors(TRUE);
//$codeeval = $_GET[‘codeeval’];
$score_url = ‘https://finance.google.com/finance?q=’.$exchange .”:” . $symbol . ‘/’;
$html = file_get_contents($score_url);
$classname = ‘market-data-div’;
$dom = new DOMDocument;
$dom->loadHTML($html);
$xpath = new DOMXPath($dom);
$results = $xpath->query(“//*[@id='” . $classname . “‘]”);
// scrapelibxml_clear_errors();
libxml_use_internal_errors($previous_value);
foreach ($results as $node) {
$full_content = innerHTML($node);$wow = $node->textContent;
}
$stain = preg_split(‘/\s+/’, $wow);
$tops = array();
foreach ($stain as $val){
if (is_numeric($val)) {
array_push($tops,$val);</blockquote>
}
}
$quote = array();
$quote[‘symbol’] = $symbol;
$quote[‘last’] = $tops[0];
$quote[‘date’];
$quote[‘timestamp’];
$quote[‘change’] = $tops[1];
$quote[‘open’] = $tops[7];
$quote[‘high’] = $tops[3];
$quote[‘low’] = $tops[2];
$quote[‘volume’];
$quote[‘previousClose’];
$quote[‘name’] = $fullname;
$quote[‘bid’];
$quote[‘ask’];
$quote[‘eps’] = $tops[10];
$quote[‘YearLow’] = $tops[5];
$quote[‘YearHigh’] = $tops[6];
$quote[‘PE’] = $tops[8];
return $quote;[/wpex]
multi-dimensional array – multiple data points stored into an easy to access array
[wpex more=”See Code” less=”Collapse”]function getQuote($symbol,$exchange,$fullname)
{
$points = array();
$pointdates = array();
// alpha
$link = “https://www.alphavantage.co/query?function=TIME_SERIES_DAILY&outputsize=compact&symbol=”. $symbol .”&apikey=66TWU1D2SCRTXWNB”;$data = file_get_contents($link);
$proc = json_decode($data, true);
//print_r($proc);// multidimensional array
$keys = array_keys($proc);for($i = 0; $i < count($proc); $i++) {
// $nextkey = array_keys($keys[$i]);// echo $keys[$i] . “{
“;
foreach($proc[$keys[$i]] as $key => $value) {
if (!isset($firstdate)){
$firstdate = $key;
$yeardate = strtotime(“+13 months”, strtotime($firstdate));
}
$curdate = $key;
if (is_array ( $value )){
foreach($value as $tea => $plea) {
if ($curdate < $yeardate){
if ($tea == ‘4. close’)
{
array_push($points,$plea);
}
}
// second
if ($curdate )
if ($tea == ‘1. open’ && isset($firstvolume) && !isset($secondopen)){$secondopen = $plea;
}
if ($tea == ‘2. high’ && isset($firsthigh) && !isset($secondhigh)){$secondhigh = $plea;
}
if ($tea == ‘4. close’ && isset($firstclose) && !isset($secondclose)){$secondclose = $plea;
}
if ($tea == ‘3. low’ && isset($firstlow) && !isset($secondlow)){$secondlow = $plea;
}
if ($tea == ‘5. volume’ && isset($firstvolume) && !isset($secondvolume)){$secondvolume = $plea;
}
if ($tea == ‘1. open’ && !isset($firstopen)){$firstopen = $plea;
}
if ($tea == ‘2. high’ && !isset($firsthigh)){$firsthigh = $plea;
}
if ($tea == ‘4. close’ && !isset($firstclose)){$firstclose = $plea;
}
if ($tea == ‘3. low’ && !isset($firstlow)){$firstlow = $plea;
}
if ($tea == ‘5. volume’ && !isset($firstvolume)){$firstvolume = $plea;
}//echo ‘
<div style=”padding-left: 25px;”>’ . $tea . ” : ” . $plea . ‘</div>
‘;}
}}
}
$link = “https://www.alphavantage.co/query?function=TIME_SERIES_MONTHLY&outputsize=compact&symbol=”. $symbol .”&apikey=66TWU1D2SCRTXWNB”;$data = file_get_contents($link);
$proc = json_decode($data, true);
//print_r($proc);// multidimensional array
$keys = array_keys($proc);for($i = 0; $i < count($proc); $i++) {
// $nextkey = array_keys($keys[$i]);// echo $keys[$i] . “{
“;
foreach($proc[$keys[$i]] as $key => $value) {
if (!isset($firstdate)){
$firstdate = $key;
}
$curdate = $key;
if (is_array ( $value )){
foreach($value as $tea => $plea) {
// second//echo ‘
<div style=”padding-left: 25px;”>’ . $tea . ” : ” . $plea . ‘</div>
‘;}
}}
}
$quote[‘symbol’] = $symbol;
$quote[‘last’] = $firstclose;
$quote[‘date’] = $firstdate;
$quote[‘timestamp’];
$quote[‘change’] = ($firstclose – $secondclose);
$quote[‘open’] = $firstopen;
$quote[‘high’] = $firsthigh;
$quote[‘low’] = $firstlow;
$quote[‘volume’] = $firstvolume;
$quote[‘previousClose’] = $secondclose;
$quote[‘name’] = $fullname;
/* $quote[‘bid’];
$quote[‘ask’];
$quote[‘eps’] = $tops[10]; */
$quote[‘YearLow’] = min($points);
$quote[‘YearHigh’] = max($points);
// $quote[‘PE’] = $tops[8];
return $quote;[/wpex]
Shot out to https://tech.mn/ for putting on a gathering of people last night. Got to meet some great guys that are making it in the tech industries and talk about stuff. Found out about some great websites and mobile apps, gave me a few ideas on new sites to make.
Have a great day and keep frosty out there.
Posting to twitter from you website can bring in more people. Twitter will be a power for anyone trying to bring people into your doors with specific phrases that relate to your business. If you are looking for a way to post to twitter, google+, facebook and other social media from your website, get a hold of me and I can create a new website for you.
Created a stock game for all you wish to be investors out there, http://stockplant.tk . I will be adding the ability to have private leagues starting at $10. I will also add a support page with ads per league.
There are currently 3 leagues publicly at one time, monthly, quarterly, and yearly. The site will update the stocks that are removed and added to the market and all stocks are viewable for the entire US stock exchange.
Hope all is well, and have a great time out there. My next work will be on http://amazonbundle.com and if you would like to check that out feel free to do so.
Any inquiries for web development should be directed to peterj@webstitcher.com, make sure to hit me up.
I am creating a stockmarket game, just need to add some features and it should be good. Check it out at
Hope all is well with everyone, let me know if you all need any cool dream sites made, and hopefully I can get it done.
Relationship between a criminal boy and a grown women. Not family friendly, not even that great of a movie. Some Sexual content and while you get a feel for the characters, it was fairly predictable as to what was going to happen.
https://www.youtube.com/watch?v=gLB0ZwmDVK4
If anyone is bored, I will be recording some live music feel free to stop in.
my channel is
http://www.youtube.com/dawgpete
created a visual representation of numbers at:
http://www.webstitcher.com/test
check it out and find out how many dots it takes to make a number.
It does take a while to load over one million, so be patient.
Well it’s cloudy in Duluth, MN so I’m stuck inside, there are plenty of websites that are covering the eclipse and here is one:
http://www.kcra.com/article/live-the-great-american-eclipse/12040907
Hi, I was just seeing if anyone had purchased a package and had a free magix music maker code they didn’t want, I’ve been mixing recently on my Youtube channel
https://www.youtube.com/user/dawgpete
Take care and hit me up with any work any of you need done. Have a open schedule.
[I am going to be working on my website http://dealpopup.com/, Right now I am using clickbank, I made about 3 dollars in sales, but it dissolved as it does every few months,
Will need to get it turned into random deals for amazon and ebay, also I may add some adsense ads. Hoping that there will be wordpress shortcodes to help me out, as I do not want to write an entire api for myself.
Hope all is well out there, and I invite anyone who runs across this to post back to me.
[ebayfeedsforwordpress feed=”” items=”5″]
So Today I’m thinking about how many good people die each year because of abortion. The question in my mind is why do I vote for either of the parties when neither of them outright abolishes abortion. While I know that a third party candidate would probably end abortion to their utmost, I feel we don’t think they can win. While I know one of the parties claims to be against it more, I don’t feel the numbers argue in either parties favor, I also know these numbers are not the total but only reported.
Thinking how many of those people would have grown into great people, or if not them then the children they would have birthed. While we may think who would take care of all these children, the fact is the more people we have in our world, the more jobs would be out there, more money we would be making, better the world would be with goods and services.
Anyhow, here is a list of the number of kids that didn’t get to make it into the world by year, I guess it is backlogged a bit, but it was the best organized I could find.
Year | Number of Abortions reported to CDC |
induced abortion ratio per 1,000 live births |
CDC Abortion Surveillance Report |
---|---|---|---|
2013 | 664,435 | 200 | [34] |
2012 | 699,202 | 210 | [33] |
2011 | 730,322 | 219 | [32] |
2010 | 765,651 | 228 | [31] |
2009 | 789,217 | 227 | [30] |
2008 | 825,564 | 234 | [29] |
2007 | 827,609 | 231 | [28] |
2006 | 852,385 | 236 | [27] |
2005 | 820,151 | 233 | [26] |
2004 | 839,226 | 238 | [25] |
2003 | 848,163 | 241 | [24] |
2002 | 854,122 | 246 | [23] |
2001 | 853,485 | 246 | [22] |
2000 | 857,475 | 246 | [21] |
1999 | 861,789 | 256 | [20] |
1998 | 884,273 | 264 | [19] |
1997 | 1,186,039 | 274 | [18] |
1996 | 1,221,585 | 314 | [17] |
1995 | 1,210,883 | 311 | [16] |
1994 | 1,267,415 | 334 | [15] |
1993 | 1,330,414 | 321 | [14] |
1992 | 1,359,145 | 335 | [13] |
1991 | 1,388,937 | 339 | [12] |
1990 | 1,429,247 | 345 | [11] |
1989 | 1,396,658 | 346 | [10] |
1988 | 1,371,285 | 352 | [9] |
1987 | 1,353,671 | 356 | [8] |
1986 | 1,328,112 | 354 | [7] |
1985 | 1,328,570 | 354 | [6] |
1984 | 1,333,521 | 364 | [5] |
1983 | 1,268,987 | 349 | [1] |
1982 | 1,303,980 | 354 | [1] |
1981 | 1,300,760 | 358 | [4] |
1980 | 1,297,606 | 359 | [3] |
1979 | 1,251,921 | 358 | [2] |
1978 | 1,157,776 | 347 | [1] |
1977 | 950,675 | 325 | [1] |
1976 | 988,267 | 312 | [1] |
1975 | 854,853 | 272 | [1] |
1974 | 763,476 | 242 | [1] |
1973 | 615,831 | 196 | [1] |
1972 | 586,760 | 180 | [1] |
1971 | 485,816 | 137 | [1] |
1970 | 193,491 | 52 | [1] |
Total | 51,888,303 |
Watching a movie on political activism, it makes me think of forms of Government in history and how democracy has always been the most productive and beneficial form of government for the people in the history of the world.
I think there are many reasons for this and that is it respects the persons right to rise to power, if they so choose, and that when someone gets into power that they are limited in the power that they will have. It gives everyone who ascends to the thrones of power a voice in the way things are done, and at the same time limits the power that these individuals have. In so doing, it helps to stop madness in the political system, monitors systems that have been created if any of these individuals have had bad experiences with the systems, and helps communities that some of these people may love and cherish.
When thinking of the system today, I question the number of jails in existence, and how we can use these jails for community housing or shopping malls if the public of our country ever decides to move away from their own addictions to drugs, alcohol and how these transitions in morality will help to strengthen communities as a whole. I feel that eventually the strengthening of communities in this country through addiction council and alcohol regulation…..
Now I agree with individual rights when it comes to substances, especially when we are growing up. I myself am a recovering substance user, and know that substances are addictive, though I have never ventured into the more addictive substances, like heroin or cocaine. But I do feel people have a right to be intoxicated in responsible situations where they will not operate any machines of consequence. I feel that limiting the intake on substances, though some substances are so dangerous that one intake can change your genetics and needs for your body, should be practiced in “drug hotels” where people would be monitored and taken to their proper places.
All in all I feel that drugs are a huge issue in this culture, as well as the value of the human person. Now people are not valued as much, though more than a vast majority of cultures in the world, and I feel that this is due to the shift of power in corporations and private parties. There are no limits on these large entities and the power of their donations and influence on local law enforcement devalues the lives of individual, especially the homeless who have little power. I being a person of belief in higher forces, feel that these people should be valued, helped and restored to a position where they can follow their dreams. I feel every person needs to find their dream and when obtaining their dream to decide if the dream is what God had planned for them.
All in all, God gives us what we need to find our path to holiness and democracy is so productive for the simple reason it puts people into power, when people are in power they are limited to the power they have so that corruption among the elected will not be complete as not every politician will be turned to bribes as some will hold out and pass laws that will be fair and just. I do feel that the size and amount of laws could be limited as to make sure politicians have ample time to read bills.
I have linux and windows installed, and I have to say linux is so much smoother than windows. It works proper and runs faster. With a fresh install of both windows is confused how to deal with dual hard drives, so I installed a program called “Visual BCD” which is what you have to do to tell your bios that you have a new hard drive and to boot off of that. But in Linux it figured it out almost immediately. It was probably two months ago I put in my new hard drive for frustration of how slow my computer was running.
I installed Linux first then windows, Visual BCD was a really important step in installing all of it, otherwise it wouldn’t boot proper.
Now that I have it all installed and learned Unbuntu drivers and everything, I have to say linux is by far the better operator. The big draw backs are that software all is developed for windows because of how popular it is. So if I’m doing a vast majority of graphical work, I need windows, but if I’m making websites I prefer to be in linux for how fast and reliable it is.
Next thing I am going to need is to have a MAC os so I can create some apps for iphone.
Working with A calendar program to finally use my website for what it was designed for.
http://www.anythingtonight.com
is mine and I am currently using it as a photo / video distribution platform, I will be working in some user sign ins and will be broadcasting it over the next few days. Hopefully I will be adding some calendar functionality so people can add events, and photos of the events.
Fairly excited to get it done and make this happen, hope to get a few people who need some online advertising for their event, I will be posting events posted on my site on adwords and bing ads.
Best wishes out there and I will be linking footage of me working.
May God’s love be with you all.
Quirky Movie about two co-workers who work at a armor truck job.
I can’t say it was the best movie to watch, but it was a movie about people doing things.
It was suppose to be a comedy, I would say it was more of a tale than a comedy, two people trying something new and the adventure in between.
Detective movie, not for children, fairly comical.
Two partners are trying to solve a case for the money, going through their sources, finding out what they can. Takes them to different places, not that it’s a morally good movie in anyway, but how many movies are? Solid acting, nice scenery and character development is pretty fun to watch.
Really enjoyed it, think it’s worth a watch if you are morally bankrupt and have been corrupted already, again, not for anyone innocent because it has all the workings of a morally bankrupt movie.
This movie was decent, though I did not feel it was fit for children.
follows the adventures of a dinosaur and a boy, the boy is more like the dog and the dino is more like the human. Kinda cute, but kinda down plays humanity in general, we are more than animals as it describes us, we are part animal and part spiritual. So it kinda downgrades humanity anyway.
There is also a part of the movie where the dino and the boy take drugs, which isn’t very good for children to see.
I am not a big fan of these cute Disney movies in general and often feel that it creates beasts above humans, and shows humanity as a lower being. So not a fan of Disney movies, plus the values were kinda bad in this one.
There is also violence of animals eating each other in this one and not sure it is great for kids.
Have to say I didn’t enjoy it much, kinda kept on going, watched it with my wife because she likes them.
Tomorrow World is a decent movie, nice special effects, a moral that is very apparent in the end.
This movie has nice special effects, the plot continues to move forward with little twists and turns. I guess it gets a little long winded at times, but the special effects help to keep you mildly entertained.
While people are worried about the future, the question is, does worrying every help anything, in fact in the bible it says that worrying is counter productive and only positive working is good for us.
http://www.biblenice.com?share=true&book=40&chapter=6&fverse=25&lverse=34
All in all, I’d say this movie was decent, makes you want to finish it anyway.
If you enjoy super hero movies might as well watch this one.
It leads the development of the super hero, training, hard work and learning his new abilities.
There are a few fun moments.
The questionable values of this movie are violence, a few guys don’t make it to the end. The hero is also a career thief, which kinda makes a bad point since thieves usually are violent in nature and not a great role model for kids.
Effects are kinda basic, few cgi moments and it’s fun to see things all small.
All in all, it’s a fun movie that probably isn’t great for kids, but is alright if your morals are already developed.
I have been working on a new program to share vacations
http://www.anythingtonight.com
Thus far I had created several tabs, tested a user since I’m sharing photos and movies.
I found a nice menu which isn’t working currently, so it is just a link of the photo galleries.
What I want by the end is a mysql database that will let you label each photo and video with title and caption.
My current host is not good enough to run it well, I guess I need to make some capital soon, if anyone out there is loaded rich and wants to help me by donating a few dollar bills so I can upgrade the server, don’t hesitate to let me know what work you need done.
Anyhow I will be working on this project and my other
I am still deciding whether to build it in wordpress or to just use my own framework, in my opinion wordpress is nice just because of all the added features it brings
The real nice thing about wordpress is creating your own templates and things like that, so anyhow, I’m thinking I will bring in wordpress to that site and just implement my own things, I cannot wait until my library gets the book I need in so I can read some more on developing with word press.
Enjoying working on the site, enjoying learning new practices. I really enjoy how wordpress is almost like you have a whole team of people behind your work. So if you are looking for something that every site needs, you can just research how to implement it, and it’s usually as easy as some short code. The thing I don’t like is it will never be as good as when you are designing for a specific need. But it really helps in the long term because people will be able to easily find what they need and you will be able to help more people in the long run.
The plugin I just learned was called custom fields. This is a very handy tool that will make it easy for you to create custom websites for businesses, such as retailers or food distributors, restaurants. Very excited for the next lessons I will be learning and I know I will enjoy wordpress in my future sites as it really helps make Content management systems easy. I once made my own content management system, but it had no backing from people around the globe and it wasn’t as robust in the long run.
All in all, wordpress opens up a lot for me, and I hope to make online communities that people will enjoy, my current sites, biblenice.com and noteplug.com, may be able to be routed to wordpress, though I am not entirely sure.
I hope you all are doing well and may God’s love be with you all.
Decided to Migrate my Works into WordPress. The Main Reason for this is it is the Current Industry Standard and After Working with WordPress I Feel it is Good for my Creations with all the Easy to Integrate Options. Also, it is Nice for People to Have Because They Can Upgrade with Someone Familiar With the Layout Incase I Should Ever Become Unavailable.
Also Been Working With Twitch to Stream My Work, Plus I Will be Adding it to YouTube and if Anyone Needs a Twitch Website Integration, let me Know and I Would be Glad to Help You Set it Up.