Thursday, December 30, 2010

Free SMS

receive free sms

http://www.sms-online.web.id/
+ no ad, no captcha

http://websmsonline.com/web-sms-online-today-to-indonesia.php
+ no ad

www.freesms4us.com

SMS Gratis via Internet
http://warungkopiplus.blogspot.com/2011/01/website-website-penyedia-sms-gratis.html

Send free SMS to Indonesian mobile phone number via GMail

Menghubungi nomor yang sedang roaming (Indonesian)

Orang yang menelpon anda kapan pun hanya akan terkena biaya telepon ke nomor Jakarta (misal si penelepon ada di Bandung). Namun, biaya tanggungan pulsa Jakarta – Los Angeles adalah tanggungan si pemilik nomor telepon.

Roaming Internasional di Jepang
www.zikri.com/2007/03/19/roaming-internasional-di-jepang/?wpmp_switcher=mobile
---

Sama saja seperti telpon biasa,tanpa perlu tambahan kode2an lagi.Justru yg lagi di luar negeri yg biasanya harus menambah kode tertentu utk telpon ke manapun,baik ke Indo maupun yg lain.
Tarifnya sama saja,yg lain adalah tarif utk si penerima telpon.Saat roaming terima telpon juga bayar,alias kena pulsa.

Bagaimana cara telp dari nomor im3 ke nomor hp indo yang sedang di luar negeri?
http://id.answers.yahoo.com/question/index?qid=20090630013650AAWPuUD
---

Saran buat yang luar negeri:

kalo gw pake nomer lokal aja kalo ke luar negeri, jatuhnya lebih murah. Bisa telp, bisa sms dan jauuuh lebih murah dibanding pake kartu Indo yang masang tarif sms gila-2an kalo di luar negeri

mendingan beli nomer lokal negara .. kalo ke singapore, mendingan beli prabayar singtel pas di airport .. tarifnya jauh lebih murah daripada roaming internasional 4000 rupiah per sms buat simpati

Kartu Prabayar yg bisa di pake di Luar Negeri
www.indoflyer.net/forum/printable.asp?m=151567

Monday, December 27, 2010

Can we save chat history on yahoo mail?

No, use "save to e-mail" feature instead

Can you save chat history in yahoo mail?
http://wiki.answers.com/Q/Can_you_save_chat_history_in_yahoo_mail

Can you save chat history in yahoo mail not on messenger?
http://wiki.answers.com/Q/Can_you_save_chat_history_in_yahoo_mail_not_on_messenger

Related
--------
Yahoo Web Messenger conversation/chat history
1. In the left navigation column, click Messenger.- The "Messenger" column appears.
2. At the top of the "Messenger" column, select your status (Available, Busy) | Conversation History.
Note: Conversation history can't be viewed from the Yahoo Mail mobile app.

Search chat history with certain person:
Just type "someone@yahoo.com" at input box and hit "Search Mail"

Tuesday, December 21, 2010

Trik Speed ngacir buat yang pake paket Plesh Unlimitit 50k atau 100k

Trik ini emang tidak Full gretong,,
kita harus ngeluarin kocek sedikit nya 50k (untuk 14hr)
atau 100k (untuk 30hr)
tp jgn khawatir,,,kita bisa siasatin kuota yg di bundle sama paket si kampret yg katanya cuma 500 mb bisa nyampe ber giga2... hehehehe.... TESTED sebulan full gan!!

lumayan lah gan buat sedot data bisa ngacir sampe 250 kbps - 300kbps



tahap pertama :
# yang belum reg silahkan reg ke *363# pilih paket yg sesuai... mau 50k atau 100k

# setelah selesai,,set apn di modem agan dengan internet

# save dan set as default,,tutup aplikasi modem..





tahap kedua :
# siapin tool buat loncatin kodok nya (mdma dan dan reconnect dial) >> trik yg masih ampuh sampe saat ini buat sedot bandwith si kampredd...!!

# pada mdma set gprs/edge only terlebih dahulu..

# dial si kampret dr reconnect dial..ini di gunakan untuk jaga2 disco ya gan...

# setelah konek cek ip client nya,,kalo ane seh demen sama kepala 182 pada paket ini

# selanjut nya buka broser agan,, lalu masuk link speedtest,,, misalnya http://speedtest.indosatm2.com/ atau link2 lain yg menyediakan speedtest bandwith kita....

# silahkan mulai speedtest dengan klik start pada link td

# untuk mendapatkan bandwith yg kenceng,,,koneksi agan sampe disini harus tetep gprs/edge only..

# begitu hasil angka PING keluar pada speedtest td,,,skrng agan pindah kan koneksi nya pada 3G only pada aplikasi mdma nya...
dan hasil nya akan seperti di bawah ini ,,,




ini softwarenya
http://www.mediafire.com/?nvcscx7m64ooifp
http://www.mediafire.com/?ryo80rzc41508o3

Source:
http://forum.djawir.com/internet-web-54/trik-speed-ngacir-buat-yang-pake-paket-[PLESH]-[UNLIMITIT]-50k-atau-100k-93321/

Monday, December 20, 2010

Useful script for performance troubleshooting

--Show the longest running SPIDs on a SQL 2000 server
select
p.spid
, right(convert(varchar,
dateadd(ms, datediff(ms, p.last_batch, getdate()), '1900-01-01'),
121), 12) as 'batch_duration'
, cast(p.program_name as char(20)) as [Program Name]
, cast(p.hostname as char(10)) as [Hostname]
, cast(p.loginame as char(20)) as [Loginame]
from master.dbo.sysprocesses p
where p.spid > 50
and p.status not in ('background', 'sleeping')
and p.cmd not in ('AWAITING COMMAND'
,'MIRROR HANDLER'
,'LAZY WRITER'
,'CHECKPOINT SLEEP'
,'RA MANAGER')
order by batch_duration desc

--SQL running for a given spid
declare
@spid int
, @stmt_start int
, @stmt_end int
, @sql_handle binary(20)

set @spid = 65 -- Fill this in

select top 1
@sql_handle = sql_handle
, @stmt_start = case stmt_start when 0 then 0 else stmt_start / 2 end
, @stmt_end = case stmt_end when -1 then -1 else stmt_end / 2 end
from master.dbo.sysprocesses
where spid = @spid
order by ecid

SELECT
SUBSTRING( text,
COALESCE(NULLIF(@stmt_start, 0), 1),
CASE @stmt_end
WHEN -1
THEN DATALENGTH(text)
ELSE
(@stmt_end - @stmt_start)
END
)
FROM ::fn_get_sql(@sql_handle)


--object name containing the page referred by waitresource in sysprocesses
SET NOCOUNT ON declare @dbid int, @fileid int, @pageid int, @spid int, @sql varchar(128)
--set your spid of interest here:
set @spid = 75
select @dbid = substring(waitresource, 1, charindex (':', waitresource) - 1),
@fileid = substring(waitresource, charindex( ':', waitresource) + 1,
charindex(':', waitresource, charindex(':', waitresource) + 1) -
charindex(':',waitresource) - 1 ),
@pageid = substring(waitresource, charindex(':', waitresource,
charindex(':', waitresource, charindex(':', waitresource) + 1)) + 1,
len(waitresource) - (charindex(':', waitresource,
charindex(':', waitresource, charindex(':', waitresource) + 1)) + 1) )
from master..sysprocesses where spid = @spid and waitresource like '%:%:%'
set @sql = 'dbcc page (' + convert(varchar,@dbid) + ',' +
convert(varchar,@fileid) + ',' + convert(varchar,@pageid) + ') with
no_infomsgs, tableresults'
if exists (select 1 from tempdb..sysobjects where xtype = 'U' and name like
'#pageinfo%')
drop table #pageinfo
create table #pageinfo ( ParentObject varchar(128), Object varchar(128),
Field varchar(128), Value varchar(128) )
dbcc traceon (3604) with no_infomsgs
insert into #pageinfo (ParentObject, Object, Field, Value)
exec (@sql) select object_name(Value) as 'waitresource object name' from
#pageinfo where Field = 'm_objId' dbcc traceoff (3604) with no_infomsgs

Sunday, December 19, 2010

SQL [Internal] Defragmentation

[FREE] SQL Server Maintenance Solution

Microsoft SQL Server 2000 Index Defragmentation Best Practices
http://technet.microsoft.com/en-us/library/cc966523.aspx

How to check defragmentation level

SQL Server Index Fragmentation and Its Resolution
www.sql-server-performance.com/articles/per/index_fragmentation_p1.aspx
---

In SQL Server, there are several ways to defrag internal fragmentation. One of these methods is to use the DBCC REINDEX command to rebuild the clustered and non-clustered indexes. Once indexes are rebuilt, data pages are now logically contiguous, and disk I/O is minimized.

Defrag Your SQL Server Database or Go to Pieces
http://findarticles.com/p/articles/mi_pwwi/is_200608/ai_n16686663/

Friday, December 17, 2010

Method to obtain various internet traffic signature

The Hunt For HTTP Signatures - ISA 2006 Firewall HTTP Filter
http://forum.persiannetworks.com/f80/t32161.html

Thursday, December 16, 2010

Index Optimization options

Reducing SQL Server Index Fragmentation
www.mssqlcity.com/Articles/Adm/index_fragmentation.htm

Why zero-value SIFT records must be removed?

For NAV it doesn’t make a difference if it could find a “Zero SIFT Record” or no SIFT record for a query – in both cases the value 0 is processed (=returned?).

www.mibuso.com/forum/viewtopic.php?t=16985
Post by stryk on Tue Apr 22, 2008 8:15 am
---

Navision keeps the SIFT (Sum Index Field Technology) values in dedicated tables that are updated using triggers. In certain situations the trigger does not update the value but replaces it with 0 and creates a new record with the correct value.
This means that the size of the database increases significantly especially if the 'SIFT-tables' are active.
When the tables are optimized the SIFT-tables are recreated from scratch and the zero-records are deleted.

www.expandit.com/1122/Table+Optimizer+and+NAV+SQL

Wednesday, December 15, 2010

Run application sandboxed

How to Surf More Securely
www.techsupportalert.com/safe-surfing.php

Another solution(s):
Use "XP Mode" of VirtualPC or "Unity" mode of VMWare
Recent Experience Installing Symantec Workspace Virtualization On Windows 8

Related article(s):
Run XP Mode in VirtualBox Instead of Virtual PC
http://lifehacker.com/5485879/run-xp-mode-in-virtualbox-instead-of-virtual-pc

How Madoff worked

How Bernie Made Basket Cases of His Customers' Accounts
www.securitiestechnologymonitor.com/issues/19_107/-24168-1.html

Women of the House of Madoff
www.securitiestechnologymonitor.com/blogs/bongiorno-cruppi-women-of-the-house-of-madoff-26438-1.html

Madoff's Little Helpers
www.forbes.com/2009/06/22/cohmad-chais-jaffe-business-wall-street-madoff.html

Tuesday, December 14, 2010

XP: Shutdown issues

WINDOWS XP SHUTDOWN & RESTART TROUBLESHOOTING
www.aumha.org/win5/a/shtdwnxp.htm

Monday, December 13, 2010

NComputing related

Punya masalah NCOMPUTING ... Masuk sini gan.. ketemu dah solusinya

Self experience when client suddenly unable to connect to server (user screen bounced back to server selection menu)
Repair vSpace installation fron Control Panel's Add/Remove

Ports to test (using Telnet) when client can't connect to vSpace host/server:
1027 dan 27605
source: Configuring Firewall and Antivirus for NComputing Products

Steps to reinstall vSpace
STEP 1:
Uninstall  the NComputing Software.
Through Control Panel > Programs and Features.  Then, reboot host machine
STEP 2:
Remove extra files from us in your system.
Run the uninstall script located at: http://tinyurl.com/cleanupscript
STEP 3:
Tune Firewall and AntiVirus
http://www.ncomputing.com/kb/Configuring-Firewall-and-Antivirus-for-NComputing-Products_63.html
STEP 4:
Download and install the latest software from our website.
http://www.ncomputing.com/support/software-downloads
STEP 5:
Register using the registration wizard that is located in the NComputing folder in All Programs
source: L300 stopped connecting to Vspace today randomly

Troubleshooting Network Issues

Should I turn off Indexing Services on SQL Server disks?

Sql uses it's own indexing service (MSFTESQL or Sql Service FullText Search).
The service itself was by default disabled on Server 2003+ anyhow? Naturally, regardless of what is checked for each LUN/folder on your server, if the service is stopped, it ain't gonna index.

Source:
When (if ever) should the Indexing Service turned on on a Sql Server Box?
http://serverfault.com/questions/87128/when-if-ever-should-the-indexing-service-turned-on-on-a-sql-server-box

SMS Gateway

Features to look:
..SMS-to-Email, Email-to-SMS
..2-way SMS
..multiple user with personal Sent/Inbox
..custom processing for incoming message

Google:
open source 2-way|received|incoming sms gateway windows|XAMPP|wamp

NowSMS/NowSMSLite
- paid (Lite=GBP 195)
- the difference: www.nowsms.com/productinfo
- sample program to process received messages:
www.board4all.cz/showpost.php?p=618770&postcount=19

Ozeki NG
www.ozekisms.com/index.php?owpn=148
- paid

Gammu
+ free
- must develop application to use

Notes:
What about hardware-based/dedicated SMS Gateway?
Example: FoxBoxSMSEagle,
Common drawback with HW-based SMSGW is inability to execute command line

Better use GSM modem than mobile phone
Most standard mobile handsets have an SMS software that was designed to store and display incoming messages to the user of the handset. Often this SMS software "eats" incoming SMS messages, and does not forward it to the PC through the data cable. In this case the Ozeki SMS software, that runs on your PC does not receive the incoming message.
If your phone model is based on the Symbian mobile phone operating system (most high end Nokia and SonyEricsson devices) you will not be able to use it for incoming SMS. Symbian phones never deliver incoming SMS messages and incoming delivery report to the modem interface of the phone.
(www.ozekisms.com/index.php?owpn=543)

If your modem comes with connectivity application, you must turn it off
To configure it, you must close the Internet connectivity application, that comes with the modem (e.g: Vodafone Internet Connection Manager).
(www.ozekisms.com/index.php?owpn=148)

Indonesian online modem seller
www.toekangmodem.com/cms.php?id_cms=4
www.tokopedia.com/search?q=wavecom

Consider Wavecom wanna-be products
SEPUTAR MODEM WAVECOM FASTRACK
http://kiswara.com/seputar-modem-wavecom-fastrack-67-19.info

Setting Gammu untuk Aplikasi SMS Gateway
http://blog.rosihanari.net/setting-gammu-untuk-aplikasi-sms-gateway

Perbandingan SMS Gateway
http://aswandi.or.id/2010/10/07/perbandingan-sms-gateway/

VFX: Working with free table(s)

Free tables are found with SET PATH only. You can add your path in
cfoxappl.opendatabase after executing dodefault.

Source: http://forum.dfpug.de/bodyframe.afp?!_33L0GNLMNmsgid=728759

Code:
DODEFAULT()
IF __vfx_runtime
SET PATH TO data,kredit
ENDIF

Another scenario:
The free table's filename is using non default extension (ie. DAT instead of .DBF)

Solution:
* Make a copy of the .DAT file (with .DBF extension)
* In development stage, work with this DBF file
* Before last Build for deployment, 'browse' form data (.SCX) and modify Properties field for record(s) with Parent=Dataenvironment to change filename to .DAT

Wednesday, December 8, 2010

Indonesian Internet Service Provider (ISP) Techical Comparison

D-NET (Dutakom)
AS9505: 3 hop
AS1299: 3 hop (terpendek)

SCBDnet
AS9505:
AS1299: 3 hop (terpendek)

Inet Global Indo
AS9505: 2 hop
AS1299: 2 hop

Tuesday, December 7, 2010

Performance Optimization related

(Self experience) Things that better not be executed during office hours
1. Updating Analysis View card
2. Changing key field value (for example, Customer No.)

What Tables > Optimize does?
From Online Help:
For each Navision table, the SQL Server indexes, other than the primary key, are rebuilt to optimize their layout and usage.
For each SIFT structure, any entries that contain zero values in all numeric fields are removed. The removal of these redundant entries will free space and provide more efficient updating and summing of SIFT information.
---
Recommendations:
1) get rid of all those high SIFT buckets, leaving only one
2) add optimized SQL Server site Indexes – indexes we unfortunately cannot create from NAV site
Source:
Optimizing SIFT and VSIFT
http://dynamicsuser.net/blogs/stryk/archive/2010/05/29/optimizing-sift-and-vsift.aspx

Monday, December 6, 2010

Key Information Tool

Table: 50070 - 50077
Form: 50070 - 50078
Report: 50070 - 50071
Codeunit: 50070 - 50072

Sunday, December 5, 2010

Cara nonton 3D di PC (Indonesian)

akan lebih baik menggunakan monitor dengan frekuensi vertical 120hz

hanya berlaku di Vista/7

Source:
Tutorial Nonton film 3D
http://hic.stiki.ac.id/forum/index.php?topic=69.0

Cara Buat Kacamata 3D
www.indowebster.web.id/showthread.php?t=99551&page=1