Friday, October 29, 2021

Shhhhhh…..

If you have a Windows 7 or later machine, you can host your very own WIFI HOTSPOT 

without paying incurred service provider fees using the built in Windows NETSH net￾working commands. 

NETSH provides windows users with a host of network functionality that can be imple￾mented using the windows shell.

Here’s how: 

Open your windows command prompt by typing “CMD” from your “Start” “Run” menu.

Type “NETSH help” to display the available NETSH commands list

Type “NETSH” to display the available NETSH WLAN commands list (We’ll be working here)

Type “NETSH WLAN SET HOSTED NETWORK SSID = your network name” to set the name 

of your wifi hotspot.

Type “NETSH WLAN SET HOSTED NETWORK KEY= your network password” to set the pass￾word for your wifi hotspot.

Viola... HotSpot Served!

For The Curious

You can find examples and info on NETSH here….YOU’RE WELCOME!

Friday, October 15, 2021

Underground Railroads

 Did You Know…

 

If you have a high speed internet connection with enough bandwidth, you can host your own website using LOCALHOST PROTOCOLS.

 

Yep, that’s right, your computer’s LOCALHOST development environment is as good as some of the best WEB HOSTING providers out there.

 

All that’s needed is a NETWORK TUNNELING PROTOCOL that exposes your web application to  the outside world.

 

Simply configure your router and forward your LOCAL MACHINE IP PORT to the LAN address of the machine running your web application...and Viola. Website Served!

 

This method allows an outside end-user to access your network, and is a great way to impose a testing server for your work, or simply to have a look at how your site looks to the outside world.

 

It also allows you to ensure that there aren’t any bloopers in your web protocols, as we all hate those don’t we!

 

Hosting from LOCALHOST is also a good way to compile a portfolio of your work without having to incur the added fees of most hosting providers.

 

Oh yeah...did I mention that you can do all of this absolutely for FREE! That’s right, you can administer tunneling protocols for free with “BORING PROXY”.

 

Here’s How:

BORING PROXY CONFIGURATION


References



 

Friday, October 8, 2021

Say What...

 Why recreate the wheel if you don’t have to!

 

With Interprocess Communication(IPC), and a few tweaks here and there, developers can use the functionality of some of your favorite programs with ease, using IPC functionality native within most Integrated Development Environments.

 

IPC methods allow you to “borrow” the programming tasks already completed by some of your favorite applications, like enhanced file search feature techniques, without having to code the functionality yourself.

 

Administrative tasks and advanced machine based automations are also at your disposal with IPC, as its claim to fame is the fact that the core functionality within other applications can be utilized within a single platform to bring you the best of all worlds.

 

With IPC, you can also use these programming techniques to work with different programming languages within a single application as well.

 

Yep, that’s right you can call on and use the applications on your native machine or server to delegate your programming tasks for processing, such as accessing video streaming applications, rendering batch files or even sending commands for processing and receiving the results from one application within another using (a)synchronous messaging techniques.

 

Here’s a list of a few applications that play nicely using IPC techniques.

 

Windows Powershell

MSSQL SERVER

ADOBE PDF

MICROSOFT .NET PLATFORM

Your Favorite Media or Video Streaming Applications

MICROSOFT OFFICE SUITE OF PRODUCTS

ORACLE

 

 

Here’s an example of what IPC can do! It uses one of my favorite mathematical programs...OCTAVE.

 

So why not save your self some time with IPC,  give it a try...and if anyone asks, tell them OmniTekk said so! You’re Welcome...

 

Friday, October 1, 2021

Let There Be Light

 Have a small or medium sized business with low data warehousing needs….

 

IOS or ANDROID developer who needs a server-less way to store the information from your user app…

 

Don’t want to bother with timely configuration hassles or are looking for an up-and-running solution for your data application needs...

 

...Then SQLITE is for you!

 

SQLITE, as its name implies, is a light-weight, server-less database file system that allows users to store data without the size constraints of a full-featured database management system database engine, such as MSSQL or ORACLE databases.

 

With SQLITE users can store application data while maintaining low storage needs. It’s a perfect tool for the busy developer.

 

A Few Noteworthy Benefits Are…

There is no client-server structure

It’s a self-contained database file implementation. Just a few commands, and viola… your data is stored and accessible without long drawn out configuration methods. Not to worry though.

 

While there is no cumbersome database configuration or settings to bother with, this storage solution still packs a mean punch.

 

Performance Agility

SQLITE supports almost all SQL-92 data standards, so you can rest assured that the quality of its functionality is just as good as those of the big guys.

 

Serverless Platform

The SQLITE library accesses its database files directly, giving users both manageable access and a simple, yet efficient programming solution.

 

Reliabe

The database implementations created with SQLITE are highly reliable with very few anomalies. Just ask some of the big name industry folks who use it, like ADOBE, AMAZON, and GOOGLE.

 

So if you’re thinking of using a low maintenance data storage solution that allows you to access your information without the complexity involved in using other commercial data development solutions, SQLITE is  the way to go.

 

Give it a try and LET THERE BE LITE...SQLITE.

 

 

 

BEST OF THE BEST

Codes have always been deeply interwoven into the very fabric of our human existence.  We bear witness to them in our daily lives - as diffe...