Les Partages de Memiks
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 34 / 155
Ghidra https://ghidra-sre.org/
Thu Mar 7 00:40:46 2019 archive.org
QRCode
thumbnail

A software reverse engineering (SRE) suite of tools developed by NSA's Research Directorate in support of the Cybersecurity mission

Ghidra is one of many open source software (OSS) projects developed within the National Security Agency. Please check back often as we continue to grow this effort and figure out the best way to collaborate and improve this technology together.

https://github.com/NationalSecurityAgency/ghidra

sre nsa github opensource decompiler
Combien coûte une architecture Serverless ? https://blog.ippon.fr/2019/03/05/combien-coute-une-architecture-serverless/
Wed Mar 6 20:52:34 2019 archive.org
QRCode
thumbnail

Le Serverless est un modèle dans lequel le fournisseur de services cloud (AWS, Azure, Google Cloud ou IBM) est responsable de l’exécution d’un morceau de code en allouant de manière dynamique les ressources, souvent défini par “Functions-as-a-service”. Chez AWS, ce service est connu sous le nom de Lambda.

cloud architecture
Boom, heartshot | Le blog d'un odieux connard https://unodieuxconnard.com/2013/01/06/boom-heartshot/
Tue Mar 5 19:22:57 2019 archive.org
QRCode
thumbnail

Ce genre de site / fonctionnement / méthode me donne envie de vomir, au moins unodieuxconnard dénonce...

femme comportement limite erreur vomir drague
Solutions Architect Salary in Tokyo (Japan) | PayScale https://www.payscale.com/research/JP/Job=Solutions_Architect/Salary/3989d43d/Tokyo
Mon Mar 4 15:33:38 2019 archive.org
QRCode

Average Solutions Architect Salary in Tokyo
¥9,998,973

Je ne sais pas de quand date les informations ni si elles sont fiables mais cela me donne un point de départ pour négocier...

tokyo architect salary japan
NASA (@nasa) • Instagram photos and videos https://www.instagram.com/nasa/
Sat Mar 2 17:26:20 2019 archive.org
QRCode
thumbnail
nasa photo
Manual (EN) · recalbox/recalbox-os Wiki · GitHub https://github.com/recalbox/recalbox-os/wiki/Manual-%28EN%29#keyboardmapping
Thu Feb 28 05:32:04 2019 archive.org
QRCode
thumbnail

The recalbox repository moved to https://gitlab.com/recalbox/recalbox - recalbox/recalbox-os

recall box input
postgresql - How do I list all databases and tables using psql? - Database Administrators Stack Exchange https://dba.stackexchange.com/questions/1285/how-do-i-list-all-databases-and-tables-using-psql
Wed Feb 27 23:56:32 2019 archive.org
QRCode
thumbnail

Please note the following commands:

\list or \l: list all databases
\dt: list all tables in the current database

You will never see tables in other databases, these tables aren't visible. You have to connect to the correct database to see its tables (and other objects).

To switch databases:

\connect database_name or \c database_name

http://www.postgresql.org/docs/current/interactive/app-psql.html

postgresql table list
SUSI AI https://dev.susi.ai/
Wed Feb 27 20:01:25 2019 archive.org
QRCode
thumbnail

Susi AI is an intelligent Open Source personal assistant. It is capable of chat and voice interaction and by using APIS to perform actions such as music playback, making to-do lists, setting alarms, streaming podcasts, playing audiobooks, and providing weather, traffic, and other real time information. Additional functionalities can be added as console services using external APIs. Susi AI is able to answer questions and depending on the context will ask for additional information in order to perform the desired outcome. The core of the assistant is the Susi AI server that holds the “intelligence” and “personality” of Susi AI. The Android and web applications make use of the APIs to access information from a hosted server.

An automatic deployment from the development branch at GitHub is available for tests here https://susi-server.herokuapp.com

susi ai personal assistant
Le violeur de la Sambre https://spark.adobe.com/page/PA6vPHXUYNxM2/
Tue Feb 26 23:20:35 2019 archive.org
QRCode
thumbnail

Le violeur de la Sambre Un homme au-dessus de tout soupçon

Une longue enquete mais très interressante

enquete dossier complet nord
retropie - How do I control GPIO-connected fan via code at a certain CPU temperature? - Raspberry Pi Stack Exchange https://raspberrypi.stackexchange.com/questions/62220/how-do-i-control-gpio-connected-fan-via-code-at-a-certain-cpu-temperature
Tue Feb 26 19:43:52 2019 archive.org
QRCode
thumbnail

from gpiozero import LED
#we are using the LED sub-module just as a generic output
fan = LED(18) #for the positive, put the negative in one of the grounds
def cputemp():
f = open("/sys/class/thermal/thermal_zone0/temp")
CPUTemp = f.read()
f.close()
StringToOutput= str(int(CPUTemp)/1000)

while True:
cputemp()
if StringToOutput >= 45:
fan.on()
elif StringToOutput < 45:
fan.off

This is some fairly simple code that gets the temperature from /sys/class/thermal/thermal_zone0/temp in thousandths Celsius divides by 1000 for Celsius and checks if it is more than 45. if it is it turns the "fan" on and if not , it stays off. But you'll almost certainly never need a fan as long as you're not doing anything stupid.

This code was adapted from a SE question but i am not sure which.

raspberry pi python fan control gpio
February 2019 Beta Version | Recalbox Forum https://forum.recalbox.com/topic/16576/february-2019-beta-version/2
Tue Feb 26 13:44:51 2019 archive.org
QRCode
thumbnail

la version beta qui marche sur le 3b+

recalbox raspberry 3b+
the4thdoctor/pg_chameleon: MySQL to PostgreSQL replica system https://github.com/the4thdoctor/pg_chameleon/
Mon Feb 25 23:38:13 2019 archive.org
QRCode

pg_chameleon is a MySQL to PostgreSQL replica system written in Python 3. The system use the library mysql-replication to pull the row images from MySQL which are stored into PostgreSQL as JSONB. A pl/pgsql function decodes the jsonb values and replays the changes against the PostgreSQL database.

pg_chameleon 2.0 is available on pypi

postgresql mysql migration python
Creating user, database and adding access on PostgreSQL https://medium.com/coding-blocks/creating-user-database-and-adding-access-on-postgresql-8bfcd2f4a91e
Mon Feb 25 11:43:46 2019 archive.org
QRCode
thumbnail

sudo -u postgres psql
postgres=# create database mydb;
postgres=# create user myuser with encrypted password 'mypass';
postgres=# grant all privileges on database mydb to myuser;

postgre
Pour Linus Torvalds, ARM ne gagnera pas la concurrence sur le marché des serveurs à cause du niveau de fragmentation élevé et d'autres raisons https://www.developpez.com/actu/248270/Pour-Linus-Torvalds-ARM-ne-gagnera-pas-la-concurrence-sur-le-marche-des-serveurs-a-cause-du-niveau-de-fragmentation-eleve-et-d-autres-raisons/
Sun Feb 24 17:07:54 2019 archive.org
QRCode
thumbnail

Il l’avait déjà dit une fois en octobre 2016, lors de la conférence Linaro Connect, qu’il préférait l’architecture x86 à l'architecture ARM. Il y a un peu plus de deux ans, Torvalds disait que l’ouverture et l’étendue de l’écosystème matériel (PC) formé autour de x86 sont inégalées, alors que l’écosystème ARM reste fragmenté. « Le jeu d’instructions et le noyau du CPU ne sont pas très importants », a déclaré Torvalds. « C’est un facteur sur lequel les gens ont tendance à se fixer, mais […] ce qu...

Pleroma's First Release! 0.9.9 | Lainblog https://blog.soykaf.com/post/pleroma-release-0.9.9/
Sat Feb 23 17:36:37 2019 archive.org
QRCode
thumbnail

We are doing a release! Finally! Stable, too!

plemora fediverse mastodont
6 formations en ligne pour apprendre Python - Le Monde Informatique https://www.lemondeinformatique.fr/actualites/lire-6-formations-en-ligne-pour-apprendre-python-74349.html
Sat Feb 23 16:20:19 2019 archive.org
QRCode
thumbnail

De plus en plus apprécié par les développeurs, Python est souvent considéré comme un langage simple et aux mises en application multiples. Zoom sur...

BATTLETECH is having a free weekend on Steam, plus a look at other good Linux game deals | GamingOnLinux https://www.gamingonlinux.com/articles/battletech-is-having-a-free-weekend-on-steam-plus-a-look-at-other-good-linux-game-deals.13623
Sat Feb 23 16:18:58 2019 archive.org
QRCode
thumbnail

The weekend is about to crash into our lives once again, you're sat staring at your screen wondering what to play and we're here to help.

linux game
OmniDB - Open Source Web Tool For Database Management https://www.omnidb.org/en/
Fri Feb 22 23:44:49 2019 archive.org
QRCode

Support Status

PostgreSQL 11
PostgreSQL 10
PostgreSQL 9.6
PostgreSQL 9.5
PostgreSQL 9.4
PostgreSQL 9.3

Oracle
MySQL
MariaDB

Firebird
SQLite
SQL Server
IBM DB2
database management tool open source
BookStack https://www.bookstackapp.com/
Fri Feb 22 23:30:59 2019 archive.org
QRCode
thumbnail

#Simple & Free Wiki Software

BookStack is a simple, self-hosted, easy-to-use platform for organising and storing information.

Wiki Software storing information
Python: Call Functions by String | Open Source Kitty https://arithxu.com/2017/10/14/Python-Call-Functions-by-String/
Fri Feb 22 17:20:30 2019 archive.org
QRCode
thumbnail

Approach 3: Synbol Tables

Built-in function locals() and globals() return a dictionary of current local and global symbol table respectively. So you could call a function just like:

def my_func(arg1, arg2):
print(arg1, arg2)
return arg1 + arg2

r = locals()['my_func'](http://1, 2)
print(r)

The output is:

1 2
3

This approach is just like the examples provided in the very beginning of this post, in which, I maintained a symbol table by myself and called the function by its string-typed name.

python dynamic call function
page 34 / 155
4770 links, including 1684 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn