We need to get version number from file name some time. We can use Regular Expression for that. $reg = ‘/^[\w-]+.(\d+.\d+.\d+).zip/’; $filename = “myapp.1.12.2”; preg_match_all($reg, $filename, $matches, PREG_SET_ORDER, 0); echo $matches[0][1]; result: 1.12.2
OpenGL Shading Language (GLSL)
OpenGL Shading Language (GLSL), is a high-levelshading language with a syntax based on the C programming language. It was created by the OpenGL ARB (OpenGL Architecture Review Board) to give developers more direct control of the graphics pipeline without having to use ARB assembly language or hardware-specific languages. We can create awesome 3D effects by this language. If you work on After Effects or Premiere …
create waveform by FFMPEG from mp3
We can use ffmpeg for several purpose such as encoding. Also we can use it to get waveform file from mp3. This is a command for that. ffmpeg -y -i http://ma-previews.s3.amazonaws.com/preview-251513-CSnH5LgyMq.mp3 -filter_complex “[0:a]aformat=channel_layouts=mono, compand=gain=-6, showwavespic=s=1280×720, colorkey=black, colorchannelmixer=.3:0:0:0:.6:0:0:0:.4:0:0:0[fg]; color=s=1280×720:color=#8cdbac[bg]; [bg][fg]overlay=format=rgb” -frames:v 1 ./result.png
Google Console Service
Google provides console service which provides crawl of pages. So, we can create console account, and registers pages on that. Then this service will crawl pages and update status automatically. Also we can register the pages by API.
Best Tool OctoTree for github repository checking.
we are normally using some codes of repository on github. But if the tree structure of project is complex, then it is difficult codes of files.So, you can install a chrome extension (OctoTree). it is providing a repository tree structure in left side.So, you can simply go to files that you want. https://chrome.google.com/webstore/detail/octotree/bkhaagjahfmjljalopjnoealnfndnagc
postman environment
We are using postman for api development mainly. Postman provides powerful functionality. You can set global variable by environment and use them in APIs.
Json converting service online.
https://codebeautify.org the service will change complex json data format to beautiful format.
React Tree component.
http://react-component.github.io/tree/examples/draggable.html we can implement online tree functionality simply.For example: all of IDE has file tree structure. We can implement it by the react component online.
Better PR chrome extension
Most developers are using PR to review codes on github. This chrome extension is very helpful for that. https://chrome.google.com/webstore/detail/better-pull-request-for-g/nfhdjopbhlggibjlimhdbogflgmbiahc?hl=en Please download the chrome extension and go to PR page of github. Maybe you will see a conformation dialog. Please enable on that. Then you will see the file structure on left side like sublime or …