It’s 00:38
and I don’t want to get into sleep but I get nothing to do.
Claire Keane
we're not kids anymore.
ojovivo
Jules of Nature
PUT YOUR BEARD IN MY MOUTH
taylor price
I'd rather be in outer space 🛸

Origami Around
hello vonnie
Misplaced Lens Cap
sheepfilms

roma★

★
h
One Nice Bug Per Day

Kaledo Art

oozey mess

pixel skylines

ellievsbear

seen from Malaysia

seen from United States

seen from Germany

seen from Austria

seen from Malaysia

seen from United States

seen from Malaysia
seen from Argentina
seen from Israel

seen from Malaysia
seen from Indonesia

seen from Türkiye

seen from United Kingdom

seen from United States
seen from Germany

seen from United States

seen from Malaysia
seen from Indonesia

seen from Malaysia

seen from Malaysia
@terenceng
It’s 00:38
and I don’t want to get into sleep but I get nothing to do.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
To the lone/laidback ppl.
Hoard a large amount of money for retirement vs medium amount of money and keep your cash flow positive?
Is it important to climb the career ladder just for social status? Is it suitable for everyone to be a manager/team lead or even a business owner? What if one is of a lone type? Is the lone type impossible to get love or close relationship ? how can the lone type keep relationships without draining oneself? Can lone type “success”?
From Vue/React/Angular to AngularJS (One)
Yes. This is sad and real. I have used Vue 2 for several projects in the company I previously worked for. I have get used to the component-based, one-way data flow concept in current crop of JS framework. Because new company system already heavily invested in AngularJS. I need to adapt to it. And I try to bring the newer concepts back to the old AngularJS.
Going back to an old reactive JS framework is more difficult than pure JS or jquery. It takes me a few weeks to click. Not to mention the depercation of $scope, the poor performance watchers, the less and less people using AngularJS anymore as community support...
Step 1. Bring back the component based syntax --------
In Vue JS, you declare a component, with props as input parameter, and simply include the components like this inside a template:
``` <my-component :some-prop="acmePropValues"></my-component>
``` There is even a concept called slot (Transclusion) that you can make your components even more reusable.
In AngularJS, the component based and slot concept are already there. But because they are concepts that are being promoted in the later years of AngularJS develop cycle, one from modern JS frameworks need to understand extra concepts to replicate these concepts in AngularJS:
- isolated scopes provided by directive - controller used only from directive
I have seen a LOT of lines of the existing code base include ngController directly to a page, which means that such controller can exist only once in each page because they share the same scope. These ngControllers are quite unfriendly that they query DOM elements as input parameters, which makes them totally not reusable.
Reference: https://weblogs.asp.net/dwahlin/creating-custom-angularjs-directives-part-6-using-controllers https://www.3pillarglobal.com/insights/angularjs-understanding-directive-scope
Step 2: one-way data flow --------
In VueJS, you can simply do the following in almost anywhere in your component methods to emit anything from a child component to the parent component.
In AngularJS, such concept exists but only in the deprecated $scope $emit and $on. (controllerAs is preferred) So bring back $scope for one way data flow.
Step 3: the slow watchers --------
Use something like vs-repeat may speed up rendering. But it's still not ideal. https://github.com/kamilkp/angular-vs-repeat
What I have missed in three years time
If you work too hard, you will miss something before you even notice.
I. Friendship
II. Health
III. Hobbies
IV. New Technologies
V. Your Goal
I am not going to describe the above in detail as different people have different miles on the above. When you have a job that is too demanding, it clouds your vision so much that you may forget why you start to work and what are you fighting for. Think about the above daily, if what you are doing have a toll on any one of them, consider whether you should continue or not.
Not-made-by-this-man syndrome
This syndrome is an extension of the not-invented here syndrome. The affected feels pressurized when someone else properly did when he thinks it is his original idea and that someone else get 100+ stars in the Github repo.
What to do: Chill bro. Dont make yourself too hard. You are supposed to be humble and cooperated.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Thinking throughly
I have not worked for anyone for almost 2 months now. Here is what I figure out: Unlimited time to do your own business to think about your life this is so good. Back then, I rely on my sub-conscious to work it out for me. Now I have my day time to help myself too.
Limited time (and budget) to eat to have air-condition to play to meet others you may have unlimited personal time but you are still unable to meet someone as you wish. to write due to my short attention span, I have a hard time to write things in my mind.
Overall my life pauses. A rare chance to examine it isn’t it?
From there to there
I clearly remembered that I was relieved when I know that I can finally leave that place. Overwhelming by work pressure, I was always tired and could not think properly. Almost a year later, where I am? I found another job, learn something, but I dont like it too much so I quit again. Jobless agains. My thought rewinds to the point, why was I leaving? Is there another way?
Everytime my answer is no. There is not another way. But my question is rather, staying there is not doing any good to me. However, when `there` becomes `here`, `here` becomes `there`. So, does really matter at all? Maybe my life is a vector after all. It has a direction and a strength, but there is not a single point I belong to.
don’t let your job define who you are.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Also someone said programmer is as hardcore as being a soldier
Have a drink
The first timer
The hometrainer
How to setup ssh public-private key based login on linux
generate a public,private key by puttygen
refer to https://www.siteground.com/kb/how_to_generate_an_ssh_key_on_windows_using_putty/
put the public key in the server at the user you used at ~/.ssh/authorized_keys
refer to https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-14-04`
backup your public,private key in a safe place
disable root login
refer to https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-14-04`
disable password login
refer to http://support.hostgator.com/articles/specialized-help/technical/how-to-disable-password-authentication-for-ssh
convert the private ppk file to pem file for normal use in linux using puttygen
refer to http://unix.stackexchange.com/questions/74545/what-difference-between-openssh-key-and-putty-key
puttygen id_dsa.ppk -O private-openssh -o id_dsa and put id_dsa to ~/.ssh
if using mup with public-private key login, error sudo: no tty present and no askpass program specified would be shown
http://stackoverflow.com/questions/21659637/how-to-fix-sudo-no-tty-present-and-no-askpass-program-specified-error
sudo visudo
add line in the bottom jenkins ALL=(ALL) NOPASSWD: ALL (where jenkins is your login account)
refer to https://github.com/arunoda/meteor-up#ssh-keys-with-passphrase-or-ssh-agent-support for loading the private key via ssh-agent

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming