sudo eopkg it -c system.devel
sudo eopkg install libx11-devel libxtst-devel libxmu-devel
# Set master image | |
FROM php:7.3-fpm-alpine | |
MAINTAINER Rajesh Chaudhary <[email protected]> | |
# Copy composer.lock and composer.json | |
#COPY composer.lock composer.json /var/www/ | |
# Set working directory | |
WORKDIR /var/www |
# Miscellaneous | |
*.class | |
*.lock | |
*.log | |
*.pyc | |
*.swp | |
.DS_Store | |
.atom/ | |
.buildlog/ | |
.history |
sudo eopkg it -c system.devel
sudo eopkg install libx11-devel libxtst-devel libxmu-devel
Sublime Text Home/End keys default functionality jumps to the beginning and end of the file.
Fix Home and End keys to move the cursor to the beginning and end of lines.
Preferences > Key Bindings - User
Adding the following to the array:
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} },
/** | |
* Observable manager for saving the [Cart]'s resource information. | |
*/ | |
class CartManager : LiveData<Resource<Cart?>>() { | |
init { | |
value = Success(null) | |
} | |
/** |
class Converter { | |
companion object { | |
fun rupiah(number: Double): String{ | |
val localeID = Locale("in", "ID") | |
val numberFormat = NumberFormat.getCurrencyInstance(localeID) | |
return numberFormat.format(number).toString() | |
} | |
} | |
} |
We did it! We broke gist.github.com ;) So head over to the new home! Thank you all!
2021.10.20: https://github.com/AveYo/MediaCreationTool.bat now open for interaction
Not just an Universal MediaCreationTool wrapper script with ingenious support for business editions,
A powerful yet simple windows 10 / 11 deployment automation tool as well!
// Copyright 2015 The Chromium Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style license that can be | |
// found in the LICENSE file. | |
import 'dart:async'; | |
import 'dart:ui'; | |
import 'package:flutter/foundation.dart'; | |
import 'package:flutter/widgets.dart'; |
import random | |
population = 200 | |
generations = 0 | |
mutation = 0.01 | |
alphabet = "abcdefghijklmnopqrstuvwxyz! " | |
target = "subscribe to howcode!" | |
output = "" | |
data = [] |