9 Tips For An Entrepreneur For Constant Motivation

Do you want some enterpreneur tips on how to keep motivated?

Being a new entrepreneur means indulging in risky gambles and having a lot of responsibilities. You fear the unknown and you wind up feeling lost. So what really keeps you going is the ongoing motivation for the achievement of your goals.

This makes one wonder that how do you stay motivated in a business?

success quote

You don’t have to be brave only in battle. It’s your job to find motivation within you and remember that you are in charge of your own life.

Lift yourself up with these motivational tips.

1. Limiting Decision-Making in Other Aspects

With so many decisions regarding your business on a daily basis, sometimes it’s best to keep things simple elsewhere.

A good way to make your abilities stay sharp is if you limit your decision making in the other aspects of your life throughout the rest of your day. It can keep you motivated because then you can focus on the other tough decisions you have to make regarding your business.

2. Having a Personal Mission Statement

Every business should have a proper and defined mission statement. A mission statement is something which describes your visions and goals, and values. Knowing where you should head towards helps to lead you in a proper direction. It’s imperative to have a pre-defined route.

Your mission statement should be a constant reminder of your need to success. You should memorize it and carry it around with you everywhere.

See Also: 5 Lesser-Known Must-Read Books For Entrepreneurs

3. Constructing a Plan

plan construction

Your mission statement is obviously useless if you don’t put forth a plan to execute it. A personal and professional plan can contain short and long term goals. Don’t adhere to it as a golden rule, as plans are always subject to change according to your circumstances.

The main purpose to have a plan is to have a proper and clear understanding in what you hope to achieve, and how you’re going to go about doing that.

4. Remember to Reward Yourself

The human mind is wired to respond according to incentives. So what better to provide motivation in your work?

Set rewards for yourself if you establish a goal. To avoid burning out, you should identify and reward small victories along the way to your long-term goals.

Will Curran, President of Endless Entertainment said, “By fighting the small battles. I get joy in overcoming obstacles, and by celebrating after a small win. This includes rewarding myself for a job well done. You can get overwhelmed by focusing too much on the big picture.

5. Get a Quarter of Your Work Done Soon after Waking Up

productivity performance

Studies have shown people have shown the most amount of productivity in the first hours after waking up. This is also when some of the top startups plan their day to ensure more success.

Get to work within an hour of waking up and you’ll soon see the differences in your performance and how much you’re able to accomplish before your coffee break as well.

6. Stay Stubborn in Your Desire

What makes a successful entrepreneur?

Some of the most successful people I know are those who refused to give up even when times were tough. They had perseverance and patience. One of the key things in keeping an entrepreneur motivated is their ambition and desires. The fuel they needed to achieve and flourish in their goals lay in their desires to be successful which prevented them from giving up after they failed.

It is indeed very challenging to hold on to your morale when you’re not quickly getting the success you hoped for. Surround yourself with people who motivate you. Remember, each hindrance you suffer is a lesson, not a disappointment.

According to Neil Patel, co-founder of Crazy Egg and KISSmetrics, “Running a business is like riding a roller coaster. Although it is fun and exciting, there will be times when you’ll be scared and feel powerless. During the bad times, there isn’t much you can do, other than to keep on pushing forward,”

7. Inspiration Comes From Your Peers

Like I said in the previous point, keeping close to people who motivate you can do wonders. You can talk to other entrepreneurs and small business owners and look at them for support and constant inspiration. You can look to each other for feedback. It also feels better to know that there are other people going through the same challenges.

It’s also good to read success stories and the challenges faced by the other entrepreneurs when they first set out. Listen to some famous TED Talks by entrepreneurs to drive home some motivation.

See Also: How To Pay Bills & Start A Business – 5 Entrepreneurs Share Their Secrets

8. Turn your competition the other way around

It’s natural to compare yourself with your competitors. By looking at their perfectly crafted business and success stories, use that as an inspiration to achieve more and be better instead of letting yourself down. It’s stupid to feel down just because someone you know is doing better than you.

Don’t let that negative energy affect you, as each person’s journey and endeavors are different. Staying positive and viewing your competition as a benchmark is much better as compared to putting yourself down and self-blaming.

Adam Martin, Founder of Laabn Social Haircare Inc. talks about looking for another enterpreneur in the same niche and then talk weekly or daily to discuss challenges, ideas, and achievements. This helps keep both this person and yourself accountable.

9. Work with Others

If you work alone, you may find it helpful to surround yourself with people on the same wavelength as you to cure that boredom and loneliness you might be feeling. Chances are high that you’ll find yourself encouraged in other aspects of life as well.

Juanita Hines, Owner of Regional Consulting talks about being around successful and inspirational people.

success quotes

With all the good and bad times new business brings, remembering these tips while moving at your own particular pace will help you stay rational and positive. Always keep in mind what roused you to wind up as a business visionary, framing key connections along the way, and setting sensible objectives. It will no doubt all add to your developments and achievements.

The post 9 Tips For An Entrepreneur For Constant Motivation appeared first on Dumb Little Man.


via Dumb Little Man – Tips for Life
9 Tips For An Entrepreneur For Constant Motivation

Optical Illusions Magically Appear When You Fill These Soy Sauce Dishes


GIF

Tokyo-based designer Duncan Shotton takes advantage of soy sauce’s varying opaqueness to create a pair of unique sushi dishes that reveal three-dimensional optical illusions once they’re filled.

As with the designer’s previous products, Shotton has created a Kickstarter campaign, with a modest funding goal of just over $6,600 (which has already been pledged) to sell his creation.

The ceramic dishes, featuring designs inspired by artists like Oscar Reutersvärd and M.C. Escher, are only being produced in a limited run of 77 pieces each. Despite the exclusivity, they can still be pre-ordered with a pledge of about $20 to Shotton’s campaign, with delivery expected sometime in October of this year.

[Kickstarter – Soy Shape via Spoon & Tamago]

via Gizmodo
Optical Illusions Magically Appear When You Fill These Soy Sauce Dishes

gh-ost: GitHub’s online schema migration tool for MySQL

Today we are announcing the open source release of gh-ost: GitHub’s triggerless online schema migration tool for MySQL.

gh-ost has been developed at GitHub in recent months to answer a problem we faced with ongoing, continuous production changes requiring modifications to MySQL tables. gh-ost changes the existing online table migration paradigm by providing a low impact, controllable, auditable, operations friendly solution.

MySQL table migration is a well known problem, and has been addressed by online schema change tools since 2009. Growing, fast-paced products often require changes to database structure. Adding/changing/removing columns and indexes etc., are blocking operations with the default MySQL behavior. We conduct such schema changes multiple times per day and wish to minimize user facing impact.

Before illustrating gh-ost, let’s address the existing solutions and the reasoning for embarking on a new tool.

Online schema migrations, existing landscape

Today, online schema changes are made possible via these three main options:

Other options include Rolling Schema Upgrade with Galera Cluster, and otherwise non-InnoDB storage engines. At GitHub we use the common master-replicas architecture and utilize the reliable InnoDB engine.

Why have we decided to embark on a new solution rather than use either of the above? The existing solutions are all limited in their own ways, and the below is a very brief and generalized breakdown of some of their shortcomings. We will drill down more in-depth about the shortcomings of the trigger-based online schema change tools.

  • Replica migration makes for an operational overhead, which requires larger host count, longer delivery times and more complex management. Changes are applied explicitly on specific replicas or on sub-trees of the topology. Such considerations as hosts going down, host restores from an earlier backup, newly provisioned hosts, all require a strict tracking system for per-host changes. A change might require multiple iterations, hence more time. Promoting a replica to master incurs a brief outage. Multiple changes going at once are more difficult to coordinate. We commonly deploy multiple schema changes per day and wish to be free of the management overhead, while we recognize this solution to be in use.

  • MySQL’s Online DDL for InnoDB is only “online” on the server on which it is invoked. Replication stream serializes the alter which causes replication lag. An attempt to run it individually per-replica results in much of the management overhead mentioned above. The DDL is uninterruptible; killing it halfway results in long rollback or with data dictionary corruption. It does not play “nice”; it cannot throttle or pause on high load. It is a commitment into an operation that may exhaust your resources.

  • We’ve been using pt-online-schema-change for years. However as we grew in volume and traffic, we hit more and more problems, to the point of considering many migrations as “risky operations”. Some migrations would only be able to run during off-peak hours or through weekends; others would consistently cause MySQL outage.
    All existing online-schema-change tools utilize MySQL triggers to perform the migration, and therein lies a few problems.

What’s wrong with trigger-based migrations?

All online-schema-change tools operate in similar manner: they create a ghost table, in the likeness of your original table, migrate that table while empty, slowly and incrementally copy data from your original table to the ghost table, meanwhile propagating ongoing changes (any INSERT, DELETE, UPDATE applied to your table) to the ghost table. When the tool is satisfied the tables are in sync, it replaces your original table with the ghost table.

Tools like pt-online-schema-change, LHM and oak-online-alter-table use a synchronous approach, where each change to your table translates immediately, utilizing same transaction space, to a mirrored change on the ghost table. The Facebook tool uses an asynchronous approach of writing changes to a changelog table, then iterating that and applying changes onto the ghost table. All of these tools use triggers to identify those ongoing changes to your table.

Triggers are stored routines which are invoked on a per-row operation upon INSERT, DELETE, UPDATE on a table. A trigger may contain a set of queries, and these queries run in the same transaction space as the query that manipulates the table. This makes for an atomicy of both the original operation on the table and the trigger-invoked operations.

Trigger usage in general, and trigger-based migrations in particular, suffer from the following:

  • Triggers, being stored routines, are interpreted code. MySQL does not precompile them. Hooking onto your query’s transaction space, they add the overhead of a parser and interpreter to each query acting on your migrated table.

  • Locks: the triggers share the same transaction space as the original queries, and while those queries compete for locks on the table, the triggers independently compete on locks on another table. This is in particular acute with the synchronous approach. Lock contention is directly related to write concurrency on the master. We have experienced near or complete lock downs in production, to the effect of rendering the table or the entire database inaccessible due to lock contention.
    Another aspect of trigger locks is the metadata locks they require when created or destroyed. We’ve seen stalls to the extent of many seconds to a minute while attempting to remove triggers from a busy table at the end of a migration operation.

  • Non pausability: when load on the master turns high, you wish to throttle or suspend your pending migration. However a trigger-based solution cannot truly do so. While it may suspend the row-copy operation, it cannot suspend the triggers. Removal of the triggers results in data loss. Thus, the triggers must keep working throughout the migration. On busy servers, we have seen that even as the online operation throttles, the master is brought down by the load of the triggers.

  • Concurrent migrations: we or others may be interested in being able to run multiple concurrent migrations (on different tables). Given the above trigger overhead, we are not prepared to run multiple concurrent trigger-based migrations. We are unaware of anyone doing so in practice.

  • Testing: we might want to experiment with a migration, or evaluate its load. Trigger based migrations can only simulate a migration on replicas via Statement Based Replication, and are far from representing a true master migration given that the workload on a replica is single threaded (that is always the case on a per-table basis, regardless of multi-threaded replication technology in use).

gh-ost

gh-ost stands for GitHub’s Online Schema Transmogrifier/Transfigurator/Transformer/Thingy

gh-ost light logo

gh-ost is:

  • Triggerless
  • Lightweight
  • Pauseable
  • Dynamically controllable
  • Auditable
  • Testable
  • Trustable

Triggerless

gh-ost does not use triggers. It intercepts changes to table data by tailing the binary logs. It therefore works in an asynchronous approach, applying the changes to the ghost table some time after they’ve been committed.

gh-ost expects binary logs in RBR (Row Based Replication) format; however that does not mean you cannot use it to migrate a master running with SBR (Statement Based Replication). In fact, we do just that. gh-ost is happy to read binary logs from a replica that translates SBR to RBR, and it is happy to reconfigure the replica to do that.

Lightweight

By not using triggers, gh-ost decouples the migration workload from the general master workload. It does not regard the concurrency and contention of queries running on the migrated table. Changes applied by such queries are streamlined and serialized in the binary log, where gh-ost picks them up to apply on the gh-ost table. In fact, gh-ost also serializes the row-copy writes along with the binary log event writes. Thus, the master only observes a single connection that is sequentially writing to the ghost table. This is not very different from ETLs.

Pauseable

Since all writes are controlled by gh-ost, and since reading the binary logs is an asynchronous operation in the first place, gh-ost is able to suspend all writes to the master when throttling. Throttling implies no row-copy on the master and no row updates. gh-ost does create an internal tracking table and keeps writing heartbeat events to that table even when throttled, in negligible volumes.

gh-ost takes throttling one step further and offers multiple controls over throttling:

  • Load: a familiar feature for users of pt-online-schema-change, one may set thresholds on MySQL metrics, such as Threads_running=30
  • Replication lag: gh-ost has a built-in heartbeat mechanism which it utilizes to examine replication lag; you may specify control replicas, or gh-ost will implicitly use the replica you hook it to in the first place.
  • Query: you may present with a query that decides if throttling should kick in. Consider SELECT HOUR(NOW()) BETWEEN 8 and 17.

    All the above metrics can be dynamically changed even while the migration is executing.

  • Flag file: touch a file and gh-ost begins throttling. Remove the file and it resumes work.
  • User command: dynamically connect to gh-ost (see following) across the network and instruct it to start throttling.

Dynamically controllable

With existing tools, when a migration generates a high load, the DBA would reconfigure, say, a smaller chunk-size, terminate and re-run the migration from start. We find this wasteful.

gh-ost listens to requests via unix socket file and (configurable) via TCP. You may give gh-ost instructions even while migration is running. You may, for example:

  • echo throttle | socat - /tmp/gh-ost.sock to start throttling. Likewise you may no-throttle
  • Change execution parameters: chunk-size=1500, max-lag-millis=2000, max-load=Thread_running=30 are examples to instructions gh-ost accepts that change its behavior.

Auditable

Likewise, the same interface can be used to ask gh-ost of the status. gh-ost is happy to report current progress, major configuration params, identity of servers involved and more. As this information is accessible via network, it gives great visibility into the ongoing operation, that you would otherwise find today only by using a shared screen or tailing log files.

Testable

Because the binary log content is decoupled from the master’s workload, applying a migration on a replica is more similar to a true master migration (though still not completely, and more work is on the roadmap).

gh-ost comes with built-in support for testing via --test-on-replica: it allows you to run a migration on a replica, such that at the end of the migration gh-ost would stop the replica, swap tables, reverse the swap, and leave you with both tables in place and in sync, replication stopped. This allows you to examine and compare the two tables at your leisure.

This is how we test gh-ost in production at GitHub: we have multiple designated production replicas; they are not serving traffic but instead running continuous covering migration test on all tables. Each of our production tables, as small as empty and as large as many hundreds of GB, is being migrated via a trivial statement that does not really modify its structure (engine=innodb). Each such migration ends with stopped replication. We take complete checksum of entire table data from both the original table and ghost table and expect them to be identical. We then resume replication and proceed to next table. Every single one of our production tables is known to have passed multiple successful migrations via gh-ost, on replica.

Trustable

All the above, and more, are made to build trust with gh-ost’s operation. After all, it is a new tool in a landscape that has used the same tool for years.

  • We test gh-ost on replicas; we’ve completed thousands of successful migrations before trying it out on masters for the first time. So can you. Migrate your replicas, verify the data is intact. We want you to do that!

  • As you execute gh-ost, and as you may suspect load on your master is increasing, go ahead and initiate throttling. Touch a file. echo throttle. See how the load on your master is just back to normal. By just knowing you can do that, you will gain a lot of peace of mind.

  • A migration begins and the ETA says it’s going to end at 2:00am? Are you concerned with the final cut-over, where the tables are swapped, and you want to stick around? You can instruct gh-ost to postpone the cut-over using a flag file. gh-ost will complete the row-copy but will not flip the tables. Instead, it will keep applying ongoing changes, keeping the ghost table in sync. As you come to the office the next day, remove the flag file or echo unpostpone into gh-ost, and the cut-over will be made. We don’t like our software to bind us into observing its behavior. It should instead liberate us to do things humans do.

  • Speaking of ETA, --exact-rowcount will keep you smiling. Pay the initial price of a lengthy SELECT COUNT(*) on your table. gh-ost will get an accurate estimate of the amount of work it needs to do. It will heuristically update that estimation as migration proceeds. While ETA timing is always subject to change, progress percentage turns accurate. If, like us, you’ve been bitten by migrations stating 99% then stalling for an hour keeping you biting your fingernails, you’ll appreciate the change.

gh-ost operation modes

gh-ost operates by connecting to potentially multiple servers, as well as connecting itself as a replica in order to stream binary log events directly from one of those servers. There are various operation modes, which depend on your setup, configuration, and where you want to run the migration.

gh-ost operation modes
a. Connect to replica, migrate on master

This is the mode gh-ost expects by default. gh-ost will investigate the replica, crawl up to find the topology’s master, and connect to it as well. Migration will:

  • Read and write row-data on master
  • Read binary logs events on the replica, apply the changes onto the master
  • Investigate table format, columns & keys, count rows on the replica
  • Read internal changelog events (such as heartbeat) from the replica
  • Cut-over (switch tables) on the master

If your master works with SBR, this is the mode to work with. The replica must be configured with binary logs enabled (log_bin, log_slave_updates) and should have binlog_format=ROW (gh-ost can apply the latter for you).

However even with RBR we suggest this is the least master-intrusive operation mode.

b. Connect to master

If you don’t have replicas, or do not wish to use them, you are still able to operate directly on the master. gh-ost will do all operations directly on the master. You may still ask it to be considerate of replication lag.

  • Your master must produce binary logs in RBR format.
  • You must approve this mode via --allow-on-master.
c. Migrate/test on replica

This will perform a migration on the replica. gh-ost will briefly connect to the master but will thereafter perform all operations on the replica without modifying anything on the master.
Throughout the operation, gh-ost will throttle such that the replica is up to date.

  • --migrate-on-replica indicates to gh-ost that it must migrate the table directly on the replica. It will perform the cut-over phase even while replication is running.
  • --test-on-replica indicates the migration is for purpose of testing only. Before cut-over takes place, replication is stopped. Tables are swapped and then swapped back: your original table returns to its original place.
    Both tables are left with replication stopped. You may examine the two and compare data.

gh-ost at GitHub

gh-ost is now powering all of our production migrations. We’re running it daily, as engineering requests come, sometimes multiple times a day. With its auditing and control capabilities, we will be integrating it into our chatops. Our engineers will have clear insight into migration progress and will be able to control its behavior. Metrics and events are being collected and will provide with clear visibility into migration operations in production.

Open source

gh-ost is released with to the open source community under the MIT license.

While we find it to be stable, we have improvements we want to make. We release it at this time as we wish to welcome community participation and contributions. From time to time we may publish suggestions for community contributions.

gh-ost is actively maintained. We encourage you to try it out, test it; we’ve made great efforts to make it trustworthy.

Acknowledgements

gh-ost is designed, developed, reviewed and tested by the database infrastructure engineering team at GitHub:

@jonahberquist, @ggunson, @tomkrouper, @shlomi-noach

We would like to acknowledge the engineers at GitHub who have provided valuable information and advice. Thank you to our friends from the MySQL community who have reviewed and commented on this project during its pre-production stages.

PlanetMySQL Voting: Vote UP / Vote DOWN
via Planet MySQL
gh-ost: GitHub’s online schema migration tool for MySQL

Winchester G30M – The Forgotten Garand Competitor

CaptureWhile the Garand was hailed by Patton as the “best” battle implement ever to hit the field, there arguably were better implements proposed to replace it. While the Johnson & Peterson designs typically gets the most attention, the Winchester company also threw its hat into the ring with the G30M, a weapon originally designed by […]

Read More …

The post Winchester G30M – The Forgotten Garand Competitor appeared first on The Firearm Blog.


via The Firearm Blog
Winchester G30M – The Forgotten Garand Competitor

This Live-Action Transformers Fan Film Is Better Than All of Michael Bay’s Attempts


GIF

Using a mix of computer graphics, remote control miniature models, and some truly impressive costumes, Lior Mocho and the crew at Chisel Pixel have created the live-action Transformers fan film we all hoped Michael Bay’s first effort would have been.

Dreamworks and Paramount Pictures didn’t need to spend hundreds of millions on pricey special effects to win fans over. All they really needed to do was round up some talented cosplayers and stick to the toys and cartoon we all grew up with.

[YouTube via The Awesomer]

via Gizmodo
This Live-Action Transformers Fan Film Is Better Than All of Michael Bay’s Attempts

How to save 10s of gigabytes with lightroom temp files

How to save 10s of gigabytes with lightroom temp files

· Leave a Comment

Screenshot-2016-07-31-11.59

This little procedure just saved me over 20 gigs (yes, this is right, gigs!!) of space on my hard drive. It has to do with how Lightroom updates, read on or watch the video.

Here is something I was quite surprised to realize. With each catalog, you can set how long it would keep 1:1: previews. I usually set this for a month.

Keeping 1:1 previews is quite useful as it really speeds up using the develop module. Sadly, 1:1 previews do take quite a bit of space. This is why Lightroom has a feature that allows you to automatically delete those previews after a while. For me this duration is set for one month. After one month Lightroom will automatically delete those previews. This is a great balance between usability and space.

So each time that you run Lightroom, it looks at the catalog and checks if it needs to delete some old previews. But when you update a major Lightroom version, you are also updating the catalog (including its directory). So that old catalog will never run again, and Lightroom will never delete all those old previews.

I was quite shocked to realize that my two-version-ago Lightroom installation had over 10 gigs of previews.

Those were obviously deleted. There you go, I hope this saves you quite a bit of space as it did for me.

via DIYPhotography.net – Photography and Studio Lighting – Do It Yourself
How to save 10s of gigabytes with lightroom temp files

Watch a Katana Bend When It Hits Liquid


GIF

In order to harden the edge of steel, swords are often heated until they’re impossibly hot and then quenched in liquid to rapidly cool down. This creates a much stronger grain structure in the steel which obviously leads to a much stronger sword. An interesting thing that happens during this quenching process is how the sword dramatically bends before it snaps back into shape (with a slight upward tilt).

Watch it in the video below. You can see the katana get dipped into the liquid, curve downward in shock, and then immediately lift itself back up as if were alive in a matter of seconds.

The reason this happens is because of the two different sides of the sword. A katana has a single edge blade which means that one side (the edge) is going to be thinner while the other side (the back) is going to be thicker. The thinner side gets cooled first, which results in the curve downward as it contracts. As the thicker back side gets cooled, it curves back upward to give the katana its iconic shape.

via Gizmodo
Watch a Katana Bend When It Hits Liquid

The CZ 452: My Favorite .22 Rifle

CZ out of the Czech Republic makes some absolutely stellar .22 rifles that are often overlooked in the USA because of preference for semi-autos or domestically manufactured products, but abroad CZ rimfire rifles are hugely popular. While they do have a following in the USA, in Europe CZ rules the roost and they are a […]

Read More …

The post The CZ 452: My Favorite .22 Rifle appeared first on The Firearm Blog.


via The Firearm Blog
The CZ 452: My Favorite .22 Rifle

Embracing The Scout Rifle (Part 1)

cooper scout rifle

Once upon a time not so many decades ago I was a lot more of an outdoorsman than I am now. I fished nearly every day, and hunted whitetail deer in the swamps and woods of eastern North Carolina as frequently as I could. By necessity I was sometimes relegated to hunting from a tree stand or ground blind, but what I enjoyed most was still hunting.

Ghosting along the edges of swamp thickets required good eyes, patience, a feel for prevailing winds, and soft feet in order to see the deer before the deer heard, spotted, or scented you. The post WWII .30-’06 Remington 721 I carried on these forays belonged to my father. It was mounted with a department-store 3-9×40 Tasco scope and a padded nylon sling. It was solid from a treestand or ground blind, but was a little too long and a little too heavy for long stalks, with an annoying tendency to seemingly snag on every briar or vine.

At roughly the same time I was stalking deer in the Carolina swamps, Jeff Cooper was developing his concept of a short, light, fast-handling rifle that would excel in field conditions such of these.

Flash forward almost 30 years.

Today Cooper’s concept of a scout rifle is well-documented, if not completely understood in a tactical-rifle-focused world. Fortunately for me, Gunsite Academy hosted the first Scout Rifle Conference since the 1980s just two weeks ago, and I was privileged to be one of a half-dozen firearms journalists invited for the five-day event.

The first three days of the scout rifle conference were focused on training, with a fourth day dedicated to a friendly competition to put the rifles and 19 shooters through their paces. The fifth day was an opportunity to try our guns and gear from different manufacturers in the morning, followed by a conversation period where the participants could tell manufacturers what they liked about their products, and where they thought there was room for improvement.

steyr scout

I was one of seven conference participants shooting the Steyr Scout. It was paired with a Burris 2-7×32 Scout Rifle Scope and low rings (more on that later), with 155-grain BTHP Hornady American Gunner .308 Winchester ammunition. The other major rifle manufacturers represented were Ruger, with four Gunsite Scouts, Mossberg with six MVP Scout, a Savage 11 Scout,  a Brockman’s Rifles-customized Winchester Model 70, and a Merkel RX Helix. almost everyone ran low-powered, extended eye-relief scopes, though Monte Long of  XS Sights used his company’s iron sights, and Andy Langlois of Andy’s Leather used a micro red dot.

maxresdefault

Our Rangemaster, Il Ling New (above), also brought her personal scout rifle, built from a Remington Model 7.

Mario Marchman and Gary Smith were the other two Gunsite instructors working with our group. Scout rifle expert and gun writer Richard Mann did most of the work in pulling the event together, and was nice enough to bring a number of his personal scout rifles for us to gawk at during the trip.

What is a scout rifle?

When Col. Jeff Cooper was hashing out his concept of the scout rifle, he was envisioning a hard-hitting, lightweight, fast-handling rifle for field use primarily in the Americas and Africa. It needed to be light and compact to be carried long distances sometimes in heavy brush. It needed to use a common but hard-hitting caliber that could be resupplied throughout the world, and it needed to be rugged and capable of a snap-shot on man or beast in a compressed amount of time.

A lot of people hear of the concept of a scout rifle and get hung up on the idea of a scout rifle being something for a military scout/sniper in the late 20th century, which is decidedly not the case. It was instead inspired by military and frontier scouting traditions dating back to the late 19th and turn of the 20th centuries, and instead of a weapon designed for interpersonal conflicts, it was primarily designed as a wilderness rifle for men who moved lightly through rough country, sometimes for days or weeks on end.

Cooper had a rather lengthy list of criteria for scouts, and as the concept matured over time, some of those criteria (such as the ability to take stripper clips) were superseded by others (detachable magazines). The basics, however, have remained the same.

The rifle

  1. 1 meter or less in length
  2. Chambered in .308 Winchester (or at least uses the .308 as a parent case)
  3. short-action
  4. 18-20 inch barrel
  5. good trigger
  6. light weight (ideal was 3 kilos or 6.6 pounds with sights, scope, and sling; max was 7.5 pounds with sights, scope, and sling)

The sights

  1. low-mounted, long eye relief optics with low magnification, mounted forward of the action
  2. ghost-ring rear sight, and a post front sight

The sling

  1. CW or Ching sling
  2. flush-mounted sling swivel sockets (no protruding hardware)

Day 1

We started the first day with a welcome to Gunsite Academy for that who had not attended previously, where we went over site and safety rules, met our instructor cadre, and got a crash course on the scout rifle concept and what Col. Cooper was attempting to accomplish with his “one rifle” solution. After that, we hit the range was to check our rifle zeros to see if they’d shifted in travel. I discovered that the low rings I had been sent for the 2-7×32 Burris scope were too low. The scope was touching the barrel, and I didn’t have backup rings. Fortunately, Mike Nischalke of Steyr Arms had a backup Leopold 1.5-4×28 scope scout with pre-mounted rings. I got it zeroed, and was quickly back in business.

Day 2

snap-shooting

We jumped right into on the second day, making snap-shots from 25 yards as a warm up. Cooper believed that a good scout rifle shooter could make a shot on a 4″ target at 25 yards in less than 1.5 seconds from an offhand ready position.

From the warm up, we went through the various intermediate positions.

  • kneeling
  • braced kneeling
  • squatting (“rice paddy prone,” one of my personal favorite positions for intermediate range shots on level ground)
  • sitting

We also talked about both the standard prone position and  the flattest and the lowest and most stable of all field shooting positions, Hawkins prone (below). In Hawkins prone, your support side hand grabbed the sling at the front sling swivel and makes a rest for the barrel, while the butt of the riflestock is on the dirt, snugged into your shoulder. Rumor has it that the position was created by a World War I sniper in the trenches of France trying to keep as low as possible to keep from attracting the attention of enemy snipers.

hawkins prone

The support-hand Hawkins position turned out to be a valuable technique when we hit Gunsite’s infamous Scrambler. The Scrambler is a (typically timed) field problem course. There are seven positions and seven targets, and you can fire up to twice on each to make your hit.

I don’t have any video of someone shooting the Scrambler with a scout rifle, but I do have video of my Townhall Media colleague Katie Pavlich make the run with an AR-15, which should give you an idea of the kind of intermediate field shooting positions the Scrambler is designed to induce.

Our group—all the Steyr shooters—then rotated over to the York range to do a “guide/hunter” drill.

We were paired up, and one shooter played the role of the hunter, while other other played the role of  the guide. We would walk towards a steel target, and then drop into an intermediate position when the instructor’s shot time buzzed. The “hunter” had one shot to get a hit on target. If the “hunter” missed, the “guide” had to immediately get a hit with 1-2 follow-up shots. If we missed all three shots on the pepper popper, we had to conclude that the lion/tiger/bear/oh my had successfully made it’s charge, and we we being ripped into tasty bite-sized pieces.

We concluded the day with a a drill where we approached a fixed target front 35 yards away, and when we reached the 25 yard line, we had to make a quick hit from all three sling positions:

  • African Carry (5 shots)
  • American Carry (5 shots)
  • European Carry (5 shots)

If you’re not familiar with the three different positions, you’re in luck. Our Scout Rifle Conference rangemaster, Il Ling New demoed, these three positions during a series of videos she did for Ruger when they launched their Gunsite Scout Rifle last year.

Day Three of the conference turned out to be much more dynamic day, where we had moving targets, turning targets, and another one of Gunsite’s legendary field courses, the Vlei.

We’ll dive into Day 3 of the Conference and the Scout Rifle competition in Part 2.

The post Embracing The Scout Rifle (Part 1) appeared first on Bearing Arms.

via Bearing Arms
Embracing The Scout Rifle (Part 1)