Let's make a note... -StartingFromNothing-

Showing posts with label Programming. Show all posts
Showing posts with label Programming. Show all posts

Tuesday, April 22, 2014

Apache 2.4 is running very slow or hangs

I have migrated from XAMPP (which hasn't x64 version) to WAMP (Win x64 version), after run the services several times I found my apache suddenly running very slow and hangs. I don't know exactly what have done. Now, it solved! I find this from google:

Fix:
Add this configuration snippet to Apache24/conf/httpd.conf (bottom of file seems fine):
AcceptFilter http none
AcceptFilter https none


And restart all services. Done! Hope this help.

Wednesday, January 15, 2014

[Updated] Crack for Sublime Text 3 Build 3059

Download the file as per your operating system and follow to the next steps.

Max OS X

  1. Download the file HERE.
  2. Rename it to Sublime Text and chmod u+x Sublime\ Text.
  3. Replace the original file.

Windows x64

  1. Download the file HERE.
  2. Rename it to sublime_text.exe.
  3. Replace the original file.

Windows x86

  1. Download the file HERE.
  2. Rename it to sublime_text.exe.
  3. Replace the original file.
  4. Paste a license key.

Linux x64

  1. Download the file HERE.
  2. Rename it to sublime_text and chmod u+x sublime_text.
  3. Replace the original file.

Linux x86

  1. Download the file HERE.
  2. Rename it to sublime_text and chmod u+x sublime_text.
  3. Replace the original file.
License key for Windows x86:

---BEGIN LICENSE---
Love Science
Unlimited User License
EA7E-18848
........................
.._____.................
.| __ \ | |
.| | | | __ _| |_ __ _
.| | | |/ _` | __/ _` |
.| |__| | (_| | || (_| |
.|_____/ \__,_|\__\__,_|
........................
---END LICENSE---

source

Saturday, January 4, 2014

How to crack Sublime Text 3 Build 3059 (Linux)

Here we go..
  1. Open sublime_text with vim by typing sudo vim /opt/sublime_text/sublime_text
  2. Convert to hex, type :%!xxd
  3. Search and replace value by typing :%s/7001 0000 8a9b b800 0000 e87f 3f00 0048/7001 0000 90b3 0190 9090 e87f 3f00 0048/
  4. Convert to binary, :%!xxd -r
  5. Save the file and exit, type :wq
  6. Open the program, go to the help-enter licence paste into the operator through the procedure Licence, OK successful.
- BEGIN License -
Love
Unlimited user license
EA7E-8441
918381ACA844A0379CCAC729059720A4
BC9D409098618744BB45FF23E67568DB
82B926D92157127DB3B4054834D0477F
DD9C2B251A57F2E3259E04AD9B7DB8B8
1778C37C1D3B494671C5F4ECFBD2B519
361CD9624A56C21F54F8DD51F5BDF799
68F9537ED74680494853423904F032BA
3E896607B4D398E8C897A4DD1A8CB449
- END the LICENSE -


- BEGIN LICENSE -
Jat
Unlimited User License
EA7E-4656
D6B5CE42CFFD356FD6F782BE4D8D6E9A
F2DD8A265E67DD14C9B6627E9103E290
16FEB67F9DBE65D8434A31D2352A9C80
D7DDCC7BCCCA381D521F5DF49B0F7E5C
5A1B8F4ADE30EF20BEF4020B4D899AE4
60FE1355D8A8B71FE7350B52B4D88969
F42E6248426E64B6BB85A1217AFB7F04
51432FBA46AA531550D638910BAD6FE3
- END LICENSE -


- BEGIN LICENSE -
Sinosky
Unlimited User License
EA7E-17525
C14974DF6829CA02CA9C0D9D53ED6D17
0B753302A37BA6997616AC6A88FF69C8
E62B834C8250634C2A7E5E5D0BE3A284
756FD4E2B4FEAC1775868B78E8ACC70C
F7AA16FF7894A0E3F6B1DBCA940D20A6
3C86FC4CB4EFE4B55FC65846AB8C129F
EF9EBEA0476ECAD25CDE43FB6EB3F211
497120783280FAE7DFA8CEAB405EFECD
- END LICENSE -

source

Sunday, June 9, 2013

How to get your Sublime Text 3 registered

While Sublime Text 2 has been being an awesome editor which you can add and set the whole thing inside as needed, there was already coming out the new version, Sublime Text 3 (Beta), which is available to download. Using ST3 requires additional payment for whom already purchased the older version. I will share how to crack it, but if you think this software help u much on your work, just purchase it! :)

  1. Download the new version of ST3 here.
  2. By using your favourite Hex Editor (i always using vim command line) you need to open "sublime_text.exe" in windows or "sublime_text" in linux.
  3. Type :%!xxd and hit enter.
  4. Search value by typing :%s/4333 3342 3032/4333 3242 3032/g and hit enter.
  5. Then type :%!xxd-r to return.
  6. The last, just type :wq! and hit enter.
  7. Open ST3 and copy paste this license.
—–BEGIN LICENSE—–
Patrick Carey
Unlimited User License
EA7E-18848
4982D83B6313800EBD801600D7E3CC13
F2CD59825E2B4C4A18490C5815DF68D6
A5EFCC8698CFE589E105EA829C5273C0
C5744F0857FAD2169C88620898C3845A
1F4521CFC160EEC7A9B382DE605C2E6D
DE84CD0160666D30AA8A0C5492D90BB2
75DEFB9FD0275389F74A59BB0CA2B4EF
EA91E646C7F2A688276BCF18E971E372
—–END LICENSE—–

How to writing code in blogspot

Here is a sample CSS of code snippet to write code inside post in blogspot. You can modify this code as needed. Just add this code to Edit Template > Add CSS > Write down in the text area.


.code { background-color: #eeeeee;
    border: 1px dashed rgb(153, 153, 153);
    font-family: 'Andale Mono', 'Lucida Console', Monaco, fixed, monospace;
    font-size: 12px;
    line-height: 14px;
    margin: 10px 0 10px 10px;
    overflow: auto;
    padding: 10px 10px 10px;
    width: 600px;
    color: black;
}

Then write your code inside div tag like shown below. Don't forget by writing this in HTML mode (simplify by pressing HTML button).

<div class='code'>
Your code should be pasted here in this div tag.
</div>

Friday, June 7, 2013

Write and run java program using Sublime Text 2

Sublime Text 2 is one of my Favorite text editor for coding after Geany. This is an awesome and light weight editor. What I loved to share is how to setting ST2 then you can use it to compile and run java programs directly.

Follow these steps below to prove it :)

  1. Firstly, make sure that you already have jdk installed. Or you can download here.
  2. After installing then set the PATH variable on Environment Variables (Right click on My Computer > Properties > Advanced system settings > Environment Variables).
  3. Then go to System variables > Path > add jdk bin directory path. For example: C:\Program Files\Java\jdk1.7.0_17\bin.
  4. Create a bash shell script file runJava.bat :
  5. Next step is setting this bash shell script in the build system of ST2. Open ST2 > Preferences > Browse Packages > go to Java Folder > Open JavaC.sublime-build and replace this line "cmd": ["javac", "$file"], with this "cmd": ["runJava.bat", "$file"], then save.
  6. Done. Then open your java program using ST2 or write a simple program and click Tools > Build or simplify you can press Ctrl+B.