VBscript Icon
[CODING] Desktop programming is one of the fastest way to develop a program on a manged computer without administrative rights. For example, Microsoft Visual Basic Advanced and Microsoft Visual Basic Scripting Edition.

They are not the best programming technology but they can do awful lot, likely to work on nearly all other computers without additional preparation, work straight out of standard Office and Windows installation. All the ideal conditions in a small office environment.

That's how I come across to write lots of programs this year. And today I am sharing one excellent resource on how to copy to Windows clipboard without Internet Explorer.

If you have arrived at this page while Googling for a routine to perform the copying, congratulations! I think you found what you want or rather, what you don't want; to use Internet Explorer to copy to clipboard. Somehow it is the most popular or if I may, the one and only option on the first few pages on Google.

The solution to copy to clipboard in VBscript without Internet Explorer, is on one of my favourite blog when it comes to Windows PowerShell. The ironic part is that it is not the content of the post that offered the solution. It is in one of the comment section further down the page.

Nevertheless, thank you ScriptingGuy1 and benj9 for the solutions!

Source: Hey, Scripting Guy! Blog Learn about Windows PowerShell
Set oFs = CreateObject("Scripting.FilesystemObject")
Set oWsh = CreateObject("WScript.Shell")
SetClipboard "Hello Clipboard"
WScript.Echo GetClipboard()
WScript.Quit
Sub SetClipboard(sText)
Dim sFile, oFile
sFile = oWsh.ExpandEnvironmentStrings("%TEMP%")
If sFile = "%TEMP%" Then sFile = "."
sFile = sFile & "~SetClipboard.hta"
WScript.Echo sFile
If Not oFs.FileExists(sFile) Then
Set file = oFs.CreateTextFile(sFile, True)
file.WriteLine ""
file.Close : Set file = Nothing
End If
oWsh.Run sFile & " " & sText, 0, True
End Sub
Function GetClipboard()
GetClipboard = CreateObject("htmlfile").ParentWindow.ClipboardData.GetData("text")
End Function
Linksys Max Stream AC2200 (EA8300): In Press Release
[NEW GADGET] This one is coming from a press release which I thought is a decent tech buy. Technology may have dominated our lives yet not everyone is keen to understand it more. Here is one example, a less savvy consumer may be more likely to subscribe to a faster Internet subscription than upgrade a router!

If you are still a owner of the free router the Telco gave you, consider an upgrade. This month, the good old brand in the router market, Linksys, released a new entry level router, Linksys Max Stream AC2200 EA8300.

Linksys also sells the same router with different speeds. There is a EA9500 as the model number implies, a faster router than EA8300. The latter should suffice for most networking needs especially the EA8300 comes with Tri-Band, that should allow the network capacity to be spread out among the devices.

SingTel subscribers should look away since EA8300 does not seemed to support Virtual LAN, a necessity for SingTel setup.

Linksys recommended retail price at S$279 with Hachi Tech going for S$259. A AC2200 tri-band router from a reputable brand at these prices sounds as good as it can get!

Features:
  • Tri-Band Technology: Three dedicated Wi-Fi bands deliver combined speeds of up to 2.2 Gbps (2.4 GHz + 5 GHz + 5 GHz).
  • MU-MIMO Technology for Simultaneous Wi-Fi to Multiple Devices: Uninterrupted Wi-Fi for simultaneous power streaming, gaming, web surfing, and more—without lag or buffer.
  • Easy Setup: With the Linksys App, just plug and play, follow the intuitive directions, and enjoy blazing-fast Wi-Fi speeds in minutes.
  • Seamless Roaming: Always stay connected to the strongest Wi-Fi signal so you can move freely throughout your home.
  • Advanced Beamforming Technology for Reliable Connections: Focus your Wi-Fi signal and maximize performance and coverage for both 2.4 and 5 GHz.
  • Auto Updates Keep Firmware Current: Automatic firmware updates so your router is always secure and current.
  • Airtime Fairness Improves Wi-Fi to Wireless Devices: Improve overall Wi-Fi efficiency and reduce lag caused by slower Wi-Fi devices.
  • Smart Connect for Fast, Optimized Performance: Intelligently chooses the best radio band for each wireless device to ensure balanced and reliable connections.
  • Robust Security with SPI Firewall and DoS Protection
Samsung Galaxy Tab S2 8.0": At Popular Bookstore
[GADGET DEALS] I blogged about my new iPad Mini 2 purchase some weeks back. In that, I mentioned a strong alternative, the Samsung Galaxy Tab S2 8.0". Then I happened to see it showed up at Popular Bookstore on promotion at S$468 for the WiFi version.

Samsung Galaxy Tab S2 8.0": At Popular Bookstore
As mentioned in the previous, My requirements for a tablet are simple; 8-inch display, a minimum pixel density of 300, at least 2GB of ram, a recent mid-range processor, and decent build quality. Mainstream options will probably only include iPad Mini 4 and Tab S2.

I would explain my requirements a little.  8-inch is the perfect because any bigger the arms will be strained from more than 10 minutes. Pixel density is extremely important too because that's what we are staring! Any lower, pixels are apparent. Finally, I use the tablet for media consumption so 2 GB ram and the mid-range processor will do the job.
Compare iPad Mini 4 and Tab S2
So I did a simple comparison table. The one downside of Tab S2 is probably the battery size and probably the design, Tab S2 looks somewhat dated. Besides that everything else matched up. 

At the end of the day, your decision is probably the comparison might not be useful since the Apple camp and Android camp are rather divided. A buyer looking for an iPad Mini can consider the Mini 2 or 4 while the Android can plenty of choices. 

In this case, Samsung Tab S2. And even if dare, some shops in Singapore can go lower than $468 of course at your own risk!

Next PostNewer Posts Previous PostOlder Posts Home