Skip to main content

Notes on LAMP/LAPP Sept 19

https://en.wikipedia.org/wiki/B%C3%A9zier_curve

https://www.quora.com/Can-virus-and-bacteria-survive-in-salt-water

https://blog.goodaudience.com/bitcoin-vs-banks-78b7410fbe9

borrow metaphor from progmng language => are there some "reserve words" (keyword) in some language ?
So master these will maximum (or at least optimum) to usage

Sometime the different between prod and dev env reveal some interesting case study. ie. situation when prod sold table only have few records vs dev (not cleaned ?) have about half millions records.
So query that designed to overcome bottleneck on join/not in ... on DEV env become not necessary and vice verse. On the other hand, we should keep DEV env implementation in case Live data not cleaned or sometime/somehow become larger, so the already logic could handled situation.
Implement that prevent future table size is cool. We often ignore this when first work proposal.In the often used App/FW like WP we can easily grab best practice or recommend because of we have many system to get lesson, like wp_posts or wp_post_meta ...table often very big.

https://baa.nwafu.edu.cn/docs/20180603134540248660.pdf


http://asciiflow.com/

https://buildingvts.com/launch-multiple-ios-simulators-on-a-single-compile-985fd2ad5eb1
https://smallbusiness.chron.com/difference-between-construction-manufacturing-20748.html

pictograms or ideograms

https://www.quora.com/Why-didnt-the-Japanese-use-the-Latin-alphabet-instead-of-kanji-They-used-kanji-to-avoid-confusion-of-homonyms-but-now-that-the-kanji-kana-can-be-mixed-to-write-why-not-use-the-Latin-alphabet-Why-did-the-Japanese-even-pursue-the-pictograph

Flight control prank on learning eng (and vnes 'dialect' meme). Deep rooted mother language and 'the word' by JK involved to make clear out what is true learning.

https://researcher.watson.ibm.com/researcher/view_group.php?id=5608

Bash, automate program testing.
How to automated test with for example crontask ?

https://stackoverflow.com/questions/1315624/bash-and-test-driven-development

https://www.softwaretestinghelp.com/tips-to-design-test-data-before-executing-your-test-cases/

https://www.php.net/manual/en/function.fopen.php
"This may become critical in a caching situation, if you intend to keep your hair."

https://stackoverflow.com/questions/13210880/replace-one-substring-for-another-string-in-shell-script

https://stackoverflow.com/questions/6465699/git-push-to-wrong-branch

GIT: can I push branch Feature-xx to origin (remote) when I am in develop branch ?
I mean, I am currently in develop branch. No change in develop.
But I have some update in Feature-xx comited locally. Can I push it to remote (ie. Github) without checkout to it first ?
The reality situation usage is when I have middleman Git.
Git inside Centos 5.11 too old (ssl/tls...) to use directly to for example Github. So I have to push it to middleman Git (in shared folder) within Windows (host machine). And then can push to Github from windows's git.
It look like this:
[remote "origin"]
        # url = https://github.com/project-x.git
        url = /root/proj/project-x.git
...

=> Tested: we can push update to branch feature-xyz while in develop branch for example.
$ (develop)
$ git push origin feature-xyz
$git br
* develop

https://www.php.net/manual/en/function.file-put-contents.php
Please note that when saving using an FTP host, an additional stream context must be passed through telling PHP to overwrite the file.
...
/* and finally, put the contents */
file_put_contents($hostname, $content, 0, $stream);

 EUC-JP encoding make Linux font error. Should be UTF-8.

Fuking cococ stupid. As vni search machine, it should have vni typing by default ? or at least a button or settings for it. Like informatik dictionary, If you chose Vi-En dict then the input changed to vni (Telex, unicode...) automatically. This is a must-have (should have) functionality.
Default page cococ (i'm comming from Google search) did not come to search page but download page. => Should it be changed ?  If you focus on search machine then it should be in top priority not the chromium based browser.
And in the search result you could add browser download link to it as Google did.

I'm not count on Unikey typing software that almost all PC in VN installed.  Because of with developer like me not like it since almost time we use / typing english. Chatting vni is exist but not offten, it depend on project, team, company ...
But at least foreigner and heavy second language usage (Eng, Jap, Chn, Kor) ... it is annoying mistake with Unikey keyboard shortcut (Ctrl-Shift...)
MacOS / Linux (Ubuntu) have build in Typing, so not have to open Unikey and it switch keyboard short key + statistic guest seem ok.
Linux typing suck litle bit vs other, for example Dvorak keyboard not work when typing Vietnamese, it fall back to default Qwerty

https://archive.org/details/asiangodfathers00joes

Comments

Popular posts from this blog

Rand mm 10

https://stackoverflow.com/questions/2447791/define-vs-const Oh const vs define, many time I got unexpected interview question. As this one, I do not know much or try to study this. My work flow, and I believe of many programmer is that search topic only when we have task or job to tackle. We ignore many 'basic', 'fundamental' documents, RTFM is boring. So I think it is a trade off between the two way of study language. And I think there are a bridge or balanced way to extract both advantage of two method. There are some huge issue with programmer like me that prevent we master some technique that take only little time if doing properly. For example, some Red Hat certificate program, lesson, course that I have learned during Collage gave our exceptional useful when it cover almost all topic while working with Linux. I remember it called something like RHEL (RedHat Enterprise Linux) Certificate... I think there are many tons of documents, guide n books about Linux bu

Martin Fowler - Software Architecture - Making Architecture matter

  https://martinfowler.com/architecture/ One can appreciate the point of this presentation when one's sense of code smell is trained, functional and utilized. Those controlling the budget as well as developer leads should understand the design stamina hypothesis, so that the appropriate focus and priority is given to internal quality - otherwise pay a high price soon. Andrew Farrell 8 months ago I love that he was able to give an important lesson on the “How?” of software architecture at the very end: delegate decisions to those with the time to focus on them. Very nice and straight-forward talk about the value of software architecture For me, architecture is the distribution of complexity in a system. And also, how subsystems communicate with each other. A battle between craftmanship and the economics and economics always win... https://hackernoon.com/applying-clean-architecture-on-web-application-with-modular-pattern-7b11f1b89011 1. Independent of Frameworks 2. Testable 3. Indepe